From d3c2e002308fdea94466a02cea594471495299c9 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 00:59:18 +0800
Subject: [PATCH 01/22] feat: add adaptive exact-byte recurrent row policies
---
research/EXPERIMENT_003_HRR_DIAGNOSTIC.md | 177 ++
research/EXPERIMENT_003_HRR_PROTOCOL_DRAFT.md | 271 +++
...ENT_004_LOSS_SENSITIVITY_PROTOCOL_DRAFT.md | 443 +++++
...005_ADAPTIVE_ROW_PACKING_PROTOCOL_DRAFT.md | 338 ++++
scripts/pilot_evaluate_hrr.py | 1743 +++++++++++++++++
scripts/pilot_hrr_rows.py | 449 +++++
scripts/pilot_loss_sensitivity_rows.py | 481 +++++
scripts/pilot_validate_storage_boundary.py | 844 ++++++++
src/recurquant/__init__.py | 94 +-
src/recurquant/finite_difference.py | 169 ++
src/recurquant/fisher_sensitivity.py | 855 ++++++++
src/recurquant/horizon.py | 212 ++
src/recurquant/horizon_calibration.py | 582 ++++++
src/recurquant/intervention.py | 458 +++++
src/recurquant/mixed_quantization.py | 359 ++++
src/recurquant/model_fisher.py | 194 ++
src/recurquant/packed_cache.py | 641 ++++++
src/recurquant/qwen35.py | 102 +-
src/recurquant/row_policy.py | 161 ++
src/recurquant/storage_boundary_validation.py | 576 ++++++
tests/test_adaptive_mixed_packed_cache.py | 275 +++
tests/test_finite_difference.py | 109 ++
tests/test_fisher_sensitivity.py | 621 ++++++
tests/test_horizon.py | 172 ++
tests/test_horizon_calibration.py | 309 +++
tests/test_intervention.py | 203 ++
tests/test_mixed_packed_cache.py | 274 +++
tests/test_mixed_quantization.py | 292 +++
tests/test_model_fisher.py | 217 ++
tests/test_pilot_evaluate_hrr.py | 716 +++++++
tests/test_pilot_validate_storage_boundary.py | 147 ++
tests/test_row_policy.py | 62 +
tests/test_storage_boundary_validation.py | 161 ++
33 files changed, 12704 insertions(+), 3 deletions(-)
create mode 100644 research/EXPERIMENT_003_HRR_DIAGNOSTIC.md
create mode 100644 research/EXPERIMENT_003_HRR_PROTOCOL_DRAFT.md
create mode 100644 research/EXPERIMENT_004_LOSS_SENSITIVITY_PROTOCOL_DRAFT.md
create mode 100644 research/EXPERIMENT_005_ADAPTIVE_ROW_PACKING_PROTOCOL_DRAFT.md
create mode 100644 scripts/pilot_evaluate_hrr.py
create mode 100644 scripts/pilot_hrr_rows.py
create mode 100644 scripts/pilot_loss_sensitivity_rows.py
create mode 100644 scripts/pilot_validate_storage_boundary.py
create mode 100644 src/recurquant/finite_difference.py
create mode 100644 src/recurquant/fisher_sensitivity.py
create mode 100644 src/recurquant/horizon.py
create mode 100644 src/recurquant/horizon_calibration.py
create mode 100644 src/recurquant/intervention.py
create mode 100644 src/recurquant/mixed_quantization.py
create mode 100644 src/recurquant/model_fisher.py
create mode 100644 src/recurquant/row_policy.py
create mode 100644 src/recurquant/storage_boundary_validation.py
create mode 100644 tests/test_adaptive_mixed_packed_cache.py
create mode 100644 tests/test_finite_difference.py
create mode 100644 tests/test_fisher_sensitivity.py
create mode 100644 tests/test_horizon.py
create mode 100644 tests/test_horizon_calibration.py
create mode 100644 tests/test_intervention.py
create mode 100644 tests/test_mixed_packed_cache.py
create mode 100644 tests/test_mixed_quantization.py
create mode 100644 tests/test_model_fisher.py
create mode 100644 tests/test_pilot_evaluate_hrr.py
create mode 100644 tests/test_pilot_validate_storage_boundary.py
create mode 100644 tests/test_row_policy.py
create mode 100644 tests/test_storage_boundary_validation.py
diff --git a/research/EXPERIMENT_003_HRR_DIAGNOSTIC.md b/research/EXPERIMENT_003_HRR_DIAGNOSTIC.md
new file mode 100644
index 0000000..783fc84
--- /dev/null
+++ b/research/EXPERIMENT_003_HRR_DIAGNOSTIC.md
@@ -0,0 +1,177 @@
+# Experiment 003: HRR same-calibration diagnostic
+
+Status: H32 horizon hypothesis rejected at the diagnostic stage; pivot opened
+
+Date: 2026-07-22
+
+## Decision
+
+I tested whether looking farther ahead improved the row allocator before
+freezing a development protocol. It did not. At the same physical byte budget,
+`hrr_h32` produced higher macro excess NLL than the immediate-read `hrr_h1`
+selector:
+
+```text
+hrr_h1 macro excess NLL = 0.6218181103467941
+hrr_h32 macro excess NLL = 0.7428321987390518
+H1 - H32 = -0.12101408839225769
+paired 95% interval = [-0.21324796304106708, -0.04036934301257135]
+```
+
+The interval excludes zero in H1's favor, and H1 had lower excess NLL on seven
+of the eight tasks. H32 also had worse macro mean KL, CVaR95 KL, and top-1
+agreement. I therefore reject the H32 horizon hypothesis at this diagnostic
+stage. I will not carry H32 forward as the primary candidate or tune the
+horizon on these same examples.
+
+## Scope and evidence boundary
+
+This was a same-data implementation diagnostic, not a held-out evaluation.
+Both row selection and quality evaluation used the same eight MBPP `train`
+calibration examples in this order:
+
+```text
+945, 794, 657, 702, 651, 720, 903, 918
+```
+
+The quality run scored 650 teacher-forced code tokens. The selector trace had
+642 pre-update decode positions because each sequence of `n` code tokens
+provides `n - 1` recurrent transitions. The model and data were:
+
+- model: `Qwen/Qwen3.5-0.8B-Base`
+- model revision: `dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68`
+- MBPP revision: `4bb6404fdc6cacfda99d4ac4205087b89d32030c`
+- MBPP manifest SHA256:
+ `97d691a6d45ee29668f5b0151c1a0885629539ac9e7967e9baa30cfb5c97ae8b`
+- selector seed: `2339`
+- random-row baseline seed: `1101`
+- paired bootstrap: 10,000 task-level resamples, seed `2339`
+
+This scope can reveal a selector or cache integration failure. It cannot show
+held-out generalization, cross-domain robustness, speed, or end-to-end memory
+improvement.
+
+## Reproducibility anchors
+
+The artifacts were generated from a dirty experimental worktree rooted at Git
+commit `23f07cfe5f0dfd2406bbc4f85f885280e467b533`; that commit alone does not
+reconstruct the uncommitted experimental implementation.
+
+| Record | SHA256 |
+| --- | --- |
+| Selector canonical evidence | `b3a2ee24d2a2dc8bbf9d2b81e9909b7d8844fe0e611cdc0dc51570b5db562b43` |
+| Selector artifact file | `a0627fde2681c8085ff3667d3b7c21d7a7a882a01f62491704492f39303e30fb` |
+| Quality canonical evidence | `8bac3d436597d0e6dee563c037c56fd4369597f11745dff67de98b5ebeffb9d2` |
+| Quality artifact file | `fdd05416a696554c2c6450df6c7ee4f1090fed05cb3910df4ff66ad4e400b903` |
+
+The ignored local files are `artifacts/hrr-diagnostic-8task.json` and
+`artifacts/hrr-quality-diagnostic-8task.json`.
+
+These hashes authenticate the two local files, not the unavailable dirty
+source state that produced them. The numerical results in this document are
+therefore locally verified but not release-reproducible from a clean public
+commit. Before publication as reproducible evidence, rerun the diagnostic from
+the clean committed implementation and publish the resulting artifacts. Until
+then, the numbers remain historical exploratory observations only.
+
+## Physical format and selectors
+
+The row-format selectors used the same exact resident-state budget:
+
+| Component | Bytes |
+| --- | ---: |
+| INT4/INT8 payload | 2,485,760 |
+| 36,864 FP16 row scales | 73,728 |
+| One precision bit for each row | 4,608 |
+| **Total** | **2,564,096** |
+
+Each row-format policy promoted exactly 1,976 of 36,864 rows from INT4 to
+INT8. Each promotion added 64 payload bytes. The physical cache reported the
+same `2,564,096` resident bytes for `hrr_h1`, `hrr_h32`, `row_mse`, and
+`random_rows_s1101`. It also reported `2,564,096` bytes for the mask-free v0.2
+static layout and `2,433,024` bytes for uniform INT4. The FP32 recurrent-state
+reference occupied `18,874,368` bytes.
+
+The evaluated selectors were:
+
+- `hrr_h1`: actual INT4-to-INT8 marginal read-risk reduction at the immediate
+ read, measured on frozen full-precision traces;
+- `hrr_h32`: the same marginal score propagated across up to 32 future reads;
+- `row_mse`: marginal row reconstruction-MSE reduction from INT4 to INT8;
+- `random_rows_s1101`: equal-count random row promotions with fixed seed 1101;
+- `v02_layer0_static`: layer 0 at INT8 and the other recurrent layers at INT4;
+- `uniform_int4`: all recurrent-state rows at INT4.
+
+H1 and H32 selected substantially similar policies: 1,872 promoted rows
+overlapped, with Jaccard similarity `0.9`. The remaining 104 promotions in
+each policy were enough to produce a measurable quality difference in this
+small diagnostic.
+
+## Numeric results
+
+All values are task-macro aggregates over the same eight examples and 650
+teacher-forced tokens. Lower excess NLL, mean KL, and CVaR95 KL are better;
+higher top-1 agreement is better.
+
+| Method | Excess NLL | Mean KL | CVaR95 KL | Top-1 agreement |
+| --- | ---: | ---: | ---: | ---: |
+| `hrr_h1` | 0.6218181103467941 | 0.635199373587966 | 3.388882279396057 | 0.7301077470183372 |
+| `hrr_h32` | 0.7428321987390518 | 0.7663818132132292 | 4.135775178670883 | 0.7108453139662743 |
+| `row_mse` | 0.7827504575252533 | 0.8211609497666359 | 3.675527900457382 | 0.6954880431294441 |
+| `v02_layer0_static` | 0.8490711152553558 | 0.9121971130371094 | 4.451788902282715 | 0.6625703647732735 |
+| `uniform_int4` | 2.6367427557706833 | 2.796179473400116 | 7.581509709358215 | 0.3663086034357548 |
+| `random_rows_s1101` | 2.683250844478607 | 2.791328117251396 | 7.672792077064514 | 0.36465270072221756 |
+
+The paired contrasts below are `baseline excess NLL - hrr_h32 excess NLL`.
+Positive values favor H32; negative values favor the named baseline.
+
+| Baseline | Mean paired contrast | Paired 95% interval |
+| --- | ---: | ---: |
+| `hrr_h1` | -0.12101408839225769 | [-0.21324796304106708, -0.04036934301257135] |
+| `row_mse` | 0.03991825878620148 | [-0.05020202696323395, 0.12860547192394733] |
+| `v02_layer0_static` | 0.10623891651630402 | [0.031215629354119343, 0.20246222615242004] |
+| `uniform_int4` | 1.8939105570316315 | [1.5334751740098, 2.2339482568204403] |
+| `random_rows_s1101` | 1.9404186457395554 | [1.6602401442825794, 2.197948945313692] |
+
+H32 beat the coarse static, uniform, and single random baselines in this
+same-data run. That does not rescue the horizon hypothesis: H1 was the stronger
+equal-format selector, and row MSE was statistically unresolved against H32.
+
+## Working diagnosis, not a finding
+
+HRR scores one quantization error injected into a captured full-precision state
+and propagates it through frozen full-precision `q`, `k`, `g`, and `beta`
+values. The physical cache behaves differently: it quantizes after prefill and
+after every recurrent update, so later states and activations come from an
+already perturbed, repeatedly requantized trajectory.
+
+One possible explanation is that a 32-read score accumulates effects that do
+not survive, or are replaced by new error, under repeated requantization. H1
+may align better because it asks only about the next read. This is a post-hoc
+hypothesis, not a demonstrated cause. The current artifacts do not isolate
+horizon length from repeated requantization, and the high H1/H32 policy overlap
+makes causal interpretation especially weak.
+
+To test this explanation, a future diagnostic would need controlled one-shot
+versus repeated-quantization ablations and direct row interventions. I will not
+describe the mismatch as the reason for failure until those tests exist.
+
+## Pivot: empirical downstream loss sensitivity
+
+The next selector will target measured downstream loss rather than extending a
+hand-crafted read proxy farther through a frozen trajectory. The planned path
+is:
+
+1. Build a small single-row promotion oracle on the physical, repeatedly
+ quantized cache and measure the actual change in downstream excess NLL.
+2. Test a directional loss or empirical-Fisher score with respect to the
+ recurrent state, using the real `Q8(S) - Q4(S)` promotion direction rather
+ than weight magnitude or a generic parameter Hessian.
+3. Compare that scalable score with the intervention oracle, H1, row MSE,
+ static v0.2, and prespecified random seeds at the same counted byte budget.
+4. Freeze a new development protocol only if the score is stable across
+ calibration subsets and improves on the strongest baseline without tuning
+ on its evaluation examples.
+
+This is a new hypothesis. The present diagnostic rejects H32; it does not show
+that a loss/Fisher selector will succeed.
diff --git a/research/EXPERIMENT_003_HRR_PROTOCOL_DRAFT.md b/research/EXPERIMENT_003_HRR_PROTOCOL_DRAFT.md
new file mode 100644
index 0000000..6604457
--- /dev/null
+++ b/research/EXPERIMENT_003_HRR_PROTOCOL_DRAFT.md
@@ -0,0 +1,271 @@
+# Experiment 003 — quantizer-aware horizon row allocation
+
+Status: historical protocol draft; superseded by
+[`EXPERIMENT_003_HRR_DIAGNOSTIC.md`](EXPERIMENT_003_HRR_DIAGNOSTIC.md)
+
+The same-data diagnostic rejected H32. This file preserves the plan that was
+tested; its H32 primary, forward stages, gates, and claim ladder are not active
+and are not evidence of an improvement.
+
+Date opened: 2026-07-22
+
+## Question
+
+At one exact resident recurrent-state byte budget, can a static row-level
+INT4/INT8 policy selected from full-precision calibration traces preserve
+Qwen3.5 Gated DeltaNet predictions better than the strongest equal-byte
+baselines?
+
+The candidate is **horizon read risk (HRR)**. It propagates the measured error
+from quantizing one recurrent-state row through the frozen Gated DeltaNet
+trajectory and scores its effect on future reads. This is a local sensitivity
+method, not a claim that the complete quantized model remains on the same
+trajectory.
+
+## Why this is a separate experiment
+
+The earlier hand-built gate, forgetting, update-norm, and residual-magnitude
+proxies were weak and prompt-dependent. Their best observed absolute Spearman
+correlation was about 0.41 and the sign changed across prompts. Experiment 003
+does not reinterpret that negative result. It replaces the proxy with an
+empirical, quantizer-aware sensitivity calculation and requires new baselines
+and new evidence.
+
+The v0.2 policy remains frozen. Experiment 003 cannot rewrite its calibration,
+development, or confirmation artifacts.
+
+## Local score
+
+Holding the full-precision teacher trajectory fixed, the recurrent-state error
+obeys
+
+```text
+E_(t+1) = A_t E_t
+A_t = exp(g_t) (I - beta_t k_t k_t^T)
+```
+
+For a read at future position `tau`, define
+
+```text
+r_(tau,t) = q_tau^T A_tau ... A_t
+```
+
+The isolated squared contribution of source row `b` is
+
+```text
+r_(tau,t,b)^2 ||E_t[b, :]||_2^2
+```
+
+HRR averages this contribution over the next `H` available reads and then
+task-macro averages the result. The implementation applies the transition to a
+backward query vector, so it does not allocate one full error matrix per source
+row.
+
+The allocator must rank the **marginal value of promotion**, not raw INT4 risk:
+
+```text
+DeltaHRR_b = HRR_b(E_INT4) - HRR_b(E_INT8)
+```
+
+Negative values remain negative. They must not be clamped merely to make the
+selector look stable.
+
+## Trace contract
+
+- Run the model in evaluation and inference mode with an ordinary FP32
+ recurrent state and otherwise pinned BF16 model arithmetic.
+- Prefill normally. During single-token teacher-forced decode, capture the
+ state immediately before the token update and the `q`, `k`, `g`, and `beta`
+ values consumed by that update.
+- Normalize `q` and `k` exactly once and apply the kernel's `1/sqrt(key_dim)`
+ query scale exactly once.
+- Quantize the captured state independently to INT4 and INT8 using the actual
+ grouped quantizer. Store only per-row error energies in the calibration
+ trace, not the full error matrices.
+- Drain traces at the task boundary. No task trace may leak into another task.
+- A packed evaluation must quantize and store the recurrent state after prefill
+ and after every recurrent update. Quantizing a completed FP32 trace once is
+ not an implementation test.
+
+## Physical format and budget
+
+For the batch-one Qwen3.5 layout under test:
+
+- 18 Gated DeltaNet layers;
+- 16 heads per layer;
+- 128 state rows per head;
+- 128 values per row;
+- 36,864 independently selectable rows in total;
+- symmetric signed INT4 or INT8 payload;
+- one FP16 scale per row;
+- one packed precision bit per row.
+
+At this layout:
+
+| Component | Bytes |
+| --- | ---: |
+| All-INT4 payload | 2,359,296 |
+| FP16 row scales | 73,728 |
+| Precision mask | 4,608 |
+| 1,976 INT4-to-INT8 promotions | 126,464 |
+| **Total** | **2,564,096** |
+
+The static v0.2 layer policy reaches the same total with 2,048 promoted rows
+and no row mask. HRR therefore receives 72 fewer INT8 rows at equal bytes. This
+metadata disadvantage is part of the comparison, not something to hide.
+
+`2,564,096 bytes` means the sum of live recurrent-state payload, scale, and
+precision-metadata tensors. It does not mean total cache, model, allocator-peak,
+or whole-process memory. Any index, alignment, prefix table, or kernel metadata
+introduced later must be counted.
+
+## Candidate and equal-byte comparators
+
+1. `v02_layer0_static`: model layer 0 at INT8 and the other recurrent layers at
+ INT4. It uses 2,048 promotions and no row mask.
+2. `random_rows`: 1,976 row promotions for at least 20 prespecified seeds.
+3. `row_mse`: rank the measured reduction in row reconstruction error from
+ INT4 to INT8.
+4. `activation_weighted_row_mse`: weight the same marginal reconstruction
+ error by a prespecified activation statistic. Do not call this AWQ.
+5. `directional_fisher`: a calibration-only directional loss score using the
+ actual INT4-to-INT8 error difference.
+6. `hrr_h1`: immediate-read risk with the same physical row format.
+7. `hrr_h32`: the primary finite-horizon candidate in this historical plan;
+ the subsequent diagnostic rejected it.
+8. `one_row_oracle`: optional expensive single-row perturbations on a small
+ calibration subset only. It is a diagnostic ceiling, never a deployable
+ baseline.
+
+Every row-format method promotes exactly 1,976 rows and stores the identical
+4,608-byte mask. Static v0.2 is allowed its real metadata-free layout but may
+not exceed the shared total byte target.
+
+## Models and domains
+
+The intended confirmation matrix is:
+
+| Model | Code | Natural text |
+| --- | --- | --- |
+| `Qwen/Qwen3.5-0.8B-Base` | one fixed public split | one fixed public split |
+| `Qwen/Qwen3.5-2B-Base` | the same protocol | the same protocol |
+
+The official configurations currently expose the same 24-layer hybrid layout
+with 18 recurrent layers and `16 x 128 x 128` recurrent states. Testing both
+sizes is scale validation, not validation on another recurrent architecture.
+
+MBPP training examples may be used for calibration and its validation examples
+for development. The v0.2 MBPP confirmation split has already been inspected,
+so it cannot serve as untouched v0.3 confirmation. Exact code and natural-text
+confirmation datasets, revisions, example IDs, serialization, token windows,
+and content hashes must be written here before their outputs are run.
+
+## Metrics
+
+Primary:
+
+- task/document-macro excess NLL against the FP32 recurrent-state reference.
+
+Secondary:
+
+- mean and worst-10% token KL;
+- top-1 token flip rate;
+- worst-10% task/document excess-NLL CVaR;
+- packed/QDQ numerical parity;
+- payload, scale, mask, padding, transient, allocated, and reserved bytes;
+- decode tokens/s and p50/p95 single-token latency;
+- policy overlap and rank stability across calibration subsets.
+
+The task or document window is the statistical unit. Use 10,000 paired
+bootstrap resamples with seed 2339. Tokens from one sequence are not independent
+samples.
+
+## Historical sequence of work
+
+The sequence below records the pre-diagnostic plan. Experiment 003 stopped at
+the diagnostic pilot after H32 failed; the later stages were not opened.
+
+### A. Engineering validity
+
+1. Prove the analytic scorer against explicit isolated-row propagation.
+2. Prove the row-energy form matches the full-error form.
+3. Prove mixed packing matches explicit per-row QDQ.
+4. Prove the exact byte decomposition above.
+5. Prove lossless packed beam reorder and cache integration on tiny Qwen
+ configurations.
+
+### B. Diagnostic pilot
+
+Run a small, explicitly non-confirmatory 0.8B trace to catch normalization,
+state-timing, policy-mask, and performance defects. Pilot outputs may change the
+implementation but cannot be described as generalization evidence.
+
+### C. Freeze
+
+Before development, record model revisions, dataset revisions and IDs, token
+manifests, the complete method matrix, horizon, averaging, seeds, byte
+accounting, numerical tolerances, evaluator commit, and environment.
+
+### D. Development gate
+
+The plan would have run every method on the complete frozen development
+partitions and proceeded only if the primary candidate:
+
+- uses exactly 2,564,096 resident recurrent-state bytes;
+- agrees with explicit QDQ to absolute tolerance `1e-6`;
+- reduces macro excess NLL by at least 20% versus every equal-byte comparator;
+- has a paired 95% bootstrap interval above zero against the strongest
+ comparator;
+- does not regress worst-10% excess-NLL CVaR or top-1 flips beyond frozen
+ margins; and
+- has a positive effect in every model-by-domain development cell.
+
+Any failed gate is a publishable negative result. Changing the selector,
+horizon, dataset, or threshold creates a new experiment version.
+
+### E. Untouched confirmation
+
+Run the frozen matrix once on the untouched confirmation partitions. No partial
+preview, row sweep, prompt change, or favorable-subset filtering is allowed.
+
+## Claim ladder
+
+No claim rung in this historical plan was earned.
+
+Before development passes:
+
+> RecurQuant is testing an exact-byte row-level INT4/INT8 Gated DeltaNet cache
+> and a quantizer-aware finite-horizon allocator.
+
+After all frozen confirmation gates pass:
+
+> On the two named Qwen3.5 checkpoints and two named domains, HRR reduced excess
+> NLL by X% over the strongest equal-byte baseline at 2,564,096 resident
+> recurrent-state bytes.
+
+Passing this local protocol would support a narrow research contribution, not
+the word “breakthrough.” That stronger description additionally requires a
+fused packed kernel, measured memory and speed improvements on at least two GPU
+classes, longer-context downstream tasks, another Gated DeltaNet-family model,
+and preferably independent replication.
+
+## Closest-work boundary
+
+The broad ingredients are not new:
+
+- [WriteSAE](https://arxiv.org/abs/2605.12770) analyzes how Gated DeltaNet state
+ interventions propagate to future reads and logits.
+- [Q-Mamba](https://aclanthology.org/2025.findings-acl.551/) quantizes recurrent
+ Mamba state caches to low precision.
+- [TQS-PTQ](https://arxiv.org/abs/2606.13300) uses finite-horizon trajectory
+ sensitivity for quantization.
+- [RateQuant](https://arxiv.org/abs/2605.06675) performs quantizer-aware
+ exact-budget mixed-precision cache allocation.
+- [MixKVQ](https://arxiv.org/abs/2512.19206) combines quantization difficulty
+ with future-query relevance for mixed-precision KV caches.
+
+The research question is whether their still-uncovered intersection—actual
+INT4-to-INT8 marginal error, analytic Gated DeltaNet transitions, exact-byte
+row allocation, and physical recurrent-cache packing—produces a repeatable
+benefit. A literature search cannot establish a “first” claim, so the project
+will not make one.
diff --git a/research/EXPERIMENT_004_LOSS_SENSITIVITY_PROTOCOL_DRAFT.md b/research/EXPERIMENT_004_LOSS_SENSITIVITY_PROTOCOL_DRAFT.md
new file mode 100644
index 0000000..1991987
--- /dev/null
+++ b/research/EXPERIMENT_004_LOSS_SENSITIVITY_PROTOCOL_DRAFT.md
@@ -0,0 +1,443 @@
+# Experiment 004: loss-sensitive row allocation
+
+> **Status: working protocol draft - not frozen.**
+>
+> This document defines the next falsifiable RecurQuant experiment. It reports
+> no positive result and supports no novelty, improvement, or breakthrough
+> claim. Formulas, data manifests, thresholds, and implementation commits must
+> be frozen before their corresponding evaluation stage begins.
+
+Date opened: 2026-07-22
+
+## Research question
+
+At one exact resident recurrent-state byte budget, can a static row-level
+INT4/INT8 policy selected by downstream loss sensitivity preserve the outputs
+of Qwen3.5 Gated DeltaNet layers better than H1 read risk, row reconstruction
+MSE, the v0.2 static policy, and prespecified random policies?
+
+The primary candidate measures the signed first-order loss change along the
+actual INT4-to-INT8 promotion direction on a cache that has already followed a
+repeated-INT4-QDQ trajectory. A model-Fisher risk difference is the label-free
+secondary candidate. Both are ranking approximations. Neither is treated as a
+result until it predicts physical row interventions and then passes untouched
+confirmation.
+
+## Why the experiment changed
+
+Experiment 003 rejected the longer-horizon HRR candidate in its same-data
+diagnostic. H32 was worse than H1 even though the two policies overlapped
+strongly. One untested hypothesis is a structural mismatch: HRR propagated one
+error through a frozen full-precision trajectory, while the real cache stores
+a newly quantized recurrent state after prefill and after every update. The
+existing artifacts do not isolate this cause.
+
+I will not retrofit that failure into evidence for the new method. Experiment
+004 starts a new hypothesis and tests it against direct physical
+interventions. If loss sensitivity does not predict those interventions, the
+experiment stops before a large confirmation run.
+
+## Existing exploratory artifacts
+
+The local `loss-sensitivity-diagnostic-8task.json` selector artifact and
+`loss-sensitivity-quality-diagnostic-8task.json` quality artifact were created
+before the full Stage A gate below was completed. They are exploratory
+engineering diagnostics at rung 0 only: they may expose implementation failures,
+but they do not satisfy Stage A, freeze a ranked policy, open Stage B or held-out
+evaluation, or support a positive result. Any protocol-gated ranking must be
+regenerated only after Stage A passes from a clean committed implementation.
+
+## Runtime and notation contract
+
+For recurrent layer `l`, head `h`, physical state row `r`, and storage boundary
+`t`, let `u^4_(t,r)` be the row immediately before storage on the trajectory
+generated with every recurrent-state row stored as INT4 after every update.
+The superscript records the trajectory, not the precision of this transient
+pre-storage value.
+
+Let `Q4` and `Q8` be the exact RecurQuant QDQ maps used by the packed
+evaluator, including grouping, rounding, clipping, stored FP16 scale
+conversion, padding, and dequantization.
+Define
+
+```text
+s^4_(t,r) = Q4(u^4_(t,r))
+delta_(t,r) = Q8(u^4_(t,r)) - Q4(u^4_(t,r))
+e4_(t,r) = Q4(u^4_(t,r)) - u^4_(t,r)
+e8_(t,r) = Q8(u^4_(t,r)) - u^4_(t,r)
+```
+
+`delta` is the actual local promotion direction. It must not be replaced by a
+weight norm, activation magnitude, gate mean, or an error measured on a
+full-precision cache. Calibration uses the same recurrent-state timing and
+quantizer implementation as packed evaluation. The cache is quantized after
+prefill and after every recurrent update.
+
+The deployed policy is static: one precision bit per physical row, reused at
+every storage boundary. It is not allowed to inspect confirmation targets or
+choose precision per prompt.
+
+## Primary candidate: signed Taylor promotion gain
+
+For a teacher-forced calibration sequence, let `L_next` be the target negative
+log-likelihood for the next token after a storage boundary. Evaluate its
+gradient at the real repeated-INT4 trajectory:
+
+```text
+g_(t,r) = d L_next / d s^4_(t,r)
+```
+
+The first-order predicted loss reduction from promoting row `r` is
+
+```text
+T_r = E_task [ (1 / |T_task|) sum_t - ]
+```
+
+A positive value predicts that the INT8 move lowers loss; a negative value
+predicts harm. I will retain the sign. I will not square the directional
+derivative, take its absolute value, or clamp negative coordinates merely to
+make rankings look stable.
+
+The expectation first averages scored storage boundaries within a task or
+document and then gives tasks/documents equal weight. A multi-domain policy
+also gives each frozen domain equal weight. This prevents long examples or one
+domain from determining the policy by token count alone.
+
+This is deliberately an immediate-loss score: one reverse pass scores every
+row, but it does not pretend to differentiate a full future suffix through
+hard repeated quantization. A truncated-suffix straight-through estimator is
+a separate possible method and may not silently replace this candidate after
+results are visible. The primary score still ignores higher-order curvature,
+changes in later quantization bins, future effects beyond the next read, and
+interactions among many simultaneous row promotions. The full physical oracle
+and equal-byte evaluation are therefore mandatory rather than optional
+validation.
+
+## Label-free secondary: row-block model-Fisher risk difference
+
+The secondary candidate uses model-sampled pseudo-labels instead of dataset
+targets. At each calibration window, sample `M` pseudo-label paths from the
+model distribution at the chosen local expansion point. For sample `m`, let
+`h_m` be the gradient of its negative log-probability with respect to the
+flattened time-by-value block for physical row `r`. Using the corresponding
+flattened INT4 and INT8 error blocks, define
+
+```text
+F_r = (1 / (2M)) sum_m [ (h_m^T e4_r)^2 - (h_m^T e8_r)^2 ]
+```
+
+The two squared terms are evaluated separately before subtraction. The method
+must not use `(h^T (e4 - e8))^2`, because that is the local Fisher sensitivity
+of the move between endpoints, not the predicted reduction in risk relative
+to the unquantized row. It must not use
+`sum_i h_i^2 max(e4_i^2 - e8_i^2, 0)`, because coordinate-wise clipping changes
+the diagonal-Fisher objective.
+
+Pseudo-labels, RNG seeds, sample count `M`, expansion-point construction, and
+Monte Carlo error bars will be frozen. This score is only "label-free" in the
+sense that it does not consume benchmark targets; it still depends on the
+model distribution and calibration inputs. The empirical Fisher is not a
+generic Hessian substitute, so this candidate remains secondary unless local
+KL checks and physical interventions validate it.
+
+## Comparators and controls
+
+All row-format selectors receive the same promotion count and store the same
+precision mask.
+
+1. `taylor_signed_next`: the primary score `T_r`.
+2. `model_fisher`: the secondary score `F_r`.
+3. `hrr_h1`: the Experiment 003 immediate-read marginal risk score, recomputed
+ on the same calibration manifest.
+4. `row_mse`: the task-macro mean of
+ `||e4_(t,r)||_2^2 - ||e8_(t,r)||_2^2`, with negative values retained.
+5. `v02_layer0_static`: layer 0 in INT8 and the remaining recurrent layers in
+ INT4, using its real mask-free layout.
+6. `random_rows`: at least 20 row policies generated from prespecified seeds.
+ The full distribution is reported; the most favorable seed is not promoted
+ to the named baseline after results are visible.
+7. `uniform_int4`: a lower-storage control, not an equal-byte competitor.
+8. `fp32_state`: the quality reference, not a compressed competitor.
+
+The strongest equal-byte comparator is whichever of H1, row MSE, static v0.2,
+and the prespecified random distribution has the lowest frozen-development
+macro excess NLL. I will not compare only against the easiest baseline.
+
+## Stage A: analytic and finite-difference sanity
+
+Before ranking policies, the implementation must pass four checks on tiny
+models and then on a stratified sample of real Qwen3.5 storage events.
+
+1. **Trajectory parity.** Captured `u^4`, `Q4(u^4)`, scales, codes, and logits
+ must match the packed repeated-INT4 path within frozen numerical tolerances.
+2. **Directional derivative.** At one selected row and storage boundary,
+ inject `alpha * delta` after INT4 QDQ and evaluate the same next-token loss.
+ Compare `` with the central difference
+ `(L(+epsilon) - L(-epsilon)) / (2 epsilon)` for
+ `epsilon in {1/4, 1/8, 1/16, 1/32}`.
+3. **Convergence.** For derivatives whose finite-difference magnitude exceeds
+ the frozen near-zero floor, require at least 95% sign agreement, median
+ relative error at most 10%, and a decreasing-error trend over the final
+ three epsilon values. Near-zero cases use an absolute error bound chosen
+ from FP32 repeat noise before the test is opened.
+4. **Fisher/KL check.** On the same strata, compare the Monte Carlo model-Fisher
+ quadratic with the measured local KL at shrinking error scales. Report
+ correlation, calibration slope, and Monte Carlo confidence intervals. A
+ Fisher score that does not approach the local KL as scale shrinks is an
+ implementation or approximation failure, not evidence against Taylor
+ sensitivity.
+
+The strata cover every recurrent layer, multiple heads, early/middle/late
+tokens, both domains, score signs, and quantization-error deciles. Any failed
+check blocks the physical-oracle stage. Thresholds above are provisional until
+the development freeze; changing them after opening test outputs creates a new
+experiment version.
+
+## Stage B: stratified physical row oracle
+
+The oracle measures what each scalable score is supposed to predict. It uses a
+held-out oracle partition that is not used to compute scores.
+
+For each sampled physical row `r`, run two complete packed trajectories:
+
+```text
+baseline: all recurrent-state rows stored as INT4
+oracle r: row r stored as INT8 at every boundary; all other rows stored as INT4
+O_r = L_baseline - L_oracle_r
+```
+
+This is an actual recurrent intervention, not a QDQ replay of a completed FP32
+trace. It includes altered future states, later quantization, and the exact
+row policy machinery. One-row trials all have the same incremental payload;
+their purpose is causal ranking, not the final equal-byte claim.
+
+Rows are sampled before oracle outputs are opened. The sampling frame is
+balanced across recurrent layer, head, calibration-score decile, MSE decile,
+and sign, with a prespecified random seed. At least 384 unique rows per
+model-by-domain development cell are evaluated unless a blinded power analysis
+freezes a larger count. All sampled rows are retained, including negative and
+catastrophic interventions.
+
+For every candidate and comparator, report:
+
+- Spearman rho and Kendall tau-b against `O_r`, with row-stratified bootstrap
+ intervals;
+- oracle gain in each predicted score decile;
+- precision and regret for the top 10% of sampled rows;
+- results by layer, head, token-position stratum, and score sign; and
+- the frequency with which an allegedly beneficial promotion has `O_r < 0`.
+
+The primary candidate passes this gate only if its rank association has a
+95% interval strictly above zero in every model-by-domain cell, its macro
+top-decile oracle gain is at least 20% higher than the strongest of H1 and row
+MSE, and no cell has negative top-decile mean gain. These are diagnostic gates,
+not confirmation claims. If Taylor fails, I will publish the failure and stop;
+I will not select a favorable layer subset after inspecting the oracle.
+
+## Stage C: split-half policy stability
+
+Calibration task/document IDs are divided into fixed halves A and B within
+each domain. I will build one balanced two-domain policy from A and another
+from B for each model, without using oracle or quality-evaluation targets.
+
+Before the development quality run, require in every model cell:
+
+- all-row Spearman correlation of at least 0.70 between A and B scores;
+- Jaccard overlap of at least 0.50 between the promoted row sets; and
+- no more than 10 percentage points of promotion share moving into or out of
+ any recurrent layer.
+
+The final development policy uses the complete calibration partition only
+after these thresholds pass. Failure means the allocator is too dependent on
+the calibration sample for a static public policy. Averaging unstable halves
+after seeing the failure does not count as a pass.
+
+## Exact physical byte budget
+
+For the currently targeted batch-one Qwen3.5 recurrent-state layout, each
+physical row contains 128 values. INT4 stores 64 payload bytes per row, INT8
+stores 128, and one promotion therefore costs 64 payload bytes. There are
+36,864 selectable rows in the 18-layer, 16-head layout.
+
+| Component | Row-format policy | Static v0.2 |
+| --- | ---: | ---: |
+| All-INT4 payload | 2,359,296 | 2,359,296 |
+| 36,864 FP16 scales | 73,728 | 73,728 |
+| Precision mask | 4,608 | 0 |
+| INT8 promotion payload | 126,464 | 131,072 |
+| Promoted rows | 1,976 | 2,048 |
+| **Resident recurrent-state total** | **2,564,096** | **2,564,096** |
+
+Every row selector promotes exactly 1,976 rows. Static v0.2 keeps its genuine
+metadata advantage and therefore promotes 72 more rows at the same total.
+Uniform INT4 occupies 2,433,024 bytes; FP32 recurrent states occupy 18,874,368
+bytes for this layout.
+
+The evaluator will derive these counts from live tensor shapes and storage,
+not accept the table as proof. Payload, stored scales, mask, indices, alignment,
+padding, prefix tables, allocator-owned persistent tensors, transient bytes,
+allocated bytes, and reserved bytes are recorded separately. Any new kernel
+metadata is charged to the method that requires it. A model revision with a
+different state layout gets a newly derived equal-byte budget before freeze.
+Resident-state savings do not imply peak-memory or speed gains; those require
+their own measured results.
+
+## Data separation and freeze sequence
+
+The confirmation matrix contains two base checkpoints and two domains:
+
+| Checkpoint | Code | Natural text |
+| --- | --- | --- |
+| `Qwen/Qwen3.5-0.8B-Base` | fixed public partition | fixed public partition |
+| `Qwen/Qwen3.5-2B-Base` | fixed public partition | fixed public partition |
+
+These two checkpoints test scale, not architectural transfer. The separate
+architecture gate for any later breakthrough-level claim is
+[Gated DeltaNet-2](https://arxiv.org/abs/2605.22791), whose erase and write
+gates are channel-wise and decoupled. Its
+[official implementation](https://github.com/NVlabs/GatedDeltaNet-2) exposes
+the same `128 x 128` recurrent-state geometry but is not a drop-in Transformers
+cache, and its source has different license terms. A third-party checkpoint
+must be pinned, audited, and covered by a separate integration protocol before
+it can count as evidence. Tiny random models or a port that merely runs do not
+count as cross-architecture quality validation.
+
+The current
+[370M community checkpoint](https://huggingface.co/LLM-OS-Models/gdn2-370m-fineweb-edu-100b)
+does not satisfy that gate: its pinned Hub revision contains raw `.pth` weights
+but not the exact runnable model wrapper, tokenizer, config, or reference
+logits, and the linked training-code repository is unavailable. The official
+NVIDIA source uses noncommercial license terms and its released GPT wrapper
+does not currently thread the GDN-2 cache. GDN-2 is therefore deferred from
+Experiment 004 rather than treated as an easy extra result.
+
+Exact dataset names, immutable revisions, example IDs, serialization,
+tokenization, context windows, content hashes, and exclusion rules must be
+written into the freeze record before any corresponding outputs are opened.
+Previously inspected RecurQuant confirmation examples are ineligible for an
+"untouched" claim.
+
+The sequence is:
+
+1. **Engineering sandbox:** unit tests, tiny-model checks, profiler work, and
+ explicitly non-evidentiary debugging prompts.
+2. **Calibration:** compute scores from fixed calibration partitions. Target
+ labels are allowed only for `taylor_signed_next` and are never reused as held-out
+ evidence.
+3. **Oracle development:** open only the prespecified stratified one-row trials.
+4. **Development freeze:** record formulas, normalization, data manifests,
+ seeds, pseudo-label count, row sample, byte formulas, metrics, thresholds,
+ implementation commit, dependencies, and environment before the full
+ development quality matrix runs.
+5. **Development run:** execute every comparator. Proceed only if all gates
+ pass without changing the candidate.
+6. **Confirmation freeze:** lock the selected formula, one policy per model,
+ packed format, evaluator, statistical plan, and claim language. Hash the
+ complete record.
+7. **Untouched confirmation:** run the complete 2-by-2 matrix once. No partial
+ previews, policy sweeps, prompt edits, seed replacement, or favorable-subset
+ filtering.
+8. **Independent replication:** release the frozen artifacts and require a
+ reproduction outside the original implementation/evaluation run before any
+ breakthrough wording is considered.
+
+Any change to the score, row budget, model, dataset, seed set, threshold, or
+primary metric after its freeze opens a new numbered experiment. Negative
+results remain in the repository.
+
+## Full-policy development and confirmation gates
+
+Primary metric: task/document-macro excess NLL relative to the FP32-state
+reference. The statistical unit is the task or document, not the token. Use
+10,000 paired bootstrap resamples with frozen seed 2339.
+
+Secondary metrics are mean token KL, worst-10% token KL, top-1 agreement,
+worst-10% task/document excess-NLL CVaR, free-generation task metrics,
+long-context retrieval when applicable, exact bytes, decode throughput, and
+p50/p95 single-token latency.
+
+At both development and untouched confirmation, `taylor_signed_next` must:
+
+1. occupy exactly 2,564,096 resident recurrent-state bytes for the frozen
+ layout and pass packed-versus-explicit-QDQ parity;
+2. reduce macro excess NLL by at least 20% relative to the strongest equal-byte
+ comparator;
+3. have a paired 95% bootstrap interval strictly above zero for that reduction;
+4. improve excess NLL in every model-by-domain cell;
+5. remain non-inferior on frozen margins for CVaR, top-1 agreement, retrieval,
+ and free generation; and
+6. disclose throughput, latency, peak allocated memory, and peak reserved
+ memory even when they regress.
+
+A development pass permits the confirmation run, not a public performance
+claim. A confirmation failure is the result. It is not repaired by redefining
+the primary metric or removing the failing cell.
+
+## Claim ladder
+
+Each rung permits only the wording shown below.
+
+| Rung | Required evidence | Permitted claim |
+| --- | --- | --- |
+| 0. Hypothesis | This working draft | "RecurQuant is testing signed downstream-loss sensitivity for recurrent-state row allocation." |
+| 1. Implementation | Trajectory parity and finite-difference checks pass | "The implemented score matches local directional derivatives on the tested repeated-QDQ path." |
+| 2. Oracle validity | The frozen stratified physical-row gate passes | "The score predicts held-out single-row promotion effects on the named development sample." |
+| 3. Held-out result | Split-half, development, and untouched 2-by-2 confirmation gates pass | "At the stated byte budget, the frozen policy reduced excess NLL by X% over the strongest named comparator on the named checkpoints and domains." |
+| 4. Research contribution | Rung 3, closest-method reproduction, released code/artifacts, and measured systems behavior | "RecurQuant provides a validated loss-sensitive mixed-precision recurrent-state allocation method within the evaluated scope." |
+| 5. Breakthrough consideration | Independent replication, additional recurrent architecture and hardware, meaningful advantage over closest current methods, and no hidden quality or systems regression | Only then may "breakthrough" be evaluated as a community claim; it is never inferred from this project's own benchmark alone. |
+
+RecurQuant is currently at rung 0 for Experiment 004. Passing one checkpoint,
+one domain, a same-data diagnostic, or a correlation plot cannot skip rungs.
+
+## Prior-work and novelty boundary
+
+The broad ingredients are established. [SqueezeLLM](https://arxiv.org/abs/2306.07629)
+uses sensitivity information in post-training LLM quantization;
+[HAWQ-V2](https://arxiv.org/abs/1911.03852) and
+[HAWQ-V3](https://proceedings.mlr.press/v139/yao21a.html) develop
+Hessian-aware mixed precision and hardware-aware integer inference; and
+[GuidedQuant](https://proceedings.mlr.press/v267/kim25d.html) studies
+gradient-guided low-bit quantization. The limitations of treating empirical
+Fisher as a general curvature proxy are analyzed directly in
+[On the Relationship Between the Fisher Information and the Hessian](https://arxiv.org/abs/1905.12558).
+
+The recurrent setting is also active prior art. [Gated DeltaNet](https://proceedings.iclr.cc/paper_files/paper/2025/hash/4904fad153f6434a7bcf04465d4be2cc-Abstract-Conference.html)
+defines the gated delta recurrence used by this model family, and the
+[official Transformers Qwen3.5 implementation](https://github.com/huggingface/transformers/blob/main/src/transformers/models/qwen3_5/modeling_qwen3_5.py)
+is the executable architecture reference. [Q-Mamba](https://aclanthology.org/2025.findings-acl.551/)
+quantizes recurrent state caches. [TQS-PTQ](https://arxiv.org/abs/2606.13300),
+[RateQuant](https://arxiv.org/abs/2605.06675), and
+[Block-GTQ](https://arxiv.org/abs/2606.24033) cover adjacent trajectory,
+rate-allocation, and blockwise mixed-precision ideas.
+
+[Gated DeltaNet-2](https://arxiv.org/abs/2605.22791) is directly relevant to
+the generalization boundary: it replaces the tied scalar erase/write gate with
+separate channel-wise gates while retaining a fixed recurrent matrix state.
+It is a strong external architecture test, not evidence for the current Qwen
+implementation. RecurQuant will not claim architectural generality until a
+pinned pretrained GDN-2 checkpoint passes an independently frozen protocol.
+
+Therefore, signed Taylor scoring, Fisher scoring, mixed bit widths, and
+recurrent-cache quantization are not individually novel. The open question is
+narrower: whether measuring the real INT4-to-INT8 promotion direction on a
+repeatedly requantized Gated DeltaNet path yields a stable, exact-byte row
+allocator that survives physical interventions and untouched evaluation. A
+positive answer could support a scoped contribution. It would not establish a
+"first" or a breakthrough without the higher claim rungs.
+
+## Required public artifacts
+
+If the protocol advances, I will release:
+
+- the frozen protocol and hashes before confirmation;
+- source code for trace capture, both scores, all comparators, mixed packing,
+ and physical interventions;
+- immutable model and dataset revisions plus exact example manifests;
+- per-task metrics, all random seeds, bootstrap inputs, and negative rows;
+- exact byte ledgers and memory/latency profiler outputs;
+- environment and hardware records; and
+- raw artifacts sufficient to recompute every table and graph.
+
+The README may visualize a result only after its rung is earned. A graph from
+the calibration set must be labeled calibration; an oracle plot must be
+labeled diagnostic; and neither may be presented as held-out performance.
diff --git a/research/EXPERIMENT_005_ADAPTIVE_ROW_PACKING_PROTOCOL_DRAFT.md b/research/EXPERIMENT_005_ADAPTIVE_ROW_PACKING_PROTOCOL_DRAFT.md
new file mode 100644
index 0000000..5891caa
--- /dev/null
+++ b/research/EXPERIMENT_005_ADAPTIVE_ROW_PACKING_PROTOCOL_DRAFT.md
@@ -0,0 +1,338 @@
+# Experiment 005: quota-calibrated adaptive row packing
+
+> **Status: pre-holdout protocol freeze; implementation complete; holdout not
+> opened.**
+>
+> This experiment is a new hypothesis after Experiment 004's signed-Taylor
+> policy failed its same-calibration diagnostic. It makes no improvement,
+> novelty, speed, or breakthrough claim. The selector artifacts, implementation
+> commit, and source hashes must be frozen before the ranked calibration
+> holdout is opened.
+
+Date opened: 2026-07-23
+
+## Research question
+
+At the same exact resident recurrent-state byte budget, does separating the
+allocation problem into:
+
+1. an offline, target-directional Fisher estimate of **how many** INT8 rows
+ each recurrent layer receives; and
+2. a runtime reconstruction-error decision about **which** rows receive those
+ slots at each storage boundary
+
+preserve Qwen3.5 Gated DeltaNet outputs better than static row identities,
+H1 read-risk allocation, row MSE, the v0.2 layer-0 policy, and random rows?
+
+The method is called **quota-calibrated adaptive row packing** in this protocol.
+That is a descriptive name, not a novelty claim.
+
+## Why this is a separate experiment
+
+The first Experiment 004 pilot ranked rows by the signed local Taylor benefit
+
+```text
+-gradient dot (Q8(raw) - Q4(raw)).
+```
+
+On the eight inspected calibration tasks, that complete 1,976-row policy was
+worse than H1 and the properly formed squared endpoint-risk diagnostics. The
+sign formula itself remains subject to an independent real-storage-boundary
+finite-difference check, but a correct one-row derivative would not rescue a
+poor simultaneous static policy. Experiment 005 therefore does not relabel the
+failed Taylor policy or silently make another Experiment 004 score primary.
+
+The new hypothesis addresses the observed prompt dependence directly: layer
+budgets remain frozen, while row identities may respond to the actual state
+being stored.
+
+## Frozen candidate
+
+### Offline layer quotas
+
+Calibration follows the repeated-INT4 quantize/dequantize trajectory. For row
+`r` at a scored storage boundary, with target-NLL gradient `g` and aligned
+endpoint errors
+
+```text
+e4 = Q4(raw) - raw
+e8 = Q8(raw) - raw,
+```
+
+the row score is
+
+```text
+D_r = task_macro_mean[(g dot e4)^2 - (g dot e8)^2].
+```
+
+Negative values are retained. Globally ranking `D_r` under the exact physical
+budget produces a static plan. Experiment 005 discards that plan's row
+identities after using only its per-layer promotion counts `q_l`.
+
+This target-gradient score is a supervised calibration statistic. It is not
+the label-free model Fisher and must not be described as one.
+
+### Runtime row choice
+
+For every raw recurrent-state write at layer `l`, compute each physical row's
+aligned reconstruction-error reduction:
+
+```text
+A_(t,l,r) = mean((Q4(raw_(t,l,r)) - raw_(t,l,r))^2)
+ - mean((Q8(raw_(t,l,r)) - raw_(t,l,r))^2).
+```
+
+Promote exactly the top `q_l` rows to INT8 for that write. Ties are resolved by
+stable flattened `[head, key-row]` order. The selection is batch-one only in
+this experiment. It cannot inspect the next token, target label, logits, or a
+future query at inference time.
+
+The primary method name in artifacts is:
+
+```text
+adaptive_mse_target_directional_fisher_quota
+```
+
+## Required ablations and controls
+
+Every adaptive and selector-plan static row-format policy has the same 1,976
+promotions, mask format, and exact resident bytes. The v0.2 control reaches the
+same resident-byte total with 2,048 promotions because it has no precision
+mask. Uniform INT4 is a lower-byte control. These differences are part of the
+frozen comparison and may not be hidden by calling every policy equal-format.
+
+1. `adaptive_mse_target_directional_fisher_quota` — frozen primary.
+2. `adaptive_mse_hrr_h1_quota` — identical runtime selector with H1-derived
+ per-layer quotas; isolates whether the offline quota signal matters.
+3. `target_directional_fisher_difference_int4` — static row identities from
+ the same Fisher score; isolates whether per-update adaptation matters.
+4. `hrr_h1` — strongest pre-existing static diagnostic comparator.
+5. `hrr_h32` — retained negative Experiment 003 hypothesis.
+6. `row_mse` — static task-macro reconstruction-error allocation.
+7. `v02_layer0_static` — layer 0 INT8, remaining recurrent layers INT4, with
+ its genuine mask-free metadata advantage.
+8. `random_rows_s1101` — prespecified random static policy.
+9. `uniform_int4` — lower-byte control, not an equal-byte competitor.
+
+The signed-Taylor and other Experiment 004 diagnostic policies remain in the
+artifact for transparency but are not eligible to replace the frozen primary
+after holdout results are visible.
+
+## Exact storage contract
+
+For Qwen3.5-0.8B-Base at batch one:
+
+| Component | Adaptive/static row format | Static v0.2 |
+| --- | ---: | ---: |
+| All-INT4 payload | 2,359,296 B | 2,359,296 B |
+| FP16 scales | 73,728 B | 73,728 B |
+| Precision mask | 4,608 B | 0 B |
+| INT8 promotion payload | 126,464 B | 131,072 B |
+| Promoted rows | 1,976 | 2,048 |
+| **Resident total** | **2,564,096 B** | **2,564,096 B** |
+
+Adaptive row identities change without changing the number or size of packed
+INT4 payloads, INT8 payloads, FP16 scales, or mask bytes. Exact storage is
+checked from live packed tensors after every evaluated task. This is not a
+claim about model weights, full KV memory, temporary workspace, CUDA allocator
+peaks, throughput, or latency.
+
+## Frozen local derivative validator
+
+Before the heldout-calibration window is opened, the independent storage-boundary
+diagnostic must run in FP32 and return `passed: true`. It uses one pinned
+calibration task and target transition, four rows chosen only from fixed geometry,
+physical Q4 and Q8 row endpoints, and the epsilon grid
+`{1/4, 1/8, 1/16, 1/32}`. At the Q4 endpoint it checks the local target-NLL
+directional derivative
+
+```text
+dL/dalpha at alpha=0 = g dot (Q8(raw) - Q4(raw))
+```
+
+against central differences. Equivalently, its local predicted benefit is the
+negative of that derivative. The validator checks storage timing, endpoint
+construction, derivative sign, and local finite-difference consistency. It does
+**not** validate the algebra or implementation of the squared quota score:
+
+```text
+(g dot e4)^2 - (g dot e8)^2
+```
+
+The squared-score implementation is covered by selector unit tests; its arrays
+and derived plans are authenticated by artifact hashes. Whether the resulting
+layer quotas improve quality is the separate question tested by the frozen
+quality diagnostic.
+
+The derivative artifact passes only if every condition below holds:
+
+1. the model and recurrent-state calculation use FP32;
+2. the maximum repeated-`alpha=0` loss difference over all rows and epsilons is
+ at most `1e-7`;
+3. a row is informative when the absolute autograd derivative is strictly
+ greater than `1e-8`, and at least three of the four rows are informative;
+4. central-difference sign agreement over all informative row/epsilon checks is
+ at least `0.95`;
+5. the median absolute relative derivative error over those informative checks
+ is at most `0.10`;
+6. at least `0.75` of informative rows converge, where convergence means the
+ absolute error at epsilon `1/32` is no greater than at epsilon `1/8`; and
+7. for every near-zero row, the absolute central-versus-autograd derivative
+ error is at most `2e-7` at every epsilon.
+
+Failure is recorded and keeps the holdout closed. These thresholds, row strata,
+epsilon grid, transition, and FP32 requirement may not be changed after seeing
+the diagnostic output and called the same validation gate.
+
+## Freeze and data separation
+
+The first ranked eight rows of the pinned MBPP calibration population are the
+selector partition. They were already inspected while developing Experiments
+003 and 004 and can provide no held-out claim.
+
+The first Experiment 005 generalization check is fixed before opening it:
+
+```text
+phase: calibration
+ranked offset: 8
+task count: 8
+window: [8, 16)
+```
+
+Experiment 005 heldout mode is fail-closed: it requires both frozen selector
+artifacts, `--calibration-offset 8`, and `--limit 8`. Any other offset or task
+count is not this protocol and must be refused rather than emitted under the
+Experiment 005 heldout artifact kind.
+
+Before tokenization or model loading, the evaluator must authenticate each
+selector artifact against the first eight rows of the pinned ranked MBPP
+calibration population. Ordered task IDs, canonical row-content hashes,
+dataset/config/revision, source split, selection namespace, and formatter
+version must match the pinned selector prefix. It must then prove that window
+`[8, 16)` is disjoint from the union of all authenticated selector-artifact task
+IDs. Self-consistency between two selector artifacts is not sufficient.
+
+The evaluator records the heldout window's canonical row-content manifest,
+formatter version, token counts, model and dataset revisions, implementation
+commit, command, packages, and hardware. It records an explicit map of relevant
+implementation source paths and hashes both before and after the run, requires
+those maps to be identical, and requires the same clean Git commit at both
+boundaries. A dirty or changing implementation cannot produce a passing
+heldout artifact. This remains a **heldout-calibration diagnostic**, not
+development or confirmation evidence.
+
+The holdout may be opened only after:
+
+- the selector scripts and adaptive evaluator are committed;
+- new selector artifacts are generated from that committed implementation;
+- their canonical hashes and quantizer contracts verify;
+- both selector manifests authenticate against the pinned first-eight-row
+ prefix;
+- the real storage-boundary derivative diagnostic satisfies every numeric local
+ gate above and records `passed: true`;
+- the evaluator starts and ends on the same clean implementation commit with
+ unchanged source hashes; and
+- this candidate, method list, offset, task count, primary metric, and gates
+ are committed.
+
+## Metrics and gates
+
+Primary metric: task-macro excess next-token NLL relative to an FP32 recurrent
+state, scored only on code transitions that occur after a quantized recurrent
+state has been stored. The prompt-to-first-code-token prediction is excluded
+because the cache policy cannot affect it. Use 10,000 paired bootstrap
+resamples with seed 2339.
+
+The equal-byte static comparator set is frozen as `hrr_h1`, `hrr_h32`,
+`row_mse`, `random_rows_s1101`, `v02_layer0_static`,
+`signed_taylor_next_int4`, `target_directional_fisher_difference_int4`,
+`target_diagonal_fisher_difference_int4`, and
+`delta_direction_magnitude_int4`. No member may be excluded after results are
+visible. The strongest comparator is selected deterministically as the member
+with the lowest macro excess NLL on this frozen window. Uniform INT4 is excluded
+because it uses fewer resident bytes; `adaptive_mse_hrr_h1_quota` is adaptive
+and is tested separately. The primary passes this small heldout-calibration gate
+only if all conditions hold:
+
+1. resident recurrent-state bytes equal 2,564,096 exactly on every task;
+2. macro excess NLL is lower than every equal-byte static comparator;
+3. the paired 95% interval versus the strongest equal-byte static comparator
+ is strictly above zero when expressed as comparator minus primary;
+4. relative excess-NLL reduction versus that comparator is at least 20%;
+5. the paired 95% interval versus `adaptive_mse_hrr_h1_quota` is also strictly
+ above zero when expressed as H1-adaptive minus primary, so the supervised
+ quota signal contributes beyond adaptation alone;
+6. macro top-1 agreement is no more than `0.01` below the strongest equal-byte
+ static comparator;
+7. macro worst-token KL CVaR95 is no more than `0.10` above that comparator;
+8. on every task, the primary's excess NLL is at most `1.0` worse than that
+ comparator's excess NLL;
+9. no metric or model output is non-finite; and
+10. all code, artifact, manifest, and source hashes verify, the repository is
+ clean, and the start/end implementation records match.
+
+The evaluator must record each condition, its threshold, observed value, and
+pass/fail result, plus an overall conjunction. There is no discretionary
+interpretation of “materially worse” or “catastrophic” after the results are
+visible. If the strongest comparator has non-positive excess NLL so that the
+relative-reduction condition is not meaningful, condition 4 fails closed.
+
+Eight tasks are too few for a research claim. Passing advances the method to a
+larger calibration split, a separately frozen development domain, free
+generation, long-context retrieval, multiple rounding seeds, and a second
+checkpoint. Failing is recorded and stops this candidate without changing its
+formula after the fact.
+
+## Systems boundary
+
+The current Python prototype quantizes both candidate endpoints to score rows
+and then physically packs the chosen endpoint. It is expected to add overhead.
+No speed claim is permitted. A fused Triton/CUDA kernel is a later engineering
+gate and must benchmark p50/p95 decode latency, throughput, peak allocated and
+reserved memory, and kernel workspace against static packing.
+
+Stochastic rounding is also a separate experiment. It may not be introduced
+after viewing this nearest-rounding holdout and called the same candidate.
+
+## Prior work and novelty boundary
+
+The broad ingredients are not new:
+
+- [Q-Mamba](https://aclanthology.org/2025.findings-acl.551/) quantizes Mamba
+ state caches and introduces state/channel decoupled scaling plus reconstruction.
+- [OuroMamba](https://arxiv.org/abs/2503.10959) uses per-time-step dynamic
+ outlier-channel selection for mixed-precision Vision Mamba inference.
+- [Nemotron 3 Super](https://research.nvidia.com/labs/nemotron/files/NVIDIA-Nemotron-3-Super-Technical-Report.pdf)
+ reports recurrent cache-error accumulation and uses stochastic rounding for
+ its FP16 Mamba state cache.
+- [RateQuant](https://arxiv.org/abs/2605.06675) calibrates mixed-precision KV
+ cache allocation with rate-distortion models.
+- [TQS-PTQ](https://arxiv.org/abs/2606.13300) studies trajectory-based
+ sensitivity for quantized dynamical systems.
+
+Therefore dynamic mixed precision, state-cache quantization, calibration,
+reconstruction error, Fisher/Taylor sensitivity, and layer quotas cannot be
+claimed individually. The narrow open contribution is whether the particular
+combination of supervised recurrent-layer quotas, exact-byte physical
+INT4/INT8 matrix-row packing, and causal per-write row selection works on a
+Gated DeltaNet language-model cache. Even a positive result on this protocol
+would support only a scoped experimental contribution.
+
+## Claim ladder
+
+1. **Implementation:** exact packed bytes and deterministic adaptive masks pass
+ unit and real-model integration tests.
+2. **Local validity:** the independent local target-directional derivative
+ checks pass; this does not validate the squared quota formula or policy
+ quality.
+3. **Heldout-calibration signal:** the frozen eight-task gate above passes.
+4. **Development result:** larger code and natural-text cells, second model,
+ free generation, long context, and systems measurements pass a new freeze.
+5. **Research contribution:** closest-method reproductions and released raw
+ artifacts support a stable advantage.
+6. **Breakthrough consideration:** independent replication, another recurrent
+ architecture and hardware, and a meaningful advantage without hidden
+ systems or quality regression.
+
+Experiment 005 is currently below rung 3. The word "breakthrough" is not
+permitted in the README, release title, social post, or result figure.
diff --git a/scripts/pilot_evaluate_hrr.py b/scripts/pilot_evaluate_hrr.py
new file mode 100644
index 0000000..de47ffc
--- /dev/null
+++ b/scripts/pilot_evaluate_hrr.py
@@ -0,0 +1,1743 @@
+#!/usr/bin/env python3
+"""Evaluate frozen row-selector plans on calibration rows as a diagnostic.
+
+The script deliberately refuses development and confirmation data. Offset zero
+checks the selector-task prefix; a positive offset checks a ranked calibration
+holdout that must be disjoint from every selector artifact. Neither mode is
+confirmation evidence.
+"""
+
+from __future__ import annotations
+
+import argparse
+import hashlib
+import importlib.metadata
+import json
+import math
+import platform
+import subprocess
+import sys
+from collections.abc import Mapping, Sequence
+from dataclasses import dataclass
+from datetime import UTC, datetime
+from pathlib import Path
+from statistics import fmean
+from typing import Any
+
+import torch
+from transformers import AutoTokenizer, DynamicCache, Qwen3_5ForCausalLM
+
+from recurquant.cache import iter_recurrent_states
+from recurquant.evaluation import (
+ TokenFidelity,
+ fidelity_summary,
+ paired_bootstrap_mean_improvement,
+ token_fidelity,
+)
+from recurquant.evidence import canonical_json_bytes, verify_evidence_artifact
+from recurquant.packed_cache import (
+ AdaptiveMixedPackedRecurrentStateCache,
+ MixedPackedRecurrentStateCache,
+ PackedRecurrentStateCache,
+)
+from recurquant.public_data import (
+ MBPP_CALIBRATION_SIZE,
+ format_mbpp_example,
+ load_mbpp_rows,
+ mbpp_manifest,
+ mbpp_manifest_sha256,
+)
+from recurquant.qwen35 import (
+ create_qwen35_adaptive_exact_budget_cache,
+ create_qwen35_exact_budget_cache,
+ create_qwen35_packed_cache,
+ create_qwen35_v02_mixed_cache,
+)
+from recurquant.row_policy import ExactBudgetRowPlan, select_rows_exact_budget
+
+SEED = 2339
+RANDOM_ROW_SEED = 1101
+HRR_ARTIFACT_KIND = "recurquant_hrr_calibration_diagnostic"
+LOSS_ARTIFACT_KIND = "recurquant_loss_sensitivity_calibration_diagnostic"
+STORAGE_BOUNDARY_ARTIFACT_KIND = "recurquant_storage_boundary_taylor_diagnostic"
+LOSS_SELECTOR_PRIMARY = "signed_taylor_next_int4"
+ADAPTIVE_H1 = "adaptive_mse_hrr_h1_quota"
+ADAPTIVE_TARGET_FISHER = "adaptive_mse_target_directional_fisher_quota"
+LOSS_SCORE_NAMES = (
+ LOSS_SELECTOR_PRIMARY,
+ "target_directional_fisher_difference_int4",
+ "target_diagonal_fisher_difference_int4",
+ "delta_direction_magnitude_int4",
+)
+QUANTIZER_FIELDS = (
+ "bits",
+ "group_size",
+ "scale_bits",
+ "flatten_last_dims",
+ "rounding",
+ "seed",
+ "epsilon",
+)
+FROZEN_HOLDOUT_OFFSET = 8
+FROZEN_HOLDOUT_LIMIT = 8
+FROZEN_HRR_HORIZON = 32
+FROZEN_BOOTSTRAP_SAMPLES = 10_000
+TARGET_RESIDENT_BYTES = 2_564_096
+MIN_RELATIVE_NLL_REDUCTION = 0.20
+TOP1_DISADVANTAGE_MARGIN = 0.01
+CVAR95_DISADVANTAGE_MARGIN = 0.10
+MAX_PER_TASK_NLL_DISADVANTAGE = 1.0
+FROZEN_STATIC_COMPARATORS = (
+ "v02_layer0_static",
+ "hrr_h1",
+ "hrr_h32",
+ "row_mse",
+ "random_rows_s1101",
+ *LOSS_SCORE_NAMES,
+)
+EVALUATOR_SOURCE_FILES = (
+ "scripts/pilot_evaluate_hrr.py",
+ "src/recurquant/cache.py",
+ "src/recurquant/evaluation.py",
+ "src/recurquant/evidence.py",
+ "src/recurquant/metrics.py",
+ "src/recurquant/mixed_quantization.py",
+ "src/recurquant/packed_cache.py",
+ "src/recurquant/public_data.py",
+ "src/recurquant/quantization.py",
+ "src/recurquant/qwen35.py",
+ "src/recurquant/row_policy.py",
+)
+
+
+@dataclass(slots=True)
+class _TokenAccumulator:
+ kl: list[torch.Tensor]
+ reference_nll: list[torch.Tensor]
+ candidate_nll: list[torch.Tensor]
+ top1_agreement: list[torch.Tensor]
+
+ @classmethod
+ def empty(cls) -> _TokenAccumulator:
+ return cls([], [], [], [])
+
+ def append(self, values: TokenFidelity) -> None:
+ cpu = values.to_cpu()
+ self.kl.append(cpu.kl.reshape(-1))
+ self.reference_nll.append(cpu.reference_nll.reshape(-1))
+ self.candidate_nll.append(cpu.candidate_nll.reshape(-1))
+ self.top1_agreement.append(cpu.top1_agreement.reshape(-1))
+
+ def summary(self) -> dict[str, float | int]:
+ return fidelity_summary(
+ TokenFidelity(
+ kl=torch.cat(self.kl),
+ reference_nll=torch.cat(self.reference_nll),
+ candidate_nll=torch.cat(self.candidate_nll),
+ top1_agreement=torch.cat(self.top1_agreement),
+ )
+ )
+
+
+def parse_args() -> argparse.Namespace:
+ parser = argparse.ArgumentParser(
+ description=(
+ "Selector-prefix or heldout-calibration quality diagnostic; "
+ "never confirmation evidence."
+ )
+ )
+ parser.add_argument("--selector-artifact", type=Path, required=True)
+ parser.add_argument("--loss-selector-artifact", type=Path)
+ parser.add_argument("--storage-boundary-artifact", type=Path)
+ parser.add_argument("--output", type=Path, required=True)
+ parser.add_argument("--limit", type=int)
+ parser.add_argument(
+ "--calibration-offset",
+ type=int,
+ default=0,
+ help=(
+ "Start index in the frozen ranked calibration population. Positive offsets "
+ "must select rows disjoint from every selector artifact."
+ ),
+ )
+ parser.add_argument("--device", choices=("auto", "cpu", "cuda"), default="auto")
+ parser.add_argument("--local-files-only", action="store_true")
+ parser.add_argument("--bootstrap-samples", type=int, default=10_000)
+ return parser.parse_args()
+
+
+def sha256_bytes(value: bytes) -> str:
+ return hashlib.sha256(value).hexdigest()
+
+
+def select_device(requested: str) -> torch.device:
+ if requested == "cuda":
+ if not torch.cuda.is_available():
+ raise RuntimeError("CUDA was requested but is unavailable")
+ return torch.device("cuda")
+ if requested == "cpu":
+ return torch.device("cpu")
+ return torch.device("cuda" if torch.cuda.is_available() else "cpu")
+
+
+def load_selector_artifact(
+ path: Path,
+ *,
+ expected_kind: str,
+) -> tuple[dict[str, Any], str]:
+ payload = path.read_bytes()
+ verification = verify_evidence_artifact(path)
+ if not verification["valid"]:
+ raise ValueError(
+ "selector artifact failed evidence verification: " + "; ".join(verification["errors"])
+ )
+ try:
+ artifact = json.loads(payload.decode("utf-8"))
+ except (UnicodeDecodeError, json.JSONDecodeError) as error:
+ raise ValueError("selector artifact must be strict UTF-8 JSON") from error
+ if not isinstance(artifact, dict):
+ raise ValueError("selector artifact root must be an object")
+ if artifact.get("artifact_kind") != expected_kind:
+ raise ValueError("unexpected selector artifact kind")
+ evidence = artifact.get("evidence")
+ if not isinstance(evidence, dict) or evidence.get("diagnostic_only") is not True:
+ raise ValueError("selector artifact must be a calibration diagnostic")
+ expected = artifact.get("canonical_evidence_sha256")
+ actual = sha256_bytes(canonical_json_bytes(evidence))
+ if expected != actual:
+ raise ValueError("selector canonical evidence hash does not match")
+ return evidence, sha256_bytes(payload)
+
+
+def _require_mapping(value: object, *, context: str) -> Mapping[str, Any]:
+ if not isinstance(value, Mapping):
+ raise ValueError(f"{context} must be an object")
+ return value
+
+
+def _selector_token_contract(evidence: Mapping[str, Any]) -> tuple[dict[str, int], ...]:
+ """Normalize and validate the selector's ordered token manifest."""
+
+ dataset = _require_mapping(evidence.get("dataset"), context="selector dataset")
+ tasks = dataset.get("tasks")
+ if not isinstance(tasks, list) or not tasks:
+ raise ValueError("selector dataset tasks must be a non-empty array")
+ kind = evidence.get("artifact_kind")
+ if kind == HRR_ARTIFACT_KIND:
+ affected_field = "captured_decode_tokens"
+ elif kind == LOSS_ARTIFACT_KIND:
+ affected_field = "scored_transitions"
+ else:
+ raise ValueError("unexpected selector artifact kind")
+
+ normalized: list[dict[str, int]] = []
+ seen: set[int] = set()
+ for index, raw_record in enumerate(tasks):
+ record = _require_mapping(raw_record, context=f"selector task {index}")
+ try:
+ task_id = int(record["task_id"])
+ prompt_tokens = int(record["prompt_tokens"])
+ code_tokens = int(record["code_tokens"])
+ affected_tokens = int(record[affected_field])
+ except (KeyError, TypeError, ValueError) as error:
+ raise ValueError(f"selector task {index} has invalid token metadata") from error
+ if task_id in seen:
+ raise ValueError(f"selector token manifest repeats task_id {task_id}")
+ if prompt_tokens < 1 or code_tokens < 2:
+ raise ValueError(f"selector task {task_id} has invalid token counts")
+ if affected_tokens != code_tokens - 1:
+ raise ValueError(
+ f"selector task {task_id} affected-token count must equal code_tokens - 1"
+ )
+ seen.add(task_id)
+ normalized.append(
+ {
+ "task_id": task_id,
+ "prompt_tokens": prompt_tokens,
+ "code_tokens": code_tokens,
+ "affected_tokens": affected_tokens,
+ }
+ )
+ return tuple(normalized)
+
+
+def _selector_quantizer_contract(evidence: Mapping[str, Any]) -> dict[str, Any]:
+ """Return a strict, explicit row-quantizer contract from a selector."""
+
+ raw_contract = _require_mapping(
+ evidence.get("quantizers"),
+ context="selector quantizers",
+ )
+ axis_contract = raw_contract.get("axis_contract")
+ if axis_contract != "one independent group per recurrent [head, key-row]":
+ raise ValueError("selector quantizer axis contract is missing or unsupported")
+
+ normalized: dict[str, Any] = {"axis_contract": axis_contract}
+ for name, bits in (("int4", 4), ("int8", 8)):
+ raw_spec = _require_mapping(
+ raw_contract.get(name),
+ context=f"selector {name} quantizer",
+ )
+ missing = [field for field in QUANTIZER_FIELDS if field not in raw_spec]
+ if missing:
+ raise ValueError(f"selector {name} quantizer lacks fields: {', '.join(missing)}")
+ spec = {field: raw_spec[field] for field in QUANTIZER_FIELDS}
+ if spec["bits"] != bits:
+ raise ValueError(f"selector {name} quantizer must use bits={bits}")
+ if spec["rounding"] not in ("nearest", "stochastic"):
+ raise ValueError(f"selector {name} quantizer has unsupported rounding")
+ if int(spec["group_size"]) <= 0 or int(spec["flatten_last_dims"]) <= 0:
+ raise ValueError(f"selector {name} quantizer has invalid grouping")
+ if int(spec["scale_bits"]) not in (16, 32):
+ raise ValueError(f"selector {name} quantizer has invalid scale_bits")
+ if float(spec["epsilon"]) <= 0:
+ raise ValueError(f"selector {name} quantizer has invalid epsilon")
+ normalized[name] = spec
+
+ matched_fields = tuple(field for field in QUANTIZER_FIELDS if field != "bits")
+ mismatches = [
+ field for field in matched_fields if normalized["int4"][field] != normalized["int8"][field]
+ ]
+ if mismatches:
+ raise ValueError("selector INT4/INT8 quantizers disagree on: " + ", ".join(mismatches))
+ return normalized
+
+
+def validate_selector_contract(evidence: dict[str, Any]) -> None:
+ """Validate one selector's self-contained provenance and quantizer contract."""
+
+ model = _require_mapping(evidence.get("model"), context="selector model")
+ for field in ("id", "revision", "dtype"):
+ if not isinstance(model.get(field), str) or not model[field]:
+ raise ValueError(f"selector model {field} must be a non-empty string")
+ layers = model.get("linear_attention_layers")
+ if (
+ not isinstance(layers, list)
+ or not layers
+ or any(
+ isinstance(value, bool) or not isinstance(value, int) or value < 0 for value in layers
+ )
+ ):
+ raise ValueError("selector model linear_attention_layers must be non-negative integers")
+ if len(set(layers)) != len(layers):
+ raise ValueError("selector model linear_attention_layers must be unique")
+
+ dataset = _require_mapping(evidence.get("dataset"), context="selector dataset")
+ manifest = _require_mapping(dataset.get("manifest"), context="selector dataset manifest")
+ recorded_manifest_hash = dataset.get("manifest_sha256")
+ actual_manifest_hash = sha256_bytes(canonical_json_bytes(manifest))
+ if recorded_manifest_hash != actual_manifest_hash:
+ raise ValueError("selector dataset manifest hash does not match its content")
+ if manifest.get("formatter_version") != "recurquant.mbpp-prompt-code.v1":
+ raise ValueError("selector formatter version is unsupported")
+ token_contract = _selector_token_contract(evidence)
+ manifest_ids = {int(record["task_id"]) for record in manifest.get("rows", [])}
+ if manifest_ids != {record["task_id"] for record in token_contract}:
+ raise ValueError("selector token manifest and content manifest task IDs do not match")
+
+ try:
+ seed = int(evidence["seed"])
+ except (KeyError, TypeError, ValueError) as error:
+ raise ValueError("selector seed must be an integer") from error
+ quantizers = _selector_quantizer_contract(evidence)
+ budget = _require_mapping(evidence.get("byte_budget"), context="selector byte budget")
+ for name in ("int4", "int8"):
+ spec = quantizers[name]
+ if int(spec["seed"]) != seed:
+ raise ValueError(f"selector {name} seed does not match the artifact seed")
+ if int(spec["group_size"]) != int(budget.get("group_size", -1)):
+ raise ValueError(f"selector {name} group_size does not match the byte budget")
+ if int(spec["scale_bits"]) != int(budget.get("scale_bits", -1)):
+ raise ValueError(f"selector {name} scale_bits does not match the byte budget")
+
+ if evidence.get("artifact_kind") == HRR_ARTIFACT_KIND:
+ method = _require_mapping(evidence.get("method"), context="selector method")
+ try:
+ normalization_epsilon = float(method["normalization_epsilon"])
+ except (KeyError, TypeError, ValueError) as error:
+ raise ValueError("HRR selector lacks a valid normalization_epsilon") from error
+ if normalization_epsilon <= 0:
+ raise ValueError("HRR selector normalization_epsilon must be positive")
+
+
+def validate_compatible_selector(
+ reference: dict[str, Any],
+ candidate: dict[str, Any],
+) -> None:
+ """Require two calibration selectors to describe the same frozen inputs."""
+
+ validate_selector_contract(reference)
+ validate_selector_contract(candidate)
+ for field in ("id", "revision", "dtype", "linear_attention_layers"):
+ if candidate["model"][field] != reference["model"][field]:
+ raise ValueError(f"selector model {field} values do not match")
+ if candidate["dataset"]["manifest_sha256"] != reference["dataset"]["manifest_sha256"]:
+ raise ValueError("selector calibration manifest hashes do not match")
+ if candidate["dataset"]["manifest"] != reference["dataset"]["manifest"]:
+ raise ValueError("selector calibration content manifests do not match")
+ if _selector_token_contract(candidate) != _selector_token_contract(reference):
+ raise ValueError("selector calibration token manifests do not match")
+ if int(candidate["seed"]) != int(reference["seed"]):
+ raise ValueError("selector seeds do not match")
+ if _selector_quantizer_contract(candidate) != _selector_quantizer_contract(reference):
+ raise ValueError("selector quantizer contracts do not match")
+ budget_fields = (
+ "target_resident_bytes",
+ "group_size",
+ "scale_bits",
+ "precision_mask_bits_per_group",
+ )
+ for field in budget_fields:
+ if int(candidate["byte_budget"][field]) != int(reference["byte_budget"][field]):
+ raise ValueError(f"selector byte-budget {field} values do not match")
+
+
+def validate_calibration_prefix(
+ selector: Mapping[str, Any],
+ *,
+ actual_manifest: Mapping[str, Any],
+ expected_task_ids: Sequence[int],
+) -> None:
+ """Verify a selected prefix against authenticated per-row content hashes."""
+
+ dataset = _require_mapping(selector.get("dataset"), context="selector dataset")
+ full_manifest = _require_mapping(
+ dataset.get("manifest"),
+ context="selector dataset manifest",
+ )
+ expected_id_set = set(expected_task_ids)
+ if len(expected_id_set) != len(expected_task_ids):
+ raise ValueError("selector prefix task IDs must be unique")
+ full_rows = full_manifest.get("rows")
+ if not isinstance(full_rows, list):
+ raise ValueError("selector dataset manifest rows must be an array")
+ selected_rows = [record for record in full_rows if int(record["task_id"]) in expected_id_set]
+ if len(selected_rows) != len(expected_task_ids):
+ raise ValueError("selector prefix is not fully represented in the content manifest")
+ expected_manifest = dict(full_manifest)
+ expected_manifest["row_count"] = len(selected_rows)
+ expected_manifest["rows"] = selected_rows
+ if dict(actual_manifest) != expected_manifest:
+ raise ValueError("calibration prefix content manifest does not match the selector artifact")
+
+
+def selector_task_ids(selectors: Sequence[Mapping[str, Any]]) -> frozenset[int]:
+ """Return the union of authenticated task IDs used by selector artifacts."""
+
+ if not selectors:
+ raise ValueError("at least one selector artifact is required")
+ return frozenset(
+ record["task_id"] for selector in selectors for record in _selector_token_contract(selector)
+ )
+
+
+def select_calibration_window(
+ ranked_rows: Sequence[Mapping[str, Any]],
+ *,
+ offset: int,
+ limit: int,
+ selectors: Sequence[Mapping[str, Any]],
+) -> tuple[Mapping[str, Any], ...]:
+ """Slice ranked calibration rows and enforce selector disjointness for holdouts."""
+
+ if isinstance(offset, bool) or not isinstance(offset, int) or offset < 0:
+ raise ValueError("calibration offset must be a non-negative integer")
+ if isinstance(limit, bool) or not isinstance(limit, int) or limit < 1:
+ raise ValueError("calibration limit must be a positive integer")
+ stop = offset + limit
+ if stop > len(ranked_rows):
+ raise ValueError(
+ f"calibration window [{offset}:{stop}] exceeds {len(ranked_rows)} ranked rows"
+ )
+ selected = tuple(ranked_rows[offset:stop])
+ if len(selected) != limit:
+ raise RuntimeError("calibration window slicing returned an unexpected row count")
+ if offset > 0:
+ evaluation_ids = {int(row["task_id"]) for row in selected}
+ overlap = evaluation_ids & selector_task_ids(selectors)
+ if overlap:
+ rendered = ", ".join(str(task_id) for task_id in sorted(overlap))
+ raise ValueError(
+ "heldout-calibration rows overlap selector artifact tasks: " + rendered
+ )
+ return selected
+
+
+def validate_frozen_holdout_request(
+ *,
+ offset: int,
+ limit: int,
+ bootstrap_samples: int,
+ selectors: Sequence[Mapping[str, Any]],
+ loss_selector_present: bool,
+ storage_boundary_present: bool,
+) -> None:
+ """Refuse any positive-offset run outside Experiment 005's frozen request."""
+
+ if offset == 0:
+ return
+ if offset != FROZEN_HOLDOUT_OFFSET or limit != FROZEN_HOLDOUT_LIMIT:
+ raise ValueError(
+ "Experiment 005 heldout-calibration requires the exact ranked window "
+ f"[{FROZEN_HOLDOUT_OFFSET}, "
+ f"{FROZEN_HOLDOUT_OFFSET + FROZEN_HOLDOUT_LIMIT})"
+ )
+ if bootstrap_samples != FROZEN_BOOTSTRAP_SAMPLES:
+ raise ValueError(
+ "Experiment 005 heldout-calibration requires exactly "
+ f"{FROZEN_BOOTSTRAP_SAMPLES} bootstrap samples"
+ )
+ if not loss_selector_present or len(selectors) != 2:
+ raise ValueError("Experiment 005 heldout-calibration requires both HRR and loss selectors")
+ if not storage_boundary_present:
+ raise ValueError(
+ "Experiment 005 heldout-calibration requires a passing storage-boundary artifact"
+ )
+ kinds = [selector.get("artifact_kind") for selector in selectors]
+ if kinds != [HRR_ARTIFACT_KIND, LOSS_ARTIFACT_KIND]:
+ raise ValueError("Experiment 005 requires HRR then loss selector artifacts")
+ try:
+ horizon = int(selectors[0]["method"]["horizon"])
+ except (KeyError, TypeError, ValueError) as error:
+ raise ValueError("Experiment 005 HRR selector lacks a valid horizon") from error
+ if horizon != FROZEN_HRR_HORIZON:
+ raise ValueError(
+ f"Experiment 005 heldout-calibration requires HRR horizon {FROZEN_HRR_HORIZON}"
+ )
+ for selector in selectors:
+ task_count = len(_selector_token_contract(selector))
+ if task_count != FROZEN_HOLDOUT_LIMIT:
+ raise ValueError(
+ "each Experiment 005 selector must contain exactly "
+ f"{FROZEN_HOLDOUT_LIMIT} tasks; found {task_count}"
+ )
+
+
+def authenticate_selector_prefix(
+ selector: Mapping[str, Any],
+ *,
+ ranked_prefix_manifest: Mapping[str, Any],
+ ranked_prefix_task_ids: Sequence[int],
+) -> None:
+ """Authenticate a selector against the pinned ranked MBPP selector prefix."""
+
+ token_contract = _selector_token_contract(selector)
+ if len(token_contract) != FROZEN_HOLDOUT_LIMIT:
+ raise ValueError(
+ f"selector must contain exactly {FROZEN_HOLDOUT_LIMIT} frozen prefix tasks"
+ )
+ recorded_ids = [record["task_id"] for record in token_contract]
+ if recorded_ids != list(ranked_prefix_task_ids):
+ raise ValueError("selector ordered task IDs do not match the pinned ranked prefix")
+ validate_calibration_prefix(
+ selector,
+ actual_manifest=ranked_prefix_manifest,
+ expected_task_ids=ranked_prefix_task_ids,
+ )
+
+
+def validate_actual_token_manifest(
+ selector: Mapping[str, Any],
+ actual_records: Sequence[Mapping[str, int]],
+) -> None:
+ """Verify tokenizer output against the selector's ordered token manifest."""
+
+ expected = _selector_token_contract(selector)
+ normalized_actual = tuple(
+ {
+ "task_id": int(record["task_id"]),
+ "prompt_tokens": int(record["prompt_tokens"]),
+ "code_tokens": int(record["code_tokens"]),
+ "affected_tokens": int(record["aligned_scored_tokens"]),
+ }
+ for record in actual_records
+ )
+ if normalized_actual != expected[: len(normalized_actual)]:
+ raise ValueError("actual formatter/token manifest does not match the selector prefix")
+
+
+def encode_task_rows(
+ tokenizer: Any,
+ rows: Sequence[Mapping[str, Any]],
+) -> tuple[
+ list[tuple[Mapping[str, Any], torch.Tensor, torch.Tensor]],
+ list[dict[str, int]],
+]:
+ """Tokenize rows and build the exact aligned/full-code token manifest."""
+
+ encoded: list[tuple[Mapping[str, Any], torch.Tensor, torch.Tensor]] = []
+ manifest: list[dict[str, int]] = []
+ for row in rows:
+ formatted = format_mbpp_example(row)
+ prompt_ids = tokenizer(
+ formatted.prompt,
+ add_special_tokens=True,
+ return_tensors="pt",
+ )["input_ids"]
+ code_ids = tokenizer(
+ formatted.code,
+ add_special_tokens=False,
+ return_tensors="pt",
+ )["input_ids"]
+ code_tokens = int(code_ids.shape[1])
+ if code_tokens < 2:
+ raise RuntimeError(f"MBPP task {row['task_id']} has fewer than two code tokens")
+ manifest.append(
+ {
+ "task_id": int(row["task_id"]),
+ "prompt_tokens": int(prompt_ids.shape[1]),
+ "code_tokens": code_tokens,
+ "aligned_scored_tokens": code_tokens - 1,
+ "full_code_scored_tokens": code_tokens,
+ }
+ )
+ encoded.append((row, prompt_ids, code_ids))
+ return encoded, manifest
+
+
+def paired_contrast(
+ baseline_values: list[float],
+ candidate_values: list[float],
+ *,
+ samples: int,
+ seed: int,
+) -> dict[str, Any]:
+ """Return bootstrap uncertainty only when at least two pairs exist."""
+
+ if len(baseline_values) != len(candidate_values):
+ raise ValueError("paired contrast values must have equal length")
+ if not baseline_values:
+ raise ValueError("paired contrast requires at least one example")
+ if len(baseline_values) == 1:
+ return {
+ "paired_examples": 1,
+ "mean_improvement": float(baseline_values[0] - candidate_values[0]),
+ "confidence": None,
+ "confidence_interval": None,
+ "bootstrap_samples": 0,
+ "seed": None,
+ "note": "descriptive only; uncertainty is not estimable from one paired task",
+ }
+ return paired_bootstrap_mean_improvement(
+ baseline_values,
+ candidate_values,
+ samples=samples,
+ seed=seed,
+ )
+
+
+def aggregate_task_rows(
+ per_task: Mapping[str, Sequence[Mapping[str, float | int]]],
+) -> dict[str, dict[str, float | int]]:
+ """Compute task-macro summaries while retaining the exact token count."""
+
+ return {
+ name: {
+ "task_count": len(task_rows),
+ "macro_delta_nll": fmean(float(row["delta_nll"]) for row in task_rows),
+ "macro_mean_kl": fmean(float(row["mean_kl"]) for row in task_rows),
+ "macro_cvar95_kl": fmean(float(row["cvar95_kl"]) for row in task_rows),
+ "macro_top1_agreement": fmean(float(row["top1_agreement"]) for row in task_rows),
+ "token_count": sum(int(row["token_count"]) for row in task_rows),
+ }
+ for name, task_rows in per_task.items()
+ }
+
+
+def _finite_float(value: object, *, context: str) -> float:
+ if isinstance(value, bool) or not isinstance(value, (int, float)):
+ raise ValueError(f"{context} must be numeric")
+ rendered = float(value)
+ if not math.isfinite(rendered):
+ raise ValueError(f"{context} must be finite")
+ return rendered
+
+
+def _paired_lower_bound(
+ contrasts: Mapping[str, Mapping[str, Any]],
+ name: str,
+) -> float | None:
+ record = contrasts.get(name)
+ if not isinstance(record, Mapping):
+ return None
+ interval = record.get("confidence_interval")
+ if not isinstance(interval, list) or len(interval) != 2:
+ return None
+ try:
+ lower = _finite_float(interval[0], context=f"{name} paired lower bound")
+ except ValueError:
+ return None
+ return lower
+
+
+def evaluate_frozen_holdout_gate(
+ *,
+ aggregates: Mapping[str, Mapping[str, float | int]],
+ per_task: Mapping[str, Sequence[Mapping[str, float | int]]],
+ contrasts: Mapping[str, Mapping[str, Any]],
+ storage: Mapping[str, Mapping[str, int | float | bool]],
+ primary_name: str,
+) -> dict[str, Any]:
+ """Evaluate the machine-checkable Experiment 005 heldout-calibration gate."""
+
+ if primary_name != ADAPTIVE_TARGET_FISHER:
+ raise ValueError(
+ f"frozen heldout primary must be {ADAPTIVE_TARGET_FISHER}, got {primary_name}"
+ )
+ required = (primary_name, ADAPTIVE_H1)
+ for name in required:
+ if name not in aggregates or name not in per_task or name not in storage:
+ raise ValueError(f"heldout gate lacks required method {name}")
+
+ expected_methods = {
+ "uniform_int4",
+ *FROZEN_STATIC_COMPARATORS,
+ ADAPTIVE_H1,
+ ADAPTIVE_TARGET_FISHER,
+ }
+ if set(aggregates) != expected_methods:
+ raise ValueError("heldout methods do not match the frozen Experiment 005 method set")
+ all_static_names = list(FROZEN_STATIC_COMPARATORS)
+ static_names = [
+ name
+ for name in all_static_names
+ if name in storage and int(storage[name].get("resident_bytes", -1)) == TARGET_RESIDENT_BYTES
+ ]
+ if not static_names:
+ raise ValueError("heldout gate requires at least one equal-byte static comparator")
+ strongest_static = min(
+ static_names,
+ key=lambda name: _finite_float(
+ aggregates[name]["macro_delta_nll"],
+ context=f"{name} macro_delta_nll",
+ ),
+ )
+
+ primary = aggregates[primary_name]
+ static = aggregates[strongest_static]
+ adaptive_h1 = aggregates[ADAPTIVE_H1]
+ primary_nll = _finite_float(primary["macro_delta_nll"], context="primary macro_delta_nll")
+ static_nll = _finite_float(
+ static["macro_delta_nll"],
+ context="strongest static macro_delta_nll",
+ )
+ adaptive_h1_nll = _finite_float(
+ adaptive_h1["macro_delta_nll"],
+ context="adaptive H1 macro_delta_nll",
+ )
+ static_nlls = {
+ name: _finite_float(
+ aggregates[name]["macro_delta_nll"],
+ context=f"{name} macro_delta_nll",
+ )
+ for name in static_names
+ }
+ relative_reduction = (static_nll - primary_nll) / static_nll if static_nll > 0 else None
+
+ primary_top1 = _finite_float(
+ primary["macro_top1_agreement"],
+ context="primary macro_top1_agreement",
+ )
+ static_top1 = _finite_float(
+ static["macro_top1_agreement"],
+ context="strongest static macro_top1_agreement",
+ )
+ primary_cvar = _finite_float(
+ primary["macro_cvar95_kl"],
+ context="primary macro_cvar95_kl",
+ )
+ static_cvar = _finite_float(
+ static["macro_cvar95_kl"],
+ context="strongest static macro_cvar95_kl",
+ )
+
+ primary_tasks = {
+ int(row["task_id"]): _finite_float(
+ row["delta_nll"],
+ context=f"primary task {row['task_id']} delta_nll",
+ )
+ for row in per_task[primary_name]
+ }
+ static_tasks = {
+ int(row["task_id"]): _finite_float(
+ row["delta_nll"],
+ context=f"static task {row['task_id']} delta_nll",
+ )
+ for row in per_task[strongest_static]
+ }
+ if not primary_tasks or primary_tasks.keys() != static_tasks.keys():
+ raise ValueError("primary and strongest static per-task IDs must match")
+ per_task_disadvantages = {
+ str(task_id): primary_tasks[task_id] - static_tasks[task_id]
+ for task_id in sorted(primary_tasks)
+ }
+ worst_task_id = max(per_task_disadvantages, key=per_task_disadvantages.__getitem__)
+ worst_task_disadvantage = per_task_disadvantages[worst_task_id]
+
+ exact_storage_observed = {
+ name: int(summary.get("resident_bytes", -1))
+ for name, summary in storage.items()
+ if name != "uniform_int4"
+ }
+ exact_storage_passed = bool(exact_storage_observed) and all(
+ value == TARGET_RESIDENT_BYTES for value in exact_storage_observed.values()
+ )
+ static_lower_bound = _paired_lower_bound(contrasts, strongest_static)
+ adaptive_h1_lower_bound = _paired_lower_bound(contrasts, ADAPTIVE_H1)
+
+ checks: dict[str, dict[str, Any]] = {
+ "exact_resident_bytes": {
+ "passed": exact_storage_passed,
+ "required_bytes": TARGET_RESIDENT_BYTES,
+ "observed": exact_storage_observed,
+ },
+ "lower_nll_than_every_equal_byte_static": {
+ "passed": all(primary_nll < value for value in static_nlls.values()),
+ "primary": primary_nll,
+ "static_comparators": static_nlls,
+ },
+ "relative_nll_reduction_vs_strongest_static": {
+ "passed": (
+ relative_reduction is not None and relative_reduction >= MIN_RELATIVE_NLL_REDUCTION
+ ),
+ "observed": relative_reduction,
+ "minimum": MIN_RELATIVE_NLL_REDUCTION,
+ "denominator_contract": "strongest static excess NLL must be positive",
+ },
+ "lower_nll_than_adaptive_h1": {
+ "passed": primary_nll < adaptive_h1_nll,
+ "primary": primary_nll,
+ "adaptive_h1": adaptive_h1_nll,
+ },
+ "paired_lower_ci_vs_strongest_static": {
+ "passed": static_lower_bound is not None and static_lower_bound > 0,
+ "observed_lower_bound": static_lower_bound,
+ "required": "strictly greater than zero",
+ },
+ "paired_lower_ci_vs_adaptive_h1": {
+ "passed": adaptive_h1_lower_bound is not None and adaptive_h1_lower_bound > 0,
+ "observed_lower_bound": adaptive_h1_lower_bound,
+ "required": "strictly greater than zero",
+ },
+ "top1_disadvantage_margin_vs_strongest_static": {
+ "passed": primary_top1 >= static_top1 - TOP1_DISADVANTAGE_MARGIN,
+ "observed_disadvantage": static_top1 - primary_top1,
+ "maximum": TOP1_DISADVANTAGE_MARGIN,
+ },
+ "cvar95_disadvantage_margin_vs_strongest_static": {
+ "passed": primary_cvar <= static_cvar + CVAR95_DISADVANTAGE_MARGIN,
+ "observed_disadvantage": primary_cvar - static_cvar,
+ "maximum": CVAR95_DISADVANTAGE_MARGIN,
+ },
+ "maximum_per_task_nll_disadvantage_vs_strongest_static": {
+ "passed": worst_task_disadvantage <= MAX_PER_TASK_NLL_DISADVANTAGE,
+ "observed": worst_task_disadvantage,
+ "maximum": MAX_PER_TASK_NLL_DISADVANTAGE,
+ "worst_task_id": int(worst_task_id),
+ "per_task": per_task_disadvantages,
+ },
+ }
+ return {
+ "schema": "recurquant.experiment005-heldout-gate.v1",
+ "applicable": True,
+ "passed": all(check["passed"] is True for check in checks.values()),
+ "primary": primary_name,
+ "strongest_equal_byte_static": strongest_static,
+ "adaptive_control": ADAPTIVE_H1,
+ "thresholds": {
+ "minimum_relative_nll_reduction": MIN_RELATIVE_NLL_REDUCTION,
+ "maximum_top1_disadvantage": TOP1_DISADVANTAGE_MARGIN,
+ "maximum_cvar95_kl_disadvantage": CVAR95_DISADVANTAGE_MARGIN,
+ "maximum_per_task_nll_disadvantage": MAX_PER_TASK_NLL_DISADVANTAGE,
+ "paired_lower_ci_must_be_strictly_positive": True,
+ },
+ "checks": checks,
+ }
+
+
+def primary_claim_text(primary_name: str) -> str:
+ """Describe the actual primary without implying a missing loss selector."""
+
+ if primary_name == ADAPTIVE_TARGET_FISHER:
+ return (
+ "The actual primary uses target-directional-Fisher per-layer quotas "
+ "with causal per-write row-MSE selection."
+ )
+ return (
+ f"The actual primary is {primary_name}, a static HRR row policy; no "
+ "loss-selector primary is present."
+ )
+
+
+def diagnostic_exit_code(*, heldout_calibration: bool, gate_passed: object) -> int:
+ """Return the prespecified non-zero status for a failed frozen holdout gate."""
+
+ return 2 if heldout_calibration and gate_passed is not True else 0
+
+
+def scores_from_artifact(evidence: dict[str, Any], name: str) -> dict[int, torch.Tensor]:
+ try:
+ score_record = evidence["scores"][name]
+ arrays = score_record["arrays"]
+ expected_arrays_sha256 = score_record["canonical_arrays_sha256"]
+ except (KeyError, TypeError) as error:
+ raise ValueError(f"selector artifact lacks score arrays for {name}") from error
+ if not isinstance(arrays, dict):
+ raise ValueError(f"selector score arrays for {name} must be an object")
+ actual_arrays_sha256 = sha256_bytes(canonical_json_bytes(arrays))
+ if expected_arrays_sha256 != actual_arrays_sha256:
+ raise ValueError(f"selector score array hash does not match for {name}")
+ scores: dict[int, torch.Tensor] = {}
+ for raw_layer, values in arrays.items():
+ try:
+ layer_index = int(raw_layer)
+ tensor = torch.tensor(values, dtype=torch.float64)
+ except (TypeError, ValueError) as error:
+ raise ValueError(f"invalid selector scores for layer {raw_layer!r}") from error
+ if str(layer_index) != raw_layer or layer_index < 0 or layer_index in scores:
+ raise ValueError(f"selector score layer key {raw_layer!r} is not canonical and unique")
+ if tensor.ndim != 2 or not torch.isfinite(tensor).all().item():
+ raise ValueError(f"selector layer {layer_index} scores must be a finite matrix")
+ scores[layer_index] = tensor
+ if not scores:
+ raise ValueError(f"selector score arrays for {name} must not be empty")
+ return scores
+
+
+def plan_from_artifact(evidence: dict[str, Any], name: str) -> ExactBudgetRowPlan:
+ scores = scores_from_artifact(evidence, name)
+ budget = evidence["byte_budget"]
+ plan = select_rows_exact_budget(
+ scores,
+ target_resident_bytes=int(budget["target_resident_bytes"]),
+ group_size=int(budget["group_size"]),
+ scale_bits=int(budget["scale_bits"]),
+ )
+ recorded = evidence["plans"][name]
+ expected_locations = tuple(
+ (
+ int(location["layer_index"]),
+ int(location["head_index"]),
+ int(location["row_index"]),
+ )
+ for location in recorded["locations"]
+ )
+ actual_locations = tuple(
+ (location.layer_index, location.head_index, location.row_index)
+ for location in plan.high_precision_rows
+ )
+ if expected_locations != actual_locations:
+ raise ValueError(f"recomputed {name} plan does not match the selector artifact")
+ return plan
+
+
+def random_plan_like(template: ExactBudgetRowPlan) -> ExactBudgetRowPlan:
+ generator = torch.Generator().manual_seed(RANDOM_ROW_SEED)
+ scores = {
+ layer_index: torch.rand((heads, rows), generator=generator)
+ for layer_index, heads, rows in template.score_shapes
+ }
+ return select_rows_exact_budget(
+ scores,
+ target_resident_bytes=template.target_resident_bytes,
+ low_bits=template.low_bits,
+ high_bits=template.high_bits,
+ group_size=template.group_size,
+ scale_bits=template.scale_bits,
+ )
+
+
+def make_caches(
+ model: Qwen3_5ForCausalLM,
+ *,
+ plans: dict[str, ExactBudgetRowPlan],
+ adaptive_plans: dict[str, ExactBudgetRowPlan],
+) -> dict[
+ str,
+ PackedRecurrentStateCache
+ | MixedPackedRecurrentStateCache
+ | AdaptiveMixedPackedRecurrentStateCache,
+]:
+ caches: dict[
+ str,
+ PackedRecurrentStateCache
+ | MixedPackedRecurrentStateCache
+ | AdaptiveMixedPackedRecurrentStateCache,
+ ] = {
+ "uniform_int4": create_qwen35_packed_cache(model, bits=4),
+ "v02_layer0_static": create_qwen35_v02_mixed_cache(model),
+ }
+ for name, plan in plans.items():
+ caches[name] = create_qwen35_exact_budget_cache(model, plan=plan)
+ for name, plan in adaptive_plans.items():
+ if name in caches:
+ raise ValueError(f"adaptive cache name duplicates another method: {name}")
+ caches[name] = create_qwen35_adaptive_exact_budget_cache(model, plan=plan)
+ return caches
+
+
+def _append_metrics(
+ accumulators: dict[str, _TokenAccumulator],
+ reference_logits: torch.Tensor,
+ candidate_logits: dict[str, torch.Tensor],
+ target: torch.Tensor,
+) -> None:
+ for name, logits in candidate_logits.items():
+ accumulators[name].append(token_fidelity(reference_logits, logits, target))
+
+
+def evaluate_task(
+ model: Qwen3_5ForCausalLM,
+ *,
+ prompt_ids: torch.Tensor,
+ code_ids: torch.Tensor,
+ plans: dict[str, ExactBudgetRowPlan],
+ adaptive_plans: dict[str, ExactBudgetRowPlan],
+) -> tuple[
+ dict[str, dict[str, float | int]],
+ dict[str, dict[str, float | int]],
+ dict[str, dict[str, int | float | bool]],
+ int,
+]:
+ reference_cache = DynamicCache(config=model.config)
+ caches = make_caches(model, plans=plans, adaptive_plans=adaptive_plans)
+ aligned_accumulators = {name: _TokenAccumulator.empty() for name in caches}
+ full_code_accumulators = {name: _TokenAccumulator.empty() for name in caches}
+
+ reference_output = model(
+ prompt_ids,
+ past_key_values=reference_cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ candidate_outputs = {
+ name: model(
+ prompt_ids,
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ for name, cache in caches.items()
+ }
+ _append_metrics(
+ full_code_accumulators,
+ reference_output.logits,
+ {name: output.logits for name, output in candidate_outputs.items()},
+ code_ids[:, :1],
+ )
+
+ for token_index in range(code_ids.shape[1] - 1):
+ input_token = code_ids[:, token_index : token_index + 1]
+ target_token = code_ids[:, token_index + 1 : token_index + 2]
+ reference_output = model(
+ input_token,
+ past_key_values=reference_cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ candidate_outputs = {
+ name: model(
+ input_token,
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ for name, cache in caches.items()
+ }
+ _append_metrics(
+ aligned_accumulators,
+ reference_output.logits,
+ {name: output.logits for name, output in candidate_outputs.items()},
+ target_token,
+ )
+ _append_metrics(
+ full_code_accumulators,
+ reference_output.logits,
+ {name: output.logits for name, output in candidate_outputs.items()},
+ target_token,
+ )
+
+ reference_bytes = sum(
+ state.tensor.numel() * state.tensor.element_size()
+ for state in iter_recurrent_states(reference_cache)
+ )
+ return (
+ {name: accumulator.summary() for name, accumulator in aligned_accumulators.items()},
+ {name: accumulator.summary() for name, accumulator in full_code_accumulators.items()},
+ {name: cache.storage_summary() for name, cache in caches.items()},
+ reference_bytes,
+ )
+
+
+def git_state() -> dict[str, object]:
+ repository_root = Path(__file__).resolve().parents[1]
+ commit = subprocess.run(
+ ["git", "rev-parse", "HEAD"],
+ check=True,
+ capture_output=True,
+ text=True,
+ cwd=repository_root,
+ ).stdout.strip()
+ status = subprocess.run(
+ ["git", "status", "--short"],
+ check=True,
+ capture_output=True,
+ text=True,
+ cwd=repository_root,
+ ).stdout.splitlines()
+ return {"commit": commit, "worktree_clean": not status, "status": status}
+
+
+def source_file_hashes(
+ repository_root: Path,
+ relative_paths: Sequence[str] = EVALUATOR_SOURCE_FILES,
+) -> dict[str, str]:
+ """Hash the frozen evaluator implementation files in stable path order."""
+
+ resolved_root = repository_root.resolve()
+ hashes: dict[str, str] = {}
+ for raw_path in relative_paths:
+ path = (resolved_root / raw_path).resolve()
+ try:
+ relative = path.relative_to(resolved_root).as_posix()
+ except ValueError as error:
+ raise ValueError(f"source path escapes repository root: {raw_path}") from error
+ if not path.is_file():
+ raise ValueError(f"required evaluator source file is missing: {relative}")
+ hashes[relative] = sha256_bytes(path.read_bytes())
+ return hashes
+
+
+def validate_heldout_repository_start(
+ repository: Mapping[str, object],
+ selectors: Sequence[Mapping[str, Any]],
+) -> None:
+ """Require a clean frozen commit shared by evaluator and selector artifacts."""
+
+ commit = repository.get("commit")
+ if not isinstance(commit, str) or not commit:
+ raise ValueError("heldout repository commit is missing")
+ if repository.get("worktree_clean") is not True or repository.get("status") != []:
+ raise ValueError("heldout-calibration requires a clean worktree at start")
+ for selector in selectors:
+ selector_repository = _require_mapping(
+ selector.get("repository"),
+ context="selector repository",
+ )
+ if selector_repository.get("commit") != commit:
+ raise ValueError("selector artifact commit does not match heldout evaluator commit")
+ if (
+ selector_repository.get("worktree_clean") is not True
+ or selector_repository.get("status") != []
+ ):
+ raise ValueError("selector artifact was not generated from a clean worktree")
+
+
+def validate_heldout_output_path(output: Path, repository_root: Path) -> None:
+ """Require heldout output to stay outside Git state or under an ignore rule."""
+
+ resolved_root = repository_root.resolve()
+ resolved_output = output.resolve()
+ try:
+ relative = resolved_output.relative_to(resolved_root)
+ except ValueError:
+ return
+ ignored = subprocess.run(
+ ["git", "check-ignore", "--quiet", "--", relative.as_posix()],
+ cwd=resolved_root,
+ check=False,
+ )
+ if ignored.returncode != 0:
+ raise ValueError(
+ "heldout output inside the repository must be Git-ignored so the worktree remains clean"
+ )
+
+
+def validate_heldout_repository_end(
+ *,
+ start_repository: Mapping[str, object],
+ end_repository: Mapping[str, object],
+ start_source_hashes: Mapping[str, str],
+ end_source_hashes: Mapping[str, str],
+) -> None:
+ """Refuse heldout evidence if commit, worktree, or source files changed mid-run."""
+
+ if end_repository.get("commit") != start_repository.get("commit"):
+ raise RuntimeError("repository commit changed during heldout-calibration")
+ if end_repository.get("worktree_clean") is not True or end_repository.get("status") != []:
+ raise RuntimeError("worktree changed during heldout-calibration")
+ if dict(end_source_hashes) != dict(start_source_hashes):
+ raise RuntimeError("evaluator source files changed during heldout-calibration")
+
+
+def validate_storage_boundary_prerequisite(
+ evidence: Mapping[str, Any],
+ *,
+ expected_commit: str,
+ expected_model: Mapping[str, Any],
+) -> None:
+ """Authenticate and independently check the frozen local derivative gate summary."""
+
+ if evidence.get("artifact_kind") != STORAGE_BOUNDARY_ARTIFACT_KIND:
+ raise ValueError("unexpected storage-boundary artifact kind")
+ model = _require_mapping(evidence.get("model"), context="storage-boundary model")
+ if model.get("id") != expected_model.get("id") or model.get("revision") != expected_model.get(
+ "revision"
+ ):
+ raise ValueError("storage-boundary model does not match selector model")
+ if model.get("dtype") != "torch.float32":
+ raise ValueError("storage-boundary gate must use torch.float32")
+
+ gate = _require_mapping(
+ evidence.get("derivative_gate"),
+ context="storage-boundary derivative gate",
+ )
+ if gate.get("passed") is not True or gate.get("failures") != []:
+ raise ValueError("storage-boundary derivative gate did not pass")
+ thresholds = _require_mapping(gate.get("thresholds"), context="derivative thresholds")
+ expected_thresholds = {
+ "model_dtype": "torch.float32",
+ "baseline_repeat_absolute_tolerance": 1e-7,
+ "derivative_informative_floor": 1e-8,
+ "near_zero_absolute_tolerance": 2e-7,
+ "minimum_informative_rows": 3,
+ "minimum_sign_agreement": 0.95,
+ "maximum_median_relative_error": 0.10,
+ "minimum_converged_row_fraction": 0.75,
+ }
+ if dict(thresholds) != expected_thresholds:
+ raise ValueError("storage-boundary derivative thresholds do not match the freeze")
+ observed = _require_mapping(gate.get("observed"), context="derivative observations")
+ numeric_passed = (
+ int(observed.get("rows", -1)) == 4
+ and int(observed.get("informative_rows", -1)) >= 3
+ and _finite_float(
+ observed.get("maximum_baseline_repeat_absolute_error"),
+ context="maximum baseline repeat error",
+ )
+ <= 1e-7
+ and _finite_float(observed.get("sign_agreement"), context="sign agreement") >= 0.95
+ and _finite_float(
+ observed.get("median_relative_error"),
+ context="median relative error",
+ )
+ <= 0.10
+ and _finite_float(
+ observed.get("converged_row_fraction"),
+ context="converged row fraction",
+ )
+ >= 0.75
+ and int(observed.get("near_zero_checks_passed", -1))
+ == int(observed.get("near_zero_checks", -2))
+ )
+ if not numeric_passed:
+ raise ValueError("storage-boundary numeric observations do not pass the frozen gate")
+
+ implementation = _require_mapping(
+ evidence.get("implementation"),
+ context="storage-boundary implementation",
+ )
+ source_start = _require_mapping(
+ implementation.get("source_hashes_start"),
+ context="storage-boundary source hashes start",
+ )
+ source_end = _require_mapping(
+ implementation.get("source_hashes_end"),
+ context="storage-boundary source hashes end",
+ )
+ if (
+ not source_start
+ or dict(source_start) != dict(source_end)
+ or implementation.get("unchanged_during_run") is not True
+ ):
+ raise ValueError("storage-boundary implementation source hashes are not stable")
+ repository = _require_mapping(
+ evidence.get("repository"),
+ context="storage-boundary repository",
+ )
+ for phase in ("start", "end"):
+ state = _require_mapping(
+ repository.get(phase),
+ context=f"storage-boundary repository {phase}",
+ )
+ if state.get("commit") != expected_commit:
+ raise ValueError("storage-boundary commit does not match heldout evaluator")
+ if state.get("worktree_clean") is not True or state.get("status") != []:
+ raise ValueError("storage-boundary artifact was not generated cleanly")
+
+
+def _package_versions() -> dict[str, str]:
+ names = ("datasets", "numpy", "safetensors", "torch", "transformers")
+ return {name: importlib.metadata.version(name) for name in names}
+
+
+def main() -> int:
+ args = parse_args()
+ if args.limit is not None and not 1 <= args.limit <= 16:
+ raise ValueError("--limit must be between 1 and 16")
+ if args.calibration_offset < 0:
+ raise ValueError("--calibration-offset must be non-negative")
+ if args.bootstrap_samples <= 0:
+ raise ValueError("--bootstrap-samples must be positive")
+ heldout_calibration = args.calibration_offset > 0
+ repository_root = Path(__file__).resolve().parents[1]
+ repository_start = git_state()
+ source_hashes_start = source_file_hashes(repository_root)
+
+ selector, selector_sha256 = load_selector_artifact(
+ args.selector_artifact,
+ expected_kind=HRR_ARTIFACT_KIND,
+ )
+ validate_selector_contract(selector)
+ loss_selector: dict[str, Any] | None = None
+ loss_selector_sha256: str | None = None
+ if args.loss_selector_artifact is not None:
+ loss_selector, loss_selector_sha256 = load_selector_artifact(
+ args.loss_selector_artifact,
+ expected_kind=LOSS_ARTIFACT_KIND,
+ )
+ validate_compatible_selector(selector, loss_selector)
+ storage_boundary: dict[str, Any] | None = None
+ storage_boundary_sha256: str | None = None
+ if args.storage_boundary_artifact is not None:
+ storage_boundary, storage_boundary_sha256 = load_selector_artifact(
+ args.storage_boundary_artifact,
+ expected_kind=STORAGE_BOUNDARY_ARTIFACT_KIND,
+ )
+ selectors: list[dict[str, Any]] = [selector]
+ if loss_selector is not None:
+ selectors.append(loss_selector)
+ all_selector_task_ids = selector_task_ids(selectors)
+ task_records = selector["dataset"]["tasks"]
+ available_tasks = len(task_records)
+ limit = available_tasks if args.limit is None else args.limit
+ validate_frozen_holdout_request(
+ offset=args.calibration_offset,
+ limit=limit,
+ bootstrap_samples=args.bootstrap_samples,
+ selectors=selectors,
+ loss_selector_present=loss_selector is not None,
+ storage_boundary_present=storage_boundary is not None,
+ )
+ if heldout_calibration:
+ validate_heldout_repository_start(repository_start, selectors)
+ validate_heldout_output_path(args.output, repository_root)
+ assert storage_boundary is not None
+ validate_storage_boundary_prerequisite(
+ storage_boundary,
+ expected_commit=str(repository_start["commit"]),
+ expected_model=selector["model"],
+ )
+ if args.calibration_offset == 0 and limit > available_tasks:
+ raise ValueError(
+ f"--limit={limit} exceeds the selector's {available_tasks} calibration tasks"
+ )
+ window_stop = args.calibration_offset + limit
+ if window_stop > MBPP_CALIBRATION_SIZE:
+ raise ValueError(
+ "calibration window exceeds the frozen ranked calibration population: "
+ f"{window_stop} > {MBPP_CALIBRATION_SIZE}"
+ )
+ ranked_rows = load_mbpp_rows("calibration", limit=window_stop)
+ selector_prefix_rows = tuple(ranked_rows[:FROZEN_HOLDOUT_LIMIT])
+ if heldout_calibration:
+ selector_prefix_ids = [int(row["task_id"]) for row in selector_prefix_rows]
+ selector_prefix_manifest = mbpp_manifest(selector_prefix_rows, phase="calibration")
+ for selector_evidence in selectors:
+ authenticate_selector_prefix(
+ selector_evidence,
+ ranked_prefix_manifest=selector_prefix_manifest,
+ ranked_prefix_task_ids=selector_prefix_ids,
+ )
+ rows = select_calibration_window(
+ ranked_rows,
+ offset=args.calibration_offset,
+ limit=limit,
+ selectors=selectors,
+ )
+ actual_ids = [row["task_id"] for row in rows]
+ if args.calibration_offset == 0:
+ expected_ids = [int(record["task_id"]) for record in task_records[:limit]]
+ if actual_ids != expected_ids:
+ raise ValueError("calibration task IDs do not match the selector artifact prefix")
+ actual_manifest = mbpp_manifest(rows, phase="calibration")
+ if args.calibration_offset == 0:
+ validate_calibration_prefix(
+ selector,
+ actual_manifest=actual_manifest,
+ expected_task_ids=actual_ids,
+ )
+ actual_manifest_sha256 = mbpp_manifest_sha256(rows, phase="calibration")
+ if actual_manifest_sha256 != sha256_bytes(canonical_json_bytes(actual_manifest)):
+ raise RuntimeError("calibration manifest helpers produced inconsistent hashes")
+
+ horizon = int(selector["method"]["horizon"])
+ hrr_primary_name = f"hrr_h{horizon}"
+ h1_plan = plan_from_artifact(selector, "hrr_h1")
+ hrr_primary_plan = plan_from_artifact(selector, hrr_primary_name)
+ mse_plan = plan_from_artifact(selector, "row_mse")
+ plans = {
+ "hrr_h1": h1_plan,
+ hrr_primary_name: hrr_primary_plan,
+ "row_mse": mse_plan,
+ "random_rows_s1101": random_plan_like(hrr_primary_plan),
+ }
+ adaptive_plans = {ADAPTIVE_H1: h1_plan}
+ primary_name = hrr_primary_name
+ primary_plan = hrr_primary_plan
+ if loss_selector is not None:
+ plans.update({name: plan_from_artifact(loss_selector, name) for name in LOSS_SCORE_NAMES})
+ adaptive_plans[ADAPTIVE_TARGET_FISHER] = plans["target_directional_fisher_difference_int4"]
+ primary_name = ADAPTIVE_TARGET_FISHER
+ primary_plan = adaptive_plans[primary_name]
+
+ torch.manual_seed(SEED)
+ device = select_device(args.device)
+ dtype = torch.bfloat16 if device.type == "cuda" else torch.float32
+ model_record = selector["model"]
+ if model_record["dtype"] != str(dtype):
+ raise ValueError(
+ "evaluation dtype does not match selector calibration dtype: "
+ f"{dtype} != {model_record['dtype']}"
+ )
+ quantizer_contract = _selector_quantizer_contract(selector)
+ for name in ("int4", "int8"):
+ spec = quantizer_contract[name]
+ if (
+ spec["rounding"] != "nearest"
+ or int(spec["seed"]) != SEED
+ or float(spec["epsilon"]) != 1e-12
+ or int(spec["flatten_last_dims"]) != 1
+ ):
+ raise ValueError(
+ f"selector {name} quantizer does not match the physical evaluator contract"
+ )
+ model_id = str(model_record["id"])
+ revision = str(model_record["revision"])
+ tokenizer = AutoTokenizer.from_pretrained(
+ model_id,
+ revision=revision,
+ local_files_only=args.local_files_only,
+ trust_remote_code=False,
+ )
+
+ encoded_tasks, token_manifest = encode_task_rows(tokenizer, rows)
+ if heldout_calibration:
+ _, selector_prefix_token_manifest = encode_task_rows(tokenizer, selector_prefix_rows)
+ for selector_evidence in selectors:
+ validate_actual_token_manifest(
+ selector_evidence,
+ selector_prefix_token_manifest,
+ )
+ else:
+ validate_actual_token_manifest(selector, token_manifest)
+ if loss_selector is not None:
+ validate_actual_token_manifest(loss_selector, token_manifest)
+
+ model = Qwen3_5ForCausalLM.from_pretrained(
+ model_id,
+ revision=revision,
+ dtype=dtype,
+ attn_implementation="eager",
+ low_cpu_mem_usage=True,
+ use_safetensors=True,
+ local_files_only=args.local_files_only,
+ ).to(device)
+ model.eval()
+
+ per_task: dict[str, list[dict[str, float | int]]] = {}
+ per_task_full_code: dict[str, list[dict[str, float | int]]] = {}
+ storage_anchor: dict[str, dict[str, int | float | bool]] | None = None
+ reference_state_bytes: int | None = None
+ with torch.inference_mode():
+ for task_number, (row, prompt_cpu, code_cpu) in enumerate(encoded_tasks, start=1):
+ prompt_ids = prompt_cpu.to(device)
+ code_ids = code_cpu.to(device)
+ summaries, full_code_summaries, storage, task_reference_bytes = evaluate_task(
+ model,
+ prompt_ids=prompt_ids,
+ code_ids=code_ids,
+ plans=plans,
+ adaptive_plans=adaptive_plans,
+ )
+ if storage_anchor is None:
+ storage_anchor = storage
+ reference_state_bytes = task_reference_bytes
+ elif storage != storage_anchor or task_reference_bytes != reference_state_bytes:
+ raise RuntimeError("resident state storage changed between calibration tasks")
+ for name, summary in summaries.items():
+ per_task.setdefault(name, []).append({"task_id": row["task_id"], **summary})
+ for name, summary in full_code_summaries.items():
+ per_task_full_code.setdefault(name, []).append(
+ {"task_id": row["task_id"], **summary}
+ )
+ print(
+ f"[{task_number}/{len(rows)}] task={row['task_id']} "
+ f"code_tokens={code_ids.shape[1]}",
+ flush=True,
+ )
+
+ assert storage_anchor is not None
+ assert reference_state_bytes is not None
+ for name in plans:
+ summary = storage_anchor[name]
+ if summary["resident_bytes"] != plans[name].resident_bytes:
+ raise RuntimeError(f"{name} did not realize its exact resident-byte plan")
+ for name in adaptive_plans:
+ summary = storage_anchor[name]
+ if summary["resident_bytes"] != adaptive_plans[name].resident_bytes:
+ raise RuntimeError(f"{name} did not realize its exact resident-byte plan")
+ if storage_anchor["v02_layer0_static"]["resident_bytes"] != primary_plan.resident_bytes:
+ raise RuntimeError("v0.2 static and the primary row plan are not equal-byte")
+
+ aggregates = aggregate_task_rows(per_task)
+ aggregates_full_code = aggregate_task_rows(per_task_full_code)
+
+ primary_values = [float(row["delta_nll"]) for row in per_task[primary_name]]
+ contrasts = {
+ name: paired_contrast(
+ [float(row["delta_nll"]) for row in task_rows],
+ primary_values,
+ samples=args.bootstrap_samples,
+ seed=SEED,
+ )
+ for name, task_rows in per_task.items()
+ if name != primary_name
+ }
+ repository_end = git_state()
+ source_hashes_end = source_file_hashes(repository_root)
+ if heldout_calibration:
+ validate_heldout_repository_end(
+ start_repository=repository_start,
+ end_repository=repository_end,
+ start_source_hashes=source_hashes_start,
+ end_source_hashes=source_hashes_end,
+ )
+ heldout_gate = evaluate_frozen_holdout_gate(
+ aggregates=aggregates,
+ per_task=per_task,
+ contrasts=contrasts,
+ storage=storage_anchor,
+ primary_name=primary_name,
+ )
+ heldout_gate["checks"]["authenticated_repository_sources_and_manifests"] = {
+ "passed": True,
+ "repository_commit_stable": True,
+ "worktree_clean_at_start_and_end": True,
+ "source_hashes_stable": True,
+ "selector_prefixes_authenticated": True,
+ "evaluation_manifest_authenticated": True,
+ "storage_boundary_prerequisite_passed": True,
+ }
+ heldout_gate["passed"] = all(
+ check["passed"] is True for check in heldout_gate["checks"].values()
+ )
+ else:
+ heldout_gate = {
+ "schema": "recurquant.experiment005-heldout-gate.v1",
+ "applicable": False,
+ "passed": None,
+ "reason": "same-calibration diagnostics cannot satisfy the frozen holdout gate",
+ }
+ selector_artifacts = {
+ "hrr": {
+ "path": str(args.selector_artifact.resolve()),
+ "sha256": selector_sha256,
+ "canonical_evidence_sha256": sha256_bytes(canonical_json_bytes(selector)),
+ }
+ }
+ quality_artifact_kind = (
+ "recurquant_hrr_heldout_calibration_quality_diagnostic"
+ if heldout_calibration
+ else "recurquant_hrr_same_calibration_quality_diagnostic"
+ )
+ if loss_selector is not None:
+ assert args.loss_selector_artifact is not None
+ assert loss_selector_sha256 is not None
+ selector_artifacts["loss_sensitivity"] = {
+ "path": str(args.loss_selector_artifact.resolve()),
+ "sha256": loss_selector_sha256,
+ "canonical_evidence_sha256": sha256_bytes(canonical_json_bytes(loss_selector)),
+ }
+ quality_artifact_kind = (
+ "recurquant_adaptive_row_packing_heldout_calibration_quality_diagnostic"
+ if heldout_calibration
+ else "recurquant_adaptive_row_packing_same_calibration_quality_diagnostic"
+ )
+ prerequisite_artifacts: dict[str, dict[str, Any]] = {}
+ if storage_boundary is not None:
+ assert args.storage_boundary_artifact is not None
+ assert storage_boundary_sha256 is not None
+ prerequisite_artifacts["storage_boundary"] = {
+ "path": str(args.storage_boundary_artifact.resolve()),
+ "sha256": storage_boundary_sha256,
+ "canonical_evidence_sha256": sha256_bytes(canonical_json_bytes(storage_boundary)),
+ "artifact_kind": storage_boundary["artifact_kind"],
+ "derivative_gate_passed": storage_boundary["derivative_gate"]["passed"],
+ }
+ primary_claim = primary_claim_text(primary_name)
+ if heldout_calibration:
+ claim_boundary = (
+ "This is a heldout-calibration diagnostic: every evaluation task is a "
+ "ranked calibration row disjoint from every selector artifact task, and "
+ "all static plans and adaptive layer quotas come unchanged from those "
+ "selector artifacts. It is not "
+ "development or confirmation evidence and cannot establish final "
+ "generalization, novelty, speed, or a breakthrough. "
+ f"{primary_claim} The primary metric "
+ "excludes the prompt-to-first-code-token prediction because no stored "
+ "quantized recurrent state can affect that output."
+ )
+ else:
+ claim_boundary = (
+ "The selector and quality diagnostic use the same MBPP calibration tasks. "
+ "This can catch implementation failures but cannot establish held-out "
+ "generalization, novelty, speed, or a breakthrough. "
+ f"{primary_claim} The primary metric "
+ "excludes the prompt-to-first-code-token prediction because no stored "
+ "quantized recurrent state can affect that output."
+ )
+ evidence: dict[str, Any] = {
+ "schema_version": 1,
+ "artifact_kind": quality_artifact_kind,
+ "diagnostic_only": True,
+ "claim_boundary": claim_boundary,
+ "created_at_utc": datetime.now(UTC).isoformat(),
+ "selector_artifacts": selector_artifacts,
+ "prerequisite_artifacts": prerequisite_artifacts,
+ "model": {
+ "id": model_id,
+ "revision": revision,
+ "dtype": str(dtype),
+ "device": str(device),
+ },
+ "dataset": {
+ "phase": "calibration",
+ "manifest_sha256": actual_manifest_sha256,
+ "content_manifest_sha256": actual_manifest_sha256,
+ "manifest": actual_manifest,
+ "task_count": len(rows),
+ "tasks": token_manifest,
+ "selection_mode": (
+ "heldout_calibration" if heldout_calibration else "selector_task_prefix"
+ ),
+ "selection_window": {
+ "calibration_offset": args.calibration_offset,
+ "limit": limit,
+ "stop_exclusive": window_stop,
+ "resolved_before_tokenization_and_model_load": True,
+ },
+ "evaluation_task_ids": actual_ids,
+ "selector_task_ids": sorted(all_selector_task_ids),
+ "selector_task_prefix": not heldout_calibration and limit < available_tasks,
+ "disjoint_from_all_selector_artifacts": (True if heldout_calibration else None),
+ "authenticated_selector_prefix": (
+ {
+ "manifest": selector_prefix_manifest,
+ "manifest_sha256": sha256_bytes(canonical_json_bytes(selector_prefix_manifest)),
+ "ordered_task_ids": selector_prefix_ids,
+ "token_manifest": selector_prefix_token_manifest,
+ "selector_count": len(selectors),
+ "all_selectors_matched": True,
+ }
+ if heldout_calibration
+ else None
+ ),
+ },
+ "metric_contract": {
+ "primary": "calibration-aligned code transitions after recurrent-state storage",
+ "primary_tokens_per_task": "code_tokens - 1",
+ "excluded_from_primary": "prompt-to-first-code-token prediction",
+ "secondary": "full reference-code tokens, including the unaffected first token",
+ "contrasts": "paired task-macro baseline delta NLL minus primary delta NLL",
+ },
+ "methods": list(per_task),
+ "primary": primary_name,
+ "adaptive_policy_contracts": {
+ ADAPTIVE_H1: {
+ "selection": "per-update aligned INT4-to-INT8 row MSE reduction",
+ "layer_quota_source": "hrr_h1 selector plan",
+ "batch_size": 1,
+ "resident_bytes": adaptive_plans[ADAPTIVE_H1].resident_bytes,
+ },
+ **(
+ {
+ ADAPTIVE_TARGET_FISHER: {
+ "selection": "per-update aligned INT4-to-INT8 row MSE reduction",
+ "layer_quota_source": (
+ "target_directional_fisher_difference_int4 selector plan"
+ ),
+ "batch_size": 1,
+ "resident_bytes": adaptive_plans[ADAPTIVE_TARGET_FISHER].resident_bytes,
+ }
+ }
+ if loss_selector is not None
+ else {}
+ ),
+ },
+ "storage": {
+ "fp32_reference_recurrent_state_bytes": reference_state_bytes,
+ "candidates": storage_anchor,
+ },
+ "aggregates": aggregates,
+ "aggregates_full_code_secondary": aggregates_full_code,
+ "contrasts_baseline_minus_primary_aligned_delta_nll": contrasts,
+ "heldout_gate": heldout_gate,
+ "per_task": per_task,
+ "per_task_full_code_secondary": per_task_full_code,
+ "environment": {
+ "python": sys.version,
+ "platform": platform.platform(),
+ "packages": _package_versions(),
+ "cuda_available": torch.cuda.is_available(),
+ "cuda_runtime": torch.version.cuda,
+ "gpu": torch.cuda.get_device_name(device) if device.type == "cuda" else None,
+ },
+ "repository": {
+ "commit": repository_end["commit"],
+ "worktree_clean": repository_end["worktree_clean"],
+ "status": repository_end["status"],
+ "start": repository_start,
+ "end": repository_end,
+ "stable_commit": repository_start["commit"] == repository_end["commit"],
+ },
+ "source_files": {
+ "paths": list(EVALUATOR_SOURCE_FILES),
+ "sha256_start": source_hashes_start,
+ "sha256_end": source_hashes_end,
+ "stable": source_hashes_start == source_hashes_end,
+ },
+ "command": [sys.executable, *sys.argv],
+ }
+ canonical_evidence = canonical_json_bytes(evidence)
+ artifact = {
+ "schema_version": 1,
+ "artifact_kind": quality_artifact_kind,
+ "canonical_evidence_sha256": sha256_bytes(canonical_evidence),
+ "evidence": evidence,
+ }
+ payload = canonical_json_bytes(artifact)
+ args.output.parent.mkdir(parents=True, exist_ok=True)
+ args.output.write_bytes(payload)
+ print(
+ json.dumps(
+ {
+ "output": str(args.output.resolve()),
+ "artifact_sha256": sha256_bytes(payload),
+ "primary": primary_name,
+ "heldout_gate": heldout_gate,
+ "aggregates": aggregates,
+ "contrasts": contrasts,
+ },
+ indent=2,
+ sort_keys=True,
+ )
+ )
+ return diagnostic_exit_code(
+ heldout_calibration=heldout_calibration,
+ gate_passed=heldout_gate["passed"],
+ )
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/scripts/pilot_hrr_rows.py b/scripts/pilot_hrr_rows.py
new file mode 100644
index 0000000..e2edbe0
--- /dev/null
+++ b/scripts/pilot_hrr_rows.py
@@ -0,0 +1,449 @@
+#!/usr/bin/env python3
+"""Run a calibration-only diagnostic pilot for HRR row selection.
+
+This script never opens MBPP development or confirmation data. Its output is a
+debug artifact for validating trace timing, score construction, and exact-byte
+row-plan generation before a protocol is frozen.
+"""
+
+from __future__ import annotations
+
+import argparse
+import hashlib
+import importlib.metadata
+import json
+import platform
+import subprocess
+import sys
+from collections.abc import Mapping
+from dataclasses import asdict
+from datetime import UTC, datetime
+from pathlib import Path
+from typing import Any
+
+import torch
+from transformers import AutoTokenizer, DynamicCache, Qwen3_5ForCausalLM
+
+from recurquant.evidence import canonical_json_bytes
+from recurquant.horizon_calibration import (
+ GDNHorizonCalibrationRecorder,
+ TaskMacroHorizonAccumulator,
+)
+from recurquant.public_data import (
+ format_mbpp_example,
+ load_mbpp_rows,
+ mbpp_manifest,
+ mbpp_manifest_sha256,
+)
+from recurquant.quantization import QuantizationSpec
+from recurquant.row_policy import ExactBudgetRowPlan, RowLocation, select_rows_exact_budget
+
+MODEL_ID = "Qwen/Qwen3.5-0.8B-Base"
+MODEL_REVISION = "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68"
+SEED = 2339
+TARGET_RESIDENT_BYTES = 2_564_096
+HORIZON_EPSILON = 1e-6
+
+
+def parse_args() -> argparse.Namespace:
+ parser = argparse.ArgumentParser(
+ description="Calibration-only HRR row-selector diagnostic; not a benchmark run."
+ )
+ parser.add_argument("--output", type=Path, required=True)
+ parser.add_argument("--limit", type=int, default=1)
+ parser.add_argument("--horizon", type=int, default=32)
+ parser.add_argument("--max-code-tokens", type=int, default=512)
+ parser.add_argument("--group-size", type=int, default=128)
+ parser.add_argument("--target-resident-bytes", type=int, default=TARGET_RESIDENT_BYTES)
+ parser.add_argument("--device", choices=("auto", "cpu", "cuda"), default="auto")
+ parser.add_argument("--local-files-only", action="store_true")
+ parser.add_argument("--model-id", default=MODEL_ID)
+ parser.add_argument("--revision", default=MODEL_REVISION)
+ return parser.parse_args()
+
+
+def select_device(requested: str) -> torch.device:
+ if requested == "cuda":
+ if not torch.cuda.is_available():
+ raise RuntimeError("CUDA was requested but is unavailable")
+ return torch.device("cuda")
+ if requested == "cpu":
+ return torch.device("cpu")
+ return torch.device("cuda" if torch.cuda.is_available() else "cpu")
+
+
+def sha256_bytes(value: bytes) -> str:
+ return hashlib.sha256(value).hexdigest()
+
+
+def git_state() -> dict[str, object]:
+ commit = subprocess.run(
+ ["git", "rev-parse", "HEAD"],
+ check=True,
+ capture_output=True,
+ text=True,
+ ).stdout.strip()
+ status = subprocess.run(
+ ["git", "status", "--short"],
+ check=True,
+ capture_output=True,
+ text=True,
+ ).stdout.splitlines()
+ return {"commit": commit, "worktree_clean": not status, "status": status}
+
+
+def _score_dict(
+ summaries: Mapping[int, object],
+) -> dict[int, torch.Tensor]:
+ return {
+ layer_index: summary.int4_minus_int8.to(torch.float32)
+ for layer_index, summary in summaries.items()
+ }
+
+
+def _plan_counts(plan: ExactBudgetRowPlan) -> dict[str, int]:
+ counts = {str(layer_index): 0 for layer_index, _, _ in plan.score_shapes}
+ for location in plan.high_precision_rows:
+ counts[str(location.layer_index)] += 1
+ return counts
+
+
+def _plan_locations(plan: ExactBudgetRowPlan) -> list[dict[str, int]]:
+ return [
+ {
+ "layer_index": location.layer_index,
+ "head_index": location.head_index,
+ "row_index": location.row_index,
+ }
+ for location in plan.high_precision_rows
+ ]
+
+
+def _score_payload(scores: Mapping[int, torch.Tensor]) -> dict[str, object]:
+ arrays = {
+ str(layer_index): tensor.detach().to(torch.float32).cpu().tolist()
+ for layer_index, tensor in sorted(scores.items())
+ }
+ encoded = canonical_json_bytes(arrays)
+ flattened = torch.cat([scores[index].reshape(-1).cpu() for index in sorted(scores)])
+ return {
+ "arrays": arrays,
+ "canonical_arrays_sha256": sha256_bytes(encoded),
+ "minimum": float(flattened.min().item()),
+ "maximum": float(flattened.max().item()),
+ "mean": float(flattened.mean().item()),
+ "negative_rows": int((flattened < 0).sum().item()),
+ }
+
+
+def _overlap(left: ExactBudgetRowPlan, right: ExactBudgetRowPlan) -> dict[str, float | int]:
+ left_set = set(left.high_precision_rows)
+ right_set = set(right.high_precision_rows)
+ intersection = len(left_set & right_set)
+ union = len(left_set | right_set)
+ return {
+ "intersection": intersection,
+ "union": union,
+ "jaccard": intersection / union if union else 1.0,
+ }
+
+
+def _top_rows(
+ scores: Mapping[int, torch.Tensor],
+ *,
+ count: int = 20,
+) -> list[dict[str, float | int]]:
+ candidates: list[tuple[float, RowLocation]] = []
+ for layer_index, layer_scores in scores.items():
+ values = layer_scores.detach().to(device="cpu", dtype=torch.float64)
+ for head_index in range(values.shape[0]):
+ for row_index in range(values.shape[1]):
+ candidates.append(
+ (
+ float(values[head_index, row_index].item()),
+ RowLocation(layer_index, head_index, row_index),
+ )
+ )
+ ordered = sorted(candidates, key=lambda item: (-item[0], item[1]))[:count]
+ return [
+ {
+ "score": score,
+ "layer_index": location.layer_index,
+ "head_index": location.head_index,
+ "row_index": location.row_index,
+ }
+ for score, location in ordered
+ ]
+
+
+def _package_versions() -> dict[str, str]:
+ names = ("datasets", "numpy", "safetensors", "torch", "transformers")
+ return {name: importlib.metadata.version(name) for name in names}
+
+
+def main() -> int:
+ args = parse_args()
+ if not 1 <= args.limit <= 16:
+ raise ValueError("--limit must be between 1 and 16 for a diagnostic pilot")
+ if args.horizon <= 0:
+ raise ValueError("--horizon must be positive")
+ if args.max_code_tokens < 2:
+ raise ValueError("--max-code-tokens must be at least 2")
+
+ torch.manual_seed(SEED)
+ device = select_device(args.device)
+ dtype = torch.bfloat16 if device.type == "cuda" else torch.float32
+ rows = load_mbpp_rows("calibration", limit=args.limit)
+ dataset_manifest = mbpp_manifest(rows, phase="calibration")
+
+ tokenizer = AutoTokenizer.from_pretrained(
+ args.model_id,
+ revision=args.revision,
+ local_files_only=args.local_files_only,
+ trust_remote_code=False,
+ )
+ model = Qwen3_5ForCausalLM.from_pretrained(
+ args.model_id,
+ revision=args.revision,
+ dtype=dtype,
+ attn_implementation="eager",
+ low_cpu_mem_usage=True,
+ use_safetensors=True,
+ local_files_only=args.local_files_only,
+ ).to(device)
+ model.eval()
+
+ layer_indices = tuple(
+ index
+ for index, layer_type in enumerate(model.config.layer_types)
+ if layer_type == "linear_attention"
+ )
+ if len(layer_indices) != 18:
+ raise RuntimeError(f"Expected 18 GDN layers, found {len(layer_indices)}")
+
+ int4_spec = QuantizationSpec(
+ bits=4,
+ group_size=args.group_size,
+ scale_bits=16,
+ flatten_last_dims=1,
+ rounding="nearest",
+ seed=SEED,
+ )
+ int8_spec = QuantizationSpec(
+ bits=8,
+ group_size=args.group_size,
+ scale_bits=16,
+ flatten_last_dims=1,
+ rounding="nearest",
+ seed=SEED,
+ )
+ recorder = GDNHorizonCalibrationRecorder(
+ model,
+ layer_indices=layer_indices,
+ max_tokens_per_layer=args.max_code_tokens - 1,
+ int4_spec=int4_spec,
+ int8_spec=int8_spec,
+ epsilon=HORIZON_EPSILON,
+ )
+ h1_accumulator = TaskMacroHorizonAccumulator(horizon=1, epsilon=HORIZON_EPSILON)
+ hrr_accumulator = TaskMacroHorizonAccumulator(
+ horizon=args.horizon,
+ epsilon=HORIZON_EPSILON,
+ )
+ mse_sums: dict[int, torch.Tensor] = {}
+ task_records: list[dict[str, int]] = []
+
+ with torch.inference_mode(), recorder:
+ for row_number, row in enumerate(rows, start=1):
+ formatted = format_mbpp_example(row)
+ prompt_ids = tokenizer(
+ formatted.prompt,
+ add_special_tokens=True,
+ return_tensors="pt",
+ )["input_ids"].to(device)
+ code_ids = tokenizer(
+ formatted.code,
+ add_special_tokens=False,
+ return_tensors="pt",
+ )["input_ids"].to(device)
+ code_tokens = int(code_ids.shape[1])
+ if code_tokens < 2:
+ raise RuntimeError(f"MBPP task {row['task_id']} has fewer than two code tokens")
+ if code_tokens > args.max_code_tokens:
+ raise RuntimeError(
+ f"MBPP task {row['task_id']} has {code_tokens} code tokens, exceeding "
+ f"--max-code-tokens={args.max_code_tokens}; no truncation is allowed"
+ )
+
+ cache = DynamicCache(config=model.config)
+ recorder.enabled = False
+ model(
+ prompt_ids,
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ recorder.enabled = True
+ for token_index in range(code_tokens - 1):
+ model(
+ code_ids[:, token_index : token_index + 1],
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ recorder.enabled = False
+
+ traces = recorder.drain_traces()
+ if set(traces) != set(layer_indices):
+ raise RuntimeError("captured trace layers do not match the model GDN layers")
+ h1_accumulator.add_task(traces)
+ hrr_accumulator.add_task(traces)
+ for layer_index, trace in traces.items():
+ task_marginal_mse = (
+ trace.int4_row_error_energies - trace.int8_row_error_energies
+ ).mean(dim=(0, 1), dtype=torch.float64)
+ if layer_index in mse_sums:
+ mse_sums[layer_index] += task_marginal_mse
+ else:
+ mse_sums[layer_index] = task_marginal_mse.clone()
+ retained_trace_bytes = sum(trace.retained_bytes for trace in traces.values())
+ task_records.append(
+ {
+ "task_id": row["task_id"],
+ "prompt_tokens": int(prompt_ids.shape[1]),
+ "code_tokens": code_tokens,
+ "captured_decode_tokens": code_tokens - 1,
+ "retained_trace_bytes": retained_trace_bytes,
+ }
+ )
+ print(
+ f"[{row_number}/{len(rows)}] task={row['task_id']} "
+ f"code_tokens={code_tokens} trace_bytes={retained_trace_bytes}",
+ flush=True,
+ )
+
+ h1_scores = _score_dict(h1_accumulator.summaries())
+ hrr_scores = _score_dict(hrr_accumulator.summaries())
+ mse_scores = {layer_index: score / len(rows) for layer_index, score in mse_sums.items()}
+ plans = {
+ "hrr_h1": select_rows_exact_budget(
+ h1_scores,
+ target_resident_bytes=args.target_resident_bytes,
+ group_size=args.group_size,
+ ),
+ f"hrr_h{args.horizon}": select_rows_exact_budget(
+ hrr_scores,
+ target_resident_bytes=args.target_resident_bytes,
+ group_size=args.group_size,
+ ),
+ "row_mse": select_rows_exact_budget(
+ mse_scores,
+ target_resident_bytes=args.target_resident_bytes,
+ group_size=args.group_size,
+ ),
+ }
+
+ plan_payload = {
+ name: {
+ "evidence": plan.evidence_dict(),
+ "promotions_by_layer": _plan_counts(plan),
+ "locations": _plan_locations(plan),
+ }
+ for name, plan in plans.items()
+ }
+ score_payload = {
+ "hrr_h1": _score_payload(h1_scores),
+ f"hrr_h{args.horizon}": _score_payload(hrr_scores),
+ "row_mse": _score_payload(mse_scores),
+ }
+ primary_name = f"hrr_h{args.horizon}"
+ evidence: dict[str, Any] = {
+ "schema_version": 1,
+ "artifact_kind": "recurquant_hrr_calibration_diagnostic",
+ "diagnostic_only": True,
+ "claim_boundary": (
+ "Calibration-only selector diagnostic. It does not measure language-model "
+ "quality, generalization, memory peaks, latency, novelty, or a breakthrough."
+ ),
+ "created_at_utc": datetime.now(UTC).isoformat(),
+ "seed": SEED,
+ "model": {
+ "id": args.model_id,
+ "revision": args.revision,
+ "dtype": str(dtype),
+ "device": str(device),
+ "linear_attention_layers": list(layer_indices),
+ },
+ "dataset": {
+ "manifest": dataset_manifest,
+ "manifest_sha256": mbpp_manifest_sha256(rows, phase="calibration"),
+ "tasks": task_records,
+ },
+ "method": {
+ "horizon": args.horizon,
+ "normalization_epsilon": HORIZON_EPSILON,
+ "score": "finite-horizon INT4 read risk minus INT8 read risk",
+ "task_averaging": "mean writes within task, then equal-weight task mean",
+ "normalization": "kernel-compatible q/k L2 normalization; query scale once",
+ "state_timing": "FP32 recurrent state immediately before each decode token update",
+ },
+ "quantizers": {
+ "axis_contract": "one independent group per recurrent [head, key-row]",
+ "int4": asdict(int4_spec),
+ "int8": asdict(int8_spec),
+ },
+ "byte_budget": {
+ "target_resident_bytes": args.target_resident_bytes,
+ "group_size": args.group_size,
+ "scale_bits": 16,
+ "precision_mask_bits_per_group": 1,
+ },
+ "scores": score_payload,
+ "plans": plan_payload,
+ "primary_top_rows": _top_rows(hrr_scores),
+ "policy_overlap": {
+ "primary_vs_h1": _overlap(plans[primary_name], plans["hrr_h1"]),
+ "primary_vs_row_mse": _overlap(plans[primary_name], plans["row_mse"]),
+ },
+ "environment": {
+ "python": sys.version,
+ "platform": platform.platform(),
+ "packages": _package_versions(),
+ "cuda_available": torch.cuda.is_available(),
+ "cuda_runtime": torch.version.cuda,
+ "gpu": torch.cuda.get_device_name(device) if device.type == "cuda" else None,
+ },
+ "repository": git_state(),
+ "command": [sys.executable, *sys.argv],
+ }
+ canonical_evidence = canonical_json_bytes(evidence)
+ artifact = {
+ "schema_version": 1,
+ "artifact_kind": "recurquant_hrr_calibration_diagnostic",
+ "canonical_evidence_sha256": sha256_bytes(canonical_evidence),
+ "evidence": evidence,
+ }
+ payload = canonical_json_bytes(artifact)
+ args.output.parent.mkdir(parents=True, exist_ok=True)
+ args.output.write_bytes(payload)
+ print(
+ json.dumps(
+ {
+ "output": str(args.output.resolve()),
+ "artifact_sha256": sha256_bytes(payload),
+ "canonical_evidence_sha256": artifact["canonical_evidence_sha256"],
+ "primary_plan": primary_name,
+ "resident_bytes": plans[primary_name].resident_bytes,
+ "promoted_rows": plans[primary_name].promoted_group_count,
+ "promotions_by_layer": _plan_counts(plans[primary_name]),
+ "overlap": evidence["policy_overlap"],
+ },
+ indent=2,
+ sort_keys=True,
+ )
+ )
+ return 0
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/scripts/pilot_loss_sensitivity_rows.py b/scripts/pilot_loss_sensitivity_rows.py
new file mode 100644
index 0000000..8072cb7
--- /dev/null
+++ b/scripts/pilot_loss_sensitivity_rows.py
@@ -0,0 +1,481 @@
+#!/usr/bin/env python3
+"""Build exact-byte row plans from one-step loss sensitivity.
+
+This script opens only the pinned MBPP calibration partition. It follows a
+repeated-QDQ all-INT4 recurrent-state trajectory, differentiates the next-token
+target loss once per transition, and task-macro averages the resulting row
+scores. Its output is an implementation diagnostic, not held-out evidence.
+"""
+
+from __future__ import annotations
+
+import argparse
+import hashlib
+import importlib.metadata
+import json
+import platform
+import subprocess
+import sys
+from dataclasses import asdict
+from datetime import UTC, datetime
+from pathlib import Path
+from statistics import fmean
+from typing import Any
+
+import torch
+from transformers import AutoTokenizer, DynamicCache, Qwen3_5ForCausalLM
+
+from recurquant.evidence import canonical_json_bytes
+from recurquant.fisher_sensitivity import (
+ GDNInt4TrajectorySensitivityCalibrator,
+ TaskMacroSensitivityAccumulator,
+)
+from recurquant.public_data import (
+ format_mbpp_example,
+ load_mbpp_rows,
+ mbpp_manifest,
+ mbpp_manifest_sha256,
+)
+from recurquant.quantization import QuantizationSpec
+from recurquant.row_policy import ExactBudgetRowPlan, RowLocation, select_rows_exact_budget
+
+SEED = 2339
+MODEL_ID = "Qwen/Qwen3.5-0.8B-Base"
+MODEL_REVISION = "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68"
+TARGET_RESIDENT_BYTES = 2_564_096
+ARTIFACT_KIND = "recurquant_loss_sensitivity_calibration_diagnostic"
+PRIMARY_SCORE = "signed_taylor_next_int4"
+SCORE_FIELDS = {
+ PRIMARY_SCORE: "taylor_benefit",
+ "target_directional_fisher_difference_int4": "directional_fisher_difference",
+ "target_diagonal_fisher_difference_int4": "diagonal_fisher_difference",
+ "delta_direction_magnitude_int4": "delta_direction_fisher_magnitude",
+}
+
+
+def parse_args() -> argparse.Namespace:
+ parser = argparse.ArgumentParser(
+ description=(
+ "Calibration-only repeated-INT4 loss-sensitivity selector diagnostic; "
+ "not a benchmark or confirmation run."
+ )
+ )
+ parser.add_argument("--output", type=Path, required=True)
+ parser.add_argument("--limit", type=int, default=1)
+ parser.add_argument("--max-code-tokens", type=int, default=512)
+ parser.add_argument("--group-size", type=int, default=128)
+ parser.add_argument(
+ "--target-resident-bytes",
+ type=int,
+ default=TARGET_RESIDENT_BYTES,
+ )
+ parser.add_argument("--device", choices=("auto", "cpu", "cuda"), default="auto")
+ parser.add_argument("--local-files-only", action="store_true")
+ parser.add_argument("--model-id", default=MODEL_ID)
+ parser.add_argument("--revision", default=MODEL_REVISION)
+ return parser.parse_args()
+
+
+def select_device(requested: str) -> torch.device:
+ if requested == "cuda":
+ if not torch.cuda.is_available():
+ raise RuntimeError("CUDA was requested but is unavailable")
+ return torch.device("cuda")
+ if requested == "cpu":
+ return torch.device("cpu")
+ return torch.device("cuda" if torch.cuda.is_available() else "cpu")
+
+
+def sha256_bytes(value: bytes) -> str:
+ return hashlib.sha256(value).hexdigest()
+
+
+def git_state() -> dict[str, object]:
+ commit = subprocess.run(
+ ["git", "rev-parse", "HEAD"],
+ check=True,
+ capture_output=True,
+ text=True,
+ ).stdout.strip()
+ status = subprocess.run(
+ ["git", "status", "--short"],
+ check=True,
+ capture_output=True,
+ text=True,
+ ).stdout.splitlines()
+ return {
+ "commit": commit,
+ "worktree_clean": not status,
+ "status": status,
+ }
+
+
+def _package_versions() -> dict[str, str]:
+ names = ("datasets", "numpy", "safetensors", "torch", "transformers")
+ return {name: importlib.metadata.version(name) for name in names}
+
+
+def _plan_counts(plan: ExactBudgetRowPlan) -> dict[str, int]:
+ counts = {str(layer_index): 0 for layer_index, _, _ in plan.score_shapes}
+ for location in plan.high_precision_rows:
+ counts[str(location.layer_index)] += 1
+ return counts
+
+
+def _plan_locations(plan: ExactBudgetRowPlan) -> list[dict[str, int]]:
+ return [
+ {
+ "layer_index": location.layer_index,
+ "head_index": location.head_index,
+ "row_index": location.row_index,
+ }
+ for location in plan.high_precision_rows
+ ]
+
+
+def _score_payload(scores: dict[int, torch.Tensor]) -> dict[str, object]:
+ arrays = {
+ str(layer_index): tensor.detach().to(torch.float64).cpu().tolist()
+ for layer_index, tensor in sorted(scores.items())
+ }
+ flattened = torch.cat(
+ [
+ scores[layer_index].detach().to(torch.float64).reshape(-1).cpu()
+ for layer_index in sorted(scores)
+ ]
+ )
+ encoded = canonical_json_bytes(arrays)
+ return {
+ "arrays": arrays,
+ "canonical_arrays_sha256": sha256_bytes(encoded),
+ "row_count": int(flattened.numel()),
+ "minimum": float(flattened.min().item()),
+ "maximum": float(flattened.max().item()),
+ "mean": float(flattened.mean().item()),
+ "positive_rows": int((flattened > 0).sum().item()),
+ "zero_rows": int((flattened == 0).sum().item()),
+ "negative_rows": int((flattened < 0).sum().item()),
+ }
+
+
+def _overlap(left: ExactBudgetRowPlan, right: ExactBudgetRowPlan) -> dict[str, float | int]:
+ left_rows = set(left.high_precision_rows)
+ right_rows = set(right.high_precision_rows)
+ intersection = len(left_rows & right_rows)
+ union = len(left_rows | right_rows)
+ return {
+ "intersection": intersection,
+ "union": union,
+ "jaccard": intersection / union if union else 1.0,
+ }
+
+
+def _top_rows(
+ scores: dict[int, torch.Tensor],
+ *,
+ count: int = 20,
+) -> list[dict[str, float | int]]:
+ candidates: list[tuple[float, RowLocation]] = []
+ for layer_index, layer_scores in scores.items():
+ values = layer_scores.detach().to(device="cpu", dtype=torch.float64)
+ for head_index in range(values.shape[0]):
+ for row_index in range(values.shape[1]):
+ candidates.append(
+ (
+ float(values[head_index, row_index].item()),
+ RowLocation(layer_index, head_index, row_index),
+ )
+ )
+ ordered = sorted(candidates, key=lambda item: (-item[0], item[1]))[:count]
+ return [
+ {
+ "score": score,
+ "layer_index": location.layer_index,
+ "head_index": location.head_index,
+ "row_index": location.row_index,
+ }
+ for score, location in ordered
+ ]
+
+
+def _scores_from_accumulator(
+ accumulator: TaskMacroSensitivityAccumulator,
+ layer_indices: tuple[int, ...],
+) -> dict[str, dict[int, torch.Tensor]]:
+ by_name: dict[str, dict[int, torch.Tensor]] = {name: {} for name in SCORE_FIELDS}
+ for layer_index in layer_indices:
+ summary = accumulator.summary(layer_index)
+ if summary.trajectory != "int4":
+ raise RuntimeError("loss-sensitivity accumulator did not retain the INT4 trajectory")
+ for public_name, field_name in SCORE_FIELDS.items():
+ value = getattr(summary, field_name)
+ if not isinstance(value, torch.Tensor):
+ raise TypeError(f"sensitivity summary field {field_name} must be a tensor")
+ by_name[public_name][layer_index] = value
+ return by_name
+
+
+def main() -> int:
+ args = parse_args()
+ if not 1 <= args.limit <= 16:
+ raise ValueError("--limit must be between 1 and 16 for a diagnostic pilot")
+ if args.max_code_tokens < 2:
+ raise ValueError("--max-code-tokens must be at least 2")
+ if args.group_size <= 0:
+ raise ValueError("--group-size must be positive")
+
+ torch.manual_seed(SEED)
+ device = select_device(args.device)
+ dtype = torch.bfloat16 if device.type == "cuda" else torch.float32
+ rows = load_mbpp_rows("calibration", limit=args.limit)
+ dataset_manifest = mbpp_manifest(rows, phase="calibration")
+
+ tokenizer = AutoTokenizer.from_pretrained(
+ args.model_id,
+ revision=args.revision,
+ local_files_only=args.local_files_only,
+ trust_remote_code=False,
+ )
+ model = Qwen3_5ForCausalLM.from_pretrained(
+ args.model_id,
+ revision=args.revision,
+ dtype=dtype,
+ attn_implementation="eager",
+ low_cpu_mem_usage=True,
+ use_safetensors=True,
+ local_files_only=args.local_files_only,
+ ).to(device)
+ model.eval()
+
+ layer_indices = tuple(
+ index
+ for index, layer_type in enumerate(model.config.layer_types)
+ if layer_type == "linear_attention"
+ )
+ if len(layer_indices) != 18:
+ raise RuntimeError(f"Expected 18 GDN layers, found {len(layer_indices)}")
+ if args.group_size != int(model.config.linear_value_head_dim):
+ raise ValueError(
+ "--group-size must equal model.config.linear_value_head_dim "
+ f"({args.group_size} != {model.config.linear_value_head_dim})"
+ )
+
+ int4_spec = QuantizationSpec(
+ bits=4,
+ group_size=args.group_size,
+ scale_bits=16,
+ flatten_last_dims=1,
+ rounding="nearest",
+ seed=SEED,
+ )
+ int8_spec = QuantizationSpec(
+ bits=8,
+ group_size=args.group_size,
+ scale_bits=16,
+ flatten_last_dims=1,
+ rounding="nearest",
+ seed=SEED,
+ )
+ accumulator = TaskMacroSensitivityAccumulator()
+ task_records: list[dict[str, float | int]] = []
+
+ for row_number, row in enumerate(rows, start=1):
+ formatted = format_mbpp_example(row)
+ prompt_ids = tokenizer(
+ formatted.prompt,
+ add_special_tokens=True,
+ return_tensors="pt",
+ )["input_ids"].to(device)
+ code_ids = tokenizer(
+ formatted.code,
+ add_special_tokens=False,
+ return_tensors="pt",
+ )["input_ids"].to(device)
+ code_tokens = int(code_ids.shape[1])
+ if code_tokens < 2:
+ raise RuntimeError(f"MBPP task {row['task_id']} has fewer than two code tokens")
+ if code_tokens > args.max_code_tokens:
+ raise RuntimeError(
+ f"MBPP task {row['task_id']} has {code_tokens} code tokens, exceeding "
+ f"--max-code-tokens={args.max_code_tokens}; no truncation is allowed"
+ )
+
+ cache = DynamicCache(config=model.config)
+ with torch.no_grad():
+ model(
+ prompt_ids,
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ calibrator = GDNInt4TrajectorySensitivityCalibrator(
+ model,
+ cache,
+ int4_spec=int4_spec,
+ int8_spec=int8_spec,
+ )
+ steps = []
+ for token_index in range(code_tokens - 1):
+ steps.append(
+ calibrator.step(
+ code_ids[:, token_index : token_index + 1],
+ code_ids[:, token_index + 1 : token_index + 2],
+ forward_kwargs={"logits_to_keep": 1},
+ )
+ )
+ if any(
+ tuple(score.layer_index for score in step.layers) != layer_indices for step in steps
+ ):
+ raise RuntimeError("sensitivity step layers do not match the model GDN layers")
+ accumulator.add_task(steps)
+ mean_nll = fmean(step.mean_nll for step in steps)
+ task_records.append(
+ {
+ "task_id": row["task_id"],
+ "prompt_tokens": int(prompt_ids.shape[1]),
+ "code_tokens": code_tokens,
+ "scored_transitions": code_tokens - 1,
+ "mean_target_nll_on_int4_trajectory": mean_nll,
+ }
+ )
+ print(
+ f"[{row_number}/{len(rows)}] task={row['task_id']} "
+ f"code_tokens={code_tokens} transitions={code_tokens - 1} "
+ f"mean_nll={mean_nll:.6f}",
+ flush=True,
+ )
+
+ scores = _scores_from_accumulator(accumulator, layer_indices)
+ plans = {
+ name: select_rows_exact_budget(
+ layer_scores,
+ target_resident_bytes=args.target_resident_bytes,
+ group_size=args.group_size,
+ )
+ for name, layer_scores in scores.items()
+ }
+ primary_plan = plans[PRIMARY_SCORE]
+ for name, plan in plans.items():
+ if plan.resident_bytes != args.target_resident_bytes:
+ raise RuntimeError(f"{name} did not realize the exact target byte budget")
+ if plan.promoted_group_count != primary_plan.promoted_group_count:
+ raise RuntimeError(f"{name} did not use the common promotion count")
+
+ score_payload = {name: _score_payload(layer_scores) for name, layer_scores in scores.items()}
+ plan_payload = {
+ name: {
+ "evidence": plan.evidence_dict(),
+ "promotions_by_layer": _plan_counts(plan),
+ "locations": _plan_locations(plan),
+ }
+ for name, plan in plans.items()
+ }
+ evidence: dict[str, Any] = {
+ "schema_version": 1,
+ "artifact_kind": ARTIFACT_KIND,
+ "diagnostic_only": True,
+ "claim_boundary": (
+ "Calibration-only, target-dependent, one-step selector diagnostic. It does "
+ "not establish held-out quality, free-generation behavior, novelty, speed, "
+ "peak memory, model-Fisher validity, or a breakthrough."
+ ),
+ "created_at_utc": datetime.now(UTC).isoformat(),
+ "seed": SEED,
+ "model": {
+ "id": args.model_id,
+ "revision": args.revision,
+ "dtype": str(dtype),
+ "device": str(device),
+ "linear_attention_layers": list(layer_indices),
+ },
+ "dataset": {
+ "manifest": dataset_manifest,
+ "manifest_sha256": mbpp_manifest_sha256(rows, phase="calibration"),
+ "tasks": task_records,
+ },
+ "method": {
+ "primary": PRIMARY_SCORE,
+ "trajectory": "uniform INT4 QDQ after prefill and after every recurrent update",
+ "loss": "teacher-forced next-token target NLL; one reverse pass per transition",
+ "state_timing": "stored Q4 state before the next token update",
+ "promotion_direction": "Q8(raw pre-storage update) minus Q4(raw pre-storage update)",
+ "task_averaging": "mean transitions within task, then equal-weight task mean",
+ "score_definitions": {
+ PRIMARY_SCORE: "-gradient dot (Q8 - Q4); signed predicted next-token NLL reduction",
+ "target_directional_fisher_difference_int4": (
+ "(gradient dot e4)^2 - (gradient dot e8)^2 using observed targets"
+ ),
+ "target_diagonal_fisher_difference_int4": (
+ "sum gradient^2 * (e4^2 - e8^2), without coordinate clamping"
+ ),
+ "delta_direction_magnitude_int4": (
+ "(gradient dot (e4 - e8))^2; non-benefit sensitivity diagnostic"
+ ),
+ },
+ "label_free_model_fisher": (
+ "not implemented in this artifact; it requires model-sampled pseudo-label probes"
+ ),
+ "suffix_gradient": "not implemented; this artifact scores only the next token",
+ },
+ "quantizers": {
+ "axis_contract": "one independent group per recurrent [head, key-row]",
+ "int4": asdict(int4_spec),
+ "int8": asdict(int8_spec),
+ },
+ "byte_budget": {
+ "target_resident_bytes": args.target_resident_bytes,
+ "group_size": args.group_size,
+ "scale_bits": 16,
+ "precision_mask_bits_per_group": 1,
+ "promoted_rows": primary_plan.promoted_group_count,
+ },
+ "scores": score_payload,
+ "plans": plan_payload,
+ "primary_top_rows": _top_rows(scores[PRIMARY_SCORE]),
+ "policy_overlap_with_primary": {
+ name: _overlap(primary_plan, plan)
+ for name, plan in plans.items()
+ if name != PRIMARY_SCORE
+ },
+ "environment": {
+ "python": sys.version,
+ "platform": platform.platform(),
+ "packages": _package_versions(),
+ "cuda_available": torch.cuda.is_available(),
+ "cuda_runtime": torch.version.cuda,
+ "gpu": torch.cuda.get_device_name(device) if device.type == "cuda" else None,
+ },
+ "repository": git_state(),
+ "command": [sys.executable, *sys.argv],
+ }
+ canonical_evidence = canonical_json_bytes(evidence)
+ artifact = {
+ "schema_version": 1,
+ "artifact_kind": ARTIFACT_KIND,
+ "canonical_evidence_sha256": sha256_bytes(canonical_evidence),
+ "evidence": evidence,
+ }
+ payload = canonical_json_bytes(artifact)
+ args.output.parent.mkdir(parents=True, exist_ok=True)
+ args.output.write_bytes(payload)
+ print(
+ json.dumps(
+ {
+ "output": str(args.output.resolve()),
+ "artifact_sha256": sha256_bytes(payload),
+ "canonical_evidence_sha256": artifact["canonical_evidence_sha256"],
+ "primary_plan": PRIMARY_SCORE,
+ "resident_bytes": primary_plan.resident_bytes,
+ "promoted_rows": primary_plan.promoted_group_count,
+ "promotions_by_layer": _plan_counts(primary_plan),
+ "overlap": evidence["policy_overlap_with_primary"],
+ },
+ indent=2,
+ sort_keys=True,
+ )
+ )
+ return 0
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/scripts/pilot_validate_storage_boundary.py b/scripts/pilot_validate_storage_boundary.py
new file mode 100644
index 0000000..262a353
--- /dev/null
+++ b/scripts/pilot_validate_storage_boundary.py
@@ -0,0 +1,844 @@
+#!/usr/bin/env python3
+"""Validate one-row Taylor directions at real Qwen3.5 storage boundaries.
+
+This bounded diagnostic reads only the pinned MBPP calibration partition. It
+uses four geometry-stratified rows fixed in source before any benefit is
+measured and the fixed central-difference epsilon grid {1/4, 1/8, 1/16, 1/32}.
+It is an implementation check, not a policy search or quality benchmark.
+"""
+
+from __future__ import annotations
+
+import argparse
+import hashlib
+import importlib.metadata
+import json
+import math
+import platform
+import statistics
+import subprocess
+import sys
+from dataclasses import asdict
+from datetime import UTC, datetime
+from pathlib import Path
+from typing import Any, Final
+
+import torch
+from transformers import AutoTokenizer, DynamicCache, Qwen3_5ForCausalLM
+
+from recurquant.evidence import canonical_json_bytes
+from recurquant.public_data import (
+ format_mbpp_example,
+ load_mbpp_rows,
+ mbpp_manifest,
+ mbpp_manifest_sha256,
+)
+from recurquant.quantization import QuantizationSpec, quantize_pack
+from recurquant.storage_boundary_validation import (
+ StorageBoundaryRowValidation,
+ StorageRowLocation,
+ advance_uniform_int4_trajectory,
+ validate_qwen_storage_boundary_row,
+)
+
+SEED: Final = 2339
+MODEL_ID: Final = "Qwen/Qwen3.5-0.8B-Base"
+MODEL_REVISION: Final = "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68"
+ARTIFACT_KIND: Final = "recurquant_storage_boundary_taylor_diagnostic"
+TASK_PREFIX_LIMIT: Final = 1
+TASK_INDEX: Final = 0
+TRANSITION_INDEX: Final = 0
+EPSILONS: Final = (1 / 4, 1 / 8, 1 / 16, 1 / 32)
+BASELINE_REPEAT_ABSOLUTE_TOLERANCE: Final = 1e-7
+DERIVATIVE_INFORMATIVE_FLOOR: Final = 1e-8
+NEAR_ZERO_ABSOLUTE_TOLERANCE: Final = 2e-7
+MINIMUM_INFORMATIVE_ROWS: Final = 3
+MINIMUM_SIGN_AGREEMENT: Final = 0.95
+MAXIMUM_MEDIAN_RELATIVE_ERROR: Final = 0.10
+MINIMUM_CONVERGED_ROW_FRACTION: Final = 0.75
+
+# (label, recurrent-layer ordinal, head index, key-row index). These four
+# coordinates span early/late layers and low/high head/row indices. They are
+# intentionally unrelated to any selector score or measured loss benefit.
+ROW_STRATA: Final = (
+ ("early_low", 0, 0, 0),
+ ("early_mid", 5, 5, 42),
+ ("late_mid", 11, 10, 85),
+ ("late_high", 17, 15, 127),
+)
+
+CACHE_FINGERPRINT_CACHE_METADATA: Final = (
+ "offloading",
+ "layer_class_to_replicate",
+)
+CACHE_FINGERPRINT_LAYER_METADATA: Final = (
+ "number_of_states",
+ "is_conv_states_initialized",
+ "is_recurrent_states_initialized",
+ "has_previous_state",
+ "conv_kernel_size",
+ "is_initialized",
+ "cumulative_length",
+ "sliding_window",
+ "max_cache_len",
+ "device",
+ "dtype",
+ "record_past",
+)
+
+
+def parse_args() -> argparse.Namespace:
+ parser = argparse.ArgumentParser(
+ description=(
+ "Pinned calibration-only one-row storage-boundary derivative diagnostic; "
+ "not a quality benchmark."
+ )
+ )
+ parser.add_argument("--output", type=Path, required=True)
+ parser.add_argument("--device", choices=("auto", "cpu", "cuda"), default="auto")
+ parser.add_argument("--local-files-only", action="store_true")
+ parser.add_argument(
+ "--phase",
+ default="calibration",
+ help="Must remain 'calibration'; development and confirmation are refused.",
+ )
+ return parser.parse_args()
+
+
+def _sha256_bytes(value: bytes) -> str:
+ return hashlib.sha256(value).hexdigest()
+
+
+def _select_device(requested: str) -> torch.device:
+ if requested == "cuda":
+ if not torch.cuda.is_available():
+ raise RuntimeError("CUDA was requested but is unavailable")
+ return torch.device("cuda")
+ if requested == "cpu":
+ return torch.device("cpu")
+ return torch.device("cuda" if torch.cuda.is_available() else "cpu")
+
+
+def _git_state() -> dict[str, object]:
+ commit = subprocess.run(
+ ["git", "rev-parse", "HEAD"],
+ check=True,
+ capture_output=True,
+ text=True,
+ ).stdout.strip()
+ status = subprocess.run(
+ ["git", "status", "--short"],
+ check=True,
+ capture_output=True,
+ text=True,
+ ).stdout.splitlines()
+ tracked_diff = subprocess.run(
+ ["git", "diff", "--binary", "HEAD"],
+ check=True,
+ capture_output=True,
+ ).stdout
+ return {
+ "commit": commit,
+ "status": status,
+ "worktree_clean": not status,
+ "tracked_diff_sha256": _sha256_bytes(tracked_diff),
+ }
+
+
+def _package_versions() -> dict[str, str]:
+ names = ("datasets", "numpy", "safetensors", "torch", "transformers")
+ return {name: importlib.metadata.version(name) for name in names}
+
+
+def _implementation_paths() -> tuple[Path, ...]:
+ root = Path(__file__).resolve().parents[1]
+ return (
+ Path(__file__).resolve(),
+ root / "src" / "recurquant" / "storage_boundary_validation.py",
+ root / "src" / "recurquant" / "quantization.py",
+ root / "src" / "recurquant" / "evidence.py",
+ root / "src" / "recurquant" / "public_data.py",
+ )
+
+
+def _source_hashes(paths: tuple[Path, ...]) -> dict[str, str]:
+ root = Path(__file__).resolve().parents[1]
+ hashes: dict[str, str] = {}
+ for path in paths:
+ relative = path.resolve().relative_to(root).as_posix()
+ hashes[relative] = _sha256_bytes(path.read_bytes())
+ return hashes
+
+
+def _tensor_bytes_sha256(tensor: torch.Tensor) -> str:
+ value = tensor.detach().contiguous().cpu()
+ return _sha256_bytes(value.view(torch.uint8).numpy().tobytes())
+
+
+def _tensor_record(tensor: torch.Tensor, *, include_values: bool) -> dict[str, object]:
+ value = tensor.detach().to(device="cpu", dtype=torch.float64).contiguous()
+ if value.numel() == 0 or not torch.isfinite(value).all().item():
+ raise ValueError("artifact tensors must be non-empty and finite")
+ values = value.tolist()
+ canonical = canonical_json_bytes(
+ {
+ "dtype": str(tensor.dtype),
+ "shape": list(tensor.shape),
+ "values": values,
+ }
+ )
+ record: dict[str, object] = {
+ "dtype": str(tensor.dtype),
+ "shape": list(tensor.shape),
+ "canonical_values_sha256": _sha256_bytes(canonical),
+ "raw_bytes_sha256": _tensor_bytes_sha256(tensor),
+ "minimum": float(value.min().item()),
+ "maximum": float(value.max().item()),
+ "l2_norm": float(torch.linalg.vector_norm(value).item()),
+ }
+ if include_values:
+ record["values_float64"] = values
+ return record
+
+
+def _cache_metadata_value(value: object) -> object:
+ if value is None or isinstance(value, (bool, int, float, str)):
+ return value
+ if isinstance(value, (torch.device, torch.dtype)):
+ return str(value)
+ if isinstance(value, type):
+ return f"{value.__module__}.{value.__qualname__}"
+ if isinstance(value, dict):
+ return {
+ str(key): _cache_metadata_value(item)
+ for key, item in sorted(value.items(), key=lambda pair: str(pair[0]))
+ }
+ if isinstance(value, (list, tuple)):
+ return [_cache_metadata_value(item) for item in value]
+ raise TypeError(f"unsupported cache fingerprint metadata type: {type(value).__name__}")
+
+
+def _cache_fingerprint(cache: DynamicCache) -> str:
+ records: list[dict[str, object]] = []
+ records.append(
+ {
+ "scope": "cache",
+ "class": f"{cache.__class__.__module__}.{cache.__class__.__qualname__}",
+ "layer_count": len(cache.layers),
+ "metadata": {
+ name: {
+ "present": hasattr(cache, name),
+ "value": (
+ _cache_metadata_value(getattr(cache, name))
+ if hasattr(cache, name)
+ else None
+ ),
+ }
+ for name in CACHE_FINGERPRINT_CACHE_METADATA
+ },
+ }
+ )
+ for layer_index, layer in enumerate(cache.layers):
+ records.append(
+ {
+ "scope": "layer",
+ "layer_index": layer_index,
+ "class": f"{layer.__class__.__module__}.{layer.__class__.__qualname__}",
+ "metadata": {
+ name: {
+ "present": hasattr(layer, name),
+ "value": (
+ _cache_metadata_value(getattr(layer, name))
+ if hasattr(layer, name)
+ else None
+ ),
+ }
+ for name in CACHE_FINGERPRINT_LAYER_METADATA
+ },
+ }
+ )
+ for name in ("keys", "values"):
+ value = getattr(layer, name, None)
+ if isinstance(value, torch.Tensor):
+ records.append(
+ {
+ "scope": "tensor",
+ "layer_index": layer_index,
+ "attribute": name,
+ "state_index": None,
+ "dtype": str(value.dtype),
+ "shape": list(value.shape),
+ "raw_bytes_sha256": _tensor_bytes_sha256(value),
+ }
+ )
+ for name in ("conv_states", "recurrent_states"):
+ states = getattr(layer, name, None)
+ if not isinstance(states, dict):
+ continue
+ for state_index, value in sorted(states.items()):
+ if isinstance(value, torch.Tensor):
+ records.append(
+ {
+ "scope": "tensor",
+ "layer_index": layer_index,
+ "attribute": name,
+ "state_index": int(state_index),
+ "dtype": str(value.dtype),
+ "shape": list(value.shape),
+ "raw_bytes_sha256": _tensor_bytes_sha256(value),
+ }
+ )
+ return _sha256_bytes(canonical_json_bytes(records))
+
+
+def _resolve_strata(
+ recurrent_layers: tuple[int, ...],
+ *,
+ heads: int,
+ rows: int,
+) -> tuple[tuple[str, StorageRowLocation], ...]:
+ resolved: list[tuple[str, StorageRowLocation]] = []
+ for label, layer_ordinal, head_index, row_index in ROW_STRATA:
+ if layer_ordinal >= len(recurrent_layers):
+ raise ValueError(f"row stratum {label} exceeds recurrent-layer geometry")
+ if head_index >= heads or row_index >= rows:
+ raise ValueError(f"row stratum {label} exceeds recurrent-state geometry")
+ resolved.append(
+ (
+ label,
+ StorageRowLocation(
+ layer_index=recurrent_layers[layer_ordinal],
+ head_index=head_index,
+ row_index=row_index,
+ ),
+ )
+ )
+ return tuple(resolved)
+
+
+def _physical_endpoint_record(
+ raw_row: torch.Tensor,
+ endpoint_row: torch.Tensor,
+ spec: QuantizationSpec,
+) -> dict[str, object]:
+ shaped = raw_row.reshape(1, 1, 1, -1)
+ packed = quantize_pack(shaped, spec)
+ dequantized = packed.dequantize().reshape(-1).cpu()
+ if not torch.equal(dequantized, endpoint_row):
+ raise RuntimeError(f"INT{spec.bits} row endpoint does not match physical packing")
+ return {
+ "bits": spec.bits,
+ "payload_bytes": packed.payload.numel() * packed.payload.element_size(),
+ "scale_bytes": packed.scales.numel() * packed.scales.element_size(),
+ "resident_bytes": packed.storage_bytes,
+ "payload": _tensor_record(packed.payload, include_values=False),
+ "scales": _tensor_record(packed.scales, include_values=True),
+ }
+
+
+def _row_tensors_record(result: StorageBoundaryRowValidation) -> dict[str, object]:
+ if not torch.equal(result.direction, result.int8_row - result.int4_row):
+ raise RuntimeError("recorded row direction does not equal INT8 minus INT4")
+ return {
+ "raw": _tensor_record(result.raw_row, include_values=True),
+ "int4": _tensor_record(result.int4_row, include_values=True),
+ "int8": _tensor_record(result.int8_row, include_values=True),
+ "direction_int8_minus_int4": _tensor_record(result.direction, include_values=True),
+ "loss_gradient_at_int4": _tensor_record(result.gradient_row, include_values=True),
+ }
+
+
+def _assert_same_row_result(
+ reference: StorageBoundaryRowValidation,
+ candidate: StorageBoundaryRowValidation,
+) -> None:
+ fields = ("raw_row", "int4_row", "int8_row", "direction", "gradient_row")
+ if any(not torch.equal(getattr(reference, name), getattr(candidate, name)) for name in fields):
+ raise RuntimeError("row tensors changed across the fixed epsilon grid")
+ scalar_fields = (
+ "loss_at_zero",
+ "repeated_loss_at_zero",
+ "loss_at_int8_endpoint",
+ "autograd_directional_derivative",
+ "predicted_benefit_autograd",
+ "measured_endpoint_benefit",
+ )
+ if any(
+ getattr(reference.comparison, name) != getattr(candidate.comparison, name)
+ for name in scalar_fields
+ ):
+ raise RuntimeError("shared endpoint or autograd results changed across epsilons")
+
+
+def _evaluate_derivative_gate(row_records: list[dict[str, object]]) -> dict[str, object]:
+ """Apply the source-frozen FP32 derivative gate to detached row records."""
+
+ if len(row_records) != len(ROW_STRATA):
+ raise ValueError("derivative gate requires every frozen row stratum")
+ expected_labels = tuple(label for label, *_ in ROW_STRATA)
+ observed_labels = tuple(str(record.get("stratum")) for record in row_records)
+ if observed_labels != expected_labels:
+ raise ValueError("derivative gate requires frozen row strata in source order")
+ informative_rows = 0
+ near_zero_rows = 0
+ sign_checks: list[bool] = []
+ relative_errors: list[float] = []
+ converged_rows: list[bool] = []
+ baseline_repeat_errors: list[float] = []
+ near_zero_checks: list[bool] = []
+ failures: list[str] = []
+
+ for row_record in row_records:
+ label = str(row_record["stratum"])
+ raw_results = row_record["epsilon_results"]
+ if not isinstance(raw_results, list) or len(raw_results) != len(EPSILONS):
+ raise ValueError(f"row {label} lacks the frozen epsilon grid")
+ results = [dict(value) for value in raw_results]
+ observed_epsilons = tuple(float(value["epsilon"]) for value in results)
+ if any(not math.isfinite(value) for value in observed_epsilons):
+ raise ValueError(f"row {label} epsilon grid must be finite")
+ if observed_epsilons != EPSILONS:
+ raise ValueError(f"row {label} epsilon grid changed")
+
+ autograd_values = [
+ float(value["autograd_directional_derivative"]) for value in results
+ ]
+ central_values = [
+ float(value["central_directional_derivative"]) for value in results
+ ]
+ current_baseline_errors = [
+ float(value["baseline_repeat_absolute_error"]) for value in results
+ ]
+ if any(
+ not math.isfinite(value)
+ for value in (*autograd_values, *central_values, *current_baseline_errors)
+ ):
+ raise ValueError(f"row {label} derivative-gate values must be finite")
+ if any(value < 0 for value in current_baseline_errors):
+ raise ValueError(f"row {label} baseline repeat errors must be non-negative")
+ unique_autograd_values = set(autograd_values)
+ if len(unique_autograd_values) != 1:
+ raise ValueError(f"row {label} autograd derivative changed across epsilons")
+ autograd = unique_autograd_values.pop()
+ absolute_errors = [abs(central - autograd) for central in central_values]
+ baseline_repeat_errors.extend(current_baseline_errors)
+
+ if abs(autograd) <= DERIVATIVE_INFORMATIVE_FLOOR:
+ near_zero_rows += 1
+ checks = [error <= NEAR_ZERO_ABSOLUTE_TOLERANCE for error in absolute_errors]
+ near_zero_checks.extend(checks)
+ if not all(checks):
+ failures.append(
+ f"{label}: near-zero absolute derivative error exceeded tolerance"
+ )
+ continue
+
+ informative_rows += 1
+ row_signs = [
+ (central > 0) == (autograd > 0) and central != 0
+ for central in central_values
+ ]
+ sign_checks.extend(row_signs)
+ relative_errors.extend(error / abs(autograd) for error in absolute_errors)
+ # The final three grid points are 1/8, 1/16, and 1/32. Numerical noise
+ # need not make them strictly monotone, but the smallest step must not
+ # be worse than the first of those three.
+ converged_rows.append(absolute_errors[-1] <= absolute_errors[1])
+
+ maximum_baseline_repeat_error = max(baseline_repeat_errors, default=math.inf)
+ sign_agreement = sum(sign_checks) / len(sign_checks) if sign_checks else None
+ median_relative_error = (
+ statistics.median(relative_errors) if relative_errors else None
+ )
+ converged_fraction = (
+ sum(converged_rows) / len(converged_rows) if converged_rows else None
+ )
+ if informative_rows < MINIMUM_INFORMATIVE_ROWS:
+ failures.append(
+ f"only {informative_rows} informative rows; require {MINIMUM_INFORMATIVE_ROWS}"
+ )
+ if maximum_baseline_repeat_error > BASELINE_REPEAT_ABSOLUTE_TOLERANCE:
+ failures.append("repeated alpha=0 baseline exceeded absolute tolerance")
+ if sign_agreement is None or sign_agreement < MINIMUM_SIGN_AGREEMENT:
+ failures.append("central-difference sign agreement fell below threshold")
+ if (
+ median_relative_error is None
+ or median_relative_error > MAXIMUM_MEDIAN_RELATIVE_ERROR
+ ):
+ failures.append("median central-difference relative error exceeded threshold")
+ if converged_fraction is None or converged_fraction < MINIMUM_CONVERGED_ROW_FRACTION:
+ failures.append("too few informative rows improved over the final epsilon range")
+
+ return {
+ "passed": not failures,
+ "failures": failures,
+ "thresholds": {
+ "model_dtype": "torch.float32",
+ "baseline_repeat_absolute_tolerance": BASELINE_REPEAT_ABSOLUTE_TOLERANCE,
+ "derivative_informative_floor": DERIVATIVE_INFORMATIVE_FLOOR,
+ "near_zero_absolute_tolerance": NEAR_ZERO_ABSOLUTE_TOLERANCE,
+ "minimum_informative_rows": MINIMUM_INFORMATIVE_ROWS,
+ "minimum_sign_agreement": MINIMUM_SIGN_AGREEMENT,
+ "maximum_median_relative_error": MAXIMUM_MEDIAN_RELATIVE_ERROR,
+ "minimum_converged_row_fraction": MINIMUM_CONVERGED_ROW_FRACTION,
+ },
+ "observed": {
+ "rows": len(row_records),
+ "informative_rows": informative_rows,
+ "near_zero_rows": near_zero_rows,
+ "sign_checks": len(sign_checks),
+ "sign_agreement": sign_agreement,
+ "median_relative_error": median_relative_error,
+ "converged_row_fraction": converged_fraction,
+ "maximum_baseline_repeat_absolute_error": maximum_baseline_repeat_error,
+ "near_zero_checks": len(near_zero_checks),
+ "near_zero_checks_passed": sum(near_zero_checks),
+ },
+ }
+
+
+def main() -> int:
+ args = parse_args()
+ if args.phase != "calibration":
+ raise ValueError(
+ "This implementation diagnostic refuses development and confirmation data; "
+ "--phase must be calibration."
+ )
+
+ torch.manual_seed(SEED)
+ if torch.cuda.is_available():
+ torch.cuda.manual_seed_all(SEED)
+ device = _select_device(args.device)
+ # The frozen gate uses FP32 weights and FP32 NLL so central differences do
+ # not collapse merely because a BF16 matmul rounds away a small alpha move.
+ dtype = torch.float32
+ implementation_paths = _implementation_paths()
+ source_hashes_start = _source_hashes(implementation_paths)
+ repository_start = _git_state()
+
+ rows = load_mbpp_rows("calibration", limit=TASK_PREFIX_LIMIT)
+ if len(rows) != TASK_PREFIX_LIMIT:
+ raise RuntimeError("pinned calibration loader returned an unexpected task count")
+ row = rows[TASK_INDEX]
+ formatted = format_mbpp_example(row)
+
+ tokenizer = AutoTokenizer.from_pretrained(
+ MODEL_ID,
+ revision=MODEL_REVISION,
+ local_files_only=args.local_files_only,
+ trust_remote_code=False,
+ )
+ prompt_ids = tokenizer(
+ formatted.prompt,
+ add_special_tokens=True,
+ return_tensors="pt",
+ )["input_ids"].to(device)
+ code_ids = tokenizer(
+ formatted.code,
+ add_special_tokens=False,
+ return_tensors="pt",
+ )["input_ids"].to(device)
+ if code_ids.shape[1] < TRANSITION_INDEX + 2:
+ raise RuntimeError("frozen MBPP task does not contain the required target transition")
+
+ model = Qwen3_5ForCausalLM.from_pretrained(
+ MODEL_ID,
+ revision=MODEL_REVISION,
+ dtype=dtype,
+ attn_implementation="eager",
+ low_cpu_mem_usage=True,
+ use_safetensors=True,
+ local_files_only=args.local_files_only,
+ ).to(device)
+ model.eval()
+ recurrent_layers = tuple(
+ index
+ for index, layer_type in enumerate(model.config.layer_types)
+ if layer_type == "linear_attention"
+ )
+ heads = int(model.config.linear_num_value_heads)
+ key_rows = int(model.config.linear_key_head_dim)
+ value_dim = int(model.config.linear_value_head_dim)
+ if (len(recurrent_layers), heads, key_rows, value_dim) != (18, 16, 128, 128):
+ raise RuntimeError(
+ "Pinned Qwen3.5-0.8B recurrent geometry changed; refusing to adapt fixed strata"
+ )
+ strata = _resolve_strata(recurrent_layers, heads=heads, rows=key_rows)
+
+ int4_spec = QuantizationSpec(
+ bits=4,
+ group_size=value_dim,
+ scale_bits=16,
+ flatten_last_dims=1,
+ rounding="nearest",
+ seed=SEED,
+ )
+ int8_spec = QuantizationSpec(
+ bits=8,
+ group_size=value_dim,
+ scale_bits=16,
+ flatten_last_dims=1,
+ rounding="nearest",
+ seed=SEED,
+ )
+
+ raw_cache = DynamicCache(config=model.config)
+ with torch.no_grad():
+ model(
+ prompt_ids,
+ past_key_values=raw_cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ previous_ids = code_ids[:, :TRANSITION_INDEX]
+ advance_uniform_int4_trajectory(
+ model,
+ raw_cache,
+ previous_ids,
+ int4_spec=int4_spec,
+ forward_kwargs={"logits_to_keep": 1},
+ )
+ input_ids = code_ids[:, TRANSITION_INDEX : TRANSITION_INDEX + 1]
+ target_ids = code_ids[:, TRANSITION_INDEX + 1 : TRANSITION_INDEX + 2]
+ raw_cache_fingerprint = _cache_fingerprint(raw_cache)
+
+ row_records: list[dict[str, object]] = []
+ for row_number, (label, location) in enumerate(strata, start=1):
+ reference: StorageBoundaryRowValidation | None = None
+ epsilon_records: list[dict[str, object]] = []
+ for epsilon_number, epsilon in enumerate(EPSILONS, start=1):
+ before = _cache_fingerprint(raw_cache)
+ if before != raw_cache_fingerprint:
+ raise RuntimeError("raw boundary cache changed before validation")
+ result = validate_qwen_storage_boundary_row(
+ model,
+ raw_cache,
+ input_ids,
+ target_ids,
+ location=location,
+ int4_spec=int4_spec,
+ int8_spec=int8_spec,
+ epsilon=epsilon,
+ sign_floor=DERIVATIVE_INFORMATIVE_FLOOR,
+ forward_kwargs={"logits_to_keep": 1},
+ )
+ after = _cache_fingerprint(raw_cache)
+ if after != before:
+ raise RuntimeError("validation mutated the raw boundary cache")
+ if reference is None:
+ reference = result
+ else:
+ _assert_same_row_result(reference, result)
+ epsilon_records.append(asdict(result.comparison))
+ print(
+ f"row {row_number}/{len(strata)} {label} "
+ f"epsilon {epsilon_number}/{len(EPSILONS)}={epsilon:.5f} "
+ f"predicted={result.comparison.predicted_benefit_autograd:.9g} "
+ f"central={result.comparison.predicted_benefit_central:.9g} "
+ f"endpoint={result.comparison.measured_endpoint_benefit:.9g}",
+ flush=True,
+ )
+
+ assert reference is not None
+ dot_product = float((reference.gradient_row * reference.direction).sum().item())
+ if not math.isclose(
+ -dot_product,
+ reference.comparison.predicted_benefit_autograd,
+ rel_tol=0,
+ abs_tol=1e-12,
+ ):
+ raise RuntimeError("stored gradient and direction do not reproduce Taylor benefit")
+ row_records.append(
+ {
+ "stratum": label,
+ "location": asdict(location),
+ "selection_basis": "fixed geometry only; no selector scores or benefits read",
+ "tensors": _row_tensors_record(reference),
+ "physical_endpoints": {
+ "int4": _physical_endpoint_record(
+ reference.raw_row,
+ reference.int4_row,
+ int4_spec,
+ ),
+ "int8": _physical_endpoint_record(
+ reference.raw_row,
+ reference.int8_row,
+ int8_spec,
+ ),
+ },
+ "negative_gradient_dot_direction": -dot_product,
+ "epsilon_results": epsilon_records,
+ }
+ )
+
+ if _cache_fingerprint(raw_cache) != raw_cache_fingerprint:
+ raise RuntimeError("raw boundary cache changed during the diagnostic")
+ derivative_gate = _evaluate_derivative_gate(row_records)
+ source_hashes_end = _source_hashes(implementation_paths)
+ if source_hashes_end != source_hashes_start:
+ raise RuntimeError("implementation source changed while the diagnostic was running")
+ repository_end = _git_state()
+
+ config_payload = model.config.to_dict()
+ prompt_token_ids = prompt_ids.detach().cpu().reshape(-1).tolist()
+ code_token_ids = code_ids.detach().cpu().reshape(-1).tolist()
+ evidence: dict[str, Any] = {
+ "schema_version": 1,
+ "artifact_kind": ARTIFACT_KIND,
+ "diagnostic_only": True,
+ "claim_boundary": (
+ "One pinned calibration task, one target transition, four rows fixed by geometry, "
+ "and four finite-difference step sizes. This checks implementation sign and local "
+ "derivative consistency only. It does not establish policy quality, held-out "
+ "generalization, free generation, statistical significance, novelty, speed, "
+ "memory improvement, or a breakthrough."
+ ),
+ "created_at_utc": datetime.now(UTC).isoformat(),
+ "seed": SEED,
+ "model": {
+ "id": MODEL_ID,
+ "revision": MODEL_REVISION,
+ "class": model.__class__.__name__,
+ "dtype": str(dtype),
+ "device": str(device),
+ "attention_implementation": "eager",
+ "parameter_count": sum(parameter.numel() for parameter in model.parameters()),
+ "config_canonical_sha256": _sha256_bytes(canonical_json_bytes(config_payload)),
+ "recurrent_geometry": {
+ "model_layer_indices": list(recurrent_layers),
+ "value_heads": heads,
+ "key_rows": key_rows,
+ "value_dim": value_dim,
+ },
+ },
+ "dataset": {
+ "phase": "calibration",
+ "development_or_confirmation_loaded": False,
+ "manifest": mbpp_manifest(rows, phase="calibration"),
+ "manifest_sha256": mbpp_manifest_sha256(rows, phase="calibration"),
+ "task_prefix_limit": TASK_PREFIX_LIMIT,
+ "task_index": TASK_INDEX,
+ "task_id": int(row["task_id"]),
+ "prompt_utf8_sha256": _sha256_bytes(formatted.prompt.encode("utf-8")),
+ "code_utf8_sha256": _sha256_bytes(formatted.code.encode("utf-8")),
+ "prompt_tokens": len(prompt_token_ids),
+ "code_tokens": len(code_token_ids),
+ "prompt_token_ids_canonical_sha256": _sha256_bytes(
+ canonical_json_bytes(prompt_token_ids)
+ ),
+ "code_token_ids_canonical_sha256": _sha256_bytes(
+ canonical_json_bytes(code_token_ids)
+ ),
+ "transition_index": TRANSITION_INDEX,
+ "input_token_id": int(input_ids.item()),
+ "target_token_id": int(target_ids.item()),
+ },
+ "method": {
+ "quantity_checked": "-gradient dot (Q8(raw row) - Q4(raw row))",
+ "loss": "teacher-forced next-token target NLL",
+ "trajectory": (
+ "uniform physical-INT4 pack/dequantize storage before every prior token; "
+ "raw update retained at the measured boundary"
+ ),
+ "storage_path": "Q4(raw) + alpha * (Q8(raw) - Q4(raw)) for one row",
+ "deployable_alphas": [0, 1],
+ "negative_alpha_note": (
+ "-epsilon is controlled extrapolation used only for central difference"
+ ),
+ "epsilons": list(EPSILONS),
+ "forward_count": len(ROW_STRATA) * len(EPSILONS) * 5,
+ "cache_isolation": {
+ "procedure": (
+ "The raw cache fingerprint is checked before and after every "
+ "row-epsilon validation. Each alpha forward deep-copies an identical "
+ "physical-INT4 boundary cache."
+ ),
+ "fingerprint_scope": (
+ "Tensor shapes, dtypes, and bytes for keys, values, convolution states, "
+ "and recurrent states; cache/layer classes; layer count; and the listed "
+ "cache-history, initialization, geometry, dtype, and device metadata."
+ ),
+ "cache_metadata_attributes": list(CACHE_FINGERPRINT_CACHE_METADATA),
+ "layer_metadata_attributes": list(CACHE_FINGERPRINT_LAYER_METADATA),
+ "claim_limit": (
+ "This fingerprint does not claim to serialize arbitrary unlisted Python "
+ "attributes or external model state."
+ ),
+ },
+ "row_selection": {
+ "frozen_in_source": True,
+ "uses_measured_benefit": False,
+ "strata_source_coordinates": [
+ {
+ "label": label,
+ "recurrent_layer_ordinal": ordinal,
+ "head_index": head,
+ "row_index": key_row,
+ }
+ for label, ordinal, head, key_row in ROW_STRATA
+ ],
+ },
+ },
+ "quantizers": {
+ "int4": asdict(int4_spec),
+ "int8": asdict(int8_spec),
+ "physical_endpoint_note": (
+ "Q4 and Q8 endpoint rows are decoded from actual packed payloads and FP16 scales; "
+ "intermediate alphas are floating-point interventions"
+ ),
+ },
+ "raw_boundary_cache_fingerprint_sha256": raw_cache_fingerprint,
+ "rows": row_records,
+ "derivative_gate": derivative_gate,
+ "environment": {
+ "python": sys.version,
+ "platform": platform.platform(),
+ "packages": _package_versions(),
+ "cuda_available": torch.cuda.is_available(),
+ "cuda_runtime": torch.version.cuda,
+ "gpu": torch.cuda.get_device_name(device) if device.type == "cuda" else None,
+ },
+ "implementation": {
+ "source_hashes_start": source_hashes_start,
+ "source_hashes_end": source_hashes_end,
+ "unchanged_during_run": source_hashes_start == source_hashes_end,
+ },
+ "repository": {
+ "start": repository_start,
+ "end": repository_end,
+ },
+ "command": [sys.executable, *sys.argv],
+ }
+ artifact = {
+ "schema_version": 1,
+ "artifact_kind": ARTIFACT_KIND,
+ "canonical_evidence_sha256": _sha256_bytes(canonical_json_bytes(evidence)),
+ "evidence": evidence,
+ }
+ payload = canonical_json_bytes(artifact)
+ args.output.parent.mkdir(parents=True, exist_ok=True)
+ temporary = args.output.with_name(args.output.name + ".tmp")
+ temporary.write_bytes(payload)
+ temporary.replace(args.output)
+ print(
+ json.dumps(
+ {
+ "output": str(args.output.resolve()),
+ "artifact_sha256": _sha256_bytes(payload),
+ "canonical_evidence_sha256": artifact["canonical_evidence_sha256"],
+ "task_id": int(row["task_id"]),
+ "transition_index": TRANSITION_INDEX,
+ "rows": len(row_records),
+ "epsilons": list(EPSILONS),
+ "passed": derivative_gate["passed"],
+ "failures": derivative_gate["failures"],
+ },
+ indent=2,
+ sort_keys=True,
+ )
+ )
+ return 0 if derivative_gate["passed"] else 2
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/src/recurquant/__init__.py b/src/recurquant/__init__.py
index f7f4704..21ca0f5 100644
--- a/src/recurquant/__init__.py
+++ b/src/recurquant/__init__.py
@@ -1,7 +1,53 @@
"""RecurQuant recurrent-state quantization primitives."""
from .evidence import verify_evidence_artifact
-from .packed_cache import PackedRecurrentStateCache
+from .finite_difference import (
+ DirectionalDerivativeCheck,
+ FiniteDifferencePoint,
+ check_directional_derivative,
+)
+from .fisher_sensitivity import (
+ GDNInt4TrajectorySensitivityCalibrator,
+ GDNOneStepSensitivityCalibrator,
+ RowPromotionSensitivityScores,
+ SensitivityStepResult,
+ TaskMacroSensitivityAccumulator,
+ TaskMacroSensitivitySummary,
+ row_promotion_scores_from_errors,
+ row_promotion_sensitivity_scores,
+)
+from .horizon import (
+ HorizonReadRisk,
+ finite_horizon_row_read_risk,
+ finite_horizon_row_read_risk_from_energies,
+)
+from .horizon_calibration import (
+ BitwidthHorizonReadRisk,
+ GDNCalibrationTrace,
+ GDNHorizonCalibrationRecorder,
+ TaskMacroHorizonAccumulator,
+ TaskMacroHorizonSummary,
+ row_quantization_error_energies,
+ score_gdn_calibration_trace,
+)
+from .intervention import (
+ PhysicalMetricRun,
+ PhysicalRowPromotionOracleResult,
+ RowPromotionMeasurement,
+ evaluate_physical_row_promotions,
+ target_nll_values,
+)
+from .mixed_quantization import PackedMixedQuantizedTensor, quantize_pack_mixed
+from .model_fisher import (
+ RowBlockModelFisherRisk,
+ row_block_model_fisher_risk,
+ sample_model_pseudo_labels,
+)
+from .packed_cache import (
+ AdaptiveMixedPackedRecurrentStateCache,
+ MixedPackedRecurrentStateCache,
+ PackedRecurrentStateCache,
+)
from .quantization import (
PackedQuantizedTensor,
QuantizationResult,
@@ -9,17 +55,61 @@
quantize_dequantize,
quantize_pack,
)
-from .qwen35 import create_qwen35_packed_cache, create_qwen35_v02_mixed_cache
+from .qwen35 import (
+ create_qwen35_adaptive_exact_budget_cache,
+ create_qwen35_exact_budget_cache,
+ create_qwen35_packed_cache,
+ create_qwen35_v02_mixed_cache,
+)
+from .row_policy import ExactBudgetRowPlan, RowLocation, select_rows_exact_budget
__all__ = [
+ "AdaptiveMixedPackedRecurrentStateCache",
+ "BitwidthHorizonReadRisk",
+ "DirectionalDerivativeCheck",
+ "ExactBudgetRowPlan",
+ "FiniteDifferencePoint",
+ "GDNCalibrationTrace",
+ "GDNHorizonCalibrationRecorder",
+ "GDNInt4TrajectorySensitivityCalibrator",
+ "GDNOneStepSensitivityCalibrator",
+ "HorizonReadRisk",
+ "MixedPackedRecurrentStateCache",
+ "PackedMixedQuantizedTensor",
"PackedQuantizedTensor",
"PackedRecurrentStateCache",
+ "PhysicalMetricRun",
+ "PhysicalRowPromotionOracleResult",
"QuantizationResult",
"QuantizationSpec",
+ "RowBlockModelFisherRisk",
+ "RowLocation",
+ "RowPromotionMeasurement",
+ "RowPromotionSensitivityScores",
+ "SensitivityStepResult",
+ "TaskMacroHorizonAccumulator",
+ "TaskMacroHorizonSummary",
+ "TaskMacroSensitivityAccumulator",
+ "TaskMacroSensitivitySummary",
+ "check_directional_derivative",
+ "create_qwen35_adaptive_exact_budget_cache",
+ "create_qwen35_exact_budget_cache",
"create_qwen35_packed_cache",
"create_qwen35_v02_mixed_cache",
+ "finite_horizon_row_read_risk",
+ "finite_horizon_row_read_risk_from_energies",
+ "evaluate_physical_row_promotions",
"quantize_dequantize",
"quantize_pack",
+ "quantize_pack_mixed",
+ "row_block_model_fisher_risk",
+ "row_promotion_scores_from_errors",
+ "row_promotion_sensitivity_scores",
+ "row_quantization_error_energies",
+ "sample_model_pseudo_labels",
+ "score_gdn_calibration_trace",
+ "select_rows_exact_budget",
+ "target_nll_values",
"verify_evidence_artifact",
]
diff --git a/src/recurquant/finite_difference.py b/src/recurquant/finite_difference.py
new file mode 100644
index 0000000..4f1bc4a
--- /dev/null
+++ b/src/recurquant/finite_difference.py
@@ -0,0 +1,169 @@
+"""Local finite-difference checks for recurrent-state promotion directions."""
+
+from __future__ import annotations
+
+import math
+from collections.abc import Callable, Sequence
+from dataclasses import dataclass
+from statistics import median
+
+import torch
+
+ScalarLoss = Callable[[torch.Tensor], torch.Tensor]
+
+
+@dataclass(frozen=True, slots=True)
+class FiniteDifferencePoint:
+ """One central-difference comparison at a fixed interpolation scale."""
+
+ epsilon: float
+ plus_loss: float
+ minus_loss: float
+ central_derivative: float
+ absolute_error: float
+ relative_error: float
+ near_zero: bool
+ sign_agreement: bool | None
+
+
+@dataclass(frozen=True, slots=True)
+class DirectionalDerivativeCheck:
+ """Autograd derivative and its central finite-difference convergence trace."""
+
+ base_loss: float
+ autograd_derivative: float
+ gradient_l2_norm: float
+ direction_l2_norm: float
+ near_zero_floor: float
+ points: tuple[FiniteDifferencePoint, ...]
+
+ @property
+ def median_relative_error(self) -> float:
+ return float(median(point.relative_error for point in self.points))
+
+ @property
+ def nonzero_sign_agreement_rate(self) -> float | None:
+ agreements = [
+ point.sign_agreement for point in self.points if point.sign_agreement is not None
+ ]
+ if not agreements:
+ return None
+ return sum(agreements) / len(agreements)
+
+
+def _scalar_loss(loss_fn: ScalarLoss, state: torch.Tensor, *, name: str) -> torch.Tensor:
+ loss = loss_fn(state)
+ if not isinstance(loss, torch.Tensor):
+ raise TypeError(f"{name} loss_fn output must be a torch.Tensor")
+ if loss.numel() != 1 or not loss.is_floating_point():
+ raise ValueError(f"{name} loss_fn output must be one floating-point scalar")
+ if not torch.isfinite(loss).item():
+ raise ValueError(f"{name} loss_fn output must be finite")
+ return loss.reshape(())
+
+
+def check_directional_derivative(
+ loss_fn: ScalarLoss,
+ state: torch.Tensor,
+ direction: torch.Tensor,
+ *,
+ epsilons: Sequence[float] = (0.25, 0.125, 0.0625, 0.03125),
+ near_zero_floor: float = 1e-8,
+) -> DirectionalDerivativeCheck:
+ """Compare ``grad(loss) dot direction`` with central differences.
+
+ This checks the local differentiable loss supplied by ``loss_fn``. It does
+ not validate a hard quantizer, a repeated-QDQ suffix, or a complete packed
+ policy unless the caller explicitly builds those semantics into the loss
+ function. Near-zero comparisons retain their absolute/relative errors and
+ use ``sign_agreement=None`` instead of manufacturing a pass.
+ """
+
+ if not callable(loss_fn):
+ raise TypeError("loss_fn must be callable")
+ if not isinstance(state, torch.Tensor) or not isinstance(direction, torch.Tensor):
+ raise TypeError("state and direction must be torch.Tensor values")
+ if state.shape != direction.shape:
+ raise ValueError("state and direction must have the same shape")
+ if state.numel() == 0:
+ raise ValueError("state and direction must not be empty")
+ if not state.is_floating_point() or not direction.is_floating_point():
+ raise TypeError("state and direction must use floating-point dtypes")
+ if state.dtype != direction.dtype or state.device != direction.device:
+ raise ValueError("state and direction must share dtype and device")
+ if state.device.type == "meta":
+ raise ValueError("state and direction must be materialized")
+ if not torch.isfinite(state).all().item() or not torch.isfinite(direction).all().item():
+ raise ValueError("state and direction must contain only finite values")
+ if not math.isfinite(near_zero_floor) or near_zero_floor <= 0:
+ raise ValueError("near_zero_floor must be a positive finite number")
+
+ rendered_epsilons = tuple(float(value) for value in epsilons)
+ if not rendered_epsilons:
+ raise ValueError("epsilons must contain at least one value")
+ if any(not math.isfinite(value) or value <= 0 for value in rendered_epsilons):
+ raise ValueError("epsilons must contain only positive finite values")
+ if len(set(rendered_epsilons)) != len(rendered_epsilons):
+ raise ValueError("epsilons must not contain duplicates")
+
+ leaf = state.detach().clone().requires_grad_(True)
+ base = _scalar_loss(loss_fn, leaf, name="base")
+ (gradient,) = torch.autograd.grad(
+ base,
+ leaf,
+ retain_graph=False,
+ create_graph=False,
+ allow_unused=False,
+ )
+ if not torch.isfinite(gradient).all().item():
+ raise RuntimeError("loss gradient became non-finite")
+ autograd_value = float((gradient * direction).sum().detach().item())
+
+ points: list[FiniteDifferencePoint] = []
+ with torch.no_grad():
+ for epsilon in rendered_epsilons:
+ plus = _scalar_loss(
+ loss_fn,
+ state.detach() + epsilon * direction.detach(),
+ name="plus",
+ )
+ minus = _scalar_loss(
+ loss_fn,
+ state.detach() - epsilon * direction.detach(),
+ name="minus",
+ )
+ plus_value = float(plus.item())
+ minus_value = float(minus.item())
+ central = (plus_value - minus_value) / (2.0 * epsilon)
+ absolute_error = abs(central - autograd_value)
+ scale = max(abs(central), abs(autograd_value), near_zero_floor)
+ near_zero = max(abs(central), abs(autograd_value)) <= near_zero_floor
+ if near_zero:
+ sign_agreement = None
+ elif central == 0.0 or autograd_value == 0.0:
+ sign_agreement = False
+ else:
+ sign_agreement = math.copysign(1.0, central) == math.copysign(
+ 1.0, autograd_value
+ )
+ points.append(
+ FiniteDifferencePoint(
+ epsilon=epsilon,
+ plus_loss=plus_value,
+ minus_loss=minus_value,
+ central_derivative=central,
+ absolute_error=absolute_error,
+ relative_error=absolute_error / scale,
+ near_zero=near_zero,
+ sign_agreement=sign_agreement,
+ )
+ )
+
+ return DirectionalDerivativeCheck(
+ base_loss=float(base.detach().item()),
+ autograd_derivative=autograd_value,
+ gradient_l2_norm=float(torch.linalg.vector_norm(gradient).item()),
+ direction_l2_norm=float(torch.linalg.vector_norm(direction).item()),
+ near_zero_floor=near_zero_floor,
+ points=tuple(points),
+ )
diff --git a/src/recurquant/fisher_sensitivity.py b/src/recurquant/fisher_sensitivity.py
new file mode 100644
index 0000000..bb770df
--- /dev/null
+++ b/src/recurquant/fisher_sensitivity.py
@@ -0,0 +1,855 @@
+"""One-step loss sensitivity for Qwen3.5 recurrent-state rows.
+
+This module measures how the next-token loss responds to recurrent states in
+an ordinary Transformers ``DynamicCache``. It supports either the untouched
+FP32 trajectory or a repeated-QDQ INT4 trajectory. Both are deliberately
+bounded calibration primitives: one teacher-forced token, one reverse-mode
+traversal, and no retained graph after the step.
+
+The returned scores estimate the benefit of replacing an INT4 row by its INT8
+version. They are calibration signals, not evidence of downstream accuracy,
+memory, or latency improvements.
+"""
+
+from __future__ import annotations
+
+from collections.abc import Collection, Mapping, Sequence
+from dataclasses import dataclass, field
+from types import MethodType
+from typing import Any, Literal
+
+import torch
+import torch.nn.functional as F
+from transformers import DynamicCache
+
+from .quantization import (
+ QuantizationSpec,
+ quantize_dequantize,
+ scheduled_quantization_spec,
+)
+
+
+@dataclass(frozen=True, slots=True)
+class RowPromotionSensitivityScores:
+ """Signed INT4-to-INT8 sensitivity scores for one recurrent-state layer.
+
+ Every tensor has shape ``[heads, key_dim]`` and is the batch mean of
+ per-example row scores. ``taylor_benefit`` is the primary first-order
+ estimate of loss reduction, so positive values favor promotion to INT8.
+ The Fisher fields are signed differences, not guaranteed improvements.
+ ``delta_direction_fisher_magnitude`` preserves a non-negative local
+ perturbation diagnostic but must not be interpreted as promotion benefit.
+ """
+
+ layer_index: int
+ taylor_benefit: torch.Tensor
+ directional_fisher_difference: torch.Tensor
+ diagonal_fisher_difference: torch.Tensor
+ delta_direction_fisher_magnitude: torch.Tensor
+
+ @property
+ def shape(self) -> torch.Size:
+ return self.taylor_benefit.shape
+
+
+@dataclass(frozen=True, slots=True)
+class FisherStepResult:
+ """Detached result of one teacher-forced sensitivity step."""
+
+ mean_nll: float
+ batch_size: int
+ trajectory: Literal["fp32", "int4"]
+ layers: tuple[RowPromotionSensitivityScores, ...]
+
+ def layer(self, layer_index: int) -> RowPromotionSensitivityScores:
+ for scores in self.layers:
+ if scores.layer_index == layer_index:
+ return scores
+ raise KeyError(f"step has no layer {layer_index}")
+
+
+@dataclass(frozen=True, slots=True)
+class TaskMacroSensitivitySummary:
+ """Equal-task mean of token-mean promotion-sensitivity scores."""
+
+ layer_index: int
+ tasks: int
+ steps: int
+ mean_nll: float
+ trajectory: Literal["fp32", "int4"]
+ taylor_benefit: torch.Tensor
+ directional_fisher_difference: torch.Tensor
+ diagonal_fisher_difference: torch.Tensor
+ delta_direction_fisher_magnitude: torch.Tensor
+
+
+def _validate_specs(int4_spec: QuantizationSpec, int8_spec: QuantizationSpec) -> None:
+ if int4_spec.bits != 4:
+ raise ValueError("int4_spec must use bits=4")
+ if int8_spec.bits != 8:
+ raise ValueError("int8_spec must use bits=8")
+ if int4_spec.flatten_last_dims != 1 or int8_spec.flatten_last_dims != 1:
+ raise ValueError(
+ "INT4 and INT8 specs must use flatten_last_dims=1 so each state row "
+ "is quantized independently"
+ )
+ matched_fields = (
+ "group_size",
+ "scale_bits",
+ "flatten_last_dims",
+ "rounding",
+ "seed",
+ "epsilon",
+ )
+ mismatched = [
+ name for name in matched_fields if getattr(int4_spec, name) != getattr(int8_spec, name)
+ ]
+ if mismatched:
+ raise ValueError(
+ f"INT4 and INT8 specs may differ only in bit width; mismatched fields: {mismatched}"
+ )
+
+
+def row_promotion_scores_from_errors(
+ gradient: torch.Tensor,
+ int4_error: torch.Tensor,
+ int8_error: torch.Tensor,
+) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]:
+ """Compute signed promotion scores from aligned state errors and a loss gradient.
+
+ Inputs must have shape ``[batch, heads, key_dim, value_dim]``. With
+ ``delta = Q8(S) - Q4(S) = int8_error - int4_error``, the primary score is
+ ``-sum(gradient * delta)``. This estimates ``L(Q4(S)) - L(Q8(S))`` by a
+ first-order Taylor expansion around the trajectory where ``gradient`` was
+ measured. Positive values therefore favor INT8 under that local model.
+
+ The two signed curvature diagnostics are
+ ``(g dot e4)**2 - (g dot e8)**2`` and
+ ``sum(g**2 * (e4**2 - e8**2))``. The final returned tensor is the old
+ non-negative ``(g dot (e4-e8))**2`` perturbation magnitude; it is retained
+ only as a diagnostic and is not an estimated benefit.
+ """
+
+ tensors = {
+ "gradient": gradient,
+ "int4_error": int4_error,
+ "int8_error": int8_error,
+ }
+ if gradient.ndim != 4:
+ raise ValueError("gradient must have shape [batch, heads, key_dim, value_dim]")
+ if int4_error.shape != gradient.shape or int8_error.shape != gradient.shape:
+ raise ValueError("gradient, int4_error, and int8_error must have the same shape")
+ if not all(tensor.is_floating_point() for tensor in tensors.values()):
+ raise TypeError("gradient, int4_error, and int8_error must be floating-point")
+ if any(tensor.dtype != torch.float32 for tensor in tensors.values()):
+ raise TypeError("gradient, int4_error, and int8_error must use torch.float32")
+ if len({tensor.device for tensor in tensors.values()}) != 1:
+ raise ValueError("gradient, int4_error, and int8_error must be on the same device")
+ if gradient.device.type == "meta":
+ raise ValueError("gradient and errors must be materialized")
+ if not all(torch.isfinite(tensor).all().item() for tensor in tensors.values()):
+ raise ValueError("gradient and errors must contain only finite values")
+
+ grad = gradient.detach()
+ error4 = int4_error.detach()
+ error8 = int8_error.detach()
+ delta = error8 - error4
+ taylor_per_example = -(grad * delta).sum(dim=-1)
+ projection4 = (grad * error4).sum(dim=-1)
+ projection8 = (grad * error8).sum(dim=-1)
+ directional_difference_per_example = projection4.square() - projection8.square()
+ diagonal_difference_per_example = (grad.square() * (error4.square() - error8.square())).sum(
+ dim=-1
+ )
+ delta_direction_magnitude_per_example = (grad * (error4 - error8)).sum(dim=-1).square()
+
+ outputs = (
+ taylor_per_example.mean(dim=0),
+ directional_difference_per_example.mean(dim=0),
+ diagonal_difference_per_example.mean(dim=0),
+ delta_direction_magnitude_per_example.mean(dim=0),
+ )
+ if not all(torch.isfinite(value).all().item() for value in outputs):
+ raise RuntimeError("promotion sensitivity scores became non-finite")
+ return (
+ outputs[0].detach().cpu(),
+ outputs[1].detach().cpu(),
+ outputs[2].detach().cpu(),
+ outputs[3].detach().cpu(),
+ )
+
+
+def row_promotion_sensitivity_scores(
+ state: torch.Tensor,
+ gradient: torch.Tensor,
+ *,
+ int4_spec: QuantizationSpec,
+ int8_spec: QuantizationSpec,
+) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]:
+ """Quantize an FP32 state and compute its local row-promotion scores.
+
+ ``state`` and ``gradient`` must have shape
+ ``[batch, heads, key_dim, value_dim]``. The quantizer group size must equal
+ ``value_dim``; this makes each physical quantization group exactly one
+ recurrent-state row. Each returned score tensor has shape
+ ``[heads, key_dim]``. The gradient is interpreted at ``state``; callers
+ measuring gradients on a quantized trajectory should instead call
+ :func:`row_promotion_scores_from_errors` with errors relative to the raw
+ pre-quantization update.
+ """
+
+ _validate_specs(int4_spec, int8_spec)
+ if state.ndim != 4:
+ raise ValueError("state must have shape [batch, heads, key_dim, value_dim]")
+ if gradient.shape != state.shape:
+ raise ValueError("gradient must have the same shape as state")
+ if not state.is_floating_point() or not gradient.is_floating_point():
+ raise TypeError("state and gradient must use floating-point dtypes")
+ if state.device != gradient.device:
+ raise ValueError("state and gradient must be on the same device")
+ if state.device.type == "meta":
+ raise ValueError("state and gradient must be materialized")
+ if state.dtype != torch.float32 or gradient.dtype != torch.float32:
+ raise TypeError("state and gradient must use torch.float32")
+ if int4_spec.group_size != state.shape[-1]:
+ raise ValueError(
+ "quantizer group_size must equal recurrent-state value_dim so each "
+ f"row owns one group ({int4_spec.group_size} != {state.shape[-1]})"
+ )
+ if not torch.isfinite(state).all().item() or not torch.isfinite(gradient).all().item():
+ raise ValueError("state and gradient must contain only finite values")
+
+ source = state.detach()
+ int4 = quantize_dequantize(source, int4_spec).tensor.to(torch.float32)
+ int8 = quantize_dequantize(source, int8_spec).tensor.to(torch.float32)
+ error4 = int4 - source
+ error8 = int8 - source
+ return row_promotion_scores_from_errors(gradient, error4, error8)
+
+
+def _cache_state(cache: DynamicCache, layer_index: int) -> torch.Tensor:
+ if layer_index >= len(cache.layers):
+ raise ValueError(f"cache has no layer {layer_index}")
+ layer = cache.layers[layer_index]
+ recurrent_states = getattr(layer, "recurrent_states", None)
+ initialized = getattr(layer, "is_recurrent_states_initialized", None)
+ previous = getattr(layer, "has_previous_state", None)
+ if not isinstance(recurrent_states, dict) or not isinstance(initialized, dict):
+ raise ValueError(f"cache layer {layer_index} is not a linear-attention cache layer")
+ if not initialized.get(0, False) or not isinstance(recurrent_states.get(0), torch.Tensor):
+ raise ValueError(
+ f"cache layer {layer_index} has no recurrent state; run a no-grad prefill first"
+ )
+ if not isinstance(previous, dict) or not previous.get(0, False):
+ raise ValueError(
+ f"cache layer {layer_index} has no previous state; run a no-grad prefill first"
+ )
+ state = recurrent_states[0]
+ if state.dtype != torch.float32:
+ raise TypeError(
+ f"cache layer {layer_index} recurrent state must use torch.float32, got {state.dtype}"
+ )
+ if state.ndim != 4:
+ raise ValueError(
+ f"cache layer {layer_index} recurrent state must have shape "
+ "[batch, heads, key_dim, value_dim]"
+ )
+ if state.device.type == "meta" or not torch.isfinite(state).all().item():
+ raise ValueError(
+ f"cache layer {layer_index} recurrent state must be materialized and finite"
+ )
+ return state
+
+
+def _detach_cache_tensors(cache: DynamicCache) -> None:
+ """Detach tensors that a differentiable decode may have stored in the cache."""
+
+ for layer in cache.layers:
+ for name in ("keys", "values"):
+ value = getattr(layer, name, None)
+ if isinstance(value, torch.Tensor):
+ setattr(layer, name, value.detach())
+ for name in ("conv_states", "recurrent_states"):
+ values = getattr(layer, name, None)
+ if isinstance(values, dict):
+ for state_index, value in tuple(values.items()):
+ if isinstance(value, torch.Tensor):
+ values[state_index] = value.detach()
+
+
+_CACHE_SNAPSHOT_ATTRIBUTES = (
+ "keys",
+ "values",
+ "conv_states",
+ "recurrent_states",
+ "is_conv_states_initialized",
+ "is_recurrent_states_initialized",
+ "has_previous_state",
+ "conv_kernel_size",
+ "is_initialized",
+ "device",
+ "dtype",
+ "record_past",
+)
+
+
+def _snapshot_cache(cache: DynamicCache) -> list[dict[str, tuple[bool, object]]]:
+ """Capture enough warm DynamicCache state to roll back one failed token."""
+
+ snapshots: list[dict[str, tuple[bool, object]]] = []
+ for layer in cache.layers:
+ snapshot: dict[str, tuple[bool, object]] = {}
+ for name in _CACHE_SNAPSHOT_ATTRIBUTES:
+ if not hasattr(layer, name):
+ snapshot[name] = (False, None)
+ continue
+ value = getattr(layer, name)
+ if name in ("conv_states", "recurrent_states") and isinstance(value, dict):
+ copied = {
+ state_index: state.detach().clone()
+ if isinstance(state, torch.Tensor)
+ else state
+ for state_index, state in value.items()
+ }
+ elif name in ("keys", "values") and isinstance(value, torch.Tensor):
+ # Dynamic attention updates assign a concatenated tensor rather
+ # than mutating the old one, so retaining the detached object is
+ # enough and avoids copying an arbitrarily long KV history.
+ copied = value.detach()
+ elif isinstance(value, dict):
+ copied = dict(value)
+ else:
+ copied = value
+ snapshot[name] = (True, copied)
+ snapshots.append(snapshot)
+ return snapshots
+
+
+def _restore_cache(
+ cache: DynamicCache,
+ snapshots: Sequence[dict[str, tuple[bool, object]]],
+) -> None:
+ if len(cache.layers) != len(snapshots):
+ raise RuntimeError("cannot roll back a DynamicCache whose layer count changed")
+ for layer, snapshot in zip(cache.layers, snapshots, strict=True):
+ for name, (existed, value) in snapshot.items():
+ if existed:
+ setattr(layer, name, value)
+ elif hasattr(layer, name):
+ delattr(layer, name)
+
+
+class GDNOneStepFisherCalibrator:
+ """Run bounded next-token sensitivity calibration on a warm Qwen3.5 cache.
+
+ The cache must be an ordinary, non-offloaded ``DynamicCache`` populated by
+ a no-grad prefill. For each call to :meth:`step`, selected recurrent states
+ are detached and reintroduced as FP32 leaves. Model parameters are frozen
+ only for that call and their original ``requires_grad`` flags are restored.
+ Updated cache tensors are detached in ``finally`` so the next token keeps
+ the numerical trajectory without retaining the autograd graph. The
+ default ``fp32`` trajectory evaluates quantization errors around the FP32
+ state. Use :class:`GDNInt4TrajectoryFisherCalibrator` when the gradient
+ itself must be measured on a repeated-QDQ all-INT4 trajectory.
+ """
+
+ def __init__(
+ self,
+ model: torch.nn.Module,
+ cache: DynamicCache,
+ *,
+ layer_indices: Collection[int],
+ int4_spec: QuantizationSpec | None = None,
+ int8_spec: QuantizationSpec | None = None,
+ trajectory: Literal["fp32", "int4"] = "fp32",
+ ) -> None:
+ if not isinstance(cache, DynamicCache):
+ raise TypeError("cache must be an ordinary transformers.DynamicCache")
+ if getattr(cache, "offloading", False):
+ raise ValueError("offloaded DynamicCache calibration is not supported")
+ if trajectory not in ("fp32", "int4"):
+ raise ValueError("trajectory must be 'fp32' or 'int4'")
+ selected = tuple(sorted(set(layer_indices)))
+ if not selected:
+ raise ValueError("layer_indices must select at least one GDN layer")
+ if any(
+ isinstance(index, bool) or not isinstance(index, int) or index < 0 for index in selected
+ ):
+ raise ValueError("layer_indices must contain non-negative integers")
+
+ resolved_int4 = int4_spec or QuantizationSpec(
+ bits=4,
+ group_size=128,
+ flatten_last_dims=1,
+ )
+ resolved_int8 = int8_spec or QuantizationSpec(
+ bits=8,
+ group_size=128,
+ flatten_last_dims=1,
+ )
+ _validate_specs(resolved_int4, resolved_int8)
+
+ modules = {
+ int(module.layer_idx): module
+ for module in model.modules()
+ if module.__class__.__name__ == "Qwen3_5GatedDeltaNet"
+ and isinstance(getattr(module, "layer_idx", None), int)
+ }
+ missing = set(selected) - set(modules)
+ if missing:
+ raise ValueError(
+ f"model does not contain selected Qwen3.5 GDN layers {sorted(missing)}"
+ )
+ expected_state_shapes: dict[int, tuple[int, int, int]] = {}
+ for layer_index in selected:
+ module = modules[layer_index]
+ geometry = (
+ getattr(module, "num_v_heads", None),
+ getattr(module, "head_k_dim", None),
+ getattr(module, "head_v_dim", None),
+ )
+ if any(
+ isinstance(size, bool) or not isinstance(size, int) or size <= 0
+ for size in geometry
+ ):
+ raise ValueError(f"Qwen3.5 GDN layer {layer_index} has invalid state geometry")
+ expected_state_shapes[layer_index] = geometry
+
+ self.model = model
+ self.cache = cache
+ self.layer_indices = selected
+ self.int4_spec = resolved_int4
+ self.int8_spec = resolved_int8
+ self._expected_state_shapes = expected_state_shapes
+ self.trajectory = trajectory
+ self._int4_error_bases: dict[int, tuple[torch.Tensor, torch.Tensor]] = {}
+ self._layer_update_counts = dict.fromkeys(selected, 0)
+ self._active = False
+ if trajectory == "int4":
+ boundary_states: dict[int, torch.Tensor] = {}
+ for layer_index in selected:
+ state = _cache_state(cache, layer_index)
+ self._validate_state_geometry(layer_index, state)
+ boundary_states[layer_index] = state
+ for layer_index, state in boundary_states.items():
+ self._store_int4_boundary(layer_index, state)
+
+ def _validate_state_geometry(self, layer_index: int, state: torch.Tensor) -> None:
+ if tuple(state.shape[1:]) != self._expected_state_shapes[layer_index]:
+ raise ValueError(
+ f"cache layer {layer_index} state shape {tuple(state.shape[1:])} does not "
+ f"match Qwen3.5 GDN geometry {self._expected_state_shapes[layer_index]}"
+ )
+ if self.int4_spec.group_size != state.shape[-1]:
+ raise ValueError(
+ "quantizer group_size must equal recurrent-state value_dim at "
+ f"layer {layer_index} ({self.int4_spec.group_size} != {state.shape[-1]})"
+ )
+
+ def _store_int4_boundary(self, layer_index: int, raw_state: torch.Tensor) -> None:
+ """QDQ one raw update, store Q4, and retain the aligned promotion errors."""
+
+ update_index = self._layer_update_counts[layer_index]
+ int4_spec = scheduled_quantization_spec(
+ self.int4_spec,
+ layer_index=layer_index,
+ layer_update_index=update_index,
+ )
+ int8_spec = scheduled_quantization_spec(
+ self.int8_spec,
+ layer_index=layer_index,
+ layer_update_index=update_index,
+ )
+ source = raw_state.detach().to(torch.float32)
+ int4 = quantize_dequantize(source, int4_spec).tensor.to(torch.float32).detach()
+ int8 = quantize_dequantize(source, int8_spec).tensor.to(torch.float32).detach()
+ self.cache.layers[layer_index].recurrent_states[0] = int4
+ self._int4_error_bases[layer_index] = (
+ (int4 - source).detach(),
+ (int8 - source).detach(),
+ )
+ self._layer_update_counts[layer_index] = update_index + 1
+
+ def step(
+ self,
+ input_ids: torch.Tensor,
+ target_token_ids: torch.Tensor,
+ *,
+ forward_kwargs: Mapping[str, Any] | None = None,
+ ) -> FisherStepResult:
+ """Score one teacher-forced token and advance the selected trajectory."""
+
+ if self._active:
+ raise RuntimeError("calibrator.step is not reentrant")
+ if self.model.training:
+ raise ValueError("model must be in evaluation mode")
+ if input_ids.ndim != 2 or input_ids.shape[1] != 1:
+ raise ValueError("input_ids must have shape [batch, 1]")
+ if input_ids.dtype not in (torch.int32, torch.int64):
+ raise TypeError("input_ids must use an integer dtype")
+ targets = target_token_ids
+ if targets.ndim == 2 and targets.shape[1] == 1:
+ targets = targets[:, 0]
+ if targets.ndim != 1 or targets.shape[0] != input_ids.shape[0]:
+ raise ValueError("target_token_ids must have shape [batch] or [batch, 1]")
+ if targets.dtype not in (torch.int32, torch.int64):
+ raise TypeError("target_token_ids must use an integer dtype")
+ if targets.device != input_ids.device:
+ raise ValueError("input_ids and target_token_ids must be on the same device")
+
+ kwargs = dict(forward_kwargs or {})
+ conflicts = {"input_ids", "past_key_values", "use_cache", "labels"} & set(kwargs)
+ if conflicts:
+ raise ValueError(f"forward_kwargs contains managed arguments: {sorted(conflicts)}")
+
+ states = {index: _cache_state(self.cache, index) for index in self.layer_indices}
+ batch_sizes = {state.shape[0] for state in states.values()}
+ if batch_sizes != {input_ids.shape[0]}:
+ raise ValueError(
+ "input batch must match every selected recurrent-state batch; "
+ f"input={input_ids.shape[0]}, states={sorted(batch_sizes)}"
+ )
+ for layer_index, state in states.items():
+ self._validate_state_geometry(layer_index, state)
+ if state.device != input_ids.device:
+ raise ValueError(
+ f"input_ids and cache layer {layer_index} state must be on the same device"
+ )
+ if self.trajectory == "int4":
+ error4, error8 = self._int4_error_bases[layer_index]
+ if error4.shape != state.shape or error8.shape != state.shape:
+ raise RuntimeError(
+ f"INT4 trajectory error basis at layer {layer_index} is misaligned"
+ )
+
+ parameters = tuple(self.model.parameters())
+ if any(parameter.grad is not None for parameter in parameters):
+ raise ValueError("model parameters must not have pre-existing gradients")
+ original_requires_grad = tuple(parameter.requires_grad for parameter in parameters)
+ original_update_attribute = self.cache.__dict__.get("update_recurrent_state")
+ had_update_attribute = "update_recurrent_state" in self.cache.__dict__
+ original_update = self.cache.update_recurrent_state
+ cache_snapshot = _snapshot_cache(self.cache)
+ error_bases_snapshot = dict(self._int4_error_bases)
+ update_counts_snapshot = dict(self._layer_update_counts)
+ leaves: dict[int, torch.Tensor] = {}
+ raw_updates: dict[int, torch.Tensor] = {}
+ step_succeeded = False
+ self._active = True
+
+ def differentiable_update(
+ cache: DynamicCache,
+ recurrent_states: torch.Tensor,
+ layer_idx: int,
+ state_idx: int = 0,
+ **update_kwargs: Any,
+ ) -> torch.Tensor:
+ if layer_idx not in leaves:
+ return original_update(
+ recurrent_states,
+ layer_idx,
+ state_idx=state_idx,
+ **update_kwargs,
+ )
+ if state_idx != 0:
+ raise ValueError("Qwen3.5 Fisher calibration supports recurrent state_idx=0 only")
+ layer = cache.layers[layer_idx]
+ layer.recurrent_states[state_idx] = recurrent_states
+ layer.is_recurrent_states_initialized[state_idx] = True
+ raw_updates[layer_idx] = recurrent_states
+ return recurrent_states
+
+ try:
+ for parameter in parameters:
+ parameter.requires_grad_(False)
+ for layer_index, state in states.items():
+ leaf = state.detach().to(torch.float32).requires_grad_(True)
+ self.cache.layers[layer_index].recurrent_states[0] = leaf
+ leaves[layer_index] = leaf
+ self.cache.update_recurrent_state = MethodType( # type: ignore[method-assign]
+ differentiable_update,
+ self.cache,
+ )
+
+ with torch.enable_grad():
+ outputs = self.model(
+ input_ids=input_ids,
+ past_key_values=self.cache,
+ use_cache=True,
+ **kwargs,
+ )
+ logits = getattr(outputs, "logits", None)
+ if not isinstance(logits, torch.Tensor) or logits.ndim != 3:
+ raise TypeError(
+ "model output must expose logits with shape [batch, sequence, vocab]"
+ )
+ if logits.shape[:2] != input_ids.shape:
+ raise ValueError("model logits must align with the single-token input")
+ if not torch.isfinite(logits).all().item():
+ raise RuntimeError("model logits became non-finite")
+ per_example_nll = F.cross_entropy(
+ logits[:, -1, :].to(torch.float32),
+ targets.to(torch.long),
+ reduction="none",
+ )
+ if not torch.isfinite(per_example_nll).all().item():
+ raise RuntimeError("target-token NLL became non-finite")
+ gradients = torch.autograd.grad(
+ # Sum keeps each independent batch item's gradient unscaled;
+ # row scores and reported NLL are averaged across the batch.
+ per_example_nll.sum(),
+ tuple(leaves[index] for index in self.layer_indices),
+ retain_graph=False,
+ create_graph=False,
+ allow_unused=False,
+ )
+
+ layer_scores: list[RowPromotionSensitivityScores] = []
+ for layer_index, gradient in zip(self.layer_indices, gradients, strict=True):
+ if gradient.dtype != torch.float32:
+ gradient = gradient.to(torch.float32)
+ if self.trajectory == "fp32":
+ scores = row_promotion_sensitivity_scores(
+ leaves[layer_index],
+ gradient,
+ int4_spec=self.int4_spec,
+ int8_spec=self.int8_spec,
+ )
+ else:
+ error4, error8 = self._int4_error_bases[layer_index]
+ scores = row_promotion_scores_from_errors(gradient, error4, error8)
+ layer_scores.append(
+ RowPromotionSensitivityScores(
+ layer_index=layer_index,
+ taylor_benefit=scores[0],
+ directional_fisher_difference=scores[1],
+ diagonal_fisher_difference=scores[2],
+ delta_direction_fisher_magnitude=scores[3],
+ )
+ )
+ updated = self.cache.layers[layer_index].recurrent_states[0]
+ if updated is leaves[layer_index]:
+ raise RuntimeError(
+ f"cache layer {layer_index} was not advanced by the model forward"
+ )
+ if updated.dtype != torch.float32 or not torch.isfinite(updated).all().item():
+ raise RuntimeError(
+ f"cache layer {layer_index} produced a non-finite or "
+ "non-FP32 recurrent state"
+ )
+
+ if any(parameter.grad is not None for parameter in parameters):
+ raise RuntimeError("model parameter gradients were populated during calibration")
+ result = FisherStepResult(
+ mean_nll=float(per_example_nll.detach().mean().item()),
+ batch_size=input_ids.shape[0],
+ trajectory=self.trajectory,
+ layers=tuple(layer_scores),
+ )
+ step_succeeded = True
+ return result
+ finally:
+ try:
+ try:
+ if step_succeeded:
+ try:
+ if self.trajectory == "int4":
+ for layer_index in self.layer_indices:
+ self._store_int4_boundary(
+ layer_index,
+ raw_updates[layer_index],
+ )
+ except BaseException:
+ _restore_cache(self.cache, cache_snapshot)
+ self._int4_error_bases = error_bases_snapshot
+ self._layer_update_counts = update_counts_snapshot
+ raise
+ else:
+ _restore_cache(self.cache, cache_snapshot)
+ self._int4_error_bases = error_bases_snapshot
+ self._layer_update_counts = update_counts_snapshot
+ finally:
+ _detach_cache_tensors(self.cache)
+ finally:
+ if had_update_attribute:
+ self.cache.__dict__["update_recurrent_state"] = original_update_attribute
+ else:
+ self.cache.__dict__.pop("update_recurrent_state", None)
+ for parameter, requires_grad in zip(
+ parameters,
+ original_requires_grad,
+ strict=True,
+ ):
+ parameter.requires_grad_(requires_grad)
+ self._active = False
+
+
+class GDNInt4TrajectoryFisherCalibrator(GDNOneStepFisherCalibrator):
+ """Measure loss gradients on a repeated-QDQ all-INT4 GDN trajectory.
+
+ Construction is the explicit prefill boundary: every raw GDN recurrent
+ state in the warm ordinary ``DynamicCache`` is quantized, Q4 is stored for
+ the next token, and ``Q8(raw)-Q4(raw)`` is retained as the next promotion
+ direction. After each measured token, the raw updated state is captured,
+ Q4 is stored again, and the next aligned error basis replaces the old one.
+ All Qwen3.5 GDN layers must participate so this mode represents a uniform
+ all-INT4 recurrent-state trajectory.
+ """
+
+ def __init__(
+ self,
+ model: torch.nn.Module,
+ cache: DynamicCache,
+ *,
+ int4_spec: QuantizationSpec | None = None,
+ int8_spec: QuantizationSpec | None = None,
+ ) -> None:
+ layer_indices = {
+ int(module.layer_idx)
+ for module in model.modules()
+ if module.__class__.__name__ == "Qwen3_5GatedDeltaNet"
+ and isinstance(getattr(module, "layer_idx", None), int)
+ }
+ if not layer_indices:
+ raise ValueError("model has no Qwen3.5 GDN layers")
+ super().__init__(
+ model,
+ cache,
+ layer_indices=layer_indices,
+ int4_spec=int4_spec,
+ int8_spec=int8_spec,
+ trajectory="int4",
+ )
+
+
+_SCORE_FIELDS = (
+ "taylor_benefit",
+ "directional_fisher_difference",
+ "diagonal_fisher_difference",
+ "delta_direction_fisher_magnitude",
+)
+
+
+@dataclass(slots=True)
+class TaskMacroSensitivityAccumulator:
+ """Average token scores within each task, then give every task equal weight."""
+
+ _tasks: int = 0
+ _steps: int = 0
+ _trajectory: Literal["fp32", "int4"] | None = None
+ _layer_shapes: dict[int, tuple[int, ...]] | None = None
+ _score_sums: dict[str, dict[int, torch.Tensor]] = field(
+ default_factory=lambda: {name: {} for name in _SCORE_FIELDS}
+ )
+ _nll_sum: float = 0.0
+
+ @property
+ def tasks(self) -> int:
+ return self._tasks
+
+ @property
+ def steps(self) -> int:
+ return self._steps
+
+ def add_task(self, steps: Sequence[FisherStepResult]) -> None:
+ """Consume all token steps for one task without retaining token traces."""
+
+ if not steps:
+ raise ValueError("task must contain at least one sensitivity step")
+ trajectory = steps[0].trajectory
+ if trajectory not in ("fp32", "int4"):
+ raise ValueError("step trajectory must be 'fp32' or 'int4'")
+ if self._trajectory is not None and trajectory != self._trajectory:
+ raise ValueError("trajectory changed across tasks")
+ first_layers = {scores.layer_index: scores for scores in steps[0].layers}
+ if len(first_layers) != len(steps[0].layers) or not first_layers:
+ raise ValueError("each step must contain a non-empty unique layer set")
+ shapes = {
+ layer_index: tuple(scores.taylor_benefit.shape)
+ for layer_index, scores in first_layers.items()
+ }
+ if self._layer_shapes is not None and shapes != self._layer_shapes:
+ raise ValueError("task layer set or score shapes changed")
+
+ task_sums = {
+ name: {
+ layer_index: torch.zeros(shape, dtype=torch.float64)
+ for layer_index, shape in shapes.items()
+ }
+ for name in _SCORE_FIELDS
+ }
+ task_nll = 0.0
+ for step in steps:
+ if step.trajectory != trajectory:
+ raise ValueError("trajectory changed within task")
+ current = {scores.layer_index: scores for scores in step.layers}
+ if len(current) != len(step.layers) or not current:
+ raise ValueError("each step must contain a non-empty unique layer set")
+ current_shapes = {
+ layer_index: tuple(scores.taylor_benefit.shape)
+ for layer_index, scores in current.items()
+ }
+ if current_shapes != shapes:
+ raise ValueError("layer set or score shapes changed within task")
+ if not torch.isfinite(torch.tensor(step.mean_nll)).item():
+ raise ValueError("step mean_nll must be finite")
+ task_nll += step.mean_nll
+ for layer_index, scores in current.items():
+ values = {name: getattr(scores, name) for name in _SCORE_FIELDS}
+ if any(tuple(value.shape) != shapes[layer_index] for value in values.values()):
+ raise ValueError("all promotion score shapes must match")
+ if any(not value.is_floating_point() for value in values.values()):
+ raise TypeError("promotion scores must be floating-point")
+ if any(value.device.type == "meta" for value in values.values()):
+ raise ValueError("promotion scores must be materialized")
+ for name, value in values.items():
+ detached = value.detach().cpu().to(torch.float64)
+ if not torch.isfinite(detached).all().item():
+ raise ValueError("promotion scores must be finite")
+ task_sums[name][layer_index] += detached
+
+ divisor = float(len(steps))
+ for name in _SCORE_FIELDS:
+ for layer_index in shapes:
+ task_sums[name][layer_index] /= divisor
+ if layer_index not in self._score_sums[name]:
+ self._score_sums[name][layer_index] = torch.zeros_like(
+ task_sums[name][layer_index]
+ )
+ self._score_sums[name][layer_index] += task_sums[name][layer_index]
+ if self._layer_shapes is None:
+ self._layer_shapes = shapes
+ if self._trajectory is None:
+ self._trajectory = trajectory
+ self._nll_sum += task_nll / divisor
+ self._tasks += 1
+ self._steps += len(steps)
+
+ def summary(self, layer_index: int) -> TaskMacroSensitivitySummary:
+ if self._tasks == 0 or layer_index not in self._score_sums["taylor_benefit"]:
+ raise ValueError(f"no accumulated sensitivity scores for layer {layer_index}")
+ assert self._trajectory is not None
+ return TaskMacroSensitivitySummary(
+ layer_index=layer_index,
+ tasks=self._tasks,
+ steps=self._steps,
+ mean_nll=self._nll_sum / self._tasks,
+ trajectory=self._trajectory,
+ taylor_benefit=self._score_sums["taylor_benefit"][layer_index] / self._tasks,
+ directional_fisher_difference=(
+ self._score_sums["directional_fisher_difference"][layer_index] / self._tasks
+ ),
+ diagonal_fisher_difference=(
+ self._score_sums["diagonal_fisher_difference"][layer_index] / self._tasks
+ ),
+ delta_direction_fisher_magnitude=(
+ self._score_sums["delta_direction_fisher_magnitude"][layer_index] / self._tasks
+ ),
+ )
+
+
+# Public names reflect that signed Taylor benefit is the primary output. Keep
+# the original experimental class names as aliases for local artifact replay.
+SensitivityStepResult = FisherStepResult
+GDNOneStepSensitivityCalibrator = GDNOneStepFisherCalibrator
+GDNInt4TrajectorySensitivityCalibrator = GDNInt4TrajectoryFisherCalibrator
diff --git a/src/recurquant/horizon.py b/src/recurquant/horizon.py
new file mode 100644
index 0000000..42dfc08
--- /dev/null
+++ b/src/recurquant/horizon.py
@@ -0,0 +1,212 @@
+"""Finite-horizon sensitivity for Gated DeltaNet recurrent-state rows.
+
+The score follows the linearized error dynamics of the recurrent update while
+holding the full-precision q/k/g/beta trajectory fixed. It is a calibration
+primitive, not evidence that a selected policy improves language-model quality.
+"""
+
+from __future__ import annotations
+
+from dataclasses import dataclass
+
+import torch
+
+
+@dataclass(frozen=True, slots=True)
+class HorizonReadRisk:
+ """Per-row finite-horizon read-risk scores and their aligned components."""
+
+ horizon: int
+ scores: torch.Tensor
+ per_state_scores: torch.Tensor
+ future_read_counts: torch.Tensor
+
+
+def _l2_normalize(value: torch.Tensor, *, epsilon: float) -> torch.Tensor:
+ return value * torch.rsqrt(value.square().sum(dim=-1, keepdim=True) + epsilon)
+
+
+def _validate_energy_inputs(
+ row_error_energies: torch.Tensor,
+ queries: torch.Tensor,
+ keys: torch.Tensor,
+ log_decays: torch.Tensor,
+ betas: torch.Tensor,
+ *,
+ horizon: int,
+ epsilon: float,
+) -> None:
+ if isinstance(horizon, bool) or not isinstance(horizon, int) or horizon <= 0:
+ raise ValueError("horizon must be a positive integer")
+ if epsilon <= 0:
+ raise ValueError("epsilon must be positive")
+ if row_error_energies.ndim != 4:
+ raise ValueError("row_error_energies must have shape [time, batch, heads, key_dim]")
+ if queries.ndim != 4 or keys.ndim != 4:
+ raise ValueError("queries and keys must have shape [time, batch, heads, key_dim]")
+ if log_decays.ndim != 3 or betas.ndim != 3:
+ raise ValueError("log_decays and betas must have shape [time, batch, heads]")
+ if queries.shape != row_error_energies.shape or keys.shape != row_error_energies.shape:
+ raise ValueError(
+ "query/key dimensions must match row_error_energies time, batch, heads, and key_dim"
+ )
+ expected_scalar_shape = row_error_energies.shape[:3]
+ if log_decays.shape != expected_scalar_shape or betas.shape != expected_scalar_shape:
+ raise ValueError(
+ "log_decay/beta dimensions must match row_error_energies time, batch, and heads"
+ )
+ if row_error_energies.shape[0] == 0:
+ raise ValueError("the trace must contain at least one token")
+ tensors = (row_error_energies, queries, keys, log_decays, betas)
+ if not all(tensor.is_floating_point() for tensor in tensors):
+ raise TypeError("all horizon inputs must use floating-point dtypes")
+ if len({tensor.device for tensor in tensors}) != 1:
+ raise ValueError("all horizon inputs must be on the same device")
+ if not all(torch.isfinite(tensor).all().item() for tensor in tensors):
+ raise ValueError("all horizon inputs must be finite")
+ if (row_error_energies < 0).any().item():
+ raise ValueError("row_error_energies must be non-negative")
+
+
+def _validate_full_error_inputs(state_errors: torch.Tensor) -> None:
+ if state_errors.ndim != 5:
+ raise ValueError("state_errors must have shape [time, batch, heads, key_dim, value_dim]")
+ if not state_errors.is_floating_point():
+ raise TypeError("all horizon inputs must use floating-point dtypes")
+
+
+def _right_apply_transition(
+ row_vector: torch.Tensor,
+ *,
+ key: torch.Tensor,
+ log_decay: torch.Tensor,
+ beta: torch.Tensor,
+) -> torch.Tensor:
+ """Apply ``g * (I - beta * k k^T)`` to a row vector from the right."""
+
+ projected = (row_vector * key).sum(dim=-1, keepdim=True)
+ corrected = row_vector - beta.unsqueeze(-1) * projected * key
+ return log_decay.exp().unsqueeze(-1) * corrected
+
+
+def finite_horizon_row_read_risk_from_energies(
+ row_error_energies: torch.Tensor,
+ queries: torch.Tensor,
+ keys: torch.Tensor,
+ log_decays: torch.Tensor,
+ betas: torch.Tensor,
+ *,
+ horizon: int = 32,
+ normalize_qk: bool = True,
+ epsilon: float = 1e-6,
+) -> HorizonReadRisk:
+ """Score per-row error energies over future Gated DeltaNet reads.
+
+ ``row_error_energies[t, b, h, r]`` is the squared L2 norm of row ``r`` in
+ the recurrent-state quantization error just before token ``t``. This is the
+ sufficient error statistic for isolated-row scoring: it avoids retaining a
+ ``value_dim``-wide error matrix for every token while producing the same
+ result as :func:`finite_horizon_row_read_risk`.
+
+ For each future read, the function propagates the query backwards through
+ the analytic Gated DeltaNet error transition
+
+ ``E' = exp(g) * (I - beta * k k^T) * E``.
+
+ The returned ``scores`` have shape ``[heads, key_dim]`` and average the
+ isolated squared read contribution over trace positions and batch items.
+ Cross-row cancellation is intentionally excluded so rows can be ranked.
+ """
+
+ _validate_energy_inputs(
+ row_error_energies,
+ queries,
+ keys,
+ log_decays,
+ betas,
+ horizon=horizon,
+ epsilon=epsilon,
+ )
+ working_energies = row_error_energies.to(torch.float32)
+ working_queries = queries.to(torch.float32)
+ working_keys = keys.to(torch.float32)
+ working_decays = log_decays.to(torch.float32)
+ working_betas = betas.to(torch.float32)
+ if normalize_qk:
+ working_queries = _l2_normalize(working_queries, epsilon=epsilon)
+ working_keys = _l2_normalize(working_keys, epsilon=epsilon)
+
+ time_steps, batch_size, heads, key_dim = working_energies.shape
+ query_scale = key_dim**-0.5
+ influence = torch.zeros(
+ (time_steps, batch_size, heads, key_dim),
+ dtype=torch.float32,
+ device=working_energies.device,
+ )
+ future_read_counts = torch.zeros(
+ time_steps,
+ dtype=torch.int64,
+ device=working_energies.device,
+ )
+
+ for read_index in range(time_steps):
+ propagated_query = working_queries[read_index] * query_scale
+ earliest_start = max(0, read_index - horizon + 1)
+ for start_index in range(read_index, earliest_start - 1, -1):
+ propagated_query = _right_apply_transition(
+ propagated_query,
+ key=working_keys[start_index],
+ log_decay=working_decays[start_index],
+ beta=working_betas[start_index],
+ )
+ influence[start_index] += propagated_query.square()
+ future_read_counts[start_index] += 1
+
+ normalized_influence = influence / future_read_counts.clamp_min(1).view(-1, 1, 1, 1)
+ per_state_scores = normalized_influence * working_energies
+ scores = per_state_scores.mean(dim=(0, 1))
+ return HorizonReadRisk(
+ horizon=min(horizon, time_steps),
+ scores=scores,
+ per_state_scores=per_state_scores,
+ future_read_counts=future_read_counts,
+ )
+
+
+def finite_horizon_row_read_risk(
+ state_errors: torch.Tensor,
+ queries: torch.Tensor,
+ keys: torch.Tensor,
+ log_decays: torch.Tensor,
+ betas: torch.Tensor,
+ *,
+ horizon: int = 32,
+ normalize_qk: bool = True,
+ epsilon: float = 1e-6,
+) -> HorizonReadRisk:
+ """Score isolated recurrent-state row errors over future GDN reads.
+
+ ``state_errors[t]`` is the quantization error in the recurrent state just
+ before token ``t``. For each future read, the function propagates the query
+ backwards through the analytic Gated DeltaNet error transition
+
+ ``E' = exp(g) * (I - beta * k k^T) * E``.
+
+ This avoids expanding a separate full error matrix for every source row.
+ The returned ``scores`` have shape ``[heads, key_dim]`` and average the
+ isolated squared read contribution over trace positions and batch items.
+ Cross-row cancellation is intentionally excluded so rows can be ranked.
+ """
+
+ _validate_full_error_inputs(state_errors)
+ row_error_energies = state_errors.to(torch.float32).square().sum(dim=-1)
+ return finite_horizon_row_read_risk_from_energies(
+ row_error_energies,
+ queries,
+ keys,
+ log_decays,
+ betas,
+ horizon=horizon,
+ normalize_qk=normalize_qk,
+ epsilon=epsilon,
+ )
diff --git a/src/recurquant/horizon_calibration.py b/src/recurquant/horizon_calibration.py
new file mode 100644
index 0000000..e2d184d
--- /dev/null
+++ b/src/recurquant/horizon_calibration.py
@@ -0,0 +1,582 @@
+"""Bounded calibration capture for finite-horizon Gated DeltaNet scoring.
+
+The recorder observes selected Qwen3.5 single-token recurrent calls without
+changing their arguments or return values. It keeps only normalized q/k,
+log-decay, beta, and per-row quantization-error energies for the current task.
+Full recurrent-state error matrices are temporary and never retained.
+
+These APIs are experimental calibration primitives. They do not establish an
+accuracy, memory, or latency improvement without a separate held-out test.
+"""
+
+from __future__ import annotations
+
+from collections.abc import Collection, Mapping
+from dataclasses import dataclass, field
+from types import TracebackType
+from typing import Any
+
+import torch
+
+from .horizon import HorizonReadRisk, finite_horizon_row_read_risk_from_energies
+from .quantization import QuantizationSpec, quantize_dequantize
+
+
+@dataclass(frozen=True, slots=True)
+class GDNCalibrationTrace:
+ """One bounded task trace for one Gated DeltaNet layer.
+
+ All tensors are FP32. Vector tensors have shape
+ ``[time, batch, heads, key_dim]`` and scalar tensors have shape
+ ``[time, batch, heads]``. The q/k vectors are already normalized exactly as
+ the tested Qwen3.5 PyTorch kernel normalizes them. At index ``t``, the row
+ energies describe the recurrent state immediately before the same token's
+ q/k/g/beta transition.
+ """
+
+ layer_index: int
+ queries: torch.Tensor
+ keys: torch.Tensor
+ log_decays: torch.Tensor
+ betas: torch.Tensor
+ int4_row_error_energies: torch.Tensor
+ int8_row_error_energies: torch.Tensor
+ dropped_calls: int = 0
+ missing_initial_state_calls: int = 0
+
+ @property
+ def tokens(self) -> int:
+ return int(self.queries.shape[0])
+
+ @property
+ def retained_bytes(self) -> int:
+ tensors = (
+ self.queries,
+ self.keys,
+ self.log_decays,
+ self.betas,
+ self.int4_row_error_energies,
+ self.int8_row_error_energies,
+ )
+ return sum(tensor.numel() * tensor.element_size() for tensor in tensors)
+
+ @property
+ def complete(self) -> bool:
+ return self.dropped_calls == 0 and self.missing_initial_state_calls == 0
+
+
+@dataclass(frozen=True, slots=True)
+class BitwidthHorizonReadRisk:
+ """Aligned INT4 and INT8 finite-horizon row scores for one layer/task."""
+
+ layer_index: int
+ int4: HorizonReadRisk
+ int8: HorizonReadRisk
+
+ @property
+ def int4_minus_int8(self) -> torch.Tensor:
+ """Return the modeled read-risk difference, without clamping its sign."""
+
+ return self.int4.scores - self.int8.scores
+
+
+@dataclass(frozen=True, slots=True)
+class TaskMacroHorizonSummary:
+ """Task-macro mean row scores retained by the streaming accumulator."""
+
+ layer_index: int
+ horizon: int
+ tasks: int
+ int4_scores: torch.Tensor
+ int8_scores: torch.Tensor
+
+ @property
+ def int4_minus_int8(self) -> torch.Tensor:
+ return self.int4_scores - self.int8_scores
+
+
+def _validate_row_spec(spec: QuantizationSpec, *, bits: int, name: str) -> None:
+ if spec.bits != bits:
+ raise ValueError(f"{name} must use bits={bits}")
+ if spec.flatten_last_dims != 1:
+ raise ValueError(
+ f"{name} must use flatten_last_dims=1 so recurrent-state rows are "
+ "quantized independently"
+ )
+
+
+def row_quantization_error_energies(
+ initial_state: torch.Tensor,
+ spec: QuantizationSpec,
+) -> torch.Tensor:
+ """Return FP32 squared quantization-error norms for each state row.
+
+ ``initial_state`` must have shape ``[batch, heads, key_dim, value_dim]``.
+ The source is explicitly converted to FP32 before quantization so the
+ energy measures integer quantization rather than a lower-precision input
+ cast. Only the returned ``[batch, heads, key_dim]`` tensor is persistent.
+ """
+
+ if initial_state.ndim != 4:
+ raise ValueError("initial_state must have shape [batch, heads, key_dim, value_dim]")
+ if not initial_state.is_floating_point():
+ raise TypeError("initial_state must use a floating-point dtype")
+ if initial_state.device.type == "meta":
+ raise ValueError("initial_state must be materialized, not on the meta device")
+ if not torch.isfinite(initial_state).all().item():
+ raise ValueError("initial_state must contain only finite values")
+ if spec.flatten_last_dims != 1:
+ raise ValueError(
+ "spec must use flatten_last_dims=1 so recurrent-state rows are quantized independently"
+ )
+
+ source = initial_state.detach().to(torch.float32)
+ quantized = quantize_dequantize(source, spec).tensor.to(torch.float32)
+ return (quantized - source).square().sum(dim=-1)
+
+
+def score_gdn_calibration_trace(
+ trace: GDNCalibrationTrace,
+ *,
+ horizon: int = 32,
+ epsilon: float = 1e-6,
+) -> BitwidthHorizonReadRisk:
+ """Score an already-normalized calibration trace at INT4 and INT8."""
+
+ if not trace.complete:
+ raise ValueError(
+ "cannot score an incomplete calibration trace: "
+ f"dropped_calls={trace.dropped_calls}, "
+ f"missing_initial_state_calls={trace.missing_initial_state_calls}"
+ )
+
+ int4 = finite_horizon_row_read_risk_from_energies(
+ trace.int4_row_error_energies,
+ trace.queries,
+ trace.keys,
+ trace.log_decays,
+ trace.betas,
+ horizon=horizon,
+ normalize_qk=False,
+ epsilon=epsilon,
+ )
+ int8 = finite_horizon_row_read_risk_from_energies(
+ trace.int8_row_error_energies,
+ trace.queries,
+ trace.keys,
+ trace.log_decays,
+ trace.betas,
+ horizon=horizon,
+ normalize_qk=False,
+ epsilon=epsilon,
+ )
+ return BitwidthHorizonReadRisk(layer_index=trace.layer_index, int4=int4, int8=int8)
+
+
+@dataclass(slots=True)
+class _LayerTraceBuffer:
+ queries: list[torch.Tensor] = field(default_factory=list)
+ keys: list[torch.Tensor] = field(default_factory=list)
+ log_decays: list[torch.Tensor] = field(default_factory=list)
+ betas: list[torch.Tensor] = field(default_factory=list)
+ int4_energies: list[torch.Tensor] = field(default_factory=list)
+ int8_energies: list[torch.Tensor] = field(default_factory=list)
+ expected_vector_shape: tuple[int, ...] | None = None
+ dropped_calls: int = 0
+ missing_initial_state_calls: int = 0
+
+ @property
+ def tokens(self) -> int:
+ return len(self.queries)
+
+
+def _argument(
+ args: tuple[object, ...],
+ kwargs: dict[str, object],
+ name: str,
+ position: int,
+) -> object | None:
+ if name in kwargs:
+ return kwargs[name]
+ return args[position] if len(args) > position else None
+
+
+def _normalize_qk(value: torch.Tensor, *, epsilon: float) -> torch.Tensor:
+ working = value.detach()
+ normalized = working * torch.rsqrt(working.square().sum(dim=-1, keepdim=True) + epsilon)
+ return normalized.to(torch.float32)
+
+
+def _validate_single_token_call(
+ query: object,
+ key: object,
+ log_decay: object,
+ beta: object,
+ initial_state: object,
+) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]:
+ named = {
+ "query": query,
+ "key": key,
+ "g": log_decay,
+ "beta": beta,
+ "initial_state": initial_state,
+ }
+ if not all(isinstance(value, torch.Tensor) for value in named.values()):
+ missing = [name for name, value in named.items() if not isinstance(value, torch.Tensor)]
+ raise TypeError(f"Gated DeltaNet call must expose tensor {', '.join(missing)}")
+
+ query_tensor = query
+ key_tensor = key
+ decay_tensor = log_decay
+ beta_tensor = beta
+ state_tensor = initial_state
+ if query_tensor.ndim != 4 or key_tensor.ndim != 4:
+ raise ValueError("query and key must have shape [batch, 1, heads, key_dim]")
+ if query_tensor.shape != key_tensor.shape or query_tensor.shape[1] != 1:
+ raise ValueError(
+ "recorder accepts only aligned single-token query/key tensors with "
+ "shape [batch, 1, heads, key_dim]"
+ )
+ expected_scalars = query_tensor.shape[:3]
+ if decay_tensor.shape != expected_scalars or beta_tensor.shape != expected_scalars:
+ raise ValueError("g and beta must have shape [batch, 1, heads]")
+ expected_state = (
+ query_tensor.shape[0],
+ query_tensor.shape[2],
+ query_tensor.shape[3],
+ )
+ if state_tensor.ndim != 4 or state_tensor.shape[:3] != expected_state:
+ raise ValueError(
+ "initial_state must have shape [batch, heads, key_dim, value_dim] "
+ "aligned with query/key"
+ )
+ tensors = (query_tensor, key_tensor, decay_tensor, beta_tensor, state_tensor)
+ if not all(tensor.is_floating_point() for tensor in tensors):
+ raise TypeError("all captured Gated DeltaNet inputs must use floating-point dtypes")
+ if state_tensor.dtype != torch.float32:
+ raise TypeError(
+ "initial_state must use torch.float32 so calibration starts from the "
+ "full-precision recurrent-state reference"
+ )
+ if len({tensor.device for tensor in tensors}) != 1:
+ raise ValueError("all captured Gated DeltaNet inputs must be on the same device")
+ if query_tensor.device.type == "meta":
+ raise ValueError("captured Gated DeltaNet inputs must be materialized")
+ if not all(torch.isfinite(tensor).all().item() for tensor in tensors):
+ raise ValueError("all captured Gated DeltaNet inputs must be finite")
+ return query_tensor, key_tensor, decay_tensor, beta_tensor, state_tensor
+
+
+class GDNHorizonCalibrationRecorder:
+ """Capture bounded single-token traces from selected Qwen3.5 GDN layers.
+
+ The caller must name at least one layer and choose a positive per-layer token
+ bound. Once a layer reaches that bound, further calls pass through unchanged
+ and are counted as dropped. ``drain_traces`` transfers the current task's
+ compact traces and clears recorder storage before the next task.
+ """
+
+ def __init__(
+ self,
+ model: torch.nn.Module,
+ *,
+ layer_indices: Collection[int],
+ max_tokens_per_layer: int,
+ int4_spec: QuantizationSpec | None = None,
+ int8_spec: QuantizationSpec | None = None,
+ storage_device: torch.device | str = "cpu",
+ epsilon: float = 1e-6,
+ ) -> None:
+ selected = tuple(sorted(set(layer_indices)))
+ if not selected:
+ raise ValueError("layer_indices must select at least one layer")
+ if any(
+ isinstance(index, bool) or not isinstance(index, int) or index < 0 for index in selected
+ ):
+ raise ValueError("layer_indices must contain non-negative integers")
+ if (
+ isinstance(max_tokens_per_layer, bool)
+ or not isinstance(max_tokens_per_layer, int)
+ or max_tokens_per_layer <= 0
+ ):
+ raise ValueError("max_tokens_per_layer must be a positive integer")
+ if epsilon <= 0:
+ raise ValueError("epsilon must be positive")
+
+ resolved_int4 = int4_spec or QuantizationSpec(
+ bits=4,
+ group_size=128,
+ flatten_last_dims=1,
+ )
+ resolved_int8 = int8_spec or QuantizationSpec(
+ bits=8,
+ group_size=128,
+ flatten_last_dims=1,
+ )
+ _validate_row_spec(resolved_int4, bits=4, name="int4_spec")
+ _validate_row_spec(resolved_int8, bits=8, name="int8_spec")
+ resolved_storage = torch.device(storage_device)
+ if resolved_storage.type == "meta":
+ raise ValueError("storage_device must retain materialized tensors")
+
+ self.model = model
+ self.layer_indices = selected
+ self.max_tokens_per_layer = max_tokens_per_layer
+ self.int4_spec = resolved_int4
+ self.int8_spec = resolved_int8
+ self.storage_device = resolved_storage
+ self.epsilon = epsilon
+ self.enabled = True
+ self._buffers = {index: _LayerTraceBuffer() for index in selected}
+ self._installed: list[tuple[object, str, object]] = []
+
+ @property
+ def captured_tokens(self) -> dict[int, int]:
+ return {index: buffer.tokens for index, buffer in self._buffers.items()}
+
+ @property
+ def dropped_calls(self) -> dict[int, int]:
+ return {index: buffer.dropped_calls for index, buffer in self._buffers.items()}
+
+ @property
+ def missing_initial_state_calls(self) -> dict[int, int]:
+ return {
+ index: buffer.missing_initial_state_calls for index, buffer in self._buffers.items()
+ }
+
+ def _selected_modules(self) -> dict[int, torch.nn.Module]:
+ selected: dict[int, torch.nn.Module] = {}
+ for module in self.model.modules():
+ if module.__class__.__name__ != "Qwen3_5GatedDeltaNet":
+ continue
+ layer_index = getattr(module, "layer_idx", None)
+ if layer_index not in self._buffers:
+ continue
+ if layer_index in selected:
+ raise ValueError(f"model contains duplicate GDN layer index {layer_index}")
+ selected[layer_index] = module
+ missing = set(self.layer_indices) - set(selected)
+ if missing:
+ raise ValueError(f"model does not contain selected GDN layers {sorted(missing)}")
+ return selected
+
+ def _store(self, value: torch.Tensor) -> torch.Tensor:
+ return (
+ value.detach().to(device=self.storage_device, dtype=torch.float32).clone().contiguous()
+ )
+
+ def _capture_call(
+ self,
+ *,
+ layer_index: int,
+ query: object,
+ key: object,
+ log_decay: object,
+ beta: object,
+ initial_state: object,
+ use_qk_l2norm_in_kernel: object,
+ ) -> None:
+ buffer = self._buffers[layer_index]
+ if initial_state is None:
+ buffer.missing_initial_state_calls += 1
+ return
+ if buffer.tokens >= self.max_tokens_per_layer:
+ buffer.dropped_calls += 1
+ return
+ if use_qk_l2norm_in_kernel is not True:
+ raise ValueError(
+ "calibration requires use_qk_l2norm_in_kernel=True to match the "
+ "tested Qwen3.5 recurrence"
+ )
+ query_tensor, key_tensor, decay_tensor, beta_tensor, state_tensor = (
+ _validate_single_token_call(query, key, log_decay, beta, initial_state)
+ )
+ vector_shape = tuple(query_tensor[:, 0].shape)
+ if buffer.expected_vector_shape is None:
+ buffer.expected_vector_shape = vector_shape
+ elif buffer.expected_vector_shape != vector_shape:
+ raise ValueError(
+ "captured batch/head/key dimensions changed within one task; "
+ "drain_traces() before recording the next task"
+ )
+
+ normalized_query = _normalize_qk(query_tensor[:, 0], epsilon=self.epsilon)
+ normalized_key = _normalize_qk(key_tensor[:, 0], epsilon=self.epsilon)
+ state_float = state_tensor.detach().to(torch.float32)
+ int4_energy = row_quantization_error_energies(state_float, self.int4_spec)
+ int8_energy = row_quantization_error_energies(state_float, self.int8_spec)
+
+ buffer.queries.append(self._store(normalized_query))
+ buffer.keys.append(self._store(normalized_key))
+ buffer.log_decays.append(self._store(decay_tensor[:, 0]))
+ buffer.betas.append(self._store(beta_tensor[:, 0]))
+ buffer.int4_energies.append(self._store(int4_energy))
+ buffer.int8_energies.append(self._store(int8_energy))
+
+ def _make_wrapper(self, module: torch.nn.Module, original: Any):
+ layer_index = int(module.layer_idx)
+
+ def wrapped(*args: object, **kwargs: object):
+ if self.enabled:
+ self._capture_call(
+ layer_index=layer_index,
+ query=_argument(args, kwargs, "query", 0),
+ key=_argument(args, kwargs, "key", 1),
+ log_decay=_argument(args, kwargs, "g", 3),
+ beta=_argument(args, kwargs, "beta", 4),
+ initial_state=_argument(args, kwargs, "initial_state", 5),
+ use_qk_l2norm_in_kernel=_argument(
+ args,
+ kwargs,
+ "use_qk_l2norm_in_kernel",
+ 7,
+ ),
+ )
+ return original(*args, **kwargs)
+
+ return wrapped
+
+ def install(self) -> None:
+ if self._installed:
+ raise RuntimeError("recorder is already installed")
+ modules = self._selected_modules()
+ try:
+ for layer_index in self.layer_indices:
+ module = modules[layer_index]
+ attribute = "recurrent_gated_delta_rule"
+ original = getattr(module, attribute)
+ setattr(module, attribute, self._make_wrapper(module, original))
+ self._installed.append((module, attribute, original))
+ except BaseException:
+ self.remove()
+ raise
+
+ def remove(self) -> None:
+ while self._installed:
+ module, attribute, original = self._installed.pop()
+ setattr(module, attribute, original)
+
+ def clear(self) -> None:
+ self._buffers = {index: _LayerTraceBuffer() for index in self.layer_indices}
+
+ def drain_traces(
+ self,
+ *,
+ require_complete: bool = True,
+ ) -> dict[int, GDNCalibrationTrace]:
+ """Return current task traces and clear storage after validation.
+
+ The default rejects missing or truncated calls instead of silently
+ turning a token bound into a shorter calibration example. Set
+ ``require_complete=False`` only for recorder diagnostics; incomplete
+ traces are marked and cannot be scored.
+ """
+
+ if require_complete:
+ incomplete = {
+ layer_index: {
+ "captured_tokens": buffer.tokens,
+ "dropped_calls": buffer.dropped_calls,
+ "missing_initial_state_calls": buffer.missing_initial_state_calls,
+ }
+ for layer_index, buffer in self._buffers.items()
+ if buffer.tokens == 0 or buffer.dropped_calls or buffer.missing_initial_state_calls
+ }
+ if incomplete:
+ raise RuntimeError(f"calibration task trace is incomplete: {incomplete}")
+
+ traces: dict[int, GDNCalibrationTrace] = {}
+ for layer_index, buffer in self._buffers.items():
+ if not buffer.queries:
+ continue
+ traces[layer_index] = GDNCalibrationTrace(
+ layer_index=layer_index,
+ queries=torch.stack(buffer.queries),
+ keys=torch.stack(buffer.keys),
+ log_decays=torch.stack(buffer.log_decays),
+ betas=torch.stack(buffer.betas),
+ int4_row_error_energies=torch.stack(buffer.int4_energies),
+ int8_row_error_energies=torch.stack(buffer.int8_energies),
+ dropped_calls=buffer.dropped_calls,
+ missing_initial_state_calls=buffer.missing_initial_state_calls,
+ )
+ self.clear()
+ return traces
+
+ def __enter__(self) -> GDNHorizonCalibrationRecorder:
+ self.install()
+ return self
+
+ def __exit__(
+ self,
+ exc_type: type[BaseException] | None,
+ exc_value: BaseException | None,
+ traceback: TracebackType | None,
+ ) -> None:
+ self.remove()
+
+
+class TaskMacroHorizonAccumulator:
+ """Aggregate task-level layer scores without retaining task traces."""
+
+ def __init__(self, *, horizon: int = 32, epsilon: float = 1e-6) -> None:
+ if isinstance(horizon, bool) or not isinstance(horizon, int) or horizon <= 0:
+ raise ValueError("horizon must be a positive integer")
+ if epsilon <= 0:
+ raise ValueError("epsilon must be positive")
+ self.horizon = horizon
+ self.epsilon = epsilon
+ self._int4_sums: dict[int, torch.Tensor] = {}
+ self._int8_sums: dict[int, torch.Tensor] = {}
+ self._task_counts: dict[int, int] = {}
+ self._expected_layer_indices: frozenset[int] | None = None
+
+ def add_task(self, traces: Mapping[int, GDNCalibrationTrace]) -> None:
+ """Score one task and retain only one score matrix per bitwidth/layer."""
+
+ if not traces:
+ raise ValueError("traces must contain at least one layer")
+ layer_indices = frozenset(traces)
+ if self._expected_layer_indices is None:
+ self._expected_layer_indices = layer_indices
+ elif layer_indices != self._expected_layer_indices:
+ raise ValueError(
+ "trace layer set changed across tasks: "
+ f"expected={sorted(self._expected_layer_indices)}, "
+ f"actual={sorted(layer_indices)}"
+ )
+ for layer_index, trace in traces.items():
+ if layer_index != trace.layer_index:
+ raise ValueError("trace mapping key must match trace.layer_index")
+ result = score_gdn_calibration_trace(
+ trace,
+ horizon=self.horizon,
+ epsilon=self.epsilon,
+ )
+ int4_score = result.int4.scores.detach().to(device="cpu", dtype=torch.float64)
+ int8_score = result.int8.scores.detach().to(device="cpu", dtype=torch.float64)
+ if layer_index in self._int4_sums:
+ if self._int4_sums[layer_index].shape != int4_score.shape:
+ raise ValueError(f"layer {layer_index} score shape changed across tasks")
+ self._int4_sums[layer_index] += int4_score
+ self._int8_sums[layer_index] += int8_score
+ else:
+ self._int4_sums[layer_index] = int4_score.clone()
+ self._int8_sums[layer_index] = int8_score.clone()
+ self._task_counts[layer_index] = 0
+ self._task_counts[layer_index] += 1
+
+ def summary(self, layer_index: int) -> TaskMacroHorizonSummary:
+ if layer_index not in self._task_counts:
+ raise KeyError(f"layer {layer_index} has no accumulated tasks")
+ tasks = self._task_counts[layer_index]
+ return TaskMacroHorizonSummary(
+ layer_index=layer_index,
+ horizon=self.horizon,
+ tasks=tasks,
+ int4_scores=(self._int4_sums[layer_index] / tasks).clone(),
+ int8_scores=(self._int8_sums[layer_index] / tasks).clone(),
+ )
+
+ def summaries(self) -> dict[int, TaskMacroHorizonSummary]:
+ return {layer_index: self.summary(layer_index) for layer_index in self._task_counts}
diff --git a/src/recurquant/intervention.py b/src/recurquant/intervention.py
new file mode 100644
index 0000000..b51ca41
--- /dev/null
+++ b/src/recurquant/intervention.py
@@ -0,0 +1,458 @@
+"""Bounded physical-cache interventions for validating row rankings.
+
+This module deliberately implements an expensive analysis oracle, not a
+deployable selector. It reruns a fixed teacher-forced sequence once for an
+all-INT4/background control and once per candidate row. Every candidate run
+uses a fresh :class:`MixedPackedRecurrentStateCache`, so the measured metric
+includes the real repeated INT4/INT8 packing and dequantization path.
+
+Candidate metrics use target tokens and can therefore overfit calibration
+data. The results are appropriate for auditing a scalable sensitivity proxy
+on a small, predeclared candidate set; they are not an inference-time policy or
+confirmation evidence by themselves.
+"""
+
+from __future__ import annotations
+
+import math
+from collections.abc import Callable, Sequence
+from dataclasses import dataclass
+
+import torch
+
+from .qwen35 import create_qwen35_exact_budget_cache
+from .row_policy import ExactBudgetRowPlan, RowLocation, select_rows_exact_budget
+
+TokenMetric = Callable[[torch.Tensor, torch.Tensor], torch.Tensor]
+
+_MAX_CANDIDATE_CAP = 256
+
+
+@dataclass(frozen=True, slots=True)
+class PhysicalMetricRun:
+ """One fixed-sequence measurement from a physical mixed cache."""
+
+ mean_metric: float
+ token_count: int
+ resident_bytes: int
+ high_precision_groups: int
+ cache_update_count: int
+
+
+@dataclass(frozen=True, slots=True)
+class RowPromotionMeasurement:
+ """The measured marginal effect of promoting one candidate row."""
+
+ location: RowLocation
+ run: PhysicalMetricRun
+ metric_delta: float
+ improvement: float
+
+
+@dataclass(frozen=True, slots=True)
+class PhysicalRowPromotionOracleResult:
+ """Results from a bounded, post-hoc physical intervention audit."""
+
+ metric_name: str
+ lower_is_better: bool
+ baseline: PhysicalMetricRun
+ measurements: tuple[RowPromotionMeasurement, ...]
+ background_rows: tuple[RowLocation, ...]
+ baseline_plan_bytes: int
+ intervention_plan_bytes: int
+ promotion_increment_bytes: int
+
+ def ranked_measurements(self) -> tuple[RowPromotionMeasurement, ...]:
+ """Return candidates from largest measured improvement to smallest."""
+
+ return tuple(
+ sorted(
+ self.measurements,
+ key=lambda measurement: (-measurement.improvement, measurement.location),
+ )
+ )
+
+
+def target_nll_values(logits: torch.Tensor, target_ids: torch.Tensor) -> torch.Tensor:
+ """Return one teacher-forced negative log-likelihood value per target token."""
+
+ log_probs = torch.log_softmax(logits.to(torch.float32), dim=-1)
+ return -log_probs.gather(-1, target_ids.to(torch.int64).unsqueeze(-1)).squeeze(-1)
+
+
+def _validate_token_inputs(
+ model: torch.nn.Module,
+ prompt_ids: torch.Tensor,
+ continuation_ids: torch.Tensor,
+) -> None:
+ for name, value in (("prompt_ids", prompt_ids), ("continuation_ids", continuation_ids)):
+ if not isinstance(value, torch.Tensor):
+ raise TypeError(f"{name} must be a torch.Tensor")
+ if value.ndim != 2 or value.shape[0] <= 0 or value.shape[1] <= 0:
+ raise ValueError(f"{name} must have non-empty shape [batch, tokens]")
+ if value.dtype not in (torch.int32, torch.int64):
+ raise TypeError(f"{name} must use torch.int32 or torch.int64")
+ if prompt_ids.shape[0] != continuation_ids.shape[0]:
+ raise ValueError("prompt_ids and continuation_ids must have the same batch size")
+ if prompt_ids.device != continuation_ids.device:
+ raise ValueError("prompt_ids and continuation_ids must be on the same device")
+
+ parameter = next(model.parameters(), None)
+ if parameter is not None and parameter.device != prompt_ids.device:
+ raise ValueError(
+ "token tensors must be on the model device: "
+ f"tokens={prompt_ids.device}, model={parameter.device}"
+ )
+
+ vocab_size = getattr(getattr(model, "config", None), "vocab_size", None)
+ if isinstance(vocab_size, bool) or not isinstance(vocab_size, int) or vocab_size <= 0:
+ raise ValueError("model.config.vocab_size must be a positive integer")
+ for name, value in (("prompt_ids", prompt_ids), ("continuation_ids", continuation_ids)):
+ if value.min().item() < 0 or value.max().item() >= vocab_size:
+ raise ValueError(f"{name} contains a token outside [0, {vocab_size})")
+
+
+def _qwen_row_geometry(model: torch.nn.Module) -> tuple[tuple[int, int, int], ...]:
+ config = getattr(model, "config", None)
+ layer_types = getattr(config, "layer_types", None)
+ head_count = getattr(config, "linear_num_value_heads", None)
+ row_count = getattr(config, "linear_key_head_dim", None)
+ if not isinstance(layer_types, (list, tuple)):
+ raise ValueError("model.config.layer_types must be a list or tuple")
+ if any(
+ isinstance(value, bool) or not isinstance(value, int) or value <= 0
+ for value in (head_count, row_count)
+ ):
+ raise ValueError("model config has invalid recurrent-state row geometry")
+ geometry = tuple(
+ (layer_index, head_count, row_count)
+ for layer_index, layer_type in enumerate(layer_types)
+ if layer_type == "linear_attention"
+ )
+ if not geometry:
+ raise ValueError("model config has no linear_attention layers")
+ return geometry
+
+
+def _validated_locations(
+ locations: Sequence[RowLocation],
+ *,
+ name: str,
+ shapes: tuple[tuple[int, int, int], ...],
+) -> tuple[RowLocation, ...]:
+ rendered = tuple(locations)
+ if any(not isinstance(location, RowLocation) for location in rendered):
+ raise TypeError(f"{name} must contain only RowLocation values")
+ if len(set(rendered)) != len(rendered):
+ raise ValueError(f"{name} must not contain duplicates")
+
+ geometry = {layer_index: (heads, rows) for layer_index, heads, rows in shapes}
+ for location in rendered:
+ values = (location.layer_index, location.head_index, location.row_index)
+ if any(isinstance(value, bool) or not isinstance(value, int) for value in values):
+ raise ValueError(f"{name} indices must be integers")
+ layer_shape = geometry.get(location.layer_index)
+ if layer_shape is None:
+ raise ValueError(f"{name} references non-recurrent layer {location.layer_index}")
+ heads, rows = layer_shape
+ if not (0 <= location.head_index < heads and 0 <= location.row_index < rows):
+ raise ValueError(f"{name} contains an out-of-range location: {location}")
+ return tuple(sorted(rendered))
+
+
+def _resident_bytes(
+ *,
+ total_groups: int,
+ promoted_groups: int,
+ group_size: int,
+ scale_bits: int,
+) -> tuple[int, int]:
+ low_payload_bytes = math.ceil(4 * group_size / 8)
+ high_payload_bytes = math.ceil(8 * group_size / 8)
+ increment = high_payload_bytes - low_payload_bytes
+ minimum = total_groups * (low_payload_bytes + scale_bits // 8) + math.ceil(total_groups / 8)
+ return minimum + promoted_groups * increment, increment
+
+
+def _plan_for_rows(
+ *,
+ shapes: tuple[tuple[int, int, int], ...],
+ promoted_rows: tuple[RowLocation, ...],
+ target_resident_bytes: int,
+ group_size: int,
+ scale_bits: int,
+) -> ExactBudgetRowPlan:
+ scores = {
+ layer_index: torch.zeros((heads, rows), dtype=torch.float64)
+ for layer_index, heads, rows in shapes
+ }
+ for location in promoted_rows:
+ scores[location.layer_index][location.head_index, location.row_index] = 1.0
+ plan = select_rows_exact_budget(
+ scores,
+ target_resident_bytes=target_resident_bytes,
+ group_size=group_size,
+ scale_bits=scale_bits,
+ )
+ if plan.high_precision_rows != tuple(sorted(promoted_rows)):
+ raise RuntimeError("exact-byte selector did not realize the requested intervention rows")
+ return plan
+
+
+def _metric_values(
+ metric: TokenMetric,
+ logits: torch.Tensor,
+ target_ids: torch.Tensor,
+) -> torch.Tensor:
+ values = metric(logits, target_ids)
+ if not isinstance(values, torch.Tensor):
+ raise TypeError("metric must return a torch.Tensor")
+ if values.shape != target_ids.shape:
+ raise ValueError(
+ "metric must return one value per target with shape "
+ f"{tuple(target_ids.shape)}, got {tuple(values.shape)}"
+ )
+ if not values.is_floating_point():
+ raise TypeError("metric values must use a floating-point dtype")
+ if not torch.isfinite(values).all().item():
+ raise ValueError("metric returned a non-finite value")
+ return values.detach().to(device="cpu", dtype=torch.float64).reshape(-1)
+
+
+def _run_plan(
+ model: torch.nn.Module,
+ *,
+ plan: ExactBudgetRowPlan,
+ prompt_ids: torch.Tensor,
+ continuation_ids: torch.Tensor,
+ metric: TokenMetric,
+ seed: int,
+) -> PhysicalMetricRun:
+ cache = create_qwen35_exact_budget_cache(
+ model,
+ plan=plan,
+ rounding="nearest",
+ seed=seed,
+ record_evidence=True,
+ )
+ values: list[torch.Tensor] = []
+ with torch.inference_mode():
+ output = model(
+ prompt_ids,
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ values.append(_metric_values(metric, output.logits, continuation_ids[:, :1]))
+
+ for token_index in range(continuation_ids.shape[1] - 1):
+ output = model(
+ continuation_ids[:, token_index : token_index + 1],
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ target = continuation_ids[:, token_index + 1 : token_index + 2]
+ values.append(_metric_values(metric, output.logits, target))
+
+ summary = cache.storage_summary()
+ batch_size = prompt_ids.shape[0]
+ expected_resident = batch_size * plan.resident_bytes
+ expected_high_precision = batch_size * plan.promoted_group_count
+ resident = int(summary["resident_bytes"])
+ high_precision = int(summary["high_precision_groups"])
+ if resident != expected_resident or high_precision != expected_high_precision:
+ raise RuntimeError(
+ "physical cache did not realize the intervention plan: "
+ f"resident={resident}/{expected_resident}, "
+ f"high_precision_groups={high_precision}/{expected_high_precision}"
+ )
+
+ recurrent_layer_indices = tuple(
+ layer_index for layer_index, _, _ in plan.score_shapes
+ )
+ forward_count = 1 + (continuation_ids.shape[1] - 1)
+ expected_update_count = len(recurrent_layer_indices) * forward_count
+ actual_update_count = len(cache.update_evidence)
+ update_counts = {
+ (layer_index, state_index): sum(
+ evidence.layer_index == layer_index and evidence.state_index == state_index
+ for evidence in cache.update_evidence
+ )
+ for layer_index in recurrent_layer_indices
+ for state_index in (0,)
+ }
+ expected_update_counts = {
+ (layer_index, 0): forward_count for layer_index in recurrent_layer_indices
+ }
+ if (
+ actual_update_count != expected_update_count
+ or update_counts != expected_update_counts
+ ):
+ raise RuntimeError(
+ "physical cache update trace did not cover one recurrent state per layer "
+ "for every model forward: "
+ f"updates={actual_update_count}/{expected_update_count}, "
+ f"per_layer_state={update_counts}/{expected_update_counts}"
+ )
+
+ combined = torch.cat(values)
+ return PhysicalMetricRun(
+ mean_metric=float(combined.mean().item()),
+ token_count=combined.numel(),
+ resident_bytes=resident,
+ high_precision_groups=high_precision,
+ cache_update_count=actual_update_count,
+ )
+
+
+def evaluate_physical_row_promotions(
+ model: torch.nn.Module,
+ *,
+ prompt_ids: torch.Tensor,
+ continuation_ids: torch.Tensor,
+ candidate_rows: Sequence[RowLocation],
+ background_rows: Sequence[RowLocation] = (),
+ intervention_resident_bytes: int | None = None,
+ scale_bits: int = 16,
+ seed: int = 2339,
+ max_candidates: int = 32,
+ metric: TokenMetric = target_nll_values,
+ metric_name: str = "target_nll",
+ lower_is_better: bool = True,
+) -> PhysicalRowPromotionOracleResult:
+ """Measure marginal row promotions through the physical recurrent cache.
+
+ A fresh cache first runs ``background_rows`` as the control. Each candidate
+ then runs in a separate cache with exactly ``background_rows + candidate``.
+ Thus all candidate interventions have the same exact resident-byte budget,
+ while the control is smaller by one INT4-to-INT8 payload increment. The
+ sequence, targets, nearest-rounding rule, and quantizer seed are held fixed.
+
+ The work scales linearly with ``len(candidate_rows)`` and is intentionally
+ capped. Because the targets directly define the default NLL metric, use
+ held-out data for claims and never describe this post-hoc audit as a
+ deployable oracle.
+ """
+
+ if not isinstance(model, torch.nn.Module):
+ raise TypeError("model must be a torch.nn.Module")
+ if isinstance(max_candidates, bool) or not isinstance(max_candidates, int):
+ raise TypeError("max_candidates must be an integer")
+ if not 1 <= max_candidates <= _MAX_CANDIDATE_CAP:
+ raise ValueError(f"max_candidates must be between 1 and {_MAX_CANDIDATE_CAP}")
+ if isinstance(scale_bits, bool) or scale_bits not in (16, 32):
+ raise ValueError("scale_bits must be 16 or 32")
+ if isinstance(seed, bool) or not isinstance(seed, int) or seed < 0:
+ raise ValueError("seed must be a nonnegative integer")
+ if not callable(metric):
+ raise TypeError("metric must be callable")
+ if not isinstance(metric_name, str) or not metric_name.strip():
+ raise ValueError("metric_name must be a non-empty string")
+ if not isinstance(lower_is_better, bool):
+ raise TypeError("lower_is_better must be a bool")
+
+ _validate_token_inputs(model, prompt_ids, continuation_ids)
+ shapes = _qwen_row_geometry(model)
+ candidates = _validated_locations(candidate_rows, name="candidate_rows", shapes=shapes)
+ background = _validated_locations(background_rows, name="background_rows", shapes=shapes)
+ if not candidates:
+ raise ValueError("candidate_rows must not be empty")
+ if len(candidates) > max_candidates:
+ raise ValueError(
+ "candidate_rows has "
+ f"{len(candidates)} entries, exceeding max_candidates={max_candidates}"
+ )
+ overlap = sorted(set(candidates) & set(background))
+ if overlap:
+ raise ValueError(f"candidate_rows must not overlap background_rows: {overlap}")
+
+ group_size = getattr(model.config, "linear_value_head_dim", None)
+ if isinstance(group_size, bool) or not isinstance(group_size, int) or group_size <= 0:
+ raise ValueError("model config has invalid recurrent-state group size")
+ total_groups = sum(heads * rows for _, heads, rows in shapes)
+ if len(background) + 1 > total_groups:
+ raise ValueError("background_rows leaves no row available for an intervention")
+
+ baseline_bytes, promotion_increment = _resident_bytes(
+ total_groups=total_groups,
+ promoted_groups=len(background),
+ group_size=group_size,
+ scale_bits=scale_bits,
+ )
+ expected_intervention_bytes, _ = _resident_bytes(
+ total_groups=total_groups,
+ promoted_groups=len(background) + 1,
+ group_size=group_size,
+ scale_bits=scale_bits,
+ )
+ if intervention_resident_bytes is None:
+ intervention_bytes = expected_intervention_bytes
+ else:
+ if isinstance(intervention_resident_bytes, bool) or not isinstance(
+ intervention_resident_bytes, int
+ ):
+ raise TypeError("intervention_resident_bytes must be an integer")
+ if intervention_resident_bytes != expected_intervention_bytes:
+ raise ValueError(
+ "intervention_resident_bytes must exactly encode background_rows plus one "
+ f"promotion: expected {expected_intervention_bytes}, got "
+ f"{intervention_resident_bytes}"
+ )
+ intervention_bytes = intervention_resident_bytes
+
+ baseline_plan = _plan_for_rows(
+ shapes=shapes,
+ promoted_rows=background,
+ target_resident_bytes=baseline_bytes,
+ group_size=group_size,
+ scale_bits=scale_bits,
+ )
+ baseline = _run_plan(
+ model,
+ plan=baseline_plan,
+ prompt_ids=prompt_ids,
+ continuation_ids=continuation_ids,
+ metric=metric,
+ seed=seed,
+ )
+
+ measurements: list[RowPromotionMeasurement] = []
+ for candidate in candidates:
+ promoted = tuple(sorted((*background, candidate)))
+ plan = _plan_for_rows(
+ shapes=shapes,
+ promoted_rows=promoted,
+ target_resident_bytes=intervention_bytes,
+ group_size=group_size,
+ scale_bits=scale_bits,
+ )
+ run = _run_plan(
+ model,
+ plan=plan,
+ prompt_ids=prompt_ids,
+ continuation_ids=continuation_ids,
+ metric=metric,
+ seed=seed,
+ )
+ metric_delta = run.mean_metric - baseline.mean_metric
+ improvement = -metric_delta if lower_is_better else metric_delta
+ measurements.append(
+ RowPromotionMeasurement(
+ location=candidate,
+ run=run,
+ metric_delta=metric_delta,
+ improvement=improvement,
+ )
+ )
+
+ return PhysicalRowPromotionOracleResult(
+ metric_name=metric_name.strip(),
+ lower_is_better=lower_is_better,
+ baseline=baseline,
+ measurements=tuple(measurements),
+ background_rows=background,
+ baseline_plan_bytes=baseline_bytes,
+ intervention_plan_bytes=intervention_bytes,
+ promotion_increment_bytes=promotion_increment,
+ )
diff --git a/src/recurquant/mixed_quantization.py b/src/recurquant/mixed_quantization.py
new file mode 100644
index 0000000..2cc6fd9
--- /dev/null
+++ b/src/recurquant/mixed_quantization.py
@@ -0,0 +1,359 @@
+"""Physical mixed-group INT4/INT8 packing for recurrent states.
+
+The precision decision is stored as one packed bit per quantization group. Each
+group owns one stored scale and either an INT4 or INT8 payload. ``storage_bytes``
+counts the resident tensor bytes exactly; Python metadata is not device-resident
+model state and is intentionally excluded, matching ``PackedQuantizedTensor``.
+"""
+
+from __future__ import annotations
+
+import math
+from dataclasses import dataclass
+
+import torch
+
+from .quantization import (
+ QuantizationSpec,
+ _group_tensor,
+ _scale_dtype,
+ _stochastic_round,
+)
+
+
+def _validate_mixed_specs(
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+) -> None:
+ if low_spec.bits != 4 or high_spec.bits != 8:
+ raise ValueError("mixed physical packing requires low INT4 and high INT8 specs")
+
+ shared_fields = (
+ "group_size",
+ "scale_bits",
+ "flatten_last_dims",
+ "rounding",
+ "seed",
+ "epsilon",
+ )
+ mismatched = [
+ field for field in shared_fields if getattr(low_spec, field) != getattr(high_spec, field)
+ ]
+ if mismatched:
+ raise ValueError(
+ "low_spec and high_spec must differ only in bits; mismatched fields: "
+ + ", ".join(mismatched)
+ )
+
+
+def _pack_precision_mask(mask: torch.Tensor) -> torch.Tensor:
+ flat = mask.reshape(-1).to(torch.uint8)
+ padding = (-flat.numel()) % 8
+ if padding:
+ flat = torch.nn.functional.pad(flat, (0, padding))
+ chunks = flat.reshape(-1, 8).to(torch.int16)
+ shifts = torch.arange(8, dtype=torch.int16, device=flat.device)
+ weights = torch.bitwise_left_shift(torch.ones_like(shifts), shifts)
+ return (chunks * weights).sum(dim=1).to(torch.uint8).contiguous()
+
+
+def _unpack_precision_mask(packed: torch.Tensor, total_groups: int) -> torch.Tensor:
+ shifts = torch.arange(8, dtype=torch.int16, device=packed.device)
+ expanded = torch.bitwise_right_shift(packed.to(torch.int16).unsqueeze(1), shifts)
+ return torch.bitwise_and(expanded, 1).reshape(-1)[:total_groups].to(torch.bool)
+
+
+def _pack_int4_groups(codes: torch.Tensor) -> torch.Tensor:
+ """Pack signed INT4 codes while preserving a byte boundary per group."""
+
+ nibbles = torch.bitwise_and(codes.to(torch.int16), 0x0F).to(torch.uint8)
+ if nibbles.shape[1] % 2:
+ nibbles = torch.nn.functional.pad(nibbles, (0, 1))
+ return torch.bitwise_or(
+ nibbles[:, 0::2],
+ torch.bitwise_left_shift(nibbles[:, 1::2], 4),
+ ).contiguous()
+
+
+def _unpack_int4_groups(payload: torch.Tensor, group_size: int) -> torch.Tensor:
+ low = torch.bitwise_and(payload, 0x0F).to(torch.int16)
+ high = torch.bitwise_right_shift(payload, 4).to(torch.int16)
+ low = torch.where(low >= 8, low - 16, low)
+ high = torch.where(high >= 8, high - 16, high)
+ codes = torch.empty(
+ (payload.shape[0], payload.shape[1] * 2),
+ dtype=torch.int16,
+ device=payload.device,
+ )
+ codes[:, 0::2] = low
+ codes[:, 1::2] = high
+ return codes[:, :group_size]
+
+
+def _quantize_mixed_groups(
+ grouped: torch.Tensor,
+ high_precision_mask: torch.Tensor,
+ low_spec: QuantizationSpec,
+) -> tuple[torch.Tensor, torch.Tensor]:
+ qmax = torch.where(
+ high_precision_mask.unsqueeze(1),
+ torch.tensor(127.0, device=grouped.device),
+ torch.tensor(7.0, device=grouped.device),
+ )
+ absmax = grouped.abs().amax(dim=-1, keepdim=True)
+ ideal_scales = torch.where(
+ absmax > low_spec.epsilon,
+ absmax / qmax,
+ torch.ones_like(absmax),
+ )
+ scale_dtype = _scale_dtype(low_spec.scale_bits)
+ if scale_dtype == torch.float16:
+ ideal_scales = ideal_scales.clamp(
+ min=2.0**-24,
+ max=torch.finfo(torch.float16).max,
+ )
+ stored_scales = ideal_scales.to(scale_dtype)
+ normalized = grouped / stored_scales.to(torch.float32)
+ if low_spec.rounding == "nearest":
+ quantized = torch.round(normalized)
+ else:
+ quantized = _stochastic_round(normalized, seed=low_spec.seed)
+ quantized = torch.minimum(torch.maximum(quantized, -qmax), qmax)
+ return quantized.to(torch.int16), stored_scales.squeeze(1).contiguous()
+
+
+def _validate_mask_shape(
+ mask: torch.Tensor,
+ *,
+ rows: int,
+ groups_per_row: int,
+) -> None:
+ if mask.dtype != torch.bool:
+ raise TypeError("high_precision_mask must use torch.bool")
+ expected_flat = (rows * groups_per_row,)
+ expected_grouped = (rows, groups_per_row)
+ if tuple(mask.shape) not in (expected_flat, expected_grouped):
+ raise ValueError(
+ "high_precision_mask must have shape "
+ f"{expected_flat} or {expected_grouped}, got {tuple(mask.shape)}"
+ )
+
+
+@dataclass(frozen=True, slots=True)
+class PackedMixedQuantizedTensor:
+ """A tensor with physically separate INT4 and INT8 group payloads."""
+
+ low_payload: torch.Tensor
+ high_payload: torch.Tensor
+ scales: torch.Tensor
+ precision_mask: torch.Tensor
+ low_spec: QuantizationSpec
+ high_spec: QuantizationSpec
+ original_shape: tuple[int, ...]
+ original_dtype: torch.dtype
+ flattened_size: int
+ padded_size: int
+ rows: int
+ groups_per_row: int
+
+ @property
+ def elements(self) -> int:
+ return math.prod(self.original_shape)
+
+ @property
+ def total_groups(self) -> int:
+ return self.rows * self.groups_per_row
+
+ @property
+ def low_precision_groups(self) -> int:
+ return self.low_payload.shape[0]
+
+ @property
+ def high_precision_groups(self) -> int:
+ return self.high_payload.shape[0]
+
+ @property
+ def payload_bytes(self) -> int:
+ return self.low_payload.numel() * self.low_payload.element_size() + (
+ self.high_payload.numel() * self.high_payload.element_size()
+ )
+
+ @property
+ def scale_bytes(self) -> int:
+ return self.scales.numel() * self.scales.element_size()
+
+ @property
+ def mask_bytes(self) -> int:
+ return self.precision_mask.numel() * self.precision_mask.element_size()
+
+ @property
+ def storage_bytes(self) -> int:
+ return self.payload_bytes + self.scale_bytes + self.mask_bytes
+
+ def high_precision_mask(self) -> torch.Tensor:
+ """Return the unpacked mask in ``[rows, groups_per_row]`` order."""
+
+ return _unpack_precision_mask(self.precision_mask, self.total_groups).reshape(
+ self.rows,
+ self.groups_per_row,
+ )
+
+ def _integer_groups(self) -> torch.Tensor:
+ mask = self.high_precision_mask().reshape(-1)
+ codes = torch.empty(
+ (self.total_groups, self.low_spec.group_size),
+ dtype=torch.int16,
+ device=self.scales.device,
+ )
+ codes[~mask] = _unpack_int4_groups(
+ self.low_payload,
+ self.low_spec.group_size,
+ )
+ codes[mask] = self.high_payload.to(torch.int16)
+ return codes
+
+ def dequantize(self) -> torch.Tensor:
+ """Materialize the mixed packed tensor in its original dtype and shape."""
+
+ restored_groups = self._integer_groups().to(torch.float32) * self.scales.to(
+ torch.float32
+ ).unsqueeze(1)
+ restored = restored_groups.reshape(self.rows, self.padded_size)[:, : self.flattened_size]
+ return restored.reshape(self.original_shape).to(self.original_dtype)
+
+ def to(self, device: torch.device | str) -> PackedMixedQuantizedTensor:
+ """Move all resident tensors without materializing or requantizing."""
+
+ return PackedMixedQuantizedTensor(
+ low_payload=self.low_payload.to(device),
+ high_payload=self.high_payload.to(device),
+ scales=self.scales.to(device),
+ precision_mask=self.precision_mask.to(device),
+ low_spec=self.low_spec,
+ high_spec=self.high_spec,
+ original_shape=self.original_shape,
+ original_dtype=self.original_dtype,
+ flattened_size=self.flattened_size,
+ padded_size=self.padded_size,
+ rows=self.rows,
+ groups_per_row=self.groups_per_row,
+ )
+
+ def reorder_batch(self, beam_idx: torch.LongTensor) -> PackedMixedQuantizedTensor:
+ """Select packed batch entries without another quantization round trip."""
+
+ if len(self.original_shape) <= self.low_spec.flatten_last_dims:
+ raise RuntimeError(
+ "Cannot reorder mixed groups when quantization includes the batch dimension"
+ )
+ if beam_idx.ndim != 1 or beam_idx.dtype not in (torch.int32, torch.int64):
+ raise TypeError("beam_idx must be a one-dimensional int32 or int64 tensor")
+
+ batch_size = self.original_shape[0]
+ if self.rows % batch_size:
+ raise RuntimeError("mixed row metadata is inconsistent with its batch dimension")
+ if beam_idx.numel() and (beam_idx.min().item() < 0 or beam_idx.max().item() >= batch_size):
+ raise IndexError("beam_idx contains an out-of-range batch index")
+
+ groups_per_batch = self.total_groups // batch_size
+ selected = beam_idx.to(self.scales.device)
+ selected_batch_size = selected.numel()
+ codes = self._integer_groups().reshape(
+ batch_size,
+ groups_per_batch,
+ self.low_spec.group_size,
+ )
+ scales = self.scales.reshape(batch_size, groups_per_batch)
+ mask = self.high_precision_mask().reshape(batch_size, groups_per_batch)
+
+ reordered_codes = codes.index_select(0, selected).reshape(
+ selected_batch_size * groups_per_batch,
+ self.low_spec.group_size,
+ )
+ reordered_scales = scales.index_select(0, selected).reshape(-1).contiguous()
+ reordered_mask = mask.index_select(0, selected).reshape(-1)
+ return _from_integer_groups(
+ reordered_codes,
+ reordered_scales,
+ reordered_mask,
+ low_spec=self.low_spec,
+ high_spec=self.high_spec,
+ original_shape=(selected_batch_size, *self.original_shape[1:]),
+ original_dtype=self.original_dtype,
+ flattened_size=self.flattened_size,
+ padded_size=self.padded_size,
+ rows=selected_batch_size * (self.rows // batch_size),
+ groups_per_row=self.groups_per_row,
+ )
+
+
+def _from_integer_groups(
+ codes: torch.Tensor,
+ scales: torch.Tensor,
+ high_precision_mask: torch.Tensor,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ original_shape: tuple[int, ...],
+ original_dtype: torch.dtype,
+ flattened_size: int,
+ padded_size: int,
+ rows: int,
+ groups_per_row: int,
+) -> PackedMixedQuantizedTensor:
+ flat_mask = high_precision_mask.reshape(-1)
+ return PackedMixedQuantizedTensor(
+ low_payload=_pack_int4_groups(codes[~flat_mask]),
+ high_payload=codes[flat_mask].to(torch.int8).contiguous(),
+ scales=scales.contiguous(),
+ precision_mask=_pack_precision_mask(flat_mask),
+ low_spec=low_spec,
+ high_spec=high_spec,
+ original_shape=original_shape,
+ original_dtype=original_dtype,
+ flattened_size=flattened_size,
+ padded_size=padded_size,
+ rows=rows,
+ groups_per_row=groups_per_row,
+ )
+
+
+def quantize_pack_mixed(
+ tensor: torch.Tensor,
+ high_precision_mask: torch.Tensor,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+) -> PackedMixedQuantizedTensor:
+ """Quantize groups into physically separate INT4 and INT8 payload pools.
+
+ ``high_precision_mask`` may be flat or shaped ``[rows, groups_per_row]`` in
+ the exact group order produced by the shared grouped quantizer.
+ """
+
+ _validate_mixed_specs(low_spec, high_spec)
+ working, original_dtype, flattened_size, padded_size, groups_per_row, grouped = _group_tensor(
+ tensor, low_spec
+ )
+ rows = grouped.shape[0]
+ _validate_mask_shape(
+ high_precision_mask,
+ rows=rows,
+ groups_per_row=groups_per_row,
+ )
+ flat_mask = high_precision_mask.detach().to(grouped.device).reshape(-1)
+ flat_groups = grouped.reshape(-1, low_spec.group_size)
+ codes, scales = _quantize_mixed_groups(flat_groups, flat_mask, low_spec)
+ return _from_integer_groups(
+ codes,
+ scales,
+ flat_mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ original_shape=tuple(working.shape),
+ original_dtype=original_dtype,
+ flattened_size=flattened_size,
+ padded_size=padded_size,
+ rows=rows,
+ groups_per_row=groups_per_row,
+ )
diff --git a/src/recurquant/model_fisher.py b/src/recurquant/model_fisher.py
new file mode 100644
index 0000000..6b966d5
--- /dev/null
+++ b/src/recurquant/model_fisher.py
@@ -0,0 +1,194 @@
+"""Label-free model-Fisher risk for recurrent-state row blocks.
+
+For a model-sampled pseudo-label ``y`` and a recurrent state ``S``, define the
+score gradient ``h = grad_S log p(y | context)``. The local model-Fisher risk
+of an endpoint error ``e`` is ``0.5 * E_y[(h dot e)^2]``. This module compares
+the aligned errors of two quantized endpoints row by row:
+
+``0.5 * mean[(h dot e4)^2 - (h dot e8)^2]``.
+
+The dot product is taken over the complete value dimension of each state row
+before it is squared. Consequently, interactions between coordinates within
+a row are retained. Cross-row interactions are deliberately excluded because
+the result is a row-allocation score, not the full-state quadratic form.
+
+The scoring function is pure and assumes its gradients came from pseudo-labels
+sampled from the model distribution. :func:`sample_model_pseudo_labels`
+provides reproducible samples when passed an explicitly seeded generator.
+Computing the corresponding per-example gradients is left to the model adapter
+so this primitive does not mutate or retain a live Transformers cache.
+"""
+
+from __future__ import annotations
+
+from dataclasses import dataclass
+
+import torch
+
+
+@dataclass(frozen=True, slots=True)
+class RowBlockModelFisherRisk:
+ """Model-Fisher endpoint risks and signed INT4-to-INT8 risk reduction.
+
+ Each tensor has shape ``[heads, key_dim]``. Positive
+ ``risk_difference`` values favor promoting a row from INT4 to INT8;
+ negative values are valid and are intentionally not clamped.
+ """
+
+ int4_risk: torch.Tensor
+ int8_risk: torch.Tensor
+ risk_difference: torch.Tensor
+ probes: int
+ batch_size: int
+
+ @property
+ def shape(self) -> torch.Size:
+ """Return the shared row-score shape."""
+
+ return self.risk_difference.shape
+
+
+def _generator_device(generator: torch.Generator) -> torch.device:
+ return torch.device(generator.device)
+
+
+def sample_model_pseudo_labels(
+ logits: torch.Tensor,
+ *,
+ probes: int,
+ generator: torch.Generator,
+) -> torch.Tensor:
+ """Sample categorical pseudo-labels from the unmodified model distribution.
+
+ ``logits`` must have shape ``[batch, vocabulary]``. The returned labels
+ have shape ``[probes, batch]``. No temperature, top-k, or top-p transform
+ is applied because those would define a different Fisher distribution.
+
+ Reproducibility is explicit: callers should construct a generator on the
+ same device, seed it, and record both its initial seed and the sampled label
+ tensor. Reusing a generator advances its state; two independently seeded
+ generators with the same seed produce the same samples on the same PyTorch
+ backend and version.
+ """
+
+ if logits.ndim != 2:
+ raise ValueError("logits must have shape [batch, vocabulary]")
+ if logits.shape[0] == 0 or logits.shape[1] == 0:
+ raise ValueError("logits must contain at least one batch item and vocabulary entry")
+ if isinstance(probes, bool) or not isinstance(probes, int) or probes <= 0:
+ raise ValueError("probes must be a positive integer")
+ if not isinstance(generator, torch.Generator):
+ raise TypeError("generator must be an explicitly seeded torch.Generator")
+ if not logits.is_floating_point():
+ raise TypeError("logits must use a floating-point dtype")
+ if logits.device.type == "meta":
+ raise ValueError("logits must be materialized")
+ if _generator_device(generator) != logits.device:
+ raise ValueError("generator and logits must be on the same device")
+ if not torch.isfinite(logits).all().item():
+ raise ValueError("logits must contain only finite values")
+
+ probability_dtype = torch.float64 if logits.dtype == torch.float64 else torch.float32
+ probabilities = torch.softmax(logits.detach().to(probability_dtype), dim=-1)
+ labels = torch.multinomial(
+ probabilities,
+ num_samples=probes,
+ replacement=True,
+ generator=generator,
+ )
+ return labels.transpose(0, 1).contiguous().detach()
+
+
+def _validate_row_risk_inputs(
+ pseudo_label_score_gradients: torch.Tensor,
+ int4_errors: torch.Tensor,
+ int8_errors: torch.Tensor,
+) -> None:
+ if pseudo_label_score_gradients.ndim != 5:
+ raise ValueError(
+ "pseudo_label_score_gradients must have shape "
+ "[probes, batch, heads, key_dim, value_dim]"
+ )
+ if int4_errors.ndim != 4 or int8_errors.ndim != 4:
+ raise ValueError(
+ "int4_errors and int8_errors must have shape [batch, heads, key_dim, value_dim]"
+ )
+ if pseudo_label_score_gradients.shape[1:] != int4_errors.shape:
+ raise ValueError("gradient dimensions after probes must match the aligned INT4 error shape")
+ if int8_errors.shape != int4_errors.shape:
+ raise ValueError("INT4 and INT8 errors must have the same shape")
+ if any(size == 0 for size in pseudo_label_score_gradients.shape):
+ raise ValueError("probe, batch, head, key, and value dimensions must be non-empty")
+
+ tensors = (
+ pseudo_label_score_gradients,
+ int4_errors,
+ int8_errors,
+ )
+ if not all(tensor.is_floating_point() for tensor in tensors):
+ raise TypeError("gradients and endpoint errors must use floating-point dtypes")
+ if any(tensor.dtype not in (torch.float32, torch.float64) for tensor in tensors):
+ raise TypeError("gradients and endpoint errors must use torch.float32 or torch.float64")
+ if len({tensor.dtype for tensor in tensors}) != 1:
+ raise TypeError("gradients and endpoint errors must use the same dtype")
+ if len({tensor.device for tensor in tensors}) != 1:
+ raise ValueError("gradients and endpoint errors must be on the same device")
+ if pseudo_label_score_gradients.device.type == "meta":
+ raise ValueError("gradients and endpoint errors must be materialized")
+ if not all(torch.isfinite(tensor).all().item() for tensor in tensors):
+ raise ValueError("gradients and endpoint errors must contain only finite values")
+
+
+def row_block_model_fisher_risk(
+ pseudo_label_score_gradients: torch.Tensor,
+ int4_errors: torch.Tensor,
+ int8_errors: torch.Tensor,
+) -> RowBlockModelFisherRisk:
+ """Compute signed label-free model-Fisher risk reduction per state row.
+
+ ``pseudo_label_score_gradients`` has shape
+ ``[probes, batch, heads, key_dim, value_dim]``. Probe ``p`` must be the
+ score gradient for a label independently sampled from the model predictive
+ distribution, not a dataset target. The sign of the score gradient is
+ immaterial after squaring, so gradients of pseudo-label NLL are equivalent.
+
+ ``int4_errors`` and ``int8_errors`` have shape
+ ``[batch, heads, key_dim, value_dim]`` and must be aligned errors relative
+ to the same full-precision endpoint, for example ``Q4(S) - S`` and
+ ``Q8(S) - S``. Errors are shared across probes because every pseudo-label
+ is drawn for the same endpoint.
+
+ The result averages equally over probes and batch items. It does not use a
+ gold target, square ``h dot (e4 - e8)``, replace the row-block quadratic by
+ a coordinate-diagonal approximation, or clamp negative differences.
+ """
+
+ _validate_row_risk_inputs(
+ pseudo_label_score_gradients,
+ int4_errors,
+ int8_errors,
+ )
+ gradients = pseudo_label_score_gradients.detach()
+ error4 = int4_errors.detach().unsqueeze(0)
+ error8 = int8_errors.detach().unsqueeze(0)
+
+ projection4 = (gradients * error4).sum(dim=-1)
+ projection8 = (gradients * error8).sum(dim=-1)
+ per_probe_int4_risk = 0.5 * projection4.square()
+ per_probe_int8_risk = 0.5 * projection8.square()
+ per_probe_difference = 0.5 * (projection4.square() - projection8.square())
+
+ int4_risk = per_probe_int4_risk.mean(dim=(0, 1))
+ int8_risk = per_probe_int8_risk.mean(dim=(0, 1))
+ risk_difference = per_probe_difference.mean(dim=(0, 1))
+ outputs = (int4_risk, int8_risk, risk_difference)
+ if not all(torch.isfinite(tensor).all().item() for tensor in outputs):
+ raise RuntimeError("model-Fisher row risk became non-finite")
+
+ return RowBlockModelFisherRisk(
+ int4_risk=int4_risk.detach(),
+ int8_risk=int8_risk.detach(),
+ risk_difference=risk_difference.detach(),
+ probes=pseudo_label_score_gradients.shape[0],
+ batch_size=pseudo_label_score_gradients.shape[1],
+ )
diff --git a/src/recurquant/packed_cache.py b/src/recurquant/packed_cache.py
index c42e1e6..0a809d2 100644
--- a/src/recurquant/packed_cache.py
+++ b/src/recurquant/packed_cache.py
@@ -2,6 +2,8 @@
from __future__ import annotations
+import hashlib
+import math
from collections.abc import Callable, Iterator, Mapping, MutableMapping
from dataclasses import asdict, dataclass
@@ -9,12 +11,16 @@
from transformers import DynamicCache
from transformers.cache_utils import LinearAttentionLayer
+from .mixed_quantization import PackedMixedQuantizedTensor, quantize_pack_mixed
from .quantization import (
PackedQuantizedTensor,
QuantizationSpec,
+ RoundingMode,
+ quantize_dequantize,
quantize_pack,
scheduled_quantization_spec,
)
+from .row_policy import ExactBudgetRowPlan
class _PackedStateView(MutableMapping[int, torch.Tensor | None]):
@@ -417,3 +423,638 @@ def storage_summary(self) -> dict[str, int | float | bool]:
resident > 0 and resident < full_precision_equivalent
),
}
+
+
+def _validate_exact_budget_plan(
+ plan: ExactBudgetRowPlan,
+ linear_layer_indices: set[int],
+) -> dict[int, tuple[int, int]]:
+ """Validate every byte and geometry invariant needed by the mixed cache."""
+
+ if plan.low_bits != 4 or plan.high_bits != 8:
+ raise ValueError("mixed row-plan caches require low_bits=4 and high_bits=8")
+ if plan.group_size <= 0:
+ raise ValueError("row plan group_size must be positive")
+ if plan.scale_bits not in (16, 32):
+ raise ValueError("row plan scale_bits must be 16 or 32")
+
+ shapes: dict[int, tuple[int, int]] = {}
+ for layer_index, head_count, row_count in plan.score_shapes:
+ if layer_index in shapes:
+ raise ValueError(f"row plan contains duplicate geometry for layer {layer_index}")
+ if layer_index < 0 or head_count <= 0 or row_count <= 0:
+ raise ValueError(
+ "row plan layer indices must be nonnegative and dimensions must be positive"
+ )
+ shapes[layer_index] = (head_count, row_count)
+
+ plan_layers = set(shapes)
+ missing = sorted(linear_layer_indices - plan_layers)
+ extra = sorted(plan_layers - linear_layer_indices)
+ if missing or extra:
+ raise ValueError(
+ "row plan layers must exactly match linear-attention layers; "
+ f"missing={missing}, extra={extra}"
+ )
+
+ total_groups = sum(heads * rows for heads, rows in shapes.values())
+ if plan.total_groups != total_groups:
+ raise ValueError(
+ "row plan total_groups is inconsistent with score_shapes: "
+ f"{plan.total_groups} != {total_groups}"
+ )
+ expected_mask_bytes = math.ceil(total_groups / 8)
+ if plan.mask_bytes != expected_mask_bytes:
+ raise ValueError(
+ "row plan mask_bytes is inconsistent with total_groups: "
+ f"{plan.mask_bytes} != {expected_mask_bytes}"
+ )
+
+ selected = set(plan.high_precision_rows)
+ if len(selected) != plan.promoted_group_count:
+ raise ValueError("row plan contains duplicate high-precision row locations")
+ for location in selected:
+ geometry = shapes.get(location.layer_index)
+ if geometry is None:
+ raise ValueError(f"row plan promotion references unknown layer {location.layer_index}")
+ head_count, row_count = geometry
+ if not (0 <= location.head_index < head_count):
+ raise ValueError(f"row plan promotion has out-of-range head index at {location}")
+ if not (0 <= location.row_index < row_count):
+ raise ValueError(f"row plan promotion has out-of-range row index at {location}")
+
+ low_payload_bytes = math.ceil(plan.low_bits * plan.group_size / 8)
+ high_payload_bytes = math.ceil(plan.high_bits * plan.group_size / 8)
+ promotion_increment = high_payload_bytes - low_payload_bytes
+ if plan.promotion_increment_bytes != promotion_increment:
+ raise ValueError(
+ "row plan promotion_increment_bytes is inconsistent with its bit widths and "
+ f"group size: {plan.promotion_increment_bytes} != {promotion_increment}"
+ )
+ minimum_bytes = total_groups * (low_payload_bytes + plan.scale_bits // 8) + (
+ expected_mask_bytes
+ )
+ expected_resident = minimum_bytes + plan.promoted_group_count * promotion_increment
+ if plan.resident_bytes != expected_resident or plan.target_resident_bytes != expected_resident:
+ raise ValueError(
+ "row plan resident-byte fields are inconsistent with its physical layout: "
+ f"expected {expected_resident}"
+ )
+
+ # Each layer owns a separately addressable mask tensor. When a layer is not
+ # byte-aligned, independently packing those masks would exceed the selector's
+ # globally packed mask model, so reject instead of silently changing the budget.
+ per_layer_mask_bytes = sum(math.ceil(heads * rows / 8) for heads, rows in shapes.values())
+ if per_layer_mask_bytes != expected_mask_bytes:
+ raise ValueError(
+ "row plan mask accounting is incompatible with separate per-layer masks; "
+ f"plan counts {expected_mask_bytes} bytes but layers require "
+ f"{per_layer_mask_bytes}"
+ )
+ return shapes
+
+
+class _MixedPackedStateView(MutableMapping[int, torch.Tensor | None]):
+ """Compatibility view that materializes one mixed packed state when read."""
+
+ def __init__(self, owner: MixedPackedLinearAttentionLayer) -> None:
+ self._owner = owner
+
+ def __getitem__(self, key: int) -> torch.Tensor | None:
+ packed = self._owner.packed_states[key]
+ return None if packed is None else packed.dequantize()
+
+ def __setitem__(self, key: int, value: torch.Tensor | None) -> None:
+ if value is None:
+ self._owner.packed_states[key] = None
+ self._owner.is_recurrent_states_initialized[key] = False
+ else:
+ self._owner._store(value, key)
+
+ def __delitem__(self, key: int) -> None:
+ self.__setitem__(key, None)
+
+ def __iter__(self) -> Iterator[int]:
+ return iter(self._owner.packed_states)
+
+ def __len__(self) -> int:
+ return len(self._owner.packed_states)
+
+
+@dataclass(frozen=True, slots=True)
+class MixedPackedCacheUpdateEvidence:
+ update_index: int
+ layer_index: int
+ state_index: int
+ low_bits: int
+ high_bits: int
+ group_size: int
+ scale_bits: int
+ rounding: str
+ source_dtype: str
+ shape: tuple[int, ...]
+ total_groups: int
+ high_precision_groups: int
+ selection_method: str
+ high_precision_mask_sha256: str
+ baseline_bytes: int
+ payload_bytes: int
+ scale_bytes: int
+ mask_bytes: int
+ resident_bytes: int
+ relative_l2_error: float
+ mean_squared_error: float
+ max_absolute_error: float
+
+ def evidence_dict(self) -> dict[str, object]:
+ return asdict(self)
+
+
+MixedUpdateCallback = Callable[
+ [int, int, torch.Tensor, PackedMixedQuantizedTensor, torch.Tensor],
+ None,
+]
+
+
+class MixedPackedLinearAttentionLayer(LinearAttentionLayer):
+ """Linear-attention cache layer with row-selected INT4/INT8 residency."""
+
+ is_compileable = False
+
+ def __init__(
+ self,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ layer_index: int,
+ expected_heads: int,
+ expected_rows: int,
+ high_precision_group_indices: tuple[int, ...],
+ number_of_states: int = 1,
+ on_update: MixedUpdateCallback | None = None,
+ ) -> None:
+ super().__init__(number_of_states=number_of_states)
+ if low_spec.bits != 4 or high_spec.bits != 8:
+ raise ValueError("mixed packed layers require low INT4 and high INT8 specs")
+ if any(
+ getattr(low_spec, field) != getattr(high_spec, field)
+ for field in (
+ "group_size",
+ "scale_bits",
+ "flatten_last_dims",
+ "rounding",
+ "seed",
+ "epsilon",
+ )
+ ):
+ raise ValueError("mixed packed layer specs must differ only in bits")
+ if low_spec.flatten_last_dims != 2:
+ raise ValueError("mixed row-plan cache requires flatten_last_dims=2")
+ expected_groups = expected_heads * expected_rows
+ if len(set(high_precision_group_indices)) != len(high_precision_group_indices):
+ raise ValueError("high-precision group indices must be unique")
+ if any(index < 0 or index >= expected_groups for index in high_precision_group_indices):
+ raise ValueError("high-precision group index is outside the layer geometry")
+
+ self.low_spec = low_spec
+ self.high_spec = high_spec
+ self.layer_index = layer_index
+ self.expected_heads = expected_heads
+ self.expected_rows = expected_rows
+ self.high_precision_group_indices = tuple(sorted(high_precision_group_indices))
+ self.on_update = on_update
+ self.packed_states: dict[int, PackedMixedQuantizedTensor | None] = dict.fromkeys(
+ range(number_of_states)
+ )
+ self.recurrent_states = _MixedPackedStateView(self)
+ self._update_count = 0
+
+ def _selected_specs(self) -> tuple[QuantizationSpec, QuantizationSpec]:
+ return (
+ scheduled_quantization_spec(
+ self.low_spec,
+ layer_index=self.layer_index,
+ layer_update_index=self._update_count,
+ ),
+ scheduled_quantization_spec(
+ self.high_spec,
+ layer_index=self.layer_index,
+ layer_update_index=self._update_count,
+ ),
+ )
+
+ def _precision_mask(
+ self,
+ recurrent_states: torch.Tensor,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ ) -> torch.Tensor:
+ del low_spec, high_spec
+ if recurrent_states.ndim != 4:
+ raise ValueError(
+ f"layer {self.layer_index} recurrent state must have rank 4; "
+ f"got shape {tuple(recurrent_states.shape)}"
+ )
+ expected_shape = (
+ recurrent_states.shape[0],
+ self.expected_heads,
+ self.expected_rows,
+ self.low_spec.group_size,
+ )
+ if tuple(recurrent_states.shape) != expected_shape:
+ rendered = (
+ f"[batch, {self.expected_heads}, {self.expected_rows}, {self.low_spec.group_size}]"
+ )
+ raise ValueError(
+ f"layer {self.layer_index} recurrent state must have shape {rendered}; "
+ f"got {tuple(recurrent_states.shape)}"
+ )
+ base = torch.zeros(
+ self.expected_heads * self.expected_rows,
+ dtype=torch.bool,
+ device=recurrent_states.device,
+ )
+ if self.high_precision_group_indices:
+ selected = torch.tensor(
+ self.high_precision_group_indices,
+ dtype=torch.long,
+ device=recurrent_states.device,
+ )
+ base[selected] = True
+ return base.repeat(recurrent_states.shape[0]).reshape(
+ recurrent_states.shape[0] * self.expected_heads,
+ self.expected_rows,
+ )
+
+ def _store(self, recurrent_states: torch.Tensor, state_idx: int) -> torch.Tensor:
+ if torch.is_grad_enabled() and recurrent_states.requires_grad:
+ raise RuntimeError(
+ "Mixed packed recurrent states are inference-only and cannot accept an "
+ "autograd-tracked tensor. Wrap every prefill and decode forward in "
+ "torch.inference_mode() or torch.no_grad(); model.eval() alone does "
+ "not disable autograd."
+ )
+ low_spec, high_spec = self._selected_specs()
+ mask = self._precision_mask(
+ recurrent_states,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ packed = quantize_pack_mixed(
+ recurrent_states,
+ mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ self.packed_states[state_idx] = packed
+ self.is_recurrent_states_initialized[state_idx] = True
+ if self.device is None:
+ self.dtype = recurrent_states.dtype
+ self.device = recurrent_states.device
+ materialized = packed.dequantize()
+ if self.on_update is not None:
+ self.on_update(
+ self.layer_index,
+ state_idx,
+ recurrent_states,
+ packed,
+ materialized,
+ )
+ self._update_count += 1
+ return materialized
+
+ def update_recurrent_state(
+ self,
+ recurrent_states: torch.Tensor,
+ state_idx: int = 0,
+ **kwargs: object,
+ ) -> torch.Tensor:
+ del kwargs
+ return self._store(recurrent_states, state_idx)
+
+ def resident_payload_bytes(self) -> int:
+ return sum(
+ packed.payload_bytes for packed in self.packed_states.values() if packed is not None
+ )
+
+ def resident_scale_bytes(self) -> int:
+ return sum(
+ packed.scale_bytes for packed in self.packed_states.values() if packed is not None
+ )
+
+ def resident_mask_bytes(self) -> int:
+ return sum(
+ packed.mask_bytes for packed in self.packed_states.values() if packed is not None
+ )
+
+ def resident_recurrent_state_bytes(self) -> int:
+ return (
+ self.resident_payload_bytes()
+ + self.resident_scale_bytes()
+ + self.resident_mask_bytes()
+ )
+
+ def high_precision_group_count(self) -> int:
+ return sum(
+ packed.high_precision_groups
+ for packed in self.packed_states.values()
+ if packed is not None
+ )
+
+ def full_precision_equivalent_recurrent_state_bytes(self) -> int:
+ return sum(
+ packed.elements * torch.empty((), dtype=packed.original_dtype).element_size()
+ for packed in self.packed_states.values()
+ if packed is not None
+ )
+
+ def largest_materialized_recurrent_state_bytes(self) -> int:
+ return max(
+ (
+ packed.elements * torch.empty((), dtype=packed.original_dtype).element_size()
+ for packed in self.packed_states.values()
+ if packed is not None
+ ),
+ default=0,
+ )
+
+ def reset(self) -> None:
+ for state_idx in range(self.number_of_states):
+ if self.is_conv_states_initialized[state_idx]:
+ self.conv_states[state_idx].zero_()
+ packed = self.packed_states[state_idx]
+ if packed is not None:
+ packed.low_payload.zero_()
+ packed.high_payload.zero_()
+ packed.scales.zero_()
+ self.has_previous_state[state_idx] = False
+
+ def reorder_cache(self, beam_idx: torch.LongTensor) -> None:
+ for state_idx in range(self.number_of_states):
+ if self.is_conv_states_initialized[state_idx]:
+ self.conv_states[state_idx] = self.conv_states[state_idx].index_select(
+ 0, beam_idx.to(self.device)
+ )
+ packed = self.packed_states[state_idx]
+ if packed is not None:
+ self.packed_states[state_idx] = packed.reorder_batch(beam_idx)
+
+ def offload(self) -> None:
+ for state_idx in range(self.number_of_states):
+ if self.is_conv_states_initialized[state_idx]:
+ self.conv_states[state_idx] = self.conv_states[state_idx].to(
+ "cpu", non_blocking=True
+ )
+ packed = self.packed_states[state_idx]
+ if packed is not None:
+ self.packed_states[state_idx] = packed.to("cpu")
+
+ def prefetch(self) -> None:
+ for state_idx in range(self.number_of_states):
+ if (
+ self.is_conv_states_initialized[state_idx]
+ and self.conv_states[state_idx].device != self.device
+ ):
+ self.conv_states[state_idx] = self.conv_states[state_idx].to(
+ self.device, non_blocking=True
+ )
+ packed = self.packed_states[state_idx]
+ if packed is not None and packed.low_payload.device != self.device:
+ self.packed_states[state_idx] = packed.to(self.device)
+
+
+class AdaptiveMixedPackedLinearAttentionLayer(MixedPackedLinearAttentionLayer):
+ """Batch-one prototype selecting the fixed INT8 quota on each state update.
+
+ The plan determines only this layer's promotion count. The promoted rows are
+ recomputed from the incoming state using the per-row reduction in aligned
+ quantize-dequantize MSE from INT4 to INT8. Equal scores keep flattened row
+ order, making ties deterministic without changing the byte budget.
+ """
+
+ def _precision_mask(
+ self,
+ recurrent_states: torch.Tensor,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ ) -> torch.Tensor:
+ # Reuse the static path's complete rank/geometry validation before
+ # applying the prototype's deliberately narrow batch-one contract.
+ super()._precision_mask(
+ recurrent_states,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ if recurrent_states.shape[0] != 1:
+ raise ValueError(
+ "adaptive mixed cache selection currently requires batch size 1; "
+ f"got {recurrent_states.shape[0]}"
+ )
+
+ total_groups = self.expected_heads * self.expected_rows
+ quota = len(self.high_precision_group_indices)
+ mask = torch.zeros(
+ total_groups,
+ dtype=torch.bool,
+ device=recurrent_states.device,
+ )
+ if quota == 0:
+ return mask.reshape(self.expected_heads, self.expected_rows)
+ if quota == total_groups:
+ return torch.ones_like(mask).reshape(self.expected_heads, self.expected_rows)
+
+ # quantize_dequantize detaches its input. Keep the scope explicit so this
+ # selector cannot retain an autograd graph if it is called independently.
+ with torch.no_grad():
+ source = recurrent_states.detach().to(torch.float32)
+ low = quantize_dequantize(recurrent_states, low_spec).tensor.to(torch.float32)
+ high = quantize_dequantize(recurrent_states, high_spec).tensor.to(torch.float32)
+ low_mse = (low - source).square().mean(dim=-1).reshape(-1)
+ high_mse = (high - source).square().mean(dim=-1).reshape(-1)
+ benefit = low_mse - high_mse
+
+ # Stable descending sort resolves exact ties by the pre-existing
+ # flattened [head, row] order (lower index first).
+ ranked = torch.argsort(benefit, descending=True, stable=True)
+ mask[ranked[:quota]] = True
+ return mask.reshape(self.expected_heads, self.expected_rows)
+
+
+class MixedPackedRecurrentStateCache(DynamicCache):
+ """Drop-in cache driven by an exact-byte row-level INT4/INT8 plan."""
+
+ _mixed_layer_class = MixedPackedLinearAttentionLayer
+ selection_method = "static_plan"
+
+ def __init__(
+ self,
+ config: object,
+ *,
+ plan: ExactBudgetRowPlan,
+ rounding: RoundingMode = "nearest",
+ seed: int = 2339,
+ record_evidence: bool = False,
+ ) -> None:
+ super().__init__(config=config)
+ self.plan = plan
+ self.record_evidence = record_evidence
+ self.update_evidence: list[MixedPackedCacheUpdateEvidence] = []
+ self._update_index = 0
+
+ linear_layer_indices = {
+ layer_index
+ for layer_index, layer in enumerate(self.layers)
+ if isinstance(layer, LinearAttentionLayer)
+ }
+ shapes = _validate_exact_budget_plan(plan, linear_layer_indices)
+ low_spec = QuantizationSpec(
+ bits=plan.low_bits,
+ group_size=plan.group_size,
+ scale_bits=plan.scale_bits,
+ rounding=rounding,
+ seed=seed,
+ )
+ high_spec = QuantizationSpec(
+ bits=plan.high_bits,
+ group_size=plan.group_size,
+ scale_bits=plan.scale_bits,
+ rounding=rounding,
+ seed=seed,
+ )
+
+ replaced = 0
+ for layer_index, layer in enumerate(self.layers):
+ if isinstance(layer, LinearAttentionLayer):
+ expected_heads, expected_rows = shapes[layer_index]
+ self.layers[layer_index] = self._mixed_layer_class(
+ low_spec=low_spec,
+ high_spec=high_spec,
+ layer_index=layer_index,
+ expected_heads=expected_heads,
+ expected_rows=expected_rows,
+ high_precision_group_indices=plan.groups_for_layer(layer_index),
+ number_of_states=layer.number_of_states,
+ on_update=self._record_update if record_evidence else None,
+ )
+ replaced += 1
+ if replaced == 0:
+ raise TypeError("config did not create any Transformers linear-attention layers")
+
+ def _record_update(
+ self,
+ layer_index: int,
+ state_index: int,
+ source: torch.Tensor,
+ packed: PackedMixedQuantizedTensor,
+ materialized: torch.Tensor,
+ ) -> None:
+ error = materialized.to(torch.float32) - source.detach().to(torch.float32)
+ source_norm = torch.linalg.vector_norm(source.detach().to(torch.float32))
+ relative_l2 = torch.linalg.vector_norm(error) / source_norm.clamp_min(1e-12)
+ self.update_evidence.append(
+ MixedPackedCacheUpdateEvidence(
+ update_index=self._update_index,
+ layer_index=layer_index,
+ state_index=state_index,
+ low_bits=packed.low_spec.bits,
+ high_bits=packed.high_spec.bits,
+ group_size=packed.low_spec.group_size,
+ scale_bits=packed.low_spec.scale_bits,
+ rounding=packed.low_spec.rounding,
+ source_dtype=str(source.dtype),
+ shape=tuple(source.shape),
+ total_groups=packed.total_groups,
+ high_precision_groups=packed.high_precision_groups,
+ selection_method=self.selection_method,
+ high_precision_mask_sha256=hashlib.sha256(
+ bytes(packed.precision_mask.detach().cpu().contiguous().tolist())
+ ).hexdigest(),
+ baseline_bytes=source.numel() * source.element_size(),
+ payload_bytes=packed.payload_bytes,
+ scale_bytes=packed.scale_bytes,
+ mask_bytes=packed.mask_bytes,
+ resident_bytes=packed.storage_bytes,
+ relative_l2_error=float(relative_l2.item()),
+ mean_squared_error=float(error.square().mean().item()),
+ max_absolute_error=float(error.abs().max().item()),
+ )
+ )
+ self._update_index += 1
+
+ def mixed_packed_layers(self) -> Iterator[tuple[int, MixedPackedLinearAttentionLayer]]:
+ for layer_index, layer in enumerate(self.layers):
+ if isinstance(layer, MixedPackedLinearAttentionLayer):
+ yield layer_index, layer
+
+ def resident_payload_bytes(self) -> int:
+ return sum(layer.resident_payload_bytes() for _, layer in self.mixed_packed_layers())
+
+ def resident_scale_bytes(self) -> int:
+ return sum(layer.resident_scale_bytes() for _, layer in self.mixed_packed_layers())
+
+ def resident_mask_bytes(self) -> int:
+ return sum(layer.resident_mask_bytes() for _, layer in self.mixed_packed_layers())
+
+ def resident_recurrent_state_bytes(self) -> int:
+ return (
+ self.resident_payload_bytes()
+ + self.resident_scale_bytes()
+ + self.resident_mask_bytes()
+ )
+
+ def full_precision_equivalent_recurrent_state_bytes(self) -> int:
+ return sum(
+ layer.full_precision_equivalent_recurrent_state_bytes()
+ for _, layer in self.mixed_packed_layers()
+ )
+
+ def largest_materialized_recurrent_state_bytes(self) -> int:
+ return max(
+ (
+ layer.largest_materialized_recurrent_state_bytes()
+ for _, layer in self.mixed_packed_layers()
+ ),
+ default=0,
+ )
+
+ def high_precision_group_count(self) -> int:
+ return sum(layer.high_precision_group_count() for _, layer in self.mixed_packed_layers())
+
+ def storage_summary(self) -> dict[str, int | float | bool]:
+ payload = self.resident_payload_bytes()
+ scales = self.resident_scale_bytes()
+ mask = self.resident_mask_bytes()
+ resident = payload + scales + mask
+ full_precision_equivalent = self.full_precision_equivalent_recurrent_state_bytes()
+ return {
+ "payload_bytes": payload,
+ "scale_bytes": scales,
+ "mask_bytes": mask,
+ "resident_bytes": resident,
+ "high_precision_groups": self.high_precision_group_count(),
+ "full_precision_equivalent_bytes": full_precision_equivalent,
+ "largest_materialized_state_bytes": (
+ self.largest_materialized_recurrent_state_bytes()
+ ),
+ "resident_compression_ratio": (
+ full_precision_equivalent / resident if resident else 0.0
+ ),
+ "physical_reduction_realized": (
+ resident > 0 and resident < full_precision_equivalent
+ ),
+ }
+
+
+class AdaptiveMixedPackedRecurrentStateCache(MixedPackedRecurrentStateCache):
+ """Exact-byte adaptive-row prototype for batch-one inference diagnostics.
+
+ Per-layer promotion quotas come from the supplied exact-budget plan, so the
+ resident representation has the same payload, scale, and mask byte counts as
+ its static counterpart. Row identities may change at every storage update.
+ This class makes no quality, speed, or novelty claim.
+ """
+
+ _mixed_layer_class = AdaptiveMixedPackedLinearAttentionLayer
+ selection_method = "instantaneous_aligned_mse_reduction"
diff --git a/src/recurquant/qwen35.py b/src/recurquant/qwen35.py
index 3ae56b9..4a4e086 100644
--- a/src/recurquant/qwen35.py
+++ b/src/recurquant/qwen35.py
@@ -10,8 +10,13 @@
from packaging.specifiers import SpecifierSet
from packaging.version import InvalidVersion, Version
-from .packed_cache import PackedRecurrentStateCache
+from .packed_cache import (
+ AdaptiveMixedPackedRecurrentStateCache,
+ MixedPackedRecurrentStateCache,
+ PackedRecurrentStateCache,
+)
from .quantization import QuantizationSpec, RoundingMode
+from .row_policy import ExactBudgetRowPlan
if TYPE_CHECKING:
from transformers import Qwen3_5ForCausalLM, Qwen3_5TextConfig
@@ -215,6 +220,101 @@ def create_qwen35_packed_cache(
)
+def _validated_exact_budget_config(
+ model_or_config: Qwen35Source,
+ *,
+ plan: ExactBudgetRowPlan,
+) -> object:
+ _validate_transformers_compatibility()
+ config = _validated_text_config(model_or_config)
+ geometry_fields = {
+ "linear_num_value_heads": getattr(config, "linear_num_value_heads", None),
+ "linear_key_head_dim": getattr(config, "linear_key_head_dim", None),
+ "linear_value_head_dim": getattr(config, "linear_value_head_dim", None),
+ }
+ invalid_geometry = {
+ name: value
+ for name, value in geometry_fields.items()
+ if isinstance(value, bool) or not isinstance(value, int) or value <= 0
+ }
+ if invalid_geometry:
+ raise ValueError(
+ f"The Qwen3.5 config has invalid recurrent-state geometry: {invalid_geometry}"
+ )
+
+ expected_heads = geometry_fields["linear_num_value_heads"]
+ expected_rows = geometry_fields["linear_key_head_dim"]
+ expected_group_size = geometry_fields["linear_value_head_dim"]
+ if plan.group_size != expected_group_size:
+ raise ValueError(
+ "row plan group_size must equal Qwen3.5 linear_value_head_dim: "
+ f"{plan.group_size} != {expected_group_size}"
+ )
+ incompatible_shapes = [
+ (layer_index, head_count, row_count)
+ for layer_index, head_count, row_count in plan.score_shapes
+ if head_count != expected_heads or row_count != expected_rows
+ ]
+ if incompatible_shapes:
+ raise ValueError(
+ "row plan score geometry must match Qwen3.5 recurrent states "
+ f"[heads={expected_heads}, rows={expected_rows}]; incompatible entries: "
+ f"{incompatible_shapes}"
+ )
+ return config
+
+
+def create_qwen35_exact_budget_cache(
+ model_or_config: Qwen35Source,
+ *,
+ plan: ExactBudgetRowPlan,
+ rounding: RoundingMode = "nearest",
+ seed: int = 2339,
+ record_evidence: bool = False,
+) -> MixedPackedRecurrentStateCache:
+ """Create a validated row-level mixed INT4/INT8 Qwen3.5 cache.
+
+ The plan must cover every linear-attention model-layer index exactly. Its
+ ``[heads, rows]`` score geometry must equal Qwen3.5's recurrent state geometry,
+ and its group size must equal ``linear_value_head_dim`` so every state row owns
+ one independently packed group. No layer, geometry, or byte-budget adaptation
+ is performed implicitly.
+ """
+
+ return MixedPackedRecurrentStateCache(
+ _validated_exact_budget_config(model_or_config, plan=plan),
+ plan=plan,
+ rounding=rounding,
+ seed=seed,
+ record_evidence=record_evidence,
+ )
+
+
+def create_qwen35_adaptive_exact_budget_cache(
+ model_or_config: Qwen35Source,
+ *,
+ plan: ExactBudgetRowPlan,
+ rounding: RoundingMode = "nearest",
+ seed: int = 2339,
+ record_evidence: bool = False,
+) -> AdaptiveMixedPackedRecurrentStateCache:
+ """Create the batch-one adaptive-row mixed-cache prototype for Qwen3.5.
+
+ The exact plan still fixes each layer's INT8 promotion count and resident
+ byte count. On every state write, row identities are selected by instantaneous
+ aligned INT4-versus-INT8 quantization-error reduction. This experimental
+ factory does not establish a quality, latency, or novelty result.
+ """
+
+ return AdaptiveMixedPackedRecurrentStateCache(
+ _validated_exact_budget_config(model_or_config, plan=plan),
+ plan=plan,
+ rounding=rounding,
+ seed=seed,
+ record_evidence=record_evidence,
+ )
+
+
def create_qwen35_v02_mixed_cache(
model_or_config: Qwen35Source,
*,
diff --git a/src/recurquant/row_policy.py b/src/recurquant/row_policy.py
new file mode 100644
index 0000000..c140a4a
--- /dev/null
+++ b/src/recurquant/row_policy.py
@@ -0,0 +1,161 @@
+"""Exact-byte row-level INT4/INT8 policy selection."""
+
+from __future__ import annotations
+
+import math
+from collections.abc import Mapping
+from dataclasses import asdict, dataclass
+
+import torch
+
+
+@dataclass(frozen=True, order=True, slots=True)
+class RowLocation:
+ layer_index: int
+ head_index: int
+ row_index: int
+
+
+@dataclass(frozen=True, slots=True)
+class ExactBudgetRowPlan:
+ """A deterministic row promotion plan with complete storage accounting."""
+
+ low_bits: int
+ high_bits: int
+ group_size: int
+ scale_bits: int
+ total_groups: int
+ mask_bytes: int
+ promotion_increment_bytes: int
+ target_resident_bytes: int
+ resident_bytes: int
+ high_precision_rows: tuple[RowLocation, ...]
+ score_shapes: tuple[tuple[int, int, int], ...]
+
+ @property
+ def promoted_group_count(self) -> int:
+ return len(self.high_precision_rows)
+
+ def groups_for_layer(self, layer_index: int) -> tuple[int, ...]:
+ """Return batch-independent flat ``head * rows + row`` group indices."""
+
+ matching_shapes = [shape for shape in self.score_shapes if shape[0] == layer_index]
+ if not matching_shapes:
+ raise KeyError(f"layer {layer_index} is absent from this row plan")
+ _, _, row_count = matching_shapes[0]
+ return tuple(
+ location.head_index * row_count + location.row_index
+ for location in self.high_precision_rows
+ if location.layer_index == layer_index
+ )
+
+ def evidence_dict(self) -> dict[str, object]:
+ evidence = asdict(self)
+ evidence["promoted_group_count"] = self.promoted_group_count
+ return evidence
+
+
+def _payload_bytes(*, bits: int, group_size: int) -> int:
+ return math.ceil(bits * group_size / 8)
+
+
+def select_rows_exact_budget(
+ scores_by_layer: Mapping[int, torch.Tensor],
+ *,
+ target_resident_bytes: int,
+ low_bits: int = 4,
+ high_bits: int = 8,
+ group_size: int = 128,
+ scale_bits: int = 16,
+) -> ExactBudgetRowPlan:
+ """Promote the highest-scoring rows under an exact physical-byte budget.
+
+ Every score tensor must have shape ``[heads, rows]``. The storage model uses
+ one group per row, one FP scale per group, and one packed precision-mask bit
+ per group. A target that cannot be represented exactly is rejected rather
+ than silently rounded down.
+ """
+
+ if not scores_by_layer:
+ raise ValueError("scores_by_layer must not be empty")
+ if any(
+ isinstance(index, bool) or not isinstance(index, int) or index < 0
+ for index in scores_by_layer
+ ):
+ raise ValueError("layer indices must be nonnegative integers")
+ if low_bits < 2 or high_bits <= low_bits:
+ raise ValueError("high_bits must exceed low_bits, and low_bits must be at least 2")
+ if group_size <= 0:
+ raise ValueError("group_size must be positive")
+ if scale_bits not in (16, 32):
+ raise ValueError("scale_bits must be 16 or 32")
+ if target_resident_bytes <= 0:
+ raise ValueError("target_resident_bytes must be positive")
+
+ candidates: list[tuple[float, RowLocation]] = []
+ score_shapes: list[tuple[int, int, int]] = []
+ for layer_index in sorted(scores_by_layer):
+ scores = scores_by_layer[layer_index]
+ if scores.ndim != 2 or scores.numel() == 0:
+ raise ValueError(f"layer {layer_index} scores must have shape [heads, rows]")
+ if not scores.is_floating_point():
+ raise TypeError(f"layer {layer_index} scores must use a floating-point dtype")
+ if not torch.isfinite(scores).all().item():
+ raise ValueError(f"layer {layer_index} scores must be finite")
+ head_count, row_count = scores.shape
+ score_shapes.append((layer_index, head_count, row_count))
+ values = scores.detach().to(device="cpu", dtype=torch.float64)
+ for head_index in range(head_count):
+ for row_index in range(row_count):
+ candidates.append(
+ (
+ float(values[head_index, row_index].item()),
+ RowLocation(layer_index, head_index, row_index),
+ )
+ )
+
+ total_groups = len(candidates)
+ scale_bytes = scale_bits // 8
+ low_group_bytes = _payload_bytes(bits=low_bits, group_size=group_size) + scale_bytes
+ promotion_increment = _payload_bytes(bits=high_bits, group_size=group_size) - (
+ _payload_bytes(bits=low_bits, group_size=group_size)
+ )
+ if promotion_increment <= 0:
+ raise ValueError(
+ "packed low_bits and high_bits must have a positive promotion byte increment; "
+ "increase group_size or choose bit widths with distinct payload sizes"
+ )
+ mask_bytes = math.ceil(total_groups / 8)
+ minimum_bytes = total_groups * low_group_bytes + mask_bytes
+ maximum_bytes = minimum_bytes + total_groups * promotion_increment
+ if not minimum_bytes <= target_resident_bytes <= maximum_bytes:
+ raise ValueError(
+ "target_resident_bytes is outside the representable range "
+ f"[{minimum_bytes}, {maximum_bytes}]"
+ )
+ extra_bytes = target_resident_bytes - minimum_bytes
+ if extra_bytes % promotion_increment:
+ lower = minimum_bytes + (extra_bytes // promotion_increment) * promotion_increment
+ upper = lower + promotion_increment
+ raise ValueError(
+ "target_resident_bytes is not exactly representable; nearest valid targets are "
+ f"{lower} and {upper}"
+ )
+ promotion_count = extra_bytes // promotion_increment
+
+ ordered = sorted(candidates, key=lambda item: (-item[0], item[1]))
+ selected = tuple(sorted(location for _, location in ordered[:promotion_count]))
+ resident_bytes = minimum_bytes + len(selected) * promotion_increment
+ return ExactBudgetRowPlan(
+ low_bits=low_bits,
+ high_bits=high_bits,
+ group_size=group_size,
+ scale_bits=scale_bits,
+ total_groups=total_groups,
+ mask_bytes=mask_bytes,
+ promotion_increment_bytes=promotion_increment,
+ target_resident_bytes=target_resident_bytes,
+ resident_bytes=resident_bytes,
+ high_precision_rows=selected,
+ score_shapes=tuple(score_shapes),
+ )
diff --git a/src/recurquant/storage_boundary_validation.py b/src/recurquant/storage_boundary_validation.py
new file mode 100644
index 0000000..a137f37
--- /dev/null
+++ b/src/recurquant/storage_boundary_validation.py
@@ -0,0 +1,576 @@
+"""Independent one-row validation at a recurrent-state storage boundary.
+
+This module checks one local claim made by the loss-sensitivity selector: for a
+single recurrent-state row, ``-g dot (Q8 - Q4)`` should approximate the target
+token NLL reduction obtained by replacing that stored row's physical INT4
+endpoint with its physical INT8 endpoint. It deliberately does not select a
+policy or measure model quality.
+
+The validation starts from a raw, warm ``transformers.DynamicCache``. Every
+initialized recurrent state is physically packed and dequantized as INT4. The
+selected row then follows the controlled path
+
+``Q4(raw) + alpha * (Q8(raw) - Q4(raw))``.
+
+Only ``alpha=0`` and ``alpha=1`` are deployable quantized endpoints. Interior
+and negative values exist solely to make an independent central-difference
+check possible at the exact state consumed by the next model token.
+"""
+
+from __future__ import annotations
+
+import copy
+import math
+from collections.abc import Mapping
+from dataclasses import dataclass, field
+from types import MethodType
+from typing import Any
+
+import torch
+import torch.nn.functional as F
+from transformers import DynamicCache
+
+from .quantization import QuantizationSpec, quantize_pack
+
+
+@dataclass(frozen=True, order=True, slots=True)
+class StorageRowLocation:
+ """One batch-one Qwen3.5 recurrent-state row."""
+
+ layer_index: int
+ head_index: int
+ row_index: int
+
+ def __post_init__(self) -> None:
+ values = (self.layer_index, self.head_index, self.row_index)
+ if any(
+ isinstance(value, bool) or not isinstance(value, int) or value < 0
+ for value in values
+ ):
+ raise ValueError("storage-row indices must be non-negative integers")
+
+
+@dataclass(frozen=True, slots=True)
+class DirectionalBenefitComparison:
+ """Scalar derivative and endpoint comparison along one row direction."""
+
+ epsilon: float
+ loss_at_zero: float
+ repeated_loss_at_zero: float
+ loss_at_minus_epsilon: float
+ loss_at_plus_epsilon: float
+ loss_at_int8_endpoint: float
+ autograd_directional_derivative: float
+ central_directional_derivative: float
+ predicted_benefit_autograd: float
+ predicted_benefit_central: float
+ measured_endpoint_benefit: float
+ derivative_absolute_error: float
+ endpoint_taylor_residual: float
+ baseline_repeat_absolute_error: float
+ derivative_sign_agreement: bool | None
+ endpoint_sign_agreement: bool | None
+
+
+@dataclass(frozen=True, slots=True)
+class StorageBoundaryRowValidation:
+ """Detached result of one real-model storage-boundary validation."""
+
+ location: StorageRowLocation
+ comparison: DirectionalBenefitComparison
+ recurrent_layer_indices: tuple[int, ...]
+ raw_row: torch.Tensor = field(repr=False)
+ int4_row: torch.Tensor = field(repr=False)
+ int8_row: torch.Tensor = field(repr=False)
+ direction: torch.Tensor = field(repr=False)
+ gradient_row: torch.Tensor = field(repr=False)
+
+
+def _finite_scalar(name: str, value: float) -> float:
+ converted = float(value)
+ if not math.isfinite(converted):
+ raise ValueError(f"{name} must be finite")
+ return converted
+
+
+def _sign_agreement(left: float, right: float, *, floor: float) -> bool | None:
+ if abs(left) <= floor and abs(right) <= floor:
+ return None
+ if abs(left) <= floor or abs(right) <= floor:
+ return False
+ return (left > 0) == (right > 0)
+
+
+def compare_directional_benefits(
+ *,
+ epsilon: float,
+ loss_at_zero: float,
+ repeated_loss_at_zero: float,
+ loss_at_minus_epsilon: float,
+ loss_at_plus_epsilon: float,
+ loss_at_int8_endpoint: float,
+ autograd_directional_derivative: float,
+ sign_floor: float = 1e-12,
+) -> DirectionalBenefitComparison:
+ """Compare autograd, central difference, and the exact INT8 endpoint.
+
+ Derivatives have the sign of increasing NLL. Benefits use the selector's
+ opposite sign: positive means that moving toward the INT8 row lowers NLL.
+ A sign comparison is ``None`` only when both quantities are numerically
+ indistinguishable from zero under ``sign_floor``.
+ """
+
+ epsilon_value = _finite_scalar("epsilon", epsilon)
+ floor_value = _finite_scalar("sign_floor", sign_floor)
+ if epsilon_value <= 0 or epsilon_value > 1:
+ raise ValueError("epsilon must be in (0, 1]")
+ if floor_value < 0:
+ raise ValueError("sign_floor must be non-negative")
+
+ zero = _finite_scalar("loss_at_zero", loss_at_zero)
+ repeated_zero = _finite_scalar("repeated_loss_at_zero", repeated_loss_at_zero)
+ minus = _finite_scalar("loss_at_minus_epsilon", loss_at_minus_epsilon)
+ plus = _finite_scalar("loss_at_plus_epsilon", loss_at_plus_epsilon)
+ endpoint = _finite_scalar("loss_at_int8_endpoint", loss_at_int8_endpoint)
+ autograd = _finite_scalar(
+ "autograd_directional_derivative", autograd_directional_derivative
+ )
+ central = (plus - minus) / (2.0 * epsilon_value)
+ predicted_autograd = -autograd
+ predicted_central = -central
+ measured_endpoint = zero - endpoint
+
+ return DirectionalBenefitComparison(
+ epsilon=epsilon_value,
+ loss_at_zero=zero,
+ repeated_loss_at_zero=repeated_zero,
+ loss_at_minus_epsilon=minus,
+ loss_at_plus_epsilon=plus,
+ loss_at_int8_endpoint=endpoint,
+ autograd_directional_derivative=autograd,
+ central_directional_derivative=central,
+ predicted_benefit_autograd=predicted_autograd,
+ predicted_benefit_central=predicted_central,
+ measured_endpoint_benefit=measured_endpoint,
+ derivative_absolute_error=abs(autograd - central),
+ endpoint_taylor_residual=measured_endpoint - predicted_autograd,
+ baseline_repeat_absolute_error=abs(zero - repeated_zero),
+ derivative_sign_agreement=_sign_agreement(
+ autograd,
+ central,
+ floor=floor_value,
+ ),
+ endpoint_sign_agreement=_sign_agreement(
+ predicted_autograd,
+ measured_endpoint,
+ floor=floor_value,
+ ),
+ )
+
+
+def interpolate_storage_row(
+ int4_state: torch.Tensor,
+ direction: torch.Tensor,
+ *,
+ location: StorageRowLocation,
+ alpha: float,
+) -> torch.Tensor:
+ """Return a detached state with exactly one row moved along ``direction``."""
+
+ alpha_value = _finite_scalar("alpha", alpha)
+ if int4_state.ndim != 4 or int4_state.shape[0] != 1:
+ raise ValueError("int4_state must have shape [1, heads, rows, value_dim]")
+ if not int4_state.is_floating_point() or int4_state.device.type == "meta":
+ raise TypeError("int4_state must be a materialized floating-point tensor")
+ if direction.shape != int4_state.shape[-1:]:
+ raise ValueError("direction must have shape [value_dim]")
+ if direction.dtype != int4_state.dtype or direction.device != int4_state.device:
+ raise ValueError("direction must match int4_state dtype and device")
+ if location.head_index >= int4_state.shape[1]:
+ raise ValueError("head_index is outside the recurrent-state geometry")
+ if location.row_index >= int4_state.shape[2]:
+ raise ValueError("row_index is outside the recurrent-state geometry")
+ if not torch.isfinite(int4_state).all().item() or not torch.isfinite(direction).all().item():
+ raise ValueError("int4_state and direction must contain only finite values")
+
+ moved = int4_state.detach().clone()
+ moved[0, location.head_index, location.row_index] = (
+ moved[0, location.head_index, location.row_index] + alpha_value * direction
+ )
+ return moved
+
+
+def _validate_quantization_specs(
+ int4_spec: QuantizationSpec,
+ int8_spec: QuantizationSpec,
+) -> None:
+ if int4_spec.bits != 4 or int8_spec.bits != 8:
+ raise ValueError("storage-boundary validation requires INT4 and INT8 specs")
+ matched = ("group_size", "scale_bits", "flatten_last_dims", "rounding", "seed", "epsilon")
+ mismatched = [name for name in matched if getattr(int4_spec, name) != getattr(int8_spec, name)]
+ if mismatched:
+ raise ValueError(f"INT4 and INT8 specs may differ only in bits: {mismatched}")
+ if int4_spec.flatten_last_dims != 1:
+ raise ValueError("flatten_last_dims must be 1 so each state row owns its quantizer group")
+ if int4_spec.rounding != "nearest":
+ raise ValueError("the deterministic validation path currently requires nearest rounding")
+
+
+def _recurrent_state(cache: DynamicCache, layer_index: int) -> torch.Tensor:
+ if layer_index >= len(cache.layers):
+ raise ValueError(f"cache has no layer {layer_index}")
+ layer = cache.layers[layer_index]
+ states = getattr(layer, "recurrent_states", None)
+ initialized = getattr(layer, "is_recurrent_states_initialized", None)
+ previous = getattr(layer, "has_previous_state", None)
+ if not isinstance(states, dict) or not isinstance(initialized, dict):
+ raise ValueError(f"cache layer {layer_index} is not a recurrent-state layer")
+ if not initialized.get(0, False) or not isinstance(states.get(0), torch.Tensor):
+ raise ValueError(f"cache layer {layer_index} has no initialized recurrent state")
+ if not isinstance(previous, dict) or not previous.get(0, False):
+ raise ValueError(f"cache layer {layer_index} has no previous recurrent state")
+ state = states[0]
+ if state.dtype != torch.float32:
+ raise TypeError(f"cache layer {layer_index} recurrent state must use float32")
+ if state.ndim != 4 or state.shape[0] != 1:
+ raise ValueError(
+ f"cache layer {layer_index} recurrent state must have batch-one rank-4 geometry"
+ )
+ if not torch.isfinite(state).all().item():
+ raise ValueError(f"cache layer {layer_index} recurrent state is non-finite")
+ return state
+
+
+def recurrent_layer_indices(cache: DynamicCache) -> tuple[int, ...]:
+ """Return initialized recurrent-state layers from a warm DynamicCache."""
+
+ if not isinstance(cache, DynamicCache):
+ raise TypeError("cache must be a transformers.DynamicCache")
+ if getattr(cache, "offloading", False):
+ raise ValueError("offloaded DynamicCache validation is not supported")
+ indices: list[int] = []
+ for layer_index, layer in enumerate(cache.layers):
+ states = getattr(layer, "recurrent_states", None)
+ initialized = getattr(layer, "is_recurrent_states_initialized", None)
+ if isinstance(states, dict) and isinstance(initialized, dict) and initialized.get(0, False):
+ _recurrent_state(cache, layer_index)
+ indices.append(layer_index)
+ if not indices:
+ raise ValueError("cache has no initialized recurrent states; run a no-grad prefill first")
+ return tuple(indices)
+
+
+def store_uniform_int4_boundary(
+ cache: DynamicCache,
+ *,
+ int4_spec: QuantizationSpec,
+) -> tuple[int, ...]:
+ """Physically pack/dequantize every warm recurrent state as INT4 in place."""
+
+ if int4_spec.bits != 4 or int4_spec.flatten_last_dims != 1:
+ raise ValueError("int4_spec must use 4 bits and flatten_last_dims=1")
+ indices = recurrent_layer_indices(cache)
+ for layer_index in indices:
+ state = _recurrent_state(cache, layer_index)
+ if int4_spec.group_size != state.shape[-1]:
+ raise ValueError(
+ "int4 group_size must equal recurrent-state value_dim at layer "
+ f"{layer_index} ({int4_spec.group_size} != {state.shape[-1]})"
+ )
+ packed = quantize_pack(state, int4_spec)
+ cache.layers[layer_index].recurrent_states[0] = packed.dequantize()
+ return indices
+
+
+def advance_uniform_int4_trajectory(
+ model: torch.nn.Module,
+ raw_cache: DynamicCache,
+ previous_input_ids: torch.Tensor,
+ *,
+ int4_spec: QuantizationSpec,
+ forward_kwargs: Mapping[str, Any] | None = None,
+) -> None:
+ """Advance prior tokens and stop at the next raw pre-storage boundary.
+
+ ``raw_cache`` must initially contain the raw prefill update. Before every
+ prior token, all recurrent states are stored through physical INT4 packing.
+ The last prior token's update remains raw, ready for the validation function
+ to construct both Q4 and Q8 endpoints.
+ """
+
+ if model.training:
+ raise ValueError("model must be in evaluation mode")
+ if previous_input_ids.ndim != 2 or previous_input_ids.shape[0] != 1:
+ raise ValueError("previous_input_ids must have shape [1, tokens]")
+ if previous_input_ids.dtype not in (torch.int32, torch.int64):
+ raise TypeError("previous_input_ids must use an integer dtype")
+ kwargs = dict(forward_kwargs or {})
+ conflicts = {"input_ids", "past_key_values", "use_cache", "labels"} & set(kwargs)
+ if conflicts:
+ raise ValueError(f"forward_kwargs contains managed arguments: {sorted(conflicts)}")
+
+ for token_index in range(previous_input_ids.shape[1]):
+ store_uniform_int4_boundary(raw_cache, int4_spec=int4_spec)
+ with torch.no_grad():
+ model(
+ input_ids=previous_input_ids[:, token_index : token_index + 1],
+ past_key_values=raw_cache,
+ use_cache=True,
+ **kwargs,
+ )
+
+
+def _target_nll(
+ model: torch.nn.Module,
+ cache: DynamicCache,
+ input_ids: torch.Tensor,
+ targets: torch.Tensor,
+ forward_kwargs: Mapping[str, Any],
+) -> torch.Tensor:
+ output = model(
+ input_ids=input_ids,
+ past_key_values=cache,
+ use_cache=True,
+ **forward_kwargs,
+ )
+ logits = getattr(output, "logits", None)
+ if not isinstance(logits, torch.Tensor) or logits.ndim != 3:
+ raise RuntimeError("model output must contain rank-3 logits")
+ return F.cross_entropy(logits[:, -1, :].to(torch.float32), targets)
+
+
+def _loss_at_alpha(
+ model: torch.nn.Module,
+ base_cache: DynamicCache,
+ input_ids: torch.Tensor,
+ targets: torch.Tensor,
+ *,
+ location: StorageRowLocation,
+ direction: torch.Tensor,
+ alpha: float,
+ forward_kwargs: Mapping[str, Any],
+) -> float:
+ cache = copy.deepcopy(base_cache)
+ state = _recurrent_state(cache, location.layer_index)
+ cache.layers[location.layer_index].recurrent_states[0] = interpolate_storage_row(
+ state,
+ direction,
+ location=location,
+ alpha=alpha,
+ )
+ with torch.no_grad():
+ loss = _target_nll(model, cache, input_ids, targets, forward_kwargs)
+ value = float(loss.item())
+ if not math.isfinite(value):
+ raise RuntimeError("target NLL became non-finite")
+ return value
+
+
+def _autograd_directional_derivative(
+ model: torch.nn.Module,
+ base_cache: DynamicCache,
+ input_ids: torch.Tensor,
+ targets: torch.Tensor,
+ *,
+ location: StorageRowLocation,
+ direction: torch.Tensor,
+ forward_kwargs: Mapping[str, Any],
+) -> tuple[float, float, torch.Tensor]:
+ cache = copy.deepcopy(base_cache)
+ state = _recurrent_state(cache, location.layer_index)
+ leaf = state.detach().clone().requires_grad_(True)
+ cache.layers[location.layer_index].recurrent_states[0] = leaf
+
+ original_update = cache.update_recurrent_state
+ had_instance_update = "update_recurrent_state" in cache.__dict__
+ previous_instance_update = cache.__dict__.get("update_recurrent_state")
+
+ def differentiable_update(
+ working_cache: DynamicCache,
+ recurrent_states: torch.Tensor,
+ layer_idx: int,
+ state_idx: int = 0,
+ **update_kwargs: Any,
+ ) -> torch.Tensor:
+ if layer_idx != location.layer_index:
+ return original_update(
+ recurrent_states,
+ layer_idx,
+ state_idx=state_idx,
+ **update_kwargs,
+ )
+ if state_idx != 0:
+ raise ValueError("Qwen3.5 storage-boundary validation supports state_idx=0 only")
+ layer = working_cache.layers[layer_idx]
+ layer.recurrent_states[state_idx] = recurrent_states
+ layer.is_recurrent_states_initialized[state_idx] = True
+ return recurrent_states
+
+ parameters = tuple(model.parameters())
+ if any(parameter.grad is not None for parameter in parameters):
+ raise ValueError("model parameters must not have pre-existing gradients")
+ original_requires_grad = tuple(parameter.requires_grad for parameter in parameters)
+ cache.update_recurrent_state = MethodType(differentiable_update, cache)
+ try:
+ for parameter in parameters:
+ parameter.requires_grad_(False)
+ with torch.enable_grad():
+ loss = _target_nll(model, cache, input_ids, targets, forward_kwargs)
+ (gradient,) = torch.autograd.grad(loss, leaf, retain_graph=False, create_graph=False)
+ gradient_row = gradient[0, location.head_index, location.row_index].detach()
+ directional = float((gradient_row * direction).sum().item())
+ loss_value = float(loss.detach().item())
+ finally:
+ for parameter, requires_grad in zip(parameters, original_requires_grad, strict=True):
+ parameter.requires_grad_(requires_grad)
+ if had_instance_update:
+ cache.update_recurrent_state = previous_instance_update
+ else:
+ del cache.__dict__["update_recurrent_state"]
+
+ if not math.isfinite(loss_value) or not math.isfinite(directional):
+ raise RuntimeError("autograd storage-boundary result became non-finite")
+ if not torch.isfinite(gradient_row).all().item():
+ raise RuntimeError("storage-boundary row gradient became non-finite")
+ return loss_value, directional, gradient_row.cpu()
+
+
+def validate_qwen_storage_boundary_row(
+ model: torch.nn.Module,
+ raw_cache: DynamicCache,
+ input_ids: torch.Tensor,
+ target_token_ids: torch.Tensor,
+ *,
+ location: StorageRowLocation,
+ int4_spec: QuantizationSpec,
+ int8_spec: QuantizationSpec,
+ epsilon: float = 0.5,
+ sign_floor: float = 1e-12,
+ forward_kwargs: Mapping[str, Any] | None = None,
+) -> StorageBoundaryRowValidation:
+ """Validate one Qwen row with autograd, central difference, and endpoints.
+
+ ``raw_cache`` is not mutated. It must describe the raw recurrent update at
+ the chosen token boundary, after any earlier tokens have followed the
+ repeated-INT4 trajectory. The function performs five bounded one-token
+ forwards: one autograd baseline and no-grad evaluations at alpha 0,
+ ``-epsilon``, ``+epsilon``, and 1.
+ """
+
+ _validate_quantization_specs(int4_spec, int8_spec)
+ if model.training:
+ raise ValueError("model must be in evaluation mode")
+ if input_ids.ndim != 2 or input_ids.shape != (1, 1):
+ raise ValueError("input_ids must have shape [1, 1]")
+ if input_ids.dtype not in (torch.int32, torch.int64):
+ raise TypeError("input_ids must use an integer dtype")
+ targets = target_token_ids
+ if targets.ndim == 2 and targets.shape == (1, 1):
+ targets = targets[:, 0]
+ if targets.ndim != 1 or targets.shape[0] != 1:
+ raise ValueError("target_token_ids must have shape [1] or [1, 1]")
+ if targets.dtype not in (torch.int32, torch.int64):
+ raise TypeError("target_token_ids must use an integer dtype")
+ if targets.device != input_ids.device:
+ raise ValueError("input_ids and target_token_ids must be on the same device")
+ kwargs = dict(forward_kwargs or {})
+ conflicts = {"input_ids", "past_key_values", "use_cache", "labels"} & set(kwargs)
+ if conflicts:
+ raise ValueError(f"forward_kwargs contains managed arguments: {sorted(conflicts)}")
+
+ raw_state = _recurrent_state(raw_cache, location.layer_index)
+ if raw_state.device != input_ids.device:
+ raise ValueError("input_ids and recurrent-state cache must be on the same device")
+ if int4_spec.group_size != raw_state.shape[-1]:
+ raise ValueError(
+ "quantizer group_size must equal recurrent-state value_dim "
+ f"({int4_spec.group_size} != {raw_state.shape[-1]})"
+ )
+ if location.head_index >= raw_state.shape[1] or location.row_index >= raw_state.shape[2]:
+ raise ValueError("selected row is outside the recurrent-state geometry")
+
+ int4_state = quantize_pack(raw_state, int4_spec).dequantize()
+ int8_state = quantize_pack(raw_state, int8_spec).dequantize()
+ direction = (
+ int8_state[0, location.head_index, location.row_index]
+ - int4_state[0, location.head_index, location.row_index]
+ ).detach()
+ if not torch.isfinite(direction).all().item():
+ raise RuntimeError("INT4-to-INT8 row direction became non-finite")
+
+ base_cache = copy.deepcopy(raw_cache)
+ layers = store_uniform_int4_boundary(base_cache, int4_spec=int4_spec)
+ base_selected = _recurrent_state(base_cache, location.layer_index)
+ if not torch.equal(base_selected, int4_state):
+ raise RuntimeError("selected INT4 storage endpoint was not reproduced exactly")
+
+ loss_zero, autograd_derivative, gradient_row = _autograd_directional_derivative(
+ model,
+ base_cache,
+ input_ids,
+ targets,
+ location=location,
+ direction=direction,
+ forward_kwargs=kwargs,
+ )
+ repeated_zero = _loss_at_alpha(
+ model,
+ base_cache,
+ input_ids,
+ targets,
+ location=location,
+ direction=direction,
+ alpha=0.0,
+ forward_kwargs=kwargs,
+ )
+ minus = _loss_at_alpha(
+ model,
+ base_cache,
+ input_ids,
+ targets,
+ location=location,
+ direction=direction,
+ alpha=-float(epsilon),
+ forward_kwargs=kwargs,
+ )
+ plus = _loss_at_alpha(
+ model,
+ base_cache,
+ input_ids,
+ targets,
+ location=location,
+ direction=direction,
+ alpha=float(epsilon),
+ forward_kwargs=kwargs,
+ )
+ endpoint = _loss_at_alpha(
+ model,
+ base_cache,
+ input_ids,
+ targets,
+ location=location,
+ direction=direction,
+ alpha=1.0,
+ forward_kwargs=kwargs,
+ )
+ comparison = compare_directional_benefits(
+ epsilon=epsilon,
+ loss_at_zero=loss_zero,
+ repeated_loss_at_zero=repeated_zero,
+ loss_at_minus_epsilon=minus,
+ loss_at_plus_epsilon=plus,
+ loss_at_int8_endpoint=endpoint,
+ autograd_directional_derivative=autograd_derivative,
+ sign_floor=sign_floor,
+ )
+
+ return StorageBoundaryRowValidation(
+ location=location,
+ comparison=comparison,
+ recurrent_layer_indices=layers,
+ raw_row=raw_state[0, location.head_index, location.row_index].detach().cpu(),
+ int4_row=int4_state[0, location.head_index, location.row_index].detach().cpu(),
+ int8_row=int8_state[0, location.head_index, location.row_index].detach().cpu(),
+ direction=direction.cpu(),
+ gradient_row=gradient_row,
+ )
diff --git a/tests/test_adaptive_mixed_packed_cache.py b/tests/test_adaptive_mixed_packed_cache.py
new file mode 100644
index 0000000..8963bc7
--- /dev/null
+++ b/tests/test_adaptive_mixed_packed_cache.py
@@ -0,0 +1,275 @@
+from __future__ import annotations
+
+import hashlib
+import math
+
+import pytest
+import torch
+from transformers import Qwen3_5ForCausalLM
+
+from recurquant.packed_cache import (
+ AdaptiveMixedPackedLinearAttentionLayer,
+ AdaptiveMixedPackedRecurrentStateCache,
+)
+from recurquant.quantization import QuantizationSpec, quantize_dequantize, quantize_pack
+from recurquant.qwen35 import create_qwen35_adaptive_exact_budget_cache
+from recurquant.row_policy import ExactBudgetRowPlan, select_rows_exact_budget
+from tests.test_transformers_cache import tiny_config
+
+
+def _target_for_promotions(
+ scores: dict[int, torch.Tensor],
+ *,
+ promotions: int,
+ group_size: int = 8,
+ scale_bits: int = 16,
+) -> int:
+ total_groups = sum(score.numel() for score in scores.values())
+ low_group_bytes = math.ceil(4 * group_size / 8) + scale_bits // 8
+ increment = math.ceil(8 * group_size / 8) - math.ceil(4 * group_size / 8)
+ return total_groups * low_group_bytes + math.ceil(total_groups / 8) + promotions * increment
+
+
+def _plan(*, promotions: int, scores: dict[int, torch.Tensor] | None = None) -> ExactBudgetRowPlan:
+ if scores is None:
+ scores = {0: torch.arange(16, dtype=torch.float32).reshape(2, 8)}
+ return select_rows_exact_budget(
+ scores,
+ target_resident_bytes=_target_for_promotions(scores, promotions=promotions),
+ group_size=8,
+ )
+
+
+def _packed_mask(
+ cache: AdaptiveMixedPackedRecurrentStateCache,
+ layer_index: int = 0,
+) -> torch.Tensor:
+ layer = cache.layers[layer_index]
+ assert isinstance(layer, AdaptiveMixedPackedLinearAttentionLayer)
+ packed = layer.packed_states[0]
+ assert packed is not None
+ return packed.high_precision_mask().reshape(-1)
+
+
+def _state_with_difficult_group(group_index: int) -> torch.Tensor:
+ state = torch.zeros((1, 2, 8, 8), dtype=torch.float32)
+ state.reshape(16, 8)[group_index] = torch.tensor(
+ [1.0, 0.51, -0.37, 0.23, 0.14, -0.08, 0.03, -0.01]
+ )
+ return state
+
+
+def test_adaptive_mask_matches_aligned_per_row_mse_reduction() -> None:
+ plan = _plan(promotions=5)
+ cache = create_qwen35_adaptive_exact_budget_cache(tiny_config(), plan=plan)
+ state = torch.randn((1, 2, 8, 8), generator=torch.Generator().manual_seed(211))
+ low_spec = QuantizationSpec(bits=4, group_size=8)
+ high_spec = QuantizationSpec(bits=8, group_size=8)
+ source = state.to(torch.float32)
+ low = quantize_dequantize(state, low_spec).tensor.to(torch.float32)
+ high = quantize_dequantize(state, high_spec).tensor.to(torch.float32)
+ benefit = (
+ (low - source).square().mean(dim=-1) - (high - source).square().mean(dim=-1)
+ ).reshape(-1)
+ expected_indices = torch.argsort(benefit, descending=True, stable=True)[:5]
+
+ cache.update_recurrent_state(state, layer_idx=0)
+
+ actual = _packed_mask(cache)
+ assert actual.sum().item() == 5
+ assert torch.equal(actual.nonzero().reshape(-1), expected_indices.sort().values)
+
+
+def test_adaptive_stored_state_equals_standalone_physical_endpoints_by_computed_mask() -> None:
+ plan = _plan(promotions=5)
+ cache = create_qwen35_adaptive_exact_budget_cache(tiny_config(), plan=plan)
+ state = torch.randn((1, 2, 8, 8), generator=torch.Generator().manual_seed(219))
+ layer = cache.layers[0]
+ assert isinstance(layer, AdaptiveMixedPackedLinearAttentionLayer)
+
+ restored = cache.update_recurrent_state(state, layer_idx=0)
+
+ packed = layer.packed_states[0]
+ assert packed is not None
+ computed_mask = packed.high_precision_mask().reshape(1, 2, 8, 1)
+ standalone_int4 = quantize_pack(state, layer.low_spec).dequantize()
+ standalone_int8 = quantize_pack(state, layer.high_spec).dequantize()
+ physical_benefit = (
+ (standalone_int4 - state).square().mean(dim=-1)
+ - (standalone_int8 - state).square().mean(dim=-1)
+ ).reshape(-1)
+ selected = torch.argsort(physical_benefit, descending=True, stable=True)[:5]
+ independent_mask = torch.zeros(16, dtype=torch.bool)
+ independent_mask[selected] = True
+ independent_mask = independent_mask.reshape(1, 2, 8, 1)
+ expected = torch.where(independent_mask, standalone_int8, standalone_int4)
+
+ assert computed_mask.sum().item() == 5
+ assert torch.equal(computed_mask, independent_mask)
+ assert torch.equal(restored, expected)
+ assert torch.equal(packed.dequantize(), expected)
+ assert torch.equal(layer.recurrent_states[0], expected)
+
+
+def test_equal_scores_use_stable_flattened_row_order_and_repeat_exactly() -> None:
+ plan = _plan(promotions=3)
+ first = create_qwen35_adaptive_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ record_evidence=True,
+ )
+ second = create_qwen35_adaptive_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ record_evidence=True,
+ )
+ state = torch.zeros((1, 2, 8, 8))
+
+ first.update_recurrent_state(state, layer_idx=0)
+ second.update_recurrent_state(state, layer_idx=0)
+
+ expected = torch.zeros(16, dtype=torch.bool)
+ expected[:3] = True
+ assert torch.equal(_packed_mask(first), expected)
+ assert torch.equal(_packed_mask(second), expected)
+ assert first.update_evidence[0].high_precision_mask_sha256 == (
+ second.update_evidence[0].high_precision_mask_sha256
+ )
+
+
+@pytest.mark.parametrize("promotions", [0, 16])
+def test_zero_and_full_layer_quotas_preserve_exact_counts_and_bytes(promotions: int) -> None:
+ plan = _plan(promotions=promotions)
+ cache = create_qwen35_adaptive_exact_budget_cache(tiny_config(), plan=plan)
+ state = torch.randn((1, 2, 8, 8), generator=torch.Generator().manual_seed(223))
+
+ cache.update_recurrent_state(state, layer_idx=0)
+
+ assert _packed_mask(cache).sum().item() == promotions
+ assert cache.storage_summary()["high_precision_groups"] == promotions
+ assert cache.storage_summary()["resident_bytes"] == plan.resident_bytes
+
+
+def test_repeated_updates_can_change_rows_without_changing_quota_or_bytes() -> None:
+ plan = _plan(promotions=1)
+ cache = create_qwen35_adaptive_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ record_evidence=True,
+ )
+
+ cache.update_recurrent_state(_state_with_difficult_group(2), layer_idx=0)
+ first_mask = _packed_mask(cache).clone()
+ first_bytes = cache.storage_summary()["resident_bytes"]
+ cache.update_recurrent_state(_state_with_difficult_group(11), layer_idx=0)
+ second_mask = _packed_mask(cache).clone()
+
+ assert first_mask.nonzero().reshape(-1).tolist() == [2]
+ assert second_mask.nonzero().reshape(-1).tolist() == [11]
+ assert not torch.equal(first_mask, second_mask)
+ assert first_bytes == cache.storage_summary()["resident_bytes"] == plan.resident_bytes
+ assert [item.high_precision_groups for item in cache.update_evidence] == [1, 1]
+ assert (
+ cache.update_evidence[0].high_precision_mask_sha256
+ != cache.update_evidence[1].high_precision_mask_sha256
+ )
+
+
+def test_each_layer_keeps_its_plan_quota_and_global_resident_byte_count() -> None:
+ scores = {
+ 0: torch.tensor([100.0, 99.0, 98.0] + [-100.0] * 13).reshape(2, 8),
+ 1: torch.tensor([97.0, 96.0, 95.0, 94.0] + [-200.0] * 12).reshape(2, 8),
+ }
+ plan = _plan(promotions=7, scores=scores)
+ assert [len(plan.groups_for_layer(index)) for index in (0, 1)] == [3, 4]
+ cache = create_qwen35_adaptive_exact_budget_cache(
+ tiny_config(["linear_attention", "linear_attention"]),
+ plan=plan,
+ )
+ generator = torch.Generator().manual_seed(227)
+
+ cache.update_recurrent_state(torch.randn((1, 2, 8, 8), generator=generator), layer_idx=0)
+ cache.update_recurrent_state(torch.randn((1, 2, 8, 8), generator=generator), layer_idx=1)
+
+ assert [_packed_mask(cache, index).sum().item() for index in (0, 1)] == [3, 4]
+ summary = cache.storage_summary()
+ assert summary["high_precision_groups"] == plan.promoted_group_count
+ assert summary["resident_bytes"] == plan.resident_bytes
+
+
+def test_batch_size_greater_than_one_is_rejected_before_storage() -> None:
+ cache = create_qwen35_adaptive_exact_budget_cache(tiny_config(), plan=_plan(promotions=3))
+
+ with pytest.raises(ValueError, match="requires batch size 1; got 2"):
+ cache.update_recurrent_state(torch.zeros((2, 2, 8, 8)), layer_idx=0)
+
+ layer = cache.layers[0]
+ assert isinstance(layer, AdaptiveMixedPackedLinearAttentionLayer)
+ assert layer.packed_states[0] is None
+
+
+def test_adaptive_storage_is_inference_only_and_retains_no_autograd_graph() -> None:
+ cache = create_qwen35_adaptive_exact_budget_cache(tiny_config(), plan=_plan(promotions=3))
+ state = torch.randn((1, 2, 8, 8), requires_grad=True)
+
+ with pytest.raises(RuntimeError, match="inference-only"):
+ cache.update_recurrent_state(state, layer_idx=0)
+
+ with torch.no_grad():
+ restored = cache.update_recurrent_state(state, layer_idx=0)
+
+ layer = cache.layers[0]
+ assert isinstance(layer, AdaptiveMixedPackedLinearAttentionLayer)
+ packed = layer.packed_states[0]
+ assert packed is not None
+ assert not restored.requires_grad
+ assert all(
+ not tensor.requires_grad
+ for tensor in (
+ packed.low_payload,
+ packed.high_payload,
+ packed.scales,
+ packed.precision_mask,
+ )
+ )
+
+
+def test_evidence_records_selection_method_current_mask_hash_and_count() -> None:
+ plan = _plan(promotions=4)
+ cache = create_qwen35_adaptive_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ record_evidence=True,
+ )
+ cache.update_recurrent_state(
+ torch.randn((1, 2, 8, 8), generator=torch.Generator().manual_seed(229)),
+ layer_idx=0,
+ )
+ layer = cache.layers[0]
+ assert isinstance(layer, AdaptiveMixedPackedLinearAttentionLayer)
+ packed = layer.packed_states[0]
+ assert packed is not None
+ expected_hash = hashlib.sha256(bytes(packed.precision_mask.detach().cpu().tolist())).hexdigest()
+
+ evidence = cache.update_evidence[0]
+ assert evidence.selection_method == "instantaneous_aligned_mse_reduction"
+ assert evidence.high_precision_groups == 4
+ assert evidence.high_precision_mask_sha256 == expected_hash
+ assert evidence.resident_bytes == plan.resident_bytes
+ assert evidence.evidence_dict()["high_precision_mask_sha256"] == expected_hash
+
+
+def test_adaptive_factory_runs_tiny_qwen_prefill_and_decode() -> None:
+ torch.manual_seed(233)
+ model = Qwen3_5ForCausalLM._from_config(
+ tiny_config(),
+ attn_implementation="eager",
+ ).eval()
+ cache = create_qwen35_adaptive_exact_budget_cache(model, plan=_plan(promotions=5))
+
+ with torch.inference_mode():
+ model(torch.randint(0, model.config.vocab_size, (1, 5)), past_key_values=cache)
+ output = model(torch.randint(0, model.config.vocab_size, (1, 1)), past_key_values=cache)
+
+ assert output.logits.shape == (1, 1, model.config.vocab_size)
+ assert _packed_mask(cache).sum().item() == 5
diff --git a/tests/test_finite_difference.py b/tests/test_finite_difference.py
new file mode 100644
index 0000000..4aa5664
--- /dev/null
+++ b/tests/test_finite_difference.py
@@ -0,0 +1,109 @@
+from __future__ import annotations
+
+import pytest
+import torch
+
+from recurquant.finite_difference import check_directional_derivative
+
+
+def test_quadratic_directional_derivative_matches_central_difference() -> None:
+ state = torch.tensor([0.5, -1.25, 2.0], dtype=torch.float64)
+ direction = torch.tensor([0.2, 0.4, -0.3], dtype=torch.float64)
+
+ result = check_directional_derivative(
+ lambda value: value.square().sum(),
+ state,
+ direction,
+ )
+
+ expected = float((2 * state * direction).sum().item())
+ assert result.autograd_derivative == pytest.approx(expected)
+ assert result.gradient_l2_norm == pytest.approx(float(torch.linalg.vector_norm(2 * state)))
+ assert result.direction_l2_norm == pytest.approx(float(torch.linalg.vector_norm(direction)))
+ assert all(point.central_derivative == pytest.approx(expected) for point in result.points)
+ assert result.median_relative_error < 1e-12
+ assert result.nonzero_sign_agreement_rate == 1.0
+
+
+def test_nonlinear_central_difference_error_shrinks_with_epsilon() -> None:
+ state = torch.tensor([0.7, -0.4], dtype=torch.float64)
+ direction = torch.tensor([0.3, 0.2], dtype=torch.float64)
+
+ result = check_directional_derivative(
+ lambda value: value.pow(3).sum(),
+ state,
+ direction,
+ epsilons=(0.5, 0.25, 0.125, 0.0625),
+ )
+
+ errors = [point.absolute_error for point in result.points]
+ assert errors == sorted(errors, reverse=True)
+ assert result.points[-1].relative_error < result.points[0].relative_error
+ assert result.nonzero_sign_agreement_rate == 1.0
+
+
+def test_near_zero_derivative_preserves_error_without_forcing_a_sign() -> None:
+ state = torch.zeros(3, dtype=torch.float32)
+ direction = torch.tensor([1.0, -1.0, 0.5], dtype=torch.float32)
+
+ result = check_directional_derivative(
+ lambda value: value.square().sum(),
+ state,
+ direction,
+ epsilons=(0.25, 0.125),
+ near_zero_floor=1e-6,
+ )
+
+ assert result.autograd_derivative == 0.0
+ assert all(point.near_zero for point in result.points)
+ assert all(point.sign_agreement is None for point in result.points)
+ assert result.nonzero_sign_agreement_rate is None
+
+
+@pytest.mark.parametrize(
+ ("loss_fn", "expected_autograd", "expected_central"),
+ (
+ (lambda value: value[0].pow(3) - value[0], -1.0, 0.0),
+ (lambda value: value[0].pow(3), 0.0, 1.0),
+ ),
+)
+def test_exactly_zero_derivative_does_not_manufacture_sign_agreement(
+ loss_fn: object,
+ expected_autograd: float,
+ expected_central: float,
+) -> None:
+ result = check_directional_derivative(
+ loss_fn, # type: ignore[arg-type]
+ torch.zeros(1, dtype=torch.float64),
+ torch.ones(1, dtype=torch.float64),
+ epsilons=(1.0,),
+ near_zero_floor=1e-8,
+ )
+
+ assert result.autograd_derivative == expected_autograd
+ assert result.points[0].central_derivative == expected_central
+ assert not result.points[0].near_zero
+ assert result.points[0].sign_agreement is False
+ assert result.nonzero_sign_agreement_rate == 0.0
+
+
+def test_directional_derivative_validation_rejects_bad_inputs_and_losses() -> None:
+ state = torch.ones(2, dtype=torch.float32)
+ direction = torch.ones(2, dtype=torch.float32)
+ with pytest.raises(ValueError, match="same shape"):
+ check_directional_derivative(lambda value: value.sum(), state, direction[:1])
+ with pytest.raises(ValueError, match="positive finite"):
+ check_directional_derivative(
+ lambda value: value.sum(),
+ state,
+ direction,
+ epsilons=(0.1, 0.0),
+ )
+ with pytest.raises(ValueError, match="one floating-point scalar"):
+ check_directional_derivative(lambda value: value, state, direction)
+ with pytest.raises(ValueError, match="finite"):
+ check_directional_derivative(
+ lambda value: value.sum() * torch.tensor(float("nan")),
+ state,
+ direction,
+ )
diff --git a/tests/test_fisher_sensitivity.py b/tests/test_fisher_sensitivity.py
new file mode 100644
index 0000000..028fbdf
--- /dev/null
+++ b/tests/test_fisher_sensitivity.py
@@ -0,0 +1,621 @@
+from __future__ import annotations
+
+from types import MethodType
+from typing import Literal
+
+import pytest
+import torch
+import torch.nn.functional as F
+from transformers import DynamicCache, Qwen3_5ForCausalLM
+
+from recurquant.fisher_sensitivity import (
+ FisherStepResult,
+ GDNInt4TrajectoryFisherCalibrator,
+ GDNOneStepFisherCalibrator,
+ RowPromotionSensitivityScores,
+ TaskMacroSensitivityAccumulator,
+ row_promotion_scores_from_errors,
+ row_promotion_sensitivity_scores,
+)
+from recurquant.quantization import QuantizationSpec, RoundingMode, quantize_dequantize
+from recurquant.transformers_cache import RecurrentStateQDQCache
+from tests.test_transformers_cache import tiny_config
+
+
+def _spec(bits: int) -> QuantizationSpec:
+ return QuantizationSpec(
+ bits=bits,
+ group_size=8,
+ flatten_last_dims=1,
+ )
+
+
+def _tiny_model() -> Qwen3_5ForCausalLM:
+ torch.manual_seed(2339)
+ return Qwen3_5ForCausalLM._from_config(
+ tiny_config(),
+ attn_implementation="eager",
+ ).eval()
+
+
+def _warm_cache(
+ model: Qwen3_5ForCausalLM,
+ prompt: torch.Tensor,
+) -> DynamicCache:
+ cache = DynamicCache(config=model.config)
+ with torch.no_grad():
+ model(prompt, past_key_values=cache, use_cache=True)
+ return cache
+
+
+def _all_cached_tensors(cache: DynamicCache) -> list[torch.Tensor]:
+ tensors: list[torch.Tensor] = []
+ for layer in cache.layers:
+ for name in ("keys", "values"):
+ value = getattr(layer, name, None)
+ if isinstance(value, torch.Tensor):
+ tensors.append(value)
+ for name in ("conv_states", "recurrent_states"):
+ values = getattr(layer, name, None)
+ if isinstance(values, dict):
+ tensors.extend(
+ value for value in values.values() if isinstance(value, torch.Tensor)
+ )
+ return tensors
+
+
+def test_row_promotion_scores_match_signed_taylor_and_fisher_formulas() -> None:
+ state = torch.tensor(
+ [
+ [
+ [
+ [0.04, -0.13, 0.21, -0.37, 0.55, -0.72, 0.81, -0.94],
+ [-0.02, 0.11, -0.29, 0.41, -0.58, 0.69, -0.83, 0.97],
+ ]
+ ],
+ [
+ [
+ [-0.09, 0.17, -0.24, 0.38, -0.49, 0.63, -0.79, 0.91],
+ [0.01, -0.15, 0.27, -0.44, 0.57, -0.68, 0.86, -0.99],
+ ]
+ ],
+ ],
+ dtype=torch.float32,
+ )
+ gradient = torch.linspace(-0.4, 0.7, state.numel(), dtype=torch.float32).reshape_as(state)
+ int4_spec = _spec(4)
+ int8_spec = _spec(8)
+ error4 = quantize_dequantize(state, int4_spec).tensor - state
+ error8 = quantize_dequantize(state, int8_spec).tensor - state
+ delta = error8 - error4
+ expected_taylor = -(gradient * delta).sum(dim=-1).mean(dim=0)
+ projected4 = (gradient * error4).sum(dim=-1)
+ projected8 = (gradient * error8).sum(dim=-1)
+ expected_directional_difference = (projected4.square() - projected8.square()).mean(dim=0)
+ expected_diagonal_difference = (
+ (gradient.square() * (error4.square() - error8.square())).sum(dim=-1).mean(dim=0)
+ )
+ expected_delta_magnitude = (gradient * (error4 - error8)).sum(dim=-1).square().mean(dim=0)
+
+ taylor, directional_difference, diagonal_difference, delta_magnitude = (
+ row_promotion_sensitivity_scores(
+ state,
+ gradient,
+ int4_spec=int4_spec,
+ int8_spec=int8_spec,
+ )
+ )
+
+ assert taylor.shape == (1, 2)
+ assert directional_difference.shape == (1, 2)
+ assert diagonal_difference.shape == (1, 2)
+ assert delta_magnitude.shape == (1, 2)
+ assert torch.equal(taylor, expected_taylor)
+ assert torch.equal(directional_difference, expected_directional_difference)
+ assert torch.equal(diagonal_difference, expected_diagonal_difference)
+ assert torch.equal(delta_magnitude, expected_delta_magnitude)
+ assert (delta_magnitude >= 0).all()
+
+ from_errors = row_promotion_scores_from_errors(
+ gradient,
+ error4,
+ error8,
+ )
+ assert all(
+ torch.equal(left, right)
+ for left, right in zip(
+ from_errors,
+ (
+ taylor,
+ directional_difference,
+ diagonal_difference,
+ delta_magnitude,
+ ),
+ strict=True,
+ )
+ )
+
+
+def test_signed_taylor_benefit_uses_promotion_loss_reduction_sign() -> None:
+ gradient = torch.tensor([[[[2.0, -1.0]]]], dtype=torch.float32)
+ error4 = torch.tensor([[[[0.5, 0.25]]]], dtype=torch.float32)
+ error8 = torch.tensor([[[[0.1, 0.05]]]], dtype=torch.float32)
+
+ taylor, _, diagonal, _ = row_promotion_scores_from_errors(
+ gradient,
+ error4,
+ error8,
+ )
+
+ delta = error8 - error4
+ assert taylor.item() == pytest.approx(-(gradient * delta).sum().item())
+ assert taylor.item() > 0
+ # Signed diagnostics are intentionally not clamped.
+ assert diagonal.item() == pytest.approx(
+ (gradient.square() * (error4.square() - error8.square())).sum().item()
+ )
+
+
+def _expected_scores(
+ state: torch.Tensor,
+ gradient: torch.Tensor,
+) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]:
+ return row_promotion_sensitivity_scores(
+ state,
+ gradient,
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+
+
+def test_full_model_step_uses_pre_token_state_and_preserves_continuity() -> None:
+ model = _tiny_model()
+ prompt = torch.tensor([[1, 2, 3, 4]])
+ measured_cache = _warm_cache(model, prompt)
+ reference_cache = _warm_cache(model, prompt)
+ before = measured_cache.layers[0].recurrent_states[0].clone()
+ attention = model.model.layers[0].linear_attn
+ original_kernel = attention.recurrent_gated_delta_rule
+ captured_states: list[torch.Tensor] = []
+ captured_gradients: list[torch.Tensor] = []
+
+ def capture_kernel(*args: object, **kwargs: object):
+ state = kwargs["initial_state"]
+ assert isinstance(state, torch.Tensor)
+ assert state.is_leaf
+ assert state.requires_grad
+ assert state.dtype == torch.float32
+ captured_states.append(state.detach().clone())
+ state.register_hook(lambda gradient: captured_gradients.append(gradient.detach().clone()))
+ return original_kernel(*args, **kwargs)
+
+ attention.recurrent_gated_delta_rule = capture_kernel
+ flags_before = tuple(parameter.requires_grad for parameter in model.parameters())
+ next_input = torch.tensor([[5]])
+ target = torch.tensor([6])
+ calibrator = GDNOneStepFisherCalibrator(
+ model,
+ measured_cache,
+ layer_indices=[0],
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+ try:
+ result = calibrator.step(next_input, target)
+ finally:
+ attention.recurrent_gated_delta_rule = original_kernel
+
+ with torch.no_grad():
+ reference_output = model(
+ next_input,
+ past_key_values=reference_cache,
+ use_cache=True,
+ )
+ expected_nll = F.cross_entropy(reference_output.logits[:, -1, :].float(), target)
+ expected = _expected_scores(captured_states[0], captured_gradients[0])
+
+ assert len(captured_states) == 1
+ assert len(captured_gradients) == 1
+ assert torch.equal(captured_states[0], before)
+ assert result.mean_nll == pytest.approx(expected_nll.item(), abs=1e-6)
+ assert result.trajectory == "fp32"
+ assert torch.equal(result.layer(0).taylor_benefit, expected[0])
+ assert torch.equal(result.layer(0).directional_fisher_difference, expected[1])
+ assert torch.equal(result.layer(0).diagonal_fisher_difference, expected[2])
+ assert torch.equal(result.layer(0).delta_direction_fisher_magnitude, expected[3])
+ assert torch.allclose(
+ measured_cache.layers[0].recurrent_states[0],
+ reference_cache.layers[0].recurrent_states[0],
+ )
+ assert not torch.equal(measured_cache.layers[0].recurrent_states[0], before)
+ assert tuple(parameter.requires_grad for parameter in model.parameters()) == flags_before
+ assert all(parameter.grad is None for parameter in model.parameters())
+ assert "update_recurrent_state" not in measured_cache.__dict__
+ assert all(
+ not tensor.requires_grad and tensor.grad_fn is None
+ for tensor in _all_cached_tensors(measured_cache)
+ )
+
+
+def test_one_reverse_pass_scores_every_selected_gdn_state() -> None:
+ config = tiny_config(["linear_attention", "linear_attention", "full_attention"])
+ torch.manual_seed(71)
+ model = Qwen3_5ForCausalLM._from_config(config, attn_implementation="eager").eval()
+ cache = _warm_cache(model, torch.tensor([[1, 3, 5]]))
+ before = {
+ layer_index: cache.layers[layer_index].recurrent_states[0].clone() for layer_index in (0, 1)
+ }
+ calibrator = GDNOneStepFisherCalibrator(
+ model,
+ cache,
+ layer_indices=[1, 0],
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+
+ result = calibrator.step(torch.tensor([[7]]), torch.tensor([9]))
+
+ assert tuple(scores.layer_index for scores in result.layers) == (0, 1)
+ assert all(scores.shape == (2, 8) for scores in result.layers)
+ assert all(
+ not torch.equal(cache.layers[layer_index].recurrent_states[0], before[layer_index])
+ for layer_index in (0, 1)
+ )
+ assert all(parameter.grad is None for parameter in model.parameters())
+
+
+@pytest.mark.parametrize("rounding", ["nearest", "stochastic"])
+def test_repeated_int4_trajectory_matches_qdq_cache_and_uses_aligned_delta(
+ rounding: RoundingMode,
+) -> None:
+ model = _tiny_model()
+ prompt = torch.tensor([[9, 10, 11, 12]])
+ measured_cache = _warm_cache(model, prompt)
+ raw_boundary = measured_cache.layers[0].recurrent_states[0].clone()
+ int4_spec = QuantizationSpec(
+ bits=4,
+ group_size=8,
+ flatten_last_dims=1,
+ rounding=rounding,
+ )
+ int8_spec = QuantizationSpec(
+ bits=8,
+ group_size=8,
+ flatten_last_dims=1,
+ rounding=rounding,
+ )
+ reference_cache = RecurrentStateQDQCache(
+ model.config,
+ spec=int4_spec,
+ record_evidence=False,
+ )
+ with torch.no_grad():
+ model(prompt, past_key_values=reference_cache, use_cache=True)
+
+ calibrator = GDNInt4TrajectoryFisherCalibrator(
+ model,
+ measured_cache,
+ int4_spec=int4_spec,
+ int8_spec=int8_spec,
+ )
+ assert torch.equal(
+ measured_cache.layers[0].recurrent_states[0],
+ reference_cache.layers[0].recurrent_states[0],
+ )
+
+ attention = model.model.layers[0].linear_attn
+ original_kernel = attention.recurrent_gated_delta_rule
+ captured_states: list[torch.Tensor] = []
+ captured_gradients: list[torch.Tensor] = []
+
+ def capture_kernel(*args: object, **kwargs: object):
+ state = kwargs["initial_state"]
+ assert isinstance(state, torch.Tensor)
+ assert state.is_leaf and state.requires_grad
+ captured_states.append(state.detach().clone())
+ state.register_hook(lambda gradient: captured_gradients.append(gradient.detach().clone()))
+ return original_kernel(*args, **kwargs)
+
+ attention.recurrent_gated_delta_rule = capture_kernel
+ token = torch.tensor([[13]])
+ target = torch.tensor([14])
+ try:
+ result = calibrator.step(token, target)
+ finally:
+ attention.recurrent_gated_delta_rule = original_kernel
+ with torch.no_grad():
+ reference_output = model(token, past_key_values=reference_cache, use_cache=True)
+
+ q4 = quantize_dequantize(raw_boundary, int4_spec).tensor.to(torch.float32)
+ q8 = quantize_dequantize(raw_boundary, int8_spec).tensor.to(torch.float32)
+ expected = row_promotion_scores_from_errors(
+ captured_gradients[0],
+ q4 - raw_boundary,
+ q8 - raw_boundary,
+ )
+
+ assert result.trajectory == "int4"
+ assert torch.equal(captured_states[0], q4)
+ assert result.mean_nll == pytest.approx(
+ F.cross_entropy(reference_output.logits[:, -1, :].float(), target).item(),
+ abs=1e-6,
+ )
+ assert torch.equal(result.layer(0).taylor_benefit, expected[0])
+ assert torch.equal(result.layer(0).directional_fisher_difference, expected[1])
+ assert torch.equal(result.layer(0).diagonal_fisher_difference, expected[2])
+ assert torch.equal(result.layer(0).delta_direction_fisher_magnitude, expected[3])
+ assert torch.equal(
+ measured_cache.layers[0].recurrent_states[0],
+ reference_cache.layers[0].recurrent_states[0],
+ )
+
+ second_token = torch.tensor([[15]])
+ second_target = torch.tensor([16])
+ second = calibrator.step(second_token, second_target)
+ with torch.no_grad():
+ second_reference = model(
+ second_token,
+ past_key_values=reference_cache,
+ use_cache=True,
+ )
+ assert second.mean_nll == pytest.approx(
+ F.cross_entropy(second_reference.logits[:, -1, :].float(), second_target).item(),
+ abs=1e-6,
+ )
+ assert torch.equal(
+ measured_cache.layers[0].recurrent_states[0],
+ reference_cache.layers[0].recurrent_states[0],
+ )
+ assert all(
+ not tensor.requires_grad and tensor.grad_fn is None
+ for tensor in _all_cached_tensors(measured_cache)
+ )
+
+
+def test_partial_multilayer_failure_rolls_back_int4_trajectory_atomically() -> None:
+ config = tiny_config(["linear_attention", "linear_attention", "full_attention"])
+ torch.manual_seed(91)
+ model = Qwen3_5ForCausalLM._from_config(config, attn_implementation="eager").eval()
+ prompt = torch.tensor([[3, 6, 9]])
+ measured_cache = _warm_cache(model, prompt)
+ reference_cache = RecurrentStateQDQCache(
+ config,
+ spec=_spec(4),
+ record_evidence=False,
+ )
+ with torch.no_grad():
+ model(prompt, past_key_values=reference_cache, use_cache=True)
+ calibrator = GDNInt4TrajectoryFisherCalibrator(
+ model,
+ measured_cache,
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+ before = [tensor.clone() for tensor in _all_cached_tensors(measured_cache)]
+ second_attention = model.model.layers[1].linear_attn
+ original_kernel = second_attention.recurrent_gated_delta_rule
+
+ def fail_after_first_layer(*args: object, **kwargs: object):
+ del args, kwargs
+ raise RuntimeError("failure after first GDN update")
+
+ second_attention.recurrent_gated_delta_rule = fail_after_first_layer
+ try:
+ with pytest.raises(RuntimeError, match="after first GDN update"):
+ calibrator.step(torch.tensor([[12]]), torch.tensor([15]))
+ finally:
+ second_attention.recurrent_gated_delta_rule = original_kernel
+
+ after = _all_cached_tensors(measured_cache)
+ assert len(after) == len(before)
+ assert all(
+ torch.equal(current, original) for current, original in zip(after, before, strict=True)
+ )
+ assert all(parameter.grad is None for parameter in model.parameters())
+ assert "update_recurrent_state" not in measured_cache.__dict__
+
+ token = torch.tensor([[12]])
+ target = torch.tensor([15])
+ measured = calibrator.step(token, target)
+ with torch.no_grad():
+ reference = model(token, past_key_values=reference_cache, use_cache=True)
+ assert measured.mean_nll == pytest.approx(
+ F.cross_entropy(reference.logits[:, -1, :].float(), target).item(),
+ abs=1e-6,
+ )
+ for layer_index in (0, 1):
+ assert torch.equal(
+ measured_cache.layers[layer_index].recurrent_states[0],
+ reference_cache.layers[layer_index].recurrent_states[0],
+ )
+
+ second_input = torch.tensor([[7]])
+ calibrator.step(second_input, torch.tensor([8]))
+ with torch.no_grad():
+ model(second_input, past_key_values=reference_cache, use_cache=True)
+ assert torch.allclose(
+ measured_cache.layers[0].recurrent_states[0],
+ reference_cache.layers[0].recurrent_states[0],
+ )
+ assert all(
+ not tensor.requires_grad and tensor.grad_fn is None
+ for tensor in _all_cached_tensors(measured_cache)
+ )
+
+
+def test_step_restores_cache_method_parameters_and_graph_state_after_failure() -> None:
+ model = _tiny_model()
+ cache = _warm_cache(model, torch.tensor([[1, 2, 3]]))
+ state_before = cache.layers[0].recurrent_states[0].clone()
+ parameters = tuple(model.parameters())
+ parameters[0].requires_grad_(False)
+ flags_before = tuple(parameter.requires_grad for parameter in parameters)
+ original_forward = model.forward
+
+ def broken_forward(_model: torch.nn.Module, **kwargs: object):
+ del kwargs
+ raise RuntimeError("synthetic forward failure")
+
+ model.forward = MethodType(broken_forward, model)
+ calibrator = GDNOneStepFisherCalibrator(
+ model,
+ cache,
+ layer_indices=[0],
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+ try:
+ with pytest.raises(RuntimeError, match="synthetic forward failure"):
+ calibrator.step(torch.tensor([[4]]), torch.tensor([5]))
+ finally:
+ model.forward = original_forward
+
+ assert tuple(parameter.requires_grad for parameter in parameters) == flags_before
+ assert all(parameter.grad is None for parameter in parameters)
+ assert "update_recurrent_state" not in cache.__dict__
+ assert torch.equal(cache.layers[0].recurrent_states[0], state_before)
+ assert all(
+ not tensor.requires_grad and tensor.grad_fn is None for tensor in _all_cached_tensors(cache)
+ )
+
+
+def test_step_rejects_preexisting_parameter_gradients_without_mutating_cache() -> None:
+ model = _tiny_model()
+ cache = _warm_cache(model, torch.tensor([[2, 4, 6]]))
+ state_before = cache.layers[0].recurrent_states[0].clone()
+ parameter = next(model.parameters())
+ parameter.grad = torch.ones_like(parameter)
+ calibrator = GDNOneStepFisherCalibrator(
+ model,
+ cache,
+ layer_indices=[0],
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+
+ with pytest.raises(ValueError, match="pre-existing gradients"):
+ calibrator.step(torch.tensor([[8]]), torch.tensor([10]))
+
+ assert torch.equal(cache.layers[0].recurrent_states[0], state_before)
+ assert "update_recurrent_state" not in cache.__dict__
+
+
+def _step(
+ value: float,
+ *,
+ nll: float = 1.0,
+ trajectory: Literal["fp32", "int4"] = "fp32",
+) -> FisherStepResult:
+ scores = torch.full((2, 3), value, dtype=torch.float32)
+ return FisherStepResult(
+ mean_nll=nll,
+ batch_size=1,
+ trajectory=trajectory,
+ layers=(
+ RowPromotionSensitivityScores(
+ layer_index=0,
+ taylor_benefit=scores,
+ directional_fisher_difference=scores * 2,
+ diagonal_fisher_difference=scores * 3,
+ delta_direction_fisher_magnitude=scores * 4,
+ ),
+ ),
+ )
+
+
+def test_task_macro_accumulator_weights_tasks_not_token_count() -> None:
+ accumulator = TaskMacroSensitivityAccumulator()
+ accumulator.add_task([_step(0, nll=2)])
+ accumulator.add_task([_step(6, nll=4), _step(9, nll=8), _step(12, nll=12)])
+
+ summary = accumulator.summary(0)
+
+ # Task means are 0 and 9, so equal-task macro is 4.5. A token mean would be 6.75.
+ assert summary.tasks == 2
+ assert summary.steps == 4
+ assert summary.mean_nll == pytest.approx(5.0)
+ assert summary.trajectory == "fp32"
+ assert torch.equal(summary.taylor_benefit, torch.full((2, 3), 4.5, dtype=torch.float64))
+ assert torch.equal(
+ summary.directional_fisher_difference,
+ torch.full((2, 3), 9.0, dtype=torch.float64),
+ )
+ assert torch.equal(
+ summary.diagonal_fisher_difference,
+ torch.full((2, 3), 13.5, dtype=torch.float64),
+ )
+ assert torch.equal(
+ summary.delta_direction_fisher_magnitude,
+ torch.full((2, 3), 18.0, dtype=torch.float64),
+ )
+
+
+def test_validation_rejects_non_row_specs_shapes_and_unready_cache() -> None:
+ state = torch.zeros((1, 2, 8, 8), dtype=torch.float32)
+ gradient = torch.zeros_like(state)
+ with pytest.raises(ValueError, match="group_size"):
+ row_promotion_sensitivity_scores(
+ state,
+ gradient,
+ int4_spec=QuantizationSpec(bits=4, group_size=4, flatten_last_dims=1),
+ int8_spec=QuantizationSpec(bits=8, group_size=4, flatten_last_dims=1),
+ )
+ with pytest.raises(ValueError, match="differ only in bit width"):
+ row_promotion_sensitivity_scores(
+ state,
+ gradient,
+ int4_spec=_spec(4),
+ int8_spec=QuantizationSpec(bits=8, group_size=8, scale_bits=32, flatten_last_dims=1),
+ )
+ with pytest.raises(ValueError, match="same shape"):
+ row_promotion_sensitivity_scores(
+ state,
+ gradient[..., :7],
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+ nonfinite = gradient.clone()
+ nonfinite[0, 0, 0, 0] = torch.nan
+ with pytest.raises(ValueError, match="finite"):
+ row_promotion_sensitivity_scores(
+ state,
+ nonfinite,
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+
+ model = _tiny_model()
+ empty_cache = DynamicCache(config=model.config)
+ calibrator = GDNOneStepFisherCalibrator(
+ model,
+ empty_cache,
+ layer_indices=[0],
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+ with pytest.raises(ValueError, match="run a no-grad prefill"):
+ calibrator.step(torch.tensor([[1]]), torch.tensor([2]))
+
+
+def test_task_macro_rejects_shape_changes_and_nonfinite_values() -> None:
+ accumulator = TaskMacroSensitivityAccumulator()
+ accumulator.add_task([_step(1)])
+ wrong_shape = FisherStepResult(
+ mean_nll=1.0,
+ batch_size=1,
+ trajectory="fp32",
+ layers=(
+ RowPromotionSensitivityScores(
+ layer_index=0,
+ taylor_benefit=torch.ones(2, 2),
+ directional_fisher_difference=torch.ones(2, 2),
+ diagonal_fisher_difference=torch.ones(2, 2),
+ delta_direction_fisher_magnitude=torch.ones(2, 2),
+ ),
+ ),
+ )
+ with pytest.raises(ValueError, match="layer set or score shapes changed"):
+ accumulator.add_task([wrong_shape])
+ nonfinite = _step(1, nll=float("nan"))
+ with pytest.raises(ValueError, match="mean_nll"):
+ accumulator.add_task([nonfinite])
diff --git a/tests/test_horizon.py b/tests/test_horizon.py
new file mode 100644
index 0000000..0d8052c
--- /dev/null
+++ b/tests/test_horizon.py
@@ -0,0 +1,172 @@
+from __future__ import annotations
+
+import pytest
+import torch
+
+from recurquant.horizon import (
+ finite_horizon_row_read_risk,
+ finite_horizon_row_read_risk_from_energies,
+)
+
+
+def _brute_force_scores(
+ errors: torch.Tensor,
+ queries: torch.Tensor,
+ keys: torch.Tensor,
+ log_decays: torch.Tensor,
+ betas: torch.Tensor,
+ *,
+ horizon: int,
+) -> torch.Tensor:
+ time_steps, batch_size, heads, key_dim, value_dim = errors.shape
+ result = torch.zeros((time_steps, batch_size, heads, key_dim), dtype=torch.float32)
+ scale = key_dim**-0.5
+ for start in range(time_steps):
+ stop = min(time_steps, start + horizon)
+ for batch in range(batch_size):
+ for head in range(heads):
+ for source_row in range(key_dim):
+ propagated = torch.zeros((key_dim, value_dim), dtype=torch.float32)
+ propagated[source_row] = errors[start, batch, head, source_row]
+ energy = 0.0
+ for step in range(start, stop):
+ key = keys[step, batch, head]
+ projected = (key.unsqueeze(-1) * propagated).sum(dim=0)
+ propagated = log_decays[step, batch, head].exp() * (
+ propagated - betas[step, batch, head] * key.unsqueeze(-1) * projected
+ )
+ read = (queries[step, batch, head] * scale) @ propagated
+ energy += float(read.square().sum().item())
+ result[start, batch, head, source_row] = energy / (stop - start)
+ return result
+
+
+def test_horizon_scores_match_brute_force_isolated_row_propagation() -> None:
+ generator = torch.Generator().manual_seed(2339)
+ errors = torch.randn((4, 1, 2, 3, 2), generator=generator) * 0.05
+ queries = torch.nn.functional.normalize(torch.randn((4, 1, 2, 3), generator=generator), dim=-1)
+ keys = torch.nn.functional.normalize(torch.randn((4, 1, 2, 3), generator=generator), dim=-1)
+ log_decays = -torch.rand((4, 1, 2), generator=generator) * 0.3
+ betas = torch.rand((4, 1, 2), generator=generator)
+
+ result = finite_horizon_row_read_risk(
+ errors,
+ queries,
+ keys,
+ log_decays,
+ betas,
+ horizon=3,
+ normalize_qk=False,
+ )
+ expected = _brute_force_scores(
+ errors,
+ queries,
+ keys,
+ log_decays,
+ betas,
+ horizon=3,
+ )
+
+ assert result.horizon == 3
+ assert torch.allclose(result.per_state_scores, expected, atol=1e-7, rtol=1e-5)
+ assert torch.allclose(result.scores, expected.mean(dim=(0, 1)), atol=1e-7, rtol=1e-5)
+ assert result.future_read_counts.tolist() == [3, 3, 2, 1]
+
+
+def test_zero_state_error_has_zero_horizon_risk() -> None:
+ errors = torch.zeros((2, 1, 1, 3, 4))
+ queries = torch.ones((2, 1, 1, 3))
+ keys = torch.ones((2, 1, 1, 3))
+ log_decays = torch.zeros((2, 1, 1))
+ betas = torch.full((2, 1, 1), 0.5)
+
+ result = finite_horizon_row_read_risk(errors, queries, keys, log_decays, betas)
+
+ assert torch.count_nonzero(result.scores).item() == 0
+
+
+def test_row_energy_api_matches_full_error_api_exactly() -> None:
+ generator = torch.Generator().manual_seed(72)
+ errors = torch.randn((5, 2, 3, 4, 7), generator=generator) * 0.03
+ queries = torch.randn((5, 2, 3, 4), generator=generator)
+ keys = torch.randn((5, 2, 3, 4), generator=generator)
+ log_decays = -torch.rand((5, 2, 3), generator=generator)
+ betas = torch.rand((5, 2, 3), generator=generator)
+
+ full = finite_horizon_row_read_risk(
+ errors,
+ queries,
+ keys,
+ log_decays,
+ betas,
+ horizon=4,
+ )
+ energies = errors.to(torch.float32).square().sum(dim=-1)
+ reduced = finite_horizon_row_read_risk_from_energies(
+ energies,
+ queries,
+ keys,
+ log_decays,
+ betas,
+ horizon=4,
+ )
+
+ assert full.horizon == reduced.horizon
+ assert torch.equal(full.future_read_counts, reduced.future_read_counts)
+ assert torch.equal(full.per_state_scores, reduced.per_state_scores)
+ assert torch.equal(full.scores, reduced.scores)
+
+
+def test_row_energy_api_rejects_negative_energy() -> None:
+ energies = torch.zeros((1, 1, 1, 2))
+ energies[..., 0] = -1
+ vectors = torch.ones((1, 1, 1, 2))
+ scalars = torch.zeros((1, 1, 1))
+
+ with pytest.raises(ValueError, match="non-negative"):
+ finite_horizon_row_read_risk_from_energies(
+ energies,
+ vectors,
+ vectors,
+ scalars,
+ scalars,
+ )
+
+
+def test_row_energy_api_rejects_shape_and_dtype_mismatch() -> None:
+ energies = torch.zeros((2, 1, 1, 3))
+ vectors = torch.ones((2, 1, 1, 3))
+ scalars = torch.zeros((2, 1, 1))
+
+ with pytest.raises(ValueError, match="query/key dimensions"):
+ finite_horizon_row_read_risk_from_energies(
+ energies,
+ vectors[..., :2],
+ vectors,
+ scalars,
+ scalars,
+ )
+ with pytest.raises(TypeError, match="floating-point"):
+ finite_horizon_row_read_risk_from_energies(
+ energies.to(torch.int64),
+ vectors,
+ vectors,
+ scalars,
+ scalars,
+ )
+
+
+@pytest.mark.parametrize("horizon", [0, -1, True])
+def test_invalid_horizon_is_rejected(horizon: int) -> None:
+ errors = torch.zeros((1, 1, 1, 2, 2))
+ vectors = torch.ones((1, 1, 1, 2))
+ scalars = torch.zeros((1, 1, 1))
+ with pytest.raises(ValueError, match="positive integer"):
+ finite_horizon_row_read_risk(
+ errors,
+ vectors,
+ vectors,
+ scalars,
+ scalars,
+ horizon=horizon,
+ )
diff --git a/tests/test_horizon_calibration.py b/tests/test_horizon_calibration.py
new file mode 100644
index 0000000..1010523
--- /dev/null
+++ b/tests/test_horizon_calibration.py
@@ -0,0 +1,309 @@
+from __future__ import annotations
+
+from collections.abc import Callable
+
+import pytest
+import torch
+
+from recurquant.horizon_calibration import (
+ GDNHorizonCalibrationRecorder,
+ TaskMacroHorizonAccumulator,
+ row_quantization_error_energies,
+ score_gdn_calibration_trace,
+)
+from recurquant.quantization import QuantizationSpec, quantize_dequantize
+
+
+class Qwen3_5GatedDeltaNet(torch.nn.Module):
+ def __init__(self, layer_idx: int) -> None:
+ super().__init__()
+ self.layer_idx = layer_idx
+ self.calls = 0
+
+ def recurrent_kernel(
+ query: torch.Tensor,
+ key: torch.Tensor,
+ value: torch.Tensor,
+ g: torch.Tensor,
+ beta: torch.Tensor,
+ initial_state: torch.Tensor,
+ output_final_state: bool,
+ use_qk_l2norm_in_kernel: bool,
+ ) -> tuple[torch.Tensor, torch.Tensor | None]:
+ del key, g, beta, use_qk_l2norm_in_kernel
+ self.calls += 1
+ output = value.clone()
+ final = initial_state + 1 if output_final_state else None
+ return output, final
+
+ self.recurrent_gated_delta_rule: Callable[..., object] = recurrent_kernel
+
+
+class FakeModel(torch.nn.Module):
+ def __init__(self, layers: int = 2) -> None:
+ super().__init__()
+ self.layers = torch.nn.ModuleList(
+ [Qwen3_5GatedDeltaNet(layer_idx=index) for index in range(layers)]
+ )
+
+
+def _inputs(
+ *,
+ batch: int = 1,
+ sequence: int = 1,
+ heads: int = 2,
+ key_dim: int = 4,
+ value_dim: int = 4,
+) -> tuple[torch.Tensor, ...]:
+ generator = torch.Generator().manual_seed(2339)
+ query = torch.randn((batch, sequence, heads, key_dim), generator=generator)
+ key = torch.randn((batch, sequence, heads, key_dim), generator=generator)
+ value = torch.randn((batch, sequence, heads, value_dim), generator=generator)
+ log_decay = -torch.rand((batch, sequence, heads), generator=generator) * 0.2
+ beta = torch.rand((batch, sequence, heads), generator=generator)
+ state = torch.randn((batch, heads, key_dim, value_dim), generator=generator) * 0.3
+ return query, key, value, log_decay, beta, state
+
+
+def _call(
+ module: Qwen3_5GatedDeltaNet,
+ inputs: tuple[torch.Tensor, ...],
+ *,
+ normalized: bool = True,
+) -> object:
+ query, key, value, log_decay, beta, state = inputs
+ return module.recurrent_gated_delta_rule(
+ query,
+ key,
+ value,
+ g=log_decay,
+ beta=beta,
+ initial_state=state,
+ output_final_state=True,
+ use_qk_l2norm_in_kernel=normalized,
+ )
+
+
+def _spec(bits: int) -> QuantizationSpec:
+ return QuantizationSpec(
+ bits=bits,
+ group_size=4,
+ flatten_last_dims=1,
+ )
+
+
+def test_recorder_is_non_mutating_and_restores_selected_hook() -> None:
+ model = FakeModel()
+ selected = model.layers[1]
+ untouched = model.layers[0]
+ original_selected = selected.recurrent_gated_delta_rule
+ original_untouched = untouched.recurrent_gated_delta_rule
+ inputs = _inputs()
+ snapshots = tuple(tensor.clone() for tensor in inputs)
+
+ recorder = GDNHorizonCalibrationRecorder(
+ model,
+ layer_indices=[1],
+ max_tokens_per_layer=3,
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+ with recorder:
+ assert selected.recurrent_gated_delta_rule is not original_selected
+ assert untouched.recurrent_gated_delta_rule is original_untouched
+ output, final_state = _call(selected, inputs)
+
+ assert selected.recurrent_gated_delta_rule is original_selected
+ assert untouched.recurrent_gated_delta_rule is original_untouched
+ assert selected.calls == 1
+ assert output.shape == inputs[0].shape
+ assert torch.equal(final_state, inputs[-1] + 1)
+ for value, snapshot in zip(inputs, snapshots, strict=True):
+ assert torch.equal(value, snapshot)
+
+
+def test_context_restores_hook_after_exception() -> None:
+ model = FakeModel(layers=1)
+ module = model.layers[0]
+ original = module.recurrent_gated_delta_rule
+ recorder = GDNHorizonCalibrationRecorder(
+ model,
+ layer_indices=[0],
+ max_tokens_per_layer=1,
+ )
+
+ with pytest.raises(RuntimeError, match="stop"), recorder:
+ raise RuntimeError("stop")
+
+ assert module.recurrent_gated_delta_rule is original
+
+
+def test_recorder_captures_normalized_compact_trace_and_exact_row_energies() -> None:
+ model = FakeModel(layers=1)
+ module = model.layers[0]
+ inputs = _inputs(value_dim=5)
+ recorder = GDNHorizonCalibrationRecorder(
+ model,
+ layer_indices=[0],
+ max_tokens_per_layer=2,
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+
+ with recorder:
+ _call(module, inputs)
+ _call(module, inputs)
+ _call(module, inputs)
+
+ assert recorder.captured_tokens == {0: 2}
+ assert recorder.dropped_calls == {0: 1}
+ with pytest.raises(RuntimeError, match="trace is incomplete"):
+ recorder.drain_traces()
+ traces = recorder.drain_traces(require_complete=False)
+ trace = traces[0]
+ query, key, _, log_decay, beta, state = inputs
+ expected_query = query[:, 0].to(torch.float32)
+ expected_query *= torch.rsqrt(expected_query.square().sum(dim=-1, keepdim=True) + 1e-6)
+ expected_key = key[:, 0].to(torch.float32)
+ expected_key *= torch.rsqrt(expected_key.square().sum(dim=-1, keepdim=True) + 1e-6)
+ expected_int4 = row_quantization_error_energies(state, _spec(4))
+ expected_int8 = row_quantization_error_energies(state, _spec(8))
+
+ assert trace.tokens == 2
+ assert trace.dropped_calls == 1
+ assert not trace.complete
+ assert trace.queries.shape == (2, 1, 2, 4)
+ assert trace.int4_row_error_energies.shape == (2, 1, 2, 4)
+ assert trace.int8_row_error_energies.shape == (2, 1, 2, 4)
+ assert trace.log_decays.shape == (2, 1, 2)
+ assert trace.betas.shape == (2, 1, 2)
+ assert all(
+ tensor.dtype == torch.float32 and tensor.device.type == "cpu"
+ for tensor in (
+ trace.queries,
+ trace.keys,
+ trace.log_decays,
+ trace.betas,
+ trace.int4_row_error_energies,
+ trace.int8_row_error_energies,
+ )
+ )
+ assert torch.allclose(trace.queries[0], expected_query)
+ assert torch.allclose(trace.keys[0], expected_key)
+ assert torch.equal(trace.log_decays[0], log_decay[:, 0])
+ assert torch.equal(trace.betas[0], beta[:, 0])
+ assert torch.equal(trace.int4_row_error_energies[0], expected_int4)
+ assert torch.equal(trace.int8_row_error_energies[0], expected_int8)
+ assert recorder.captured_tokens == {0: 0}
+ assert recorder.dropped_calls == {0: 0}
+
+ with pytest.raises(ValueError, match="incomplete calibration trace"):
+ score_gdn_calibration_trace(trace)
+
+
+@pytest.mark.parametrize("bits", [4, 8])
+def test_row_energy_uses_fp32_source_and_matches_direct_qdq(bits: int) -> None:
+ state = torch.tensor(
+ [[[[0.03125, -0.1171875, 0.203125, 0.4453125, -0.6875]]]],
+ dtype=torch.bfloat16,
+ )
+ spec = _spec(bits)
+ source = state.to(torch.float32)
+ qdq = quantize_dequantize(source, spec).tensor.to(torch.float32)
+ expected = (qdq - source).square().sum(dim=-1)
+
+ actual = row_quantization_error_energies(state, spec)
+
+ assert actual.dtype == torch.float32
+ assert torch.equal(actual, expected)
+
+
+def test_capture_validation_rejects_shape_dtype_device_and_kernel_mode() -> None:
+ model = FakeModel(layers=1)
+ module = model.layers[0]
+ recorder = GDNHorizonCalibrationRecorder(
+ model,
+ layer_indices=[0],
+ max_tokens_per_layer=2,
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+ good = _inputs()
+
+ with recorder:
+ with pytest.raises(ValueError, match="single-token"):
+ _call(module, _inputs(sequence=2))
+
+ invalid_dtype = list(good)
+ invalid_dtype[0] = invalid_dtype[0].to(torch.int64)
+ with pytest.raises(TypeError, match="floating-point"):
+ _call(module, tuple(invalid_dtype))
+
+ lower_precision_state = list(good)
+ lower_precision_state[-1] = lower_precision_state[-1].to(torch.bfloat16)
+ with pytest.raises(TypeError, match="initial_state must use torch.float32"):
+ _call(module, tuple(lower_precision_state))
+
+ mixed_device = list(good)
+ mixed_device[-1] = torch.empty(good[-1].shape, device="meta")
+ with pytest.raises(ValueError, match="same device"):
+ _call(module, tuple(mixed_device))
+
+ with pytest.raises(ValueError, match="l2norm"):
+ _call(module, good, normalized=False)
+
+
+def test_recorder_requires_existing_bounded_layers_and_row_specs() -> None:
+ model = FakeModel(layers=1)
+ with pytest.raises(ValueError, match="at least one layer"):
+ GDNHorizonCalibrationRecorder(
+ model,
+ layer_indices=[],
+ max_tokens_per_layer=1,
+ )
+ with (
+ pytest.raises(ValueError, match="selected GDN layers"),
+ GDNHorizonCalibrationRecorder(
+ model,
+ layer_indices=[7],
+ max_tokens_per_layer=1,
+ ),
+ ):
+ pass
+ with pytest.raises(ValueError, match="flatten_last_dims=1"):
+ GDNHorizonCalibrationRecorder(
+ model,
+ layer_indices=[0],
+ max_tokens_per_layer=1,
+ int4_spec=QuantizationSpec(bits=4, flatten_last_dims=2),
+ )
+
+
+def test_task_macro_accumulator_scores_then_discards_token_traces() -> None:
+ model = FakeModel(layers=1)
+ module = model.layers[0]
+ recorder = GDNHorizonCalibrationRecorder(
+ model,
+ layer_indices=[0],
+ max_tokens_per_layer=3,
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ )
+ with recorder:
+ for _ in range(3):
+ _call(module, _inputs())
+ traces = recorder.drain_traces()
+ expected = score_gdn_calibration_trace(traces[0], horizon=2)
+ accumulator = TaskMacroHorizonAccumulator(horizon=2)
+
+ accumulator.add_task(traces)
+ accumulator.add_task(traces)
+ with pytest.raises(ValueError, match="layer set changed"):
+ accumulator.add_task({1: traces[0]})
+ summary = accumulator.summary(0)
+
+ assert summary.tasks == 2
+ assert summary.horizon == 2
+ assert torch.allclose(summary.int4_scores, expected.int4.scores.to(torch.float64))
+ assert torch.allclose(summary.int8_scores, expected.int8.scores.to(torch.float64))
+ assert recorder.captured_tokens == {0: 0}
diff --git a/tests/test_intervention.py b/tests/test_intervention.py
new file mode 100644
index 0000000..b6be59f
--- /dev/null
+++ b/tests/test_intervention.py
@@ -0,0 +1,203 @@
+from __future__ import annotations
+
+import math
+
+import pytest
+import torch
+from transformers import Qwen3_5ForCausalLM
+
+import recurquant.intervention as intervention_module
+from recurquant.intervention import (
+ evaluate_physical_row_promotions,
+ target_nll_values,
+)
+from recurquant.row_policy import RowLocation
+from tests.test_transformers_cache import tiny_config
+
+
+def _tiny_model(layer_types: list[str] | None = None) -> Qwen3_5ForCausalLM:
+ torch.manual_seed(211)
+ return Qwen3_5ForCausalLM._from_config(
+ tiny_config(layer_types),
+ attn_implementation="eager",
+ ).eval()
+
+
+def test_physical_row_promotions_use_fixed_budget_and_repeated_cache_updates() -> None:
+ model = _tiny_model()
+ prompt = torch.tensor([[1, 2, 3]])
+ continuation = torch.tensor([[4, 5]])
+ candidates = (RowLocation(0, 1, 7), RowLocation(0, 0, 0))
+
+ result = evaluate_physical_row_promotions(
+ model,
+ prompt_ids=prompt,
+ continuation_ids=continuation,
+ candidate_rows=candidates,
+ )
+
+ # 16 rows, each with a four-byte INT4 payload and two-byte scale, plus
+ # a two-byte packed mask. One promoted eight-element row adds four bytes.
+ assert result.baseline_plan_bytes == 98
+ assert result.intervention_plan_bytes == 102
+ assert result.promotion_increment_bytes == 4
+ assert result.baseline.resident_bytes == 98
+ assert result.baseline.high_precision_groups == 0
+ assert result.baseline.token_count == 2
+ assert result.baseline.cache_update_count == 2
+ assert tuple(measurement.location for measurement in result.measurements) == (
+ RowLocation(0, 0, 0),
+ RowLocation(0, 1, 7),
+ )
+ for measurement in result.measurements:
+ assert measurement.run.resident_bytes == 102
+ assert measurement.run.high_precision_groups == 1
+ assert measurement.run.cache_update_count == 2
+ assert math.isfinite(measurement.run.mean_metric)
+ assert measurement.metric_delta == pytest.approx(
+ measurement.run.mean_metric - result.baseline.mean_metric
+ )
+ assert measurement.improvement == pytest.approx(-measurement.metric_delta)
+ assert sorted(result.ranked_measurements(), key=lambda item: -item.improvement) == list(
+ result.ranked_measurements()
+ )
+
+
+def test_background_intervention_and_custom_metric_are_deterministic() -> None:
+ model = _tiny_model()
+ prompt = torch.tensor([[9, 10]])
+ continuation = torch.tensor([[11]])
+
+ def target_log_probability(logits: torch.Tensor, targets: torch.Tensor) -> torch.Tensor:
+ return -target_nll_values(logits, targets)
+
+ arguments = {
+ "prompt_ids": prompt,
+ "continuation_ids": continuation,
+ "candidate_rows": (RowLocation(0, 0, 1),),
+ "background_rows": (RowLocation(0, 0, 0),),
+ "metric": target_log_probability,
+ "metric_name": "target_log_probability",
+ "lower_is_better": False,
+ }
+ first = evaluate_physical_row_promotions(model, **arguments)
+ second = evaluate_physical_row_promotions(model, **arguments)
+
+ assert first == second
+ assert first.baseline.high_precision_groups == 1
+ assert first.measurements[0].run.high_precision_groups == 2
+ assert first.baseline_plan_bytes == 102
+ assert first.intervention_plan_bytes == 106
+ assert first.measurements[0].improvement == pytest.approx(first.measurements[0].metric_delta)
+
+
+def test_cache_update_count_covers_every_recurrent_layer_and_forward() -> None:
+ model = _tiny_model(
+ ["linear_attention", "linear_attention", "full_attention"]
+ )
+
+ result = evaluate_physical_row_promotions(
+ model,
+ prompt_ids=torch.tensor([[1, 2]]),
+ continuation_ids=torch.tensor([[3, 4, 5]]),
+ candidate_rows=(RowLocation(0, 0, 0),),
+ )
+
+ # One prompt forward plus two continuation transitions, each updating one
+ # recurrent state in both linear-attention layers.
+ assert result.baseline.cache_update_count == 6
+ assert result.measurements[0].run.cache_update_count == 6
+
+
+def test_intervention_rejects_unbounded_invalid_or_inexact_candidates() -> None:
+ model = _tiny_model()
+ prompt = torch.tensor([[1, 2]])
+ continuation = torch.tensor([[3]])
+ location = RowLocation(0, 0, 0)
+
+ common = {
+ "model": model,
+ "prompt_ids": prompt,
+ "continuation_ids": continuation,
+ }
+ with pytest.raises(ValueError, match="must not contain duplicates"):
+ evaluate_physical_row_promotions(
+ **common,
+ candidate_rows=(location, location),
+ )
+ with pytest.raises(ValueError, match="must not overlap"):
+ evaluate_physical_row_promotions(
+ **common,
+ candidate_rows=(location,),
+ background_rows=(location,),
+ )
+ with pytest.raises(ValueError, match="exceeding max_candidates"):
+ evaluate_physical_row_promotions(
+ **common,
+ candidate_rows=(location, RowLocation(0, 0, 1)),
+ max_candidates=1,
+ )
+ with pytest.raises(ValueError, match="out-of-range"):
+ evaluate_physical_row_promotions(
+ **common,
+ candidate_rows=(RowLocation(0, 2, 0),),
+ )
+ with pytest.raises(ValueError, match="must exactly encode"):
+ evaluate_physical_row_promotions(
+ **common,
+ candidate_rows=(location,),
+ intervention_resident_bytes=101,
+ )
+
+
+def test_intervention_validates_metric_output_per_target() -> None:
+ model = _tiny_model()
+
+ def scalar_metric(logits: torch.Tensor, targets: torch.Tensor) -> torch.Tensor:
+ del targets
+ return logits.mean()
+
+ with pytest.raises(ValueError, match="one value per target"):
+ evaluate_physical_row_promotions(
+ model,
+ prompt_ids=torch.tensor([[1, 2]]),
+ continuation_ids=torch.tensor([[3]]),
+ candidate_rows=(RowLocation(0, 0, 0),),
+ metric=scalar_metric,
+ )
+
+
+def test_intervention_rejects_an_incomplete_cache_update_trace(
+ monkeypatch: pytest.MonkeyPatch,
+) -> None:
+ original_factory = intervention_module.create_qwen35_exact_budget_cache
+
+ class DropFirstEvidence(list[object]):
+ def __init__(self) -> None:
+ super().__init__()
+ self._dropped = False
+
+ def append(self, value: object) -> None:
+ if not self._dropped:
+ self._dropped = True
+ return
+ super().append(value)
+
+ def create_cache_with_incomplete_evidence(*args: object, **kwargs: object) -> object:
+ cache = original_factory(*args, **kwargs) # type: ignore[arg-type]
+ cache.update_evidence = DropFirstEvidence() # type: ignore[assignment]
+ return cache
+
+ monkeypatch.setattr(
+ intervention_module,
+ "create_qwen35_exact_budget_cache",
+ create_cache_with_incomplete_evidence,
+ )
+
+ with pytest.raises(RuntimeError, match="update trace did not cover"):
+ evaluate_physical_row_promotions(
+ _tiny_model(),
+ prompt_ids=torch.tensor([[1, 2]]),
+ continuation_ids=torch.tensor([[3, 4]]),
+ candidate_rows=(RowLocation(0, 0, 0),),
+ )
diff --git a/tests/test_mixed_packed_cache.py b/tests/test_mixed_packed_cache.py
new file mode 100644
index 0000000..0508aac
--- /dev/null
+++ b/tests/test_mixed_packed_cache.py
@@ -0,0 +1,274 @@
+from __future__ import annotations
+
+import math
+
+import pytest
+import torch
+from transformers import Qwen3_5ForCausalLM
+
+from recurquant.packed_cache import (
+ MixedPackedLinearAttentionLayer,
+ MixedPackedRecurrentStateCache,
+)
+from recurquant.quantization import QuantizationSpec
+from recurquant.qwen35 import create_qwen35_exact_budget_cache
+from recurquant.row_policy import ExactBudgetRowPlan, select_rows_exact_budget
+from recurquant.transformers_cache import RecurrentStateQDQCache
+from tests.test_transformers_cache import tiny_config
+
+
+def _target_for_promotions(
+ scores: dict[int, torch.Tensor],
+ *,
+ promotions: int,
+ group_size: int = 8,
+ scale_bits: int = 16,
+) -> int:
+ total_groups = sum(score.numel() for score in scores.values())
+ low_group_bytes = math.ceil(4 * group_size / 8) + scale_bits // 8
+ increment = math.ceil(8 * group_size / 8) - math.ceil(4 * group_size / 8)
+ return total_groups * low_group_bytes + math.ceil(total_groups / 8) + (promotions * increment)
+
+
+def _tiny_plan(
+ *,
+ layer_indices: tuple[int, ...] = (0,),
+ promotions: int = 5,
+ group_size: int = 8,
+ heads: int = 2,
+ rows: int = 8,
+) -> ExactBudgetRowPlan:
+ scores = {
+ layer_index: torch.arange(heads * rows, dtype=torch.float32).reshape(heads, rows)
+ + offset * 100
+ for offset, layer_index in enumerate(layer_indices)
+ }
+ return select_rows_exact_budget(
+ scores,
+ target_resident_bytes=_target_for_promotions(
+ scores,
+ promotions=promotions,
+ group_size=group_size,
+ ),
+ group_size=group_size,
+ )
+
+
+def _tiny_model(layer_types: list[str] | None = None) -> Qwen3_5ForCausalLM:
+ return Qwen3_5ForCausalLM._from_config(
+ tiny_config(layer_types),
+ attn_implementation="eager",
+ ).eval()
+
+
+def test_exact_budget_factory_runs_prefill_decode_and_reports_physical_bytes() -> None:
+ torch.manual_seed(131)
+ model = _tiny_model()
+ plan = _tiny_plan(promotions=5)
+ cache = create_qwen35_exact_budget_cache(
+ model,
+ plan=plan,
+ record_evidence=True,
+ )
+ prompt = torch.randint(0, model.config.vocab_size, (1, 6))
+ next_token = torch.randint(0, model.config.vocab_size, (1, 1))
+
+ with torch.inference_mode():
+ model(prompt, past_key_values=cache, use_cache=True)
+ output = model(next_token, past_key_values=cache, use_cache=True)
+
+ assert output.logits.shape == (1, 1, model.config.vocab_size)
+ assert isinstance(cache, MixedPackedRecurrentStateCache)
+ layer = cache.layers[0]
+ assert isinstance(layer, MixedPackedLinearAttentionLayer)
+ assert layer.recurrent_states[0].shape == (1, 2, 8, 8)
+ assert cache.storage_summary() == {
+ "payload_bytes": 84,
+ "scale_bytes": 32,
+ "mask_bytes": 2,
+ "resident_bytes": 118,
+ "high_precision_groups": 5,
+ "full_precision_equivalent_bytes": 512,
+ "largest_materialized_state_bytes": 512,
+ "resident_compression_ratio": 512 / 118,
+ "physical_reduction_realized": True,
+ }
+ assert len(cache.update_evidence) == 2
+ assert cache.update_evidence[-1].high_precision_groups == 5
+ assert cache.update_evidence[-1].resident_bytes == 118
+
+
+def test_all_int4_row_plan_matches_qdq_cache_state_and_logits_exactly() -> None:
+ torch.manual_seed(137)
+ model = _tiny_model()
+ config = model.config
+ plan = _tiny_plan(promotions=0)
+ qdq_cache = RecurrentStateQDQCache(
+ config,
+ spec=QuantizationSpec(bits=4, group_size=8),
+ )
+ mixed_cache = create_qwen35_exact_budget_cache(model, plan=plan)
+ prompt = torch.randint(0, config.vocab_size, (1, 6))
+ continuation = torch.randint(0, config.vocab_size, (1, 2))
+
+ with torch.inference_mode():
+ model(prompt, past_key_values=qdq_cache, use_cache=True)
+ qdq_output = model(continuation, past_key_values=qdq_cache, use_cache=True)
+ model(prompt, past_key_values=mixed_cache, use_cache=True)
+ mixed_output = model(continuation, past_key_values=mixed_cache, use_cache=True)
+
+ assert torch.equal(mixed_output.logits, qdq_output.logits)
+ assert torch.equal(
+ mixed_cache.layers[0].recurrent_states[0],
+ qdq_cache.layers[0].recurrent_states[0],
+ )
+
+
+def test_batch_independent_policy_repeats_exactly_for_each_batch_item() -> None:
+ plan = _tiny_plan(promotions=7)
+ cache = create_qwen35_exact_budget_cache(tiny_config(), plan=plan)
+ state = torch.randn((2, 2, 8, 8), generator=torch.Generator().manual_seed(139))
+
+ cache.update_recurrent_state(state, layer_idx=0)
+
+ layer = cache.layers[0]
+ assert isinstance(layer, MixedPackedLinearAttentionLayer)
+ packed = layer.packed_states[0]
+ assert packed is not None
+ unpacked = packed.high_precision_mask().reshape(2, 16)
+ assert torch.equal(unpacked[0], unpacked[1])
+ assert unpacked[0].sum().item() == 7
+ assert cache.storage_summary()["resident_bytes"] == 2 * plan.resident_bytes
+ assert cache.storage_summary()["high_precision_groups"] == 14
+
+
+def test_exact_budget_cache_supports_beam_generation_and_lossless_reorder(
+ monkeypatch: pytest.MonkeyPatch,
+) -> None:
+ torch.manual_seed(149)
+ model = _tiny_model()
+ plan = _tiny_plan(promotions=5)
+ cache = create_qwen35_exact_budget_cache(model, plan=plan)
+ prompt = torch.tensor([[1, 2, 3, 4]])
+ reorder_indices: list[torch.Tensor] = []
+ original_reorder = MixedPackedLinearAttentionLayer.reorder_cache
+
+ def record_reorder(
+ layer: MixedPackedLinearAttentionLayer,
+ beam_idx: torch.LongTensor,
+ ) -> None:
+ reorder_indices.append(beam_idx.detach().cpu().clone())
+ original_reorder(layer, beam_idx)
+
+ monkeypatch.setattr(MixedPackedLinearAttentionLayer, "reorder_cache", record_reorder)
+ with torch.inference_mode():
+ generated = model.generate(
+ prompt,
+ past_key_values=cache,
+ use_cache=True,
+ max_new_tokens=3,
+ do_sample=False,
+ num_beams=3,
+ pad_token_id=0,
+ )
+
+ assert generated.shape == (1, 7)
+ assert reorder_indices
+ assert all(indices.shape == (3,) for indices in reorder_indices)
+ assert cache.storage_summary()["resident_bytes"] == 3 * plan.resident_bytes
+ assert cache.storage_summary()["high_precision_groups"] == 15
+
+
+def test_factory_rejects_missing_and_extra_plan_layers() -> None:
+ missing_plan = _tiny_plan(layer_indices=(0,), promotions=0)
+ with pytest.raises(ValueError, match=r"missing=\[1\].*extra=\[\]"):
+ create_qwen35_exact_budget_cache(
+ tiny_config(["linear_attention", "linear_attention", "full_attention"]),
+ plan=missing_plan,
+ )
+
+ extra_plan = _tiny_plan(layer_indices=(0, 1), promotions=0)
+ with pytest.raises(ValueError, match=r"missing=\[\].*extra=\[1\]"):
+ create_qwen35_exact_budget_cache(tiny_config(), plan=extra_plan)
+
+
+def test_factory_rejects_incompatible_plan_and_runtime_geometry() -> None:
+ incompatible_scores = {0: torch.ones((1, 16))}
+ incompatible_shape = select_rows_exact_budget(
+ incompatible_scores,
+ target_resident_bytes=_target_for_promotions(
+ incompatible_scores,
+ promotions=0,
+ ),
+ group_size=8,
+ )
+ with pytest.raises(ValueError, match="score geometry"):
+ create_qwen35_exact_budget_cache(tiny_config(), plan=incompatible_shape)
+
+ wrong_group_size = _tiny_plan(promotions=0, group_size=4)
+ with pytest.raises(ValueError, match="linear_value_head_dim"):
+ create_qwen35_exact_budget_cache(tiny_config(), plan=wrong_group_size)
+
+ cache = create_qwen35_exact_budget_cache(tiny_config(), plan=_tiny_plan())
+ with pytest.raises(ValueError, match=r"\[batch, 2, 8, 8\]"):
+ cache.update_recurrent_state(torch.ones((1, 2, 4, 16)), layer_idx=0)
+
+
+def test_factory_rejects_global_mask_budget_that_grows_when_split_by_layer() -> None:
+ config = tiny_config(["linear_attention", "linear_attention"])
+ config.linear_num_value_heads = 1
+ config.linear_key_head_dim = 4
+ config.linear_value_head_dim = 8
+ scores = {0: torch.ones((1, 4)), 1: torch.ones((1, 4))}
+ plan = select_rows_exact_budget(
+ scores,
+ target_resident_bytes=_target_for_promotions(scores, promotions=0),
+ group_size=8,
+ )
+
+ with pytest.raises(ValueError, match="separate per-layer masks"):
+ create_qwen35_exact_budget_cache(config, plan=plan)
+
+
+def test_qwen_eighteen_recurrent_layer_layout_realizes_exact_target() -> None:
+ layer_types = [
+ layer_type
+ for _ in range(6)
+ for layer_type in (
+ "linear_attention",
+ "linear_attention",
+ "linear_attention",
+ "full_attention",
+ )
+ ]
+ linear_indices = tuple(
+ index for index, layer_type in enumerate(layer_types) if layer_type == "linear_attention"
+ )
+ config = tiny_config(layer_types)
+ config.linear_num_value_heads = 16
+ config.linear_key_head_dim = 128
+ config.linear_value_head_dim = 128
+ scores = {
+ layer_index: torch.arange(16 * 128, dtype=torch.float32).reshape(16, 128) + order * 10_000
+ for order, layer_index in enumerate(linear_indices)
+ }
+ plan = select_rows_exact_budget(scores, target_resident_bytes=2_564_096)
+ cache = create_qwen35_exact_budget_cache(config, plan=plan)
+ state = torch.zeros((1, 16, 128, 128))
+
+ for layer_index in linear_indices:
+ cache.update_recurrent_state(state, layer_idx=layer_index)
+
+ assert len(linear_indices) == 18
+ assert plan.promoted_group_count == 1_976
+ assert cache.storage_summary() == {
+ "payload_bytes": 2_485_760,
+ "scale_bytes": 73_728,
+ "mask_bytes": 4_608,
+ "resident_bytes": 2_564_096,
+ "high_precision_groups": 1_976,
+ "full_precision_equivalent_bytes": 18_874_368,
+ "largest_materialized_state_bytes": 1_048_576,
+ "resident_compression_ratio": 18_874_368 / 2_564_096,
+ "physical_reduction_realized": True,
+ }
diff --git a/tests/test_mixed_quantization.py b/tests/test_mixed_quantization.py
new file mode 100644
index 0000000..508a0e3
--- /dev/null
+++ b/tests/test_mixed_quantization.py
@@ -0,0 +1,292 @@
+from __future__ import annotations
+
+import math
+from dataclasses import replace
+
+import pytest
+import torch
+
+from recurquant.mixed_quantization import quantize_pack_mixed
+from recurquant.quantization import QuantizationSpec, quantize_dequantize
+
+
+def _per_group_qdq_reference(
+ tensor: torch.Tensor,
+ mask: torch.Tensor,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+) -> torch.Tensor:
+ flattened_size = math.prod(tensor.shape[-low_spec.flatten_last_dims :])
+ rows = tensor.detach().to(torch.float32).reshape(-1, flattened_size)
+ groups_per_row = math.ceil(flattened_size / low_spec.group_size)
+ padded_size = groups_per_row * low_spec.group_size
+ if padded_size != flattened_size:
+ rows = torch.nn.functional.pad(rows, (0, padded_size - flattened_size))
+ groups = rows.reshape(-1, low_spec.group_size)
+ flat_mask = mask.reshape(-1)
+
+ restored_groups = []
+ for index, group in enumerate(groups):
+ selected = high_spec if flat_mask[index] else low_spec
+ restored_groups.append(
+ quantize_dequantize(
+ group,
+ replace(selected, flatten_last_dims=1),
+ ).tensor
+ )
+ restored = torch.stack(restored_groups).reshape(-1, padded_size)[:, :flattened_size]
+ return restored.reshape(tensor.shape).to(tensor.dtype)
+
+
+def _specs(**kwargs: object) -> tuple[QuantizationSpec, QuantizationSpec]:
+ return QuantizationSpec(bits=4, **kwargs), QuantizationSpec(bits=8, **kwargs)
+
+
+def test_mixed_pack_matches_independent_per_group_qdq() -> None:
+ state = torch.linspace(-2.7, 3.1, 60, dtype=torch.float32).reshape(2, 2, 3, 5)
+ low_spec, high_spec = _specs(group_size=4)
+ mask = torch.tensor(
+ [
+ [False, True, False, True],
+ [True, False, False, True],
+ [False, False, True, True],
+ [True, True, False, False],
+ ]
+ )
+
+ packed = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ reference = _per_group_qdq_reference(state, mask, low_spec, high_spec)
+
+ assert torch.equal(packed.dequantize(), reference)
+ assert torch.equal(packed.high_precision_mask(), mask)
+ assert packed.low_payload.dtype == torch.uint8
+ assert packed.high_payload.dtype == torch.int8
+ assert packed.scales.dtype == torch.float16
+ assert packed.low_precision_groups == 8
+ assert packed.high_precision_groups == 8
+
+
+def test_qwen35_row_layout_hits_v02_exact_byte_target() -> None:
+ total_groups = 18 * 16 * 128
+ promoted_groups = 1_976
+ state = torch.zeros((1, 18 * 16, 128, 128), dtype=torch.float32)
+ mask = torch.zeros(total_groups, dtype=torch.bool)
+ mask[:promoted_groups] = True
+ low_spec, high_spec = _specs(group_size=128)
+
+ packed = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+
+ assert packed.total_groups == 36_864
+ assert packed.high_precision_groups == 1_976
+ assert packed.low_precision_groups == 34_888
+ assert packed.payload_bytes == 2_485_760
+ assert packed.scale_bytes == 73_728
+ assert packed.mask_bytes == 4_608
+ assert packed.storage_bytes == 2_564_096
+
+
+def test_odd_group_size_and_ninth_mask_bit_have_exact_storage() -> None:
+ state = torch.linspace(-1.3, 2.1, 25)
+ mask = torch.tensor([True, False, True, False, False, False, False, False, True])
+ low_spec, high_spec = _specs(group_size=3, flatten_last_dims=1)
+
+ packed = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ reference = _per_group_qdq_reference(state, mask, low_spec, high_spec)
+
+ assert packed.precision_mask.tolist() == [0b00000101, 0b00000001]
+ assert packed.low_payload.shape == (6, 2)
+ assert packed.high_payload.shape == (3, 3)
+ assert packed.payload_bytes == 21
+ assert packed.scale_bytes == 18
+ assert packed.mask_bytes == 2
+ assert packed.storage_bytes == 41
+ assert torch.equal(packed.dequantize(), reference)
+
+
+def test_stochastic_mixed_pack_is_seeded_and_deterministic() -> None:
+ state = torch.linspace(-1.0, 1.0, 77)
+ mask = torch.tensor([False, True, False, True, True, False, True])
+ low_spec, high_spec = _specs(
+ group_size=12,
+ flatten_last_dims=1,
+ rounding="stochastic",
+ seed=71,
+ )
+
+ first = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ second = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+
+ assert torch.equal(first.low_payload, second.low_payload)
+ assert torch.equal(first.high_payload, second.high_payload)
+ assert torch.equal(first.scales, second.scales)
+ assert torch.equal(first.dequantize(), second.dequantize())
+
+
+def test_batch_reorder_reuses_integer_codes_and_supports_duplicates() -> None:
+ generator = torch.Generator().manual_seed(103)
+ state = torch.randn((3, 2, 3, 5), generator=generator).to(torch.bfloat16)
+ low_spec, high_spec = _specs(group_size=4)
+ mask = (torch.arange(24) % 3 == 1).reshape(6, 4)
+ packed = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ before = packed.dequantize()
+ before_codes = packed._integer_groups().reshape(3, 8, 4)
+ beam_idx = torch.tensor([2, 2, 0], dtype=torch.long)
+
+ reordered = packed.reorder_batch(beam_idx)
+
+ assert torch.equal(reordered.dequantize(), before.index_select(0, beam_idx))
+ assert torch.equal(
+ reordered._integer_groups().reshape(3, 8, 4),
+ before_codes.index_select(0, beam_idx),
+ )
+ assert reordered.original_shape == state.shape
+
+
+@pytest.mark.parametrize("high_value", [False, True])
+def test_all_groups_can_use_one_payload_width(high_value: bool) -> None:
+ state = torch.linspace(-2.0, 2.0, 16)
+ mask = torch.full((2,), high_value, dtype=torch.bool)
+ low_spec, high_spec = _specs(group_size=8, flatten_last_dims=1)
+
+ packed = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+
+ assert packed.high_precision_groups == (2 if high_value else 0)
+ assert packed.low_precision_groups == (0 if high_value else 2)
+ assert torch.equal(
+ packed.dequantize(),
+ _per_group_qdq_reference(state, mask, low_spec, high_spec),
+ )
+
+
+@pytest.mark.parametrize(
+ ("low_spec", "high_spec", "message"),
+ [
+ (QuantizationSpec(bits=6), QuantizationSpec(bits=8), "low INT4"),
+ (QuantizationSpec(bits=4), QuantizationSpec(bits=6), "high INT8"),
+ (
+ QuantizationSpec(bits=4, group_size=8),
+ QuantizationSpec(bits=8, group_size=16),
+ "group_size",
+ ),
+ (
+ QuantizationSpec(bits=4, scale_bits=16),
+ QuantizationSpec(bits=8, scale_bits=32),
+ "scale_bits",
+ ),
+ (
+ QuantizationSpec(bits=4, seed=1),
+ QuantizationSpec(bits=8, seed=2),
+ "seed",
+ ),
+ ],
+)
+def test_invalid_mixed_specs_are_rejected(
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ message: str,
+) -> None:
+ with pytest.raises(ValueError, match=message):
+ quantize_pack_mixed(
+ torch.ones(128),
+ torch.zeros(1, dtype=torch.bool),
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+
+
+def test_invalid_masks_are_rejected() -> None:
+ state = torch.ones((2, 8))
+ low_spec, high_spec = _specs(group_size=4, flatten_last_dims=1)
+
+ with pytest.raises(TypeError, match="torch.bool"):
+ quantize_pack_mixed(
+ state,
+ torch.zeros((2, 2), dtype=torch.int8),
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ with pytest.raises(ValueError, match="must have shape"):
+ quantize_pack_mixed(
+ state,
+ torch.zeros((1, 4), dtype=torch.bool),
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+
+
+def test_invalid_reorder_indices_are_rejected() -> None:
+ low_spec, high_spec = _specs(group_size=4, flatten_last_dims=1)
+ packed = quantize_pack_mixed(
+ torch.ones((2, 8)),
+ torch.zeros((2, 2), dtype=torch.bool),
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+
+ with pytest.raises(TypeError, match="int32 or int64"):
+ packed.reorder_batch(torch.tensor([0.0, 1.0]))
+ with pytest.raises(IndexError, match="out-of-range"):
+ packed.reorder_batch(torch.tensor([2], dtype=torch.long))
+
+
+@pytest.mark.skipif(not torch.cuda.is_available(), reason="CUDA is unavailable")
+def test_to_cuda_preserves_storage_and_reorder_exactly() -> None:
+ state = torch.linspace(-2.0, 2.0, 48).reshape(3, 2, 8)
+ mask = (torch.arange(12) % 2 == 0).reshape(6, 2)
+ low_spec, high_spec = _specs(group_size=4, flatten_last_dims=1)
+ packed = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+
+ on_cuda = packed.to("cuda")
+ beam_idx = torch.tensor([2, 0, 2], dtype=torch.long, device="cuda")
+ reordered = on_cuda.reorder_batch(beam_idx)
+
+ assert on_cuda.low_payload.device.type == "cuda"
+ assert on_cuda.high_payload.device.type == "cuda"
+ assert on_cuda.scales.device.type == "cuda"
+ assert on_cuda.precision_mask.device.type == "cuda"
+ assert on_cuda.storage_bytes == packed.storage_bytes
+ assert torch.equal(on_cuda.dequantize().cpu(), packed.dequantize())
+ assert torch.equal(
+ reordered.dequantize().cpu(),
+ packed.dequantize().index_select(0, beam_idx.cpu()),
+ )
diff --git a/tests/test_model_fisher.py b/tests/test_model_fisher.py
new file mode 100644
index 0000000..eba05d3
--- /dev/null
+++ b/tests/test_model_fisher.py
@@ -0,0 +1,217 @@
+from __future__ import annotations
+
+import pytest
+import torch
+
+from recurquant.model_fisher import (
+ row_block_model_fisher_risk,
+ sample_model_pseudo_labels,
+)
+
+
+def _manual_endpoint_risk(
+ gradients: torch.Tensor,
+ errors: torch.Tensor,
+) -> torch.Tensor:
+ probes, batch_size, heads, key_dim, _ = gradients.shape
+ result = torch.zeros((heads, key_dim), dtype=gradients.dtype)
+ for probe in range(probes):
+ for batch in range(batch_size):
+ for head in range(heads):
+ for row in range(key_dim):
+ projection = torch.dot(
+ gradients[probe, batch, head, row],
+ errors[batch, head, row],
+ )
+ result[head, row] += 0.5 * projection.square()
+ return result / (probes * batch_size)
+
+
+def test_row_risk_matches_manual_probe_and_batch_average() -> None:
+ gradients = torch.tensor(
+ [
+ [
+ [[[1.0, 2.0], [-1.0, 0.5]]],
+ [[[0.0, 3.0], [2.0, -2.0]]],
+ ],
+ [
+ [[[2.0, -1.0], [0.25, 4.0]]],
+ [[[-3.0, 1.0], [1.5, 0.5]]],
+ ],
+ ],
+ dtype=torch.float64,
+ )
+ int4_errors = torch.tensor(
+ [
+ [[[0.4, -0.2], [0.5, 0.25]]],
+ [[[0.1, 0.3], [-0.2, 0.6]]],
+ ],
+ dtype=torch.float64,
+ )
+ int8_errors = torch.tensor(
+ [
+ [[[0.05, -0.1], [0.2, 0.1]]],
+ [[[0.15, 0.05], [-0.1, 0.2]]],
+ ],
+ dtype=torch.float64,
+ )
+
+ result = row_block_model_fisher_risk(gradients, int4_errors, int8_errors)
+ expected4 = _manual_endpoint_risk(gradients, int4_errors)
+ expected8 = _manual_endpoint_risk(gradients, int8_errors)
+
+ assert result.probes == 2
+ assert result.batch_size == 2
+ assert result.shape == torch.Size((1, 2))
+ assert torch.allclose(result.int4_risk, expected4)
+ assert torch.allclose(result.int8_risk, expected8)
+ assert torch.allclose(result.risk_difference, expected4 - expected8)
+
+
+def test_row_dot_is_squared_after_sum_and_negative_difference_is_preserved() -> None:
+ gradients = torch.tensor([[[[[1.0, 1.0]]]]])
+ # Within-row cancellation makes the INT4 projection exactly zero. A
+ # coordinate-diagonal approximation would incorrectly assign positive risk.
+ int4_errors = torch.tensor([[[[1.0, -1.0]]]])
+ int8_errors = torch.tensor([[[[1.0, 0.0]]]])
+
+ result = row_block_model_fisher_risk(gradients, int4_errors, int8_errors)
+
+ assert result.int4_risk.item() == 0.0
+ assert result.int8_risk.item() == pytest.approx(0.5)
+ assert result.risk_difference.item() == pytest.approx(-0.5)
+
+
+def test_positive_difference_means_int8_has_lower_endpoint_risk() -> None:
+ gradients = torch.tensor([[[[[1.0, 0.0]]]]])
+ int4_errors = torch.tensor([[[[2.0, 0.0]]]])
+ int8_errors = torch.tensor([[[[1.0, 0.0]]]])
+
+ result = row_block_model_fisher_risk(gradients, int4_errors, int8_errors)
+
+ assert result.int4_risk.item() == pytest.approx(2.0)
+ assert result.int8_risk.item() == pytest.approx(0.5)
+ assert result.risk_difference.item() == pytest.approx(1.5)
+
+
+def test_scoring_is_deterministic_detached_and_does_not_mutate_inputs() -> None:
+ generator = torch.Generator().manual_seed(2339)
+ gradients = torch.randn((3, 2, 2, 4, 5), generator=generator, requires_grad=True)
+ int4_errors = torch.randn((2, 2, 4, 5), generator=generator, requires_grad=True)
+ int8_errors = torch.randn((2, 2, 4, 5), generator=generator, requires_grad=True)
+ before = tuple(tensor.detach().clone() for tensor in (gradients, int4_errors, int8_errors))
+
+ first = row_block_model_fisher_risk(gradients, int4_errors, int8_errors)
+ second = row_block_model_fisher_risk(gradients, int4_errors, int8_errors)
+
+ assert torch.equal(first.int4_risk, second.int4_risk)
+ assert torch.equal(first.int8_risk, second.int8_risk)
+ assert torch.equal(first.risk_difference, second.risk_difference)
+ assert not first.int4_risk.requires_grad
+ assert not first.int8_risk.requires_grad
+ assert not first.risk_difference.requires_grad
+ assert all(tensor.grad is None for tensor in (gradients, int4_errors, int8_errors))
+ assert all(
+ torch.equal(current.detach(), original)
+ for current, original in zip(
+ (gradients, int4_errors, int8_errors),
+ before,
+ strict=True,
+ )
+ )
+
+
+def test_model_pseudo_label_sampling_is_explicit_and_reproducible() -> None:
+ logits = torch.tensor([[0.2, -0.4, 1.1], [1.3, 0.7, -0.2]])
+ first_generator = torch.Generator().manual_seed(72)
+ second_generator = torch.Generator().manual_seed(72)
+
+ first = sample_model_pseudo_labels(
+ logits,
+ probes=64,
+ generator=first_generator,
+ )
+ second = sample_model_pseudo_labels(
+ logits,
+ probes=64,
+ generator=second_generator,
+ )
+
+ assert first.shape == (64, 2)
+ assert first.dtype == torch.int64
+ assert torch.equal(first, second)
+ assert first.min().item() >= 0
+ assert first.max().item() < logits.shape[1]
+ assert not first.requires_grad
+
+
+def test_model_pseudo_label_sampling_uses_unmodified_softmax_distribution() -> None:
+ logits = torch.tensor([[-1000.0, 1000.0], [1000.0, -1000.0]])
+ labels = sample_model_pseudo_labels(
+ logits,
+ probes=16,
+ generator=torch.Generator().manual_seed(9),
+ )
+
+ assert torch.equal(labels[:, 0], torch.ones(16, dtype=torch.int64))
+ assert torch.equal(labels[:, 1], torch.zeros(16, dtype=torch.int64))
+
+
+def test_row_risk_rejects_invalid_shapes_dtypes_and_empty_dimensions() -> None:
+ gradients = torch.zeros((2, 1, 1, 2, 3))
+ errors = torch.zeros((1, 1, 2, 3))
+
+ with pytest.raises(ValueError, match="pseudo_label_score_gradients"):
+ row_block_model_fisher_risk(gradients[0], errors, errors)
+ with pytest.raises(ValueError, match="int4_errors and int8_errors"):
+ row_block_model_fisher_risk(gradients, errors[0], errors)
+ with pytest.raises(ValueError, match="gradient dimensions"):
+ row_block_model_fisher_risk(gradients[:, :, :, :, :2], errors, errors)
+ with pytest.raises(ValueError, match="same shape"):
+ row_block_model_fisher_risk(gradients, errors, errors[..., :2])
+ with pytest.raises(ValueError, match="non-empty"):
+ row_block_model_fisher_risk(gradients[:0], errors, errors)
+ with pytest.raises(TypeError, match="floating-point"):
+ row_block_model_fisher_risk(gradients.to(torch.int64), errors, errors)
+ with pytest.raises(TypeError, match="same dtype"):
+ row_block_model_fisher_risk(gradients, errors, errors.to(torch.float64))
+
+
+@pytest.mark.parametrize("bad_value", [float("nan"), float("inf")])
+def test_row_risk_rejects_nonfinite_inputs(bad_value: float) -> None:
+ gradients = torch.ones((1, 1, 1, 1, 2))
+ errors = torch.ones((1, 1, 1, 2))
+ gradients[0, 0, 0, 0, 0] = bad_value
+
+ with pytest.raises(ValueError, match="finite"):
+ row_block_model_fisher_risk(gradients, errors, errors)
+
+
+def test_row_risk_rejects_nonfinite_computation() -> None:
+ gradients = torch.full((1, 1, 1, 1, 2), 1e30)
+ errors = torch.full((1, 1, 1, 2), 1e30)
+
+ with pytest.raises(RuntimeError, match="became non-finite"):
+ row_block_model_fisher_risk(gradients, errors, errors)
+
+
+def test_pseudo_label_sampling_validation() -> None:
+ generator = torch.Generator().manual_seed(1)
+ logits = torch.ones((2, 3))
+
+ with pytest.raises(ValueError, match=r"\[batch, vocabulary\]"):
+ sample_model_pseudo_labels(logits[0], probes=2, generator=generator)
+ with pytest.raises(ValueError, match="at least one"):
+ sample_model_pseudo_labels(logits[:, :0], probes=2, generator=generator)
+ with pytest.raises(ValueError, match="positive integer"):
+ sample_model_pseudo_labels(logits, probes=0, generator=generator)
+ with pytest.raises(ValueError, match="positive integer"):
+ sample_model_pseudo_labels(logits, probes=True, generator=generator)
+ with pytest.raises(TypeError, match="torch.Generator"):
+ sample_model_pseudo_labels(logits, probes=2, generator=object()) # type: ignore[arg-type]
+ with pytest.raises(TypeError, match="floating-point"):
+ sample_model_pseudo_labels(logits.to(torch.int64), probes=2, generator=generator)
+ nonfinite = logits.clone()
+ nonfinite[0, 0] = torch.nan
+ with pytest.raises(ValueError, match="finite"):
+ sample_model_pseudo_labels(nonfinite, probes=2, generator=generator)
diff --git a/tests/test_pilot_evaluate_hrr.py b/tests/test_pilot_evaluate_hrr.py
new file mode 100644
index 0000000..127842e
--- /dev/null
+++ b/tests/test_pilot_evaluate_hrr.py
@@ -0,0 +1,716 @@
+from __future__ import annotations
+
+from copy import deepcopy
+
+import pytest
+import torch
+
+from scripts import pilot_evaluate_hrr as evaluator
+from scripts import pilot_hrr_rows, pilot_loss_sensitivity_rows
+from scripts import pilot_validate_storage_boundary as storage_validator
+
+
+def _quantizers() -> dict[str, object]:
+ common = {
+ "group_size": 128,
+ "scale_bits": 16,
+ "flatten_last_dims": 1,
+ "rounding": "nearest",
+ "seed": 2339,
+ "epsilon": 1e-12,
+ }
+ return {
+ "axis_contract": "one independent group per recurrent [head, key-row]",
+ "int4": {"bits": 4, **common},
+ "int8": {"bits": 8, **common},
+ }
+
+
+def _selector(kind: str) -> dict[str, object]:
+ manifest = {
+ "schema": "recurquant.mbpp-manifest.v1",
+ "dataset_id": "google-research-datasets/mbpp",
+ "config": "full",
+ "revision": "dataset-revision",
+ "phase": "calibration",
+ "source_split": "train",
+ "selection_namespace": "rq-v0.2",
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "row_count": 2,
+ "rows": [
+ {"task_id": 10, "sha256": "row-10"},
+ {"task_id": 20, "sha256": "row-20"},
+ ],
+ }
+ affected_field = (
+ "captured_decode_tokens" if kind == evaluator.HRR_ARTIFACT_KIND else "scored_transitions"
+ )
+ method: dict[str, object] = {}
+ if kind == evaluator.HRR_ARTIFACT_KIND:
+ method["normalization_epsilon"] = 1e-6
+ return {
+ "artifact_kind": kind,
+ "seed": 2339,
+ "model": {
+ "id": "model",
+ "revision": "model-revision",
+ "dtype": "torch.bfloat16",
+ "linear_attention_layers": [0, 2],
+ },
+ "dataset": {
+ "manifest": manifest,
+ "manifest_sha256": evaluator.sha256_bytes(evaluator.canonical_json_bytes(manifest)),
+ "tasks": [
+ {
+ "task_id": 20,
+ "prompt_tokens": 7,
+ "code_tokens": 4,
+ affected_field: 3,
+ },
+ {
+ "task_id": 10,
+ "prompt_tokens": 9,
+ "code_tokens": 3,
+ affected_field: 2,
+ },
+ ],
+ },
+ "method": method,
+ "quantizers": _quantizers(),
+ "byte_budget": {
+ "target_resident_bytes": 1000,
+ "group_size": 128,
+ "scale_bits": 16,
+ "precision_mask_bits_per_group": 1,
+ },
+ }
+
+
+@pytest.mark.parametrize(
+ "git_state",
+ (
+ pilot_hrr_rows.git_state,
+ pilot_loss_sensitivity_rows.git_state,
+ storage_validator._git_state,
+ ),
+)
+def test_artifact_generators_emit_evaluator_repository_contract(git_state) -> None:
+ repository = git_state()
+
+ assert {"commit", "worktree_clean", "status"} <= repository.keys()
+ assert repository["worktree_clean"] is (repository["status"] == [])
+
+
+def _frozen_selector(kind: str, *, commit: str = "frozen-commit") -> dict[str, object]:
+ selector = _selector(kind)
+ affected_field = (
+ "captured_decode_tokens" if kind == evaluator.HRR_ARTIFACT_KIND else "scored_transitions"
+ )
+ ordered_ids = list(range(100, 108))
+ tasks = [
+ {
+ "task_id": task_id,
+ "prompt_tokens": 10 + index,
+ "code_tokens": 4 + index,
+ affected_field: 3 + index,
+ }
+ for index, task_id in enumerate(ordered_ids)
+ ]
+ manifest = {
+ **selector["dataset"]["manifest"],
+ "row_count": 8,
+ "rows": [
+ {"task_id": task_id, "sha256": f"row-{task_id}"} for task_id in sorted(ordered_ids)
+ ],
+ }
+ selector["dataset"] = {
+ "manifest": manifest,
+ "manifest_sha256": evaluator.sha256_bytes(evaluator.canonical_json_bytes(manifest)),
+ "tasks": tasks,
+ }
+ selector["repository"] = {
+ "commit": commit,
+ "worktree_clean": True,
+ "status": [],
+ }
+ if kind == evaluator.HRR_ARTIFACT_KIND:
+ selector["method"]["horizon"] = 32
+ return selector
+
+
+def _passing_gate_inputs() -> dict[str, object]:
+ primary = evaluator.ADAPTIVE_TARGET_FISHER
+ adaptive_h1 = evaluator.ADAPTIVE_H1
+ aggregates = {
+ primary: {
+ "macro_delta_nll": 0.60,
+ "macro_top1_agreement": 0.900,
+ "macro_cvar95_kl": 0.20,
+ },
+ adaptive_h1: {
+ "macro_delta_nll": 0.90,
+ "macro_top1_agreement": 0.895,
+ "macro_cvar95_kl": 0.22,
+ },
+ "hrr_h1": {
+ "macro_delta_nll": 1.00,
+ "macro_top1_agreement": 0.905,
+ "macro_cvar95_kl": 0.15,
+ },
+ "row_mse": {
+ "macro_delta_nll": 1.20,
+ "macro_top1_agreement": 0.89,
+ "macro_cvar95_kl": 0.30,
+ },
+ "uniform_int4": {
+ "macro_delta_nll": 2.00,
+ "macro_top1_agreement": 0.80,
+ "macro_cvar95_kl": 0.50,
+ },
+ }
+ per_task = {
+ primary: [
+ {"task_id": 1, "delta_nll": 0.4},
+ {"task_id": 2, "delta_nll": 0.8},
+ ],
+ adaptive_h1: [
+ {"task_id": 1, "delta_nll": 0.8},
+ {"task_id": 2, "delta_nll": 1.0},
+ ],
+ "hrr_h1": [
+ {"task_id": 1, "delta_nll": 0.5},
+ {"task_id": 2, "delta_nll": 1.5},
+ ],
+ }
+ contrasts = {
+ adaptive_h1: {"confidence_interval": [0.05, 0.50]},
+ "hrr_h1": {"confidence_interval": [0.10, 0.70]},
+ }
+ storage = {
+ primary: {"resident_bytes": evaluator.TARGET_RESIDENT_BYTES},
+ adaptive_h1: {"resident_bytes": evaluator.TARGET_RESIDENT_BYTES},
+ "hrr_h1": {"resident_bytes": evaluator.TARGET_RESIDENT_BYTES},
+ "row_mse": {"resident_bytes": evaluator.TARGET_RESIDENT_BYTES},
+ "uniform_int4": {"resident_bytes": evaluator.TARGET_RESIDENT_BYTES - 1},
+ }
+ for index, name in enumerate(evaluator.FROZEN_STATIC_COMPARATORS, start=1):
+ aggregates.setdefault(
+ name,
+ {
+ "macro_delta_nll": 1.20 + index / 100,
+ "macro_top1_agreement": 0.89,
+ "macro_cvar95_kl": 0.30,
+ },
+ )
+ storage.setdefault(name, {"resident_bytes": evaluator.TARGET_RESIDENT_BYTES})
+ return {
+ "aggregates": aggregates,
+ "per_task": per_task,
+ "contrasts": contrasts,
+ "storage": storage,
+ "primary_name": primary,
+ }
+
+
+def _storage_boundary_evidence() -> dict[str, object]:
+ repository = {"commit": "frozen-commit", "worktree_clean": True, "status": []}
+ source_hashes = {"scripts/pilot_validate_storage_boundary.py": "abc123"}
+ return {
+ "artifact_kind": evaluator.STORAGE_BOUNDARY_ARTIFACT_KIND,
+ "model": {
+ "id": "model",
+ "revision": "model-revision",
+ "dtype": "torch.float32",
+ },
+ "derivative_gate": {
+ "passed": True,
+ "failures": [],
+ "thresholds": {
+ "model_dtype": "torch.float32",
+ "baseline_repeat_absolute_tolerance": 1e-7,
+ "derivative_informative_floor": 1e-8,
+ "near_zero_absolute_tolerance": 2e-7,
+ "minimum_informative_rows": 3,
+ "minimum_sign_agreement": 0.95,
+ "maximum_median_relative_error": 0.10,
+ "minimum_converged_row_fraction": 0.75,
+ },
+ "observed": {
+ "rows": 4,
+ "informative_rows": 4,
+ "maximum_baseline_repeat_absolute_error": 1e-8,
+ "sign_agreement": 1.0,
+ "median_relative_error": 0.05,
+ "converged_row_fraction": 1.0,
+ "near_zero_checks": 0,
+ "near_zero_checks_passed": 0,
+ },
+ },
+ "implementation": {
+ "source_hashes_start": source_hashes,
+ "source_hashes_end": source_hashes,
+ "unchanged_during_run": True,
+ },
+ "repository": {"start": repository, "end": repository},
+ }
+
+
+def test_scores_from_artifact_verifies_hash_and_preserves_float64() -> None:
+ arrays = {"0": [[1.0000000000000002, -2.5]]}
+ evidence = {
+ "scores": {
+ "candidate": {
+ "arrays": arrays,
+ "canonical_arrays_sha256": evaluator.sha256_bytes(
+ evaluator.canonical_json_bytes(arrays)
+ ),
+ }
+ }
+ }
+
+ scores = evaluator.scores_from_artifact(evidence, "candidate")
+
+ assert scores[0].dtype == torch.float64
+ assert scores[0][0, 0].item() == 1.0000000000000002
+
+ evidence["scores"]["candidate"]["arrays"]["0"][0][0] = 9.0
+ with pytest.raises(ValueError, match="array hash"):
+ evaluator.scores_from_artifact(evidence, "candidate")
+
+
+def test_compatible_selectors_compare_full_evidence_contract() -> None:
+ hrr = _selector(evaluator.HRR_ARTIFACT_KIND)
+ loss = _selector(evaluator.LOSS_ARTIFACT_KIND)
+
+ evaluator.validate_compatible_selector(hrr, loss)
+
+ incompatible = deepcopy(loss)
+ incompatible["quantizers"]["int4"]["epsilon"] = 1e-9
+ incompatible["quantizers"]["int8"]["epsilon"] = 1e-9
+ with pytest.raises(ValueError, match="quantizer contracts"):
+ evaluator.validate_compatible_selector(hrr, incompatible)
+
+
+@pytest.mark.parametrize(
+ ("mutation", "message"),
+ [
+ (lambda value: value["model"].update(dtype="torch.float32"), "dtype"),
+ (lambda value: value["model"].update(linear_attention_layers=[0, 3]), "layers"),
+ (
+ lambda value: value["dataset"]["tasks"][0].update(
+ prompt_tokens=8,
+ ),
+ "token manifests",
+ ),
+ ],
+)
+def test_compatible_selectors_reject_provenance_mismatch(mutation, message: str) -> None:
+ hrr = _selector(evaluator.HRR_ARTIFACT_KIND)
+ loss = _selector(evaluator.LOSS_ARTIFACT_KIND)
+ mutation(loss)
+
+ with pytest.raises(ValueError, match=message):
+ evaluator.validate_compatible_selector(hrr, loss)
+
+
+def test_selector_requires_explicit_quantizer_metadata() -> None:
+ selector = _selector(evaluator.HRR_ARTIFACT_KIND)
+ del selector["quantizers"]
+
+ with pytest.raises(ValueError, match="selector quantizers"):
+ evaluator.validate_selector_contract(selector)
+
+
+def test_calibration_prefix_verifies_authenticated_row_content() -> None:
+ selector = _selector(evaluator.HRR_ARTIFACT_KIND)
+ full_manifest = selector["dataset"]["manifest"]
+ actual_manifest = {
+ **{key: value for key, value in full_manifest.items() if key not in ("row_count", "rows")},
+ "row_count": 1,
+ "rows": [{"task_id": 20, "sha256": "row-20"}],
+ }
+
+ evaluator.validate_calibration_prefix(
+ selector,
+ actual_manifest=actual_manifest,
+ expected_task_ids=[20],
+ )
+
+ actual_manifest["rows"][0]["sha256"] = "tampered"
+ with pytest.raises(ValueError, match="content manifest"):
+ evaluator.validate_calibration_prefix(
+ selector,
+ actual_manifest=actual_manifest,
+ expected_task_ids=[20],
+ )
+
+
+def test_calibration_window_slices_disjoint_ranked_holdout() -> None:
+ selector = _selector(evaluator.HRR_ARTIFACT_KIND)
+ ranked_rows = tuple({"task_id": task_id} for task_id in (10, 20, 30, 40))
+
+ selected = evaluator.select_calibration_window(
+ ranked_rows,
+ offset=2,
+ limit=2,
+ selectors=[selector],
+ )
+
+ assert [row["task_id"] for row in selected] == [30, 40]
+
+
+def test_calibration_window_offset_zero_retains_selector_prefix() -> None:
+ selector = _selector(evaluator.HRR_ARTIFACT_KIND)
+ ranked_rows = tuple({"task_id": task_id} for task_id in (20, 10, 30))
+
+ selected = evaluator.select_calibration_window(
+ ranked_rows,
+ offset=0,
+ limit=2,
+ selectors=[selector],
+ )
+
+ assert [row["task_id"] for row in selected] == [20, 10]
+
+
+def test_calibration_holdout_refuses_any_selector_overlap() -> None:
+ hrr = _selector(evaluator.HRR_ARTIFACT_KIND)
+ loss = _selector(evaluator.LOSS_ARTIFACT_KIND)
+ ranked_rows = tuple({"task_id": task_id} for task_id in (99, 20, 30))
+
+ with pytest.raises(ValueError, match="overlap selector artifact tasks: 20"):
+ evaluator.select_calibration_window(
+ ranked_rows,
+ offset=1,
+ limit=2,
+ selectors=[hrr, loss],
+ )
+
+
+def test_calibration_holdout_refuses_out_of_range_window() -> None:
+ selector = _selector(evaluator.HRR_ARTIFACT_KIND)
+ ranked_rows = tuple({"task_id": task_id} for task_id in (10, 20, 30))
+
+ with pytest.raises(ValueError, match=r"window \[2:4\] exceeds 3"):
+ evaluator.select_calibration_window(
+ ranked_rows,
+ offset=2,
+ limit=2,
+ selectors=[selector],
+ )
+
+
+def test_frozen_holdout_request_requires_exact_window_and_two_eight_task_selectors() -> None:
+ selectors = [
+ _frozen_selector(evaluator.HRR_ARTIFACT_KIND),
+ _frozen_selector(evaluator.LOSS_ARTIFACT_KIND),
+ ]
+
+ evaluator.validate_frozen_holdout_request(
+ offset=8,
+ limit=8,
+ bootstrap_samples=10_000,
+ selectors=selectors,
+ loss_selector_present=True,
+ storage_boundary_present=True,
+ )
+
+
+@pytest.mark.parametrize(
+ ("changes", "message"),
+ [
+ ({"offset": 9}, "exact ranked window"),
+ ({"limit": 7}, "exact ranked window"),
+ ({"bootstrap_samples": 9999}, "exactly 10000"),
+ ({"loss_selector_present": False}, "requires both HRR and loss"),
+ ({"storage_boundary_present": False}, "storage-boundary artifact"),
+ ],
+)
+def test_frozen_holdout_request_refuses_protocol_drift(changes, message: str) -> None:
+ arguments = {
+ "offset": 8,
+ "limit": 8,
+ "bootstrap_samples": 10_000,
+ "selectors": [
+ _frozen_selector(evaluator.HRR_ARTIFACT_KIND),
+ _frozen_selector(evaluator.LOSS_ARTIFACT_KIND),
+ ],
+ "loss_selector_present": True,
+ "storage_boundary_present": True,
+ }
+ arguments.update(changes)
+
+ with pytest.raises(ValueError, match=message):
+ evaluator.validate_frozen_holdout_request(**arguments)
+
+
+def test_frozen_holdout_request_refuses_non_eight_task_selector() -> None:
+ hrr = _frozen_selector(evaluator.HRR_ARTIFACT_KIND)
+ loss = _frozen_selector(evaluator.LOSS_ARTIFACT_KIND)
+ loss["dataset"]["tasks"].pop()
+
+ with pytest.raises(ValueError, match="exactly 8 tasks"):
+ evaluator.validate_frozen_holdout_request(
+ offset=8,
+ limit=8,
+ bootstrap_samples=10_000,
+ selectors=[hrr, loss],
+ loss_selector_present=True,
+ storage_boundary_present=True,
+ )
+
+
+def test_frozen_holdout_request_refuses_non_h32_selector() -> None:
+ hrr = _frozen_selector(evaluator.HRR_ARTIFACT_KIND)
+ loss = _frozen_selector(evaluator.LOSS_ARTIFACT_KIND)
+ hrr["method"]["horizon"] = 64
+
+ with pytest.raises(ValueError, match="requires HRR horizon 32"):
+ evaluator.validate_frozen_holdout_request(
+ offset=8,
+ limit=8,
+ bootstrap_samples=10_000,
+ selectors=[hrr, loss],
+ loss_selector_present=True,
+ storage_boundary_present=True,
+ )
+
+
+def test_authenticate_selector_prefix_checks_order_and_row_content() -> None:
+ selector = _frozen_selector(evaluator.HRR_ARTIFACT_KIND)
+ manifest = selector["dataset"]["manifest"]
+ ordered_ids = [record["task_id"] for record in selector["dataset"]["tasks"]]
+
+ evaluator.authenticate_selector_prefix(
+ selector,
+ ranked_prefix_manifest=manifest,
+ ranked_prefix_task_ids=ordered_ids,
+ )
+
+ with pytest.raises(ValueError, match="ordered task IDs"):
+ evaluator.authenticate_selector_prefix(
+ selector,
+ ranked_prefix_manifest=manifest,
+ ranked_prefix_task_ids=list(reversed(ordered_ids)),
+ )
+
+ tampered = deepcopy(manifest)
+ tampered["rows"][0]["sha256"] = "tampered"
+ with pytest.raises(ValueError, match="content manifest"):
+ evaluator.authenticate_selector_prefix(
+ selector,
+ ranked_prefix_manifest=tampered,
+ ranked_prefix_task_ids=ordered_ids,
+ )
+
+
+def test_frozen_selector_token_manifest_matches_every_prefix_task() -> None:
+ selector = _frozen_selector(evaluator.HRR_ARTIFACT_KIND)
+ records = [
+ {
+ "task_id": record["task_id"],
+ "prompt_tokens": record["prompt_tokens"],
+ "code_tokens": record["code_tokens"],
+ "aligned_scored_tokens": record["captured_decode_tokens"],
+ "full_code_scored_tokens": record["code_tokens"],
+ }
+ for record in selector["dataset"]["tasks"]
+ ]
+
+ evaluator.validate_actual_token_manifest(selector, records)
+
+ records[-1]["code_tokens"] += 1
+ with pytest.raises(ValueError, match="formatter/token manifest"):
+ evaluator.validate_actual_token_manifest(selector, records)
+
+
+def test_heldout_repository_requires_clean_matching_selector_commit() -> None:
+ selectors = [
+ _frozen_selector(evaluator.HRR_ARTIFACT_KIND),
+ _frozen_selector(evaluator.LOSS_ARTIFACT_KIND),
+ ]
+ repository = {"commit": "frozen-commit", "worktree_clean": True, "status": []}
+
+ evaluator.validate_heldout_repository_start(repository, selectors)
+
+ dirty = {**repository, "worktree_clean": False, "status": [" M source.py"]}
+ with pytest.raises(ValueError, match="clean worktree"):
+ evaluator.validate_heldout_repository_start(dirty, selectors)
+
+ selectors[1]["repository"]["commit"] = "different"
+ with pytest.raises(ValueError, match="commit does not match"):
+ evaluator.validate_heldout_repository_start(repository, selectors)
+
+
+def test_heldout_repository_end_refuses_commit_or_source_drift() -> None:
+ clean = {"commit": "abc", "worktree_clean": True, "status": []}
+ hashes = {"source.py": "hash"}
+
+ evaluator.validate_heldout_repository_end(
+ start_repository=clean,
+ end_repository=clean,
+ start_source_hashes=hashes,
+ end_source_hashes=hashes,
+ )
+
+ with pytest.raises(RuntimeError, match="source files changed"):
+ evaluator.validate_heldout_repository_end(
+ start_repository=clean,
+ end_repository=clean,
+ start_source_hashes=hashes,
+ end_source_hashes={"source.py": "changed"},
+ )
+
+
+def test_storage_boundary_prerequisite_recomputes_numeric_gate_and_provenance() -> None:
+ selector = _frozen_selector(evaluator.HRR_ARTIFACT_KIND)
+ evidence = _storage_boundary_evidence()
+
+ evaluator.validate_storage_boundary_prerequisite(
+ evidence,
+ expected_commit="frozen-commit",
+ expected_model=selector["model"],
+ )
+
+ failed = deepcopy(evidence)
+ failed["derivative_gate"]["observed"]["sign_agreement"] = 0.94
+ with pytest.raises(ValueError, match="numeric observations"):
+ evaluator.validate_storage_boundary_prerequisite(
+ failed,
+ expected_commit="frozen-commit",
+ expected_model=selector["model"],
+ )
+
+ wrong_commit = deepcopy(evidence)
+ wrong_commit["repository"]["end"]["commit"] = "different"
+ with pytest.raises(ValueError, match="commit does not match"):
+ evaluator.validate_storage_boundary_prerequisite(
+ wrong_commit,
+ expected_commit="frozen-commit",
+ expected_model=selector["model"],
+ )
+
+
+def test_evaluator_source_freeze_covers_metric_implementation() -> None:
+ assert "src/recurquant/metrics.py" in evaluator.EVALUATOR_SOURCE_FILES
+
+
+def test_source_file_hashes_are_path_stable_and_detect_changes(tmp_path) -> None:
+ source = tmp_path / "source.py"
+ source.write_bytes(b"first")
+ first = evaluator.source_file_hashes(tmp_path, ("source.py",))
+ source.write_bytes(b"second")
+ second = evaluator.source_file_hashes(tmp_path, ("source.py",))
+
+ assert set(first) == {"source.py"}
+ assert first != second
+
+
+def test_actual_token_manifest_must_match_selected_prefix() -> None:
+ selector = _selector(evaluator.HRR_ARTIFACT_KIND)
+ records = [
+ {
+ "task_id": 20,
+ "prompt_tokens": 7,
+ "code_tokens": 4,
+ "aligned_scored_tokens": 3,
+ "full_code_scored_tokens": 4,
+ }
+ ]
+
+ evaluator.validate_actual_token_manifest(selector, records)
+
+ records[0]["prompt_tokens"] = 8
+ with pytest.raises(ValueError, match="formatter/token manifest"):
+ evaluator.validate_actual_token_manifest(selector, records)
+
+
+def test_one_task_contrast_is_labeled_descriptive_without_interval() -> None:
+ result = evaluator.paired_contrast([2.0], [1.25], samples=100, seed=17)
+
+ assert result["mean_improvement"] == pytest.approx(0.75)
+ assert result["confidence_interval"] is None
+ assert result["bootstrap_samples"] == 0
+ assert "descriptive only" in result["note"]
+
+
+def test_multi_task_contrast_keeps_bootstrap_interval() -> None:
+ result = evaluator.paired_contrast([2.0, 3.0], [1.0, 2.0], samples=100, seed=17)
+
+ assert result["paired_examples"] == 2
+ assert result["confidence_interval"] == pytest.approx([1.0, 1.0])
+
+
+def test_frozen_holdout_gate_passes_all_prespecified_thresholds() -> None:
+ gate = evaluator.evaluate_frozen_holdout_gate(**_passing_gate_inputs())
+
+ assert gate["passed"] is True
+ assert gate["strongest_equal_byte_static"] == "hrr_h1"
+ assert all(check["passed"] is True for check in gate["checks"].values())
+
+
+@pytest.mark.parametrize(
+ ("mutation", "failed_check"),
+ [
+ (
+ lambda inputs: inputs["aggregates"][evaluator.ADAPTIVE_TARGET_FISHER].update(
+ macro_delta_nll=0.81
+ ),
+ "relative_nll_reduction_vs_strongest_static",
+ ),
+ (
+ lambda inputs: inputs["aggregates"][evaluator.ADAPTIVE_TARGET_FISHER].update(
+ macro_top1_agreement=0.894
+ ),
+ "top1_disadvantage_margin_vs_strongest_static",
+ ),
+ (
+ lambda inputs: inputs["aggregates"][evaluator.ADAPTIVE_TARGET_FISHER].update(
+ macro_cvar95_kl=0.251
+ ),
+ "cvar95_disadvantage_margin_vs_strongest_static",
+ ),
+ (
+ lambda inputs: inputs["per_task"][evaluator.ADAPTIVE_TARGET_FISHER][0].update(
+ delta_nll=1.6
+ ),
+ "maximum_per_task_nll_disadvantage_vs_strongest_static",
+ ),
+ (
+ lambda inputs: inputs["contrasts"]["hrr_h1"].update(confidence_interval=[0.0, 0.5]),
+ "paired_lower_ci_vs_strongest_static",
+ ),
+ (
+ lambda inputs: inputs["contrasts"][evaluator.ADAPTIVE_H1].update(
+ confidence_interval=[0.0, 0.5]
+ ),
+ "paired_lower_ci_vs_adaptive_h1",
+ ),
+ (
+ lambda inputs: inputs["storage"][evaluator.ADAPTIVE_TARGET_FISHER].update(
+ resident_bytes=evaluator.TARGET_RESIDENT_BYTES - 1
+ ),
+ "exact_resident_bytes",
+ ),
+ ],
+)
+def test_frozen_holdout_gate_reports_each_threshold_failure(mutation, failed_check: str) -> None:
+ inputs = _passing_gate_inputs()
+ mutation(inputs)
+
+ gate = evaluator.evaluate_frozen_holdout_gate(**inputs)
+
+ assert gate["passed"] is False
+ assert gate["checks"][failed_check]["passed"] is False
+
+
+def test_claim_and_exit_code_follow_actual_primary_and_gate() -> None:
+ static_claim = evaluator.primary_claim_text("hrr_h32")
+ adaptive_claim = evaluator.primary_claim_text(evaluator.ADAPTIVE_TARGET_FISHER)
+
+ assert "static HRR" in static_claim
+ assert "no loss-selector" in static_claim
+ assert "target-directional-Fisher" in adaptive_claim
+ assert evaluator.diagnostic_exit_code(heldout_calibration=True, gate_passed=False) == 2
+ assert evaluator.diagnostic_exit_code(heldout_calibration=True, gate_passed=True) == 0
+ assert evaluator.diagnostic_exit_code(heldout_calibration=False, gate_passed=False) == 0
diff --git a/tests/test_pilot_validate_storage_boundary.py b/tests/test_pilot_validate_storage_boundary.py
new file mode 100644
index 0000000..458b476
--- /dev/null
+++ b/tests/test_pilot_validate_storage_boundary.py
@@ -0,0 +1,147 @@
+from __future__ import annotations
+
+import importlib.util
+import json
+from pathlib import Path
+
+import pytest
+from transformers import DynamicCache
+
+from recurquant.storage_boundary_validation import StorageRowLocation
+from tests.test_transformers_cache import tiny_config
+
+
+def _load_script():
+ path = Path(__file__).parents[1] / "scripts" / "pilot_validate_storage_boundary.py"
+ spec = importlib.util.spec_from_file_location("pilot_validate_storage_boundary", path)
+ assert spec is not None and spec.loader is not None
+ module = importlib.util.module_from_spec(spec)
+ spec.loader.exec_module(module)
+ return module
+
+
+def test_fixed_grid_and_strata_resolve_without_scores() -> None:
+ script = _load_script()
+ recurrent_layers = tuple(range(0, 36, 2))
+
+ resolved = script._resolve_strata(recurrent_layers, heads=16, rows=128)
+
+ assert script.EPSILONS == (0.25, 0.125, 0.0625, 0.03125)
+ assert resolved == (
+ ("early_low", StorageRowLocation(0, 0, 0)),
+ ("early_mid", StorageRowLocation(10, 5, 42)),
+ ("late_mid", StorageRowLocation(22, 10, 85)),
+ ("late_high", StorageRowLocation(34, 15, 127)),
+ )
+
+
+def test_fixed_strata_refuse_incompatible_geometry() -> None:
+ script = _load_script()
+
+ with pytest.raises(ValueError, match="recurrent-layer geometry"):
+ script._resolve_strata(tuple(range(17)), heads=16, rows=128)
+ with pytest.raises(ValueError, match="recurrent-state geometry"):
+ script._resolve_strata(tuple(range(18)), heads=8, rows=128)
+
+
+def test_cache_fingerprint_covers_recurrent_history_flags() -> None:
+ script = _load_script()
+ cache = DynamicCache(config=tiny_config())
+ before = script._cache_fingerprint(cache)
+
+ cache.layers[0].has_previous_state[0] = True
+
+ assert script._cache_fingerprint(cache) != before
+
+
+def _gate_rows(script, *, central_scale: float = 1.0, repeat_error: float = 0.0):
+ rows = []
+ for row_index, (label, *_coordinates) in enumerate(script.ROW_STRATA, start=1):
+ autograd = row_index * 1e-4
+ rows.append(
+ {
+ "stratum": label,
+ "epsilon_results": [
+ {
+ "epsilon": epsilon,
+ "autograd_directional_derivative": autograd,
+ "central_directional_derivative": autograd * central_scale,
+ "baseline_repeat_absolute_error": repeat_error,
+ }
+ for epsilon in script.EPSILONS
+ ],
+ }
+ )
+ return rows
+
+
+def test_frozen_derivative_gate_passes_consistent_fp32_grid() -> None:
+ script = _load_script()
+
+ gate = script._evaluate_derivative_gate(_gate_rows(script, central_scale=1.02))
+
+ assert gate["passed"] is True
+ assert gate["failures"] == []
+ assert gate["observed"]["informative_rows"] == 4
+ assert gate["observed"]["sign_agreement"] == 1.0
+ assert gate["observed"]["median_relative_error"] == pytest.approx(0.02)
+
+
+def test_frozen_derivative_gate_rejects_sign_and_repeat_failures() -> None:
+ script = _load_script()
+
+ gate = script._evaluate_derivative_gate(
+ _gate_rows(script, central_scale=-1.0, repeat_error=1e-4)
+ )
+
+ assert gate["passed"] is False
+ assert any("sign agreement" in failure for failure in gate["failures"])
+ assert any("alpha=0" in failure for failure in gate["failures"])
+
+
+def test_frozen_derivative_gate_rejects_too_many_near_zero_rows() -> None:
+ script = _load_script()
+ rows = _gate_rows(script)
+ for row in rows[:2]:
+ for result in row["epsilon_results"]:
+ result["autograd_directional_derivative"] = 0.0
+ result["central_directional_derivative"] = 0.0
+
+ gate = script._evaluate_derivative_gate(rows)
+
+ assert gate["passed"] is False
+ assert gate["observed"]["informative_rows"] == 2
+ assert any("informative rows" in failure for failure in gate["failures"])
+
+
+def test_frozen_derivative_gate_all_near_zero_is_json_safe_failure() -> None:
+ script = _load_script()
+ rows = _gate_rows(script)
+ for row in rows:
+ for result in row["epsilon_results"]:
+ result["autograd_directional_derivative"] = script.DERIVATIVE_INFORMATIVE_FLOOR
+ result["central_directional_derivative"] = 0.0
+
+ gate = script._evaluate_derivative_gate(rows)
+
+ assert gate["passed"] is False
+ assert gate["observed"]["informative_rows"] == 0
+ assert gate["observed"]["near_zero_rows"] == 4
+ assert gate["observed"]["sign_agreement"] is None
+ assert gate["observed"]["median_relative_error"] is None
+ assert gate["observed"]["converged_row_fraction"] is None
+ json.dumps(gate, allow_nan=False)
+
+
+def test_frozen_derivative_gate_rejects_nonfinite_inputs_and_wrong_strata() -> None:
+ script = _load_script()
+ rows = _gate_rows(script)
+ rows[0]["epsilon_results"][0]["central_directional_derivative"] = float("nan")
+
+ with pytest.raises(ValueError, match="must be finite"):
+ script._evaluate_derivative_gate(rows)
+
+ rows = _gate_rows(script)
+ rows[0]["stratum"] = "substituted_after_results"
+ with pytest.raises(ValueError, match="source order"):
+ script._evaluate_derivative_gate(rows)
diff --git a/tests/test_row_policy.py b/tests/test_row_policy.py
new file mode 100644
index 0000000..d7e1036
--- /dev/null
+++ b/tests/test_row_policy.py
@@ -0,0 +1,62 @@
+from __future__ import annotations
+
+import pytest
+import torch
+
+from recurquant.row_policy import RowLocation, select_rows_exact_budget
+
+
+def test_qwen35_equal_byte_row_plan_accounts_for_mask_and_promotions() -> None:
+ scores = {
+ layer_index: torch.arange(16 * 128, dtype=torch.float32).reshape(16, 128)
+ + layer_index * 10_000
+ for layer_index in range(18)
+ }
+
+ plan = select_rows_exact_budget(scores, target_resident_bytes=2_564_096)
+
+ assert plan.total_groups == 36_864
+ assert plan.mask_bytes == 4_608
+ assert plan.promotion_increment_bytes == 64
+ assert plan.promoted_group_count == 1_976
+ assert plan.resident_bytes == 2_564_096
+ assert plan.target_resident_bytes == 2_564_096
+ assert plan.high_precision_rows[-1] == RowLocation(17, 15, 127)
+
+
+def test_row_selection_breaks_score_ties_by_location() -> None:
+ scores = {4: torch.ones((1, 4)), 1: torch.ones((1, 4))}
+ minimum_with_mask = 8 * 66 + 1
+
+ plan = select_rows_exact_budget(
+ scores,
+ target_resident_bytes=minimum_with_mask + 2 * 64,
+ )
+
+ assert plan.high_precision_rows == (
+ RowLocation(1, 0, 0),
+ RowLocation(1, 0, 1),
+ )
+ assert plan.groups_for_layer(1) == (0, 1)
+ assert plan.groups_for_layer(4) == ()
+
+
+def test_nonrepresentable_target_is_rejected() -> None:
+ scores = {0: torch.ones((1, 2))}
+ minimum_with_mask = 2 * 66 + 1
+
+ with pytest.raises(ValueError, match="nearest valid targets"):
+ select_rows_exact_budget(scores, target_resident_bytes=minimum_with_mask + 1)
+
+
+def test_payload_rounding_must_leave_a_positive_promotion_increment() -> None:
+ scores = {0: torch.ones((1, 1))}
+
+ with pytest.raises(ValueError, match="positive promotion byte increment"):
+ select_rows_exact_budget(
+ scores,
+ target_resident_bytes=4,
+ low_bits=4,
+ high_bits=8,
+ group_size=1,
+ )
diff --git a/tests/test_storage_boundary_validation.py b/tests/test_storage_boundary_validation.py
new file mode 100644
index 0000000..4088ee8
--- /dev/null
+++ b/tests/test_storage_boundary_validation.py
@@ -0,0 +1,161 @@
+from __future__ import annotations
+
+import pytest
+import torch
+from transformers import DynamicCache, Qwen3_5ForCausalLM
+
+from recurquant.quantization import QuantizationSpec
+from recurquant.storage_boundary_validation import (
+ StorageRowLocation,
+ advance_uniform_int4_trajectory,
+ compare_directional_benefits,
+ interpolate_storage_row,
+ validate_qwen_storage_boundary_row,
+)
+from tests.test_transformers_cache import tiny_config
+
+
+def _spec(bits: int) -> QuantizationSpec:
+ return QuantizationSpec(bits=bits, group_size=8, flatten_last_dims=1)
+
+
+def _tiny_model() -> Qwen3_5ForCausalLM:
+ torch.manual_seed(2339)
+ return Qwen3_5ForCausalLM._from_config(
+ tiny_config(),
+ attn_implementation="eager",
+ ).eval()
+
+
+def _warm_cache(model: Qwen3_5ForCausalLM, prompt: torch.Tensor) -> DynamicCache:
+ cache = DynamicCache(config=model.config)
+ with torch.no_grad():
+ model(prompt, past_key_values=cache, use_cache=True)
+ return cache
+
+
+def test_directional_comparison_preserves_loss_and_benefit_signs() -> None:
+ # L(alpha) = 3 + 2 alpha + 0.5 alpha^2.
+ epsilon = 0.25
+ def loss(alpha: float) -> float:
+ return 3.0 + 2.0 * alpha + 0.5 * alpha**2
+
+ result = compare_directional_benefits(
+ epsilon=epsilon,
+ loss_at_zero=loss(0),
+ repeated_loss_at_zero=loss(0),
+ loss_at_minus_epsilon=loss(-epsilon),
+ loss_at_plus_epsilon=loss(epsilon),
+ loss_at_int8_endpoint=loss(1),
+ autograd_directional_derivative=2.0,
+ )
+
+ assert result.central_directional_derivative == pytest.approx(2.0)
+ assert result.predicted_benefit_autograd == pytest.approx(-2.0)
+ assert result.predicted_benefit_central == pytest.approx(-2.0)
+ assert result.measured_endpoint_benefit == pytest.approx(-2.5)
+ assert result.derivative_sign_agreement is True
+ assert result.endpoint_sign_agreement is True
+ assert result.endpoint_taylor_residual == pytest.approx(-0.5)
+
+
+def test_directional_comparison_handles_exact_zero_without_false_sign() -> None:
+ result = compare_directional_benefits(
+ epsilon=0.5,
+ loss_at_zero=1.0,
+ repeated_loss_at_zero=1.0,
+ loss_at_minus_epsilon=1.0,
+ loss_at_plus_epsilon=1.0,
+ loss_at_int8_endpoint=1.0,
+ autograd_directional_derivative=0.0,
+ )
+
+ assert result.derivative_sign_agreement is None
+ assert result.endpoint_sign_agreement is None
+
+
+def test_interpolation_changes_only_the_selected_row() -> None:
+ state = torch.arange(1 * 2 * 3 * 4, dtype=torch.float32).reshape(1, 2, 3, 4)
+ direction = torch.tensor([0.25, -0.5, 0.75, -1.0])
+ location = StorageRowLocation(layer_index=7, head_index=1, row_index=2)
+
+ moved = interpolate_storage_row(state, direction, location=location, alpha=0.5)
+
+ difference = moved - state
+ assert torch.equal(difference[0, 1, 2], direction * 0.5)
+ difference[0, 1, 2] = 0
+ assert torch.count_nonzero(difference).item() == 0
+ assert torch.equal(state, torch.arange(24, dtype=torch.float32).reshape_as(state))
+
+
+def test_real_tiny_qwen_storage_boundary_matches_central_difference() -> None:
+ model = _tiny_model()
+ cache = _warm_cache(model, torch.tensor([[1, 2, 3, 4]]))
+ raw_before = cache.layers[0].recurrent_states[0].clone()
+ location = StorageRowLocation(layer_index=0, head_index=0, row_index=0)
+
+ result = validate_qwen_storage_boundary_row(
+ model,
+ cache,
+ torch.tensor([[5]]),
+ torch.tensor([[6]]),
+ location=location,
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ epsilon=0.25,
+ sign_floor=1e-9,
+ forward_kwargs={"logits_to_keep": 1},
+ )
+
+ assert torch.equal(cache.layers[0].recurrent_states[0], raw_before)
+ assert result.recurrent_layer_indices == (0,)
+ assert torch.equal(result.direction, result.int8_row - result.int4_row)
+ assert result.comparison.baseline_repeat_absolute_error < 1e-7
+ assert result.comparison.autograd_directional_derivative == pytest.approx(
+ result.comparison.central_directional_derivative,
+ rel=3e-2,
+ abs=2e-6,
+ )
+ assert result.comparison.predicted_benefit_autograd == pytest.approx(
+ result.comparison.measured_endpoint_benefit,
+ rel=0.15,
+ abs=5e-6,
+ )
+ assert all(parameter.grad is None for parameter in model.parameters())
+
+
+def test_advancing_prior_token_stops_on_raw_update() -> None:
+ model = _tiny_model()
+ prompt = torch.tensor([[3, 4, 5]])
+ advanced = _warm_cache(model, prompt)
+
+ advance_uniform_int4_trajectory(
+ model,
+ advanced,
+ torch.tensor([[6]]),
+ int4_spec=_spec(4),
+ forward_kwargs={"logits_to_keep": 1},
+ )
+
+ reference = _warm_cache(model, prompt)
+ # Quantizing before the prior token changes the update, while leaving the
+ # post-token state raw instead of immediately QDQing it again.
+ assert not torch.equal(
+ advanced.layers[0].recurrent_states[0],
+ reference.layers[0].recurrent_states[0],
+ )
+ assert advanced.layers[0].has_previous_state[0]
+
+
+@pytest.mark.parametrize("bad_epsilon", [0.0, -0.1, 1.1, float("nan")])
+def test_directional_comparison_rejects_invalid_epsilon(bad_epsilon: float) -> None:
+ with pytest.raises(ValueError, match="epsilon"):
+ compare_directional_benefits(
+ epsilon=bad_epsilon,
+ loss_at_zero=1,
+ repeated_loss_at_zero=1,
+ loss_at_minus_epsilon=1,
+ loss_at_plus_epsilon=1,
+ loss_at_int8_endpoint=1,
+ autograd_directional_derivative=0,
+ )
From 4c9b0588c306d49dfe5c52f9c73d586cedef8e0e Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 01:03:19 +0800
Subject: [PATCH 02/22] fix: isolate recurrent cache writes during derivative
checks
---
src/recurquant/storage_boundary_validation.py | 27 +++++++++----
tests/test_storage_boundary_validation.py | 39 +++++++++++++++++++
2 files changed, 58 insertions(+), 8 deletions(-)
diff --git a/src/recurquant/storage_boundary_validation.py b/src/recurquant/storage_boundary_validation.py
index a137f37..868a11c 100644
--- a/src/recurquant/storage_boundary_validation.py
+++ b/src/recurquant/storage_boundary_validation.py
@@ -381,7 +381,7 @@ def _autograd_directional_derivative(
leaf = state.detach().clone().requires_grad_(True)
cache.layers[location.layer_index].recurrent_states[0] = leaf
- original_update = cache.update_recurrent_state
+ recurrent_layers = frozenset(recurrent_layer_indices(cache))
had_instance_update = "update_recurrent_state" in cache.__dict__
previous_instance_update = cache.__dict__.get("update_recurrent_state")
@@ -392,18 +392,29 @@ def differentiable_update(
state_idx: int = 0,
**update_kwargs: Any,
) -> torch.Tensor:
- if layer_idx != location.layer_index:
- return original_update(
- recurrent_states,
- layer_idx,
- state_idx=state_idx,
- **update_kwargs,
+ del update_kwargs
+ if layer_idx not in recurrent_layers:
+ raise ValueError(
+ f"unexpected recurrent-state update for unprepared layer {layer_idx}"
)
if state_idx != 0:
raise ValueError("Qwen3.5 storage-boundary validation supports state_idx=0 only")
layer = working_cache.layers[layer_idx]
+ states = getattr(layer, "recurrent_states", None)
+ initialized = getattr(layer, "is_recurrent_states_initialized", None)
+ if not isinstance(states, dict) or not isinstance(initialized, dict):
+ raise RuntimeError(f"cache layer {layer_idx} lost recurrent-state metadata")
+ if not initialized.get(state_idx, False):
+ raise RuntimeError(f"cache layer {layer_idx} was not warm at the measured boundary")
+
+ # Transformers normally copy_()s every updated GDN state into its warm
+ # cache tensor to preserve a static address. During this differentiable
+ # diagnostic, later GDN updates can depend on the selected leaf. Their
+ # CopyBackwards destinations would overwrite tensors saved by the
+ # recurrent kernels before autograd runs. Assignment preserves the exact
+ # value stored for the next token without mutating any current-token
+ # input in place. Only ``leaf`` remains a differentiation target.
layer.recurrent_states[state_idx] = recurrent_states
- layer.is_recurrent_states_initialized[state_idx] = True
return recurrent_states
parameters = tuple(model.parameters())
diff --git a/tests/test_storage_boundary_validation.py b/tests/test_storage_boundary_validation.py
index 4088ee8..7092b0b 100644
--- a/tests/test_storage_boundary_validation.py
+++ b/tests/test_storage_boundary_validation.py
@@ -124,6 +124,45 @@ def test_real_tiny_qwen_storage_boundary_matches_central_difference() -> None:
assert all(parameter.grad is None for parameter in model.parameters())
+def test_multilayer_qwen_gradient_avoids_downstream_cache_copy_inplace() -> None:
+ torch.manual_seed(2341)
+ model = Qwen3_5ForCausalLM._from_config(
+ tiny_config(["linear_attention", "linear_attention", "full_attention"]),
+ attn_implementation="eager",
+ ).eval()
+ cache = _warm_cache(model, torch.tensor([[2, 3, 5, 7]]))
+ raw_before = {
+ layer_index: cache.layers[layer_index].recurrent_states[0].clone()
+ for layer_index in (0, 1)
+ }
+
+ result = validate_qwen_storage_boundary_row(
+ model,
+ cache,
+ torch.tensor([[11]]),
+ torch.tensor([[13]]),
+ location=StorageRowLocation(layer_index=0, head_index=1, row_index=3),
+ int4_spec=_spec(4),
+ int8_spec=_spec(8),
+ epsilon=0.25,
+ sign_floor=1e-9,
+ forward_kwargs={"logits_to_keep": 1},
+ )
+
+ assert result.recurrent_layer_indices == (0, 1)
+ assert result.comparison.baseline_repeat_absolute_error < 1e-7
+ assert result.comparison.autograd_directional_derivative == pytest.approx(
+ result.comparison.central_directional_derivative,
+ rel=5e-2,
+ abs=2e-6,
+ )
+ assert all(
+ torch.equal(cache.layers[layer_index].recurrent_states[0], raw_before[layer_index])
+ for layer_index in (0, 1)
+ )
+ assert all(parameter.grad is None for parameter in model.parameters())
+
+
def test_advancing_prior_token_stops_on_raw_update() -> None:
model = _tiny_model()
prompt = torch.tensor([[3, 4, 5]])
From 599862eef3b635f14b05c578f02393a0abd072a6 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 01:07:12 +0800
Subject: [PATCH 03/22] fix: make derivative audit reproducible across devices
---
scripts/pilot_validate_storage_boundary.py | 23 ++++++++++++++++++-
src/recurquant/storage_boundary_validation.py | 20 +++++++++++++++-
tests/test_pilot_validate_storage_boundary.py | 18 ++++++++++++++-
tests/test_storage_boundary_validation.py | 5 ++++
4 files changed, 63 insertions(+), 3 deletions(-)
diff --git a/scripts/pilot_validate_storage_boundary.py b/scripts/pilot_validate_storage_boundary.py
index 262a353..c55145b 100644
--- a/scripts/pilot_validate_storage_boundary.py
+++ b/scripts/pilot_validate_storage_boundary.py
@@ -175,6 +175,24 @@ def _tensor_bytes_sha256(tensor: torch.Tensor) -> str:
return _sha256_bytes(value.view(torch.uint8).numpy().tobytes())
+def _directional_dot_float64(
+ gradient_row: torch.Tensor,
+ direction: torch.Tensor,
+) -> float:
+ """Recompute the recorded FP32 row dot on CPU with FP64 accumulation."""
+
+ if gradient_row.shape != direction.shape:
+ raise ValueError("gradient row and direction must have the same shape")
+ if gradient_row.dtype != torch.float32 or direction.dtype != torch.float32:
+ raise TypeError("gradient row and direction must use float32 before FP64 accumulation")
+ gradient64 = gradient_row.detach().to(device="cpu", dtype=torch.float64)
+ direction64 = direction.detach().to(device="cpu", dtype=torch.float64)
+ value = float((gradient64 * direction64).sum(dtype=torch.float64).item())
+ if not math.isfinite(value):
+ raise RuntimeError("directional dot product became non-finite")
+ return value
+
+
def _tensor_record(tensor: torch.Tensor, *, include_values: bool) -> dict[str, object]:
value = tensor.detach().to(device="cpu", dtype=torch.float64).contiguous()
if value.numel() == 0 or not torch.isfinite(value).all().item():
@@ -640,7 +658,10 @@ def main() -> int:
)
assert reference is not None
- dot_product = float((reference.gradient_row * reference.direction).sum().item())
+ dot_product = _directional_dot_float64(
+ reference.gradient_row,
+ reference.direction,
+ )
if not math.isclose(
-dot_product,
reference.comparison.predicted_benefit_autograd,
diff --git a/src/recurquant/storage_boundary_validation.py b/src/recurquant/storage_boundary_validation.py
index 868a11c..375ff60 100644
--- a/src/recurquant/storage_boundary_validation.py
+++ b/src/recurquant/storage_boundary_validation.py
@@ -93,6 +93,24 @@ def _finite_scalar(name: str, value: float) -> float:
return converted
+def _directional_dot_float64(
+ gradient_row: torch.Tensor,
+ direction: torch.Tensor,
+) -> float:
+ """Accumulate a saved FP32 row dot product reproducibly on CPU in FP64."""
+
+ if gradient_row.shape != direction.shape:
+ raise ValueError("gradient row and direction must have the same shape")
+ if gradient_row.dtype != torch.float32 or direction.dtype != torch.float32:
+ raise TypeError("gradient row and direction must use float32 before FP64 accumulation")
+ gradient64 = gradient_row.detach().to(device="cpu", dtype=torch.float64)
+ direction64 = direction.detach().to(device="cpu", dtype=torch.float64)
+ value = float((gradient64 * direction64).sum(dtype=torch.float64).item())
+ if not math.isfinite(value):
+ raise RuntimeError("directional dot product became non-finite")
+ return value
+
+
def _sign_agreement(left: float, right: float, *, floor: float) -> bool | None:
if abs(left) <= floor and abs(right) <= floor:
return None
@@ -429,7 +447,7 @@ def differentiable_update(
loss = _target_nll(model, cache, input_ids, targets, forward_kwargs)
(gradient,) = torch.autograd.grad(loss, leaf, retain_graph=False, create_graph=False)
gradient_row = gradient[0, location.head_index, location.row_index].detach()
- directional = float((gradient_row * direction).sum().item())
+ directional = _directional_dot_float64(gradient_row, direction)
loss_value = float(loss.detach().item())
finally:
for parameter, requires_grad in zip(parameters, original_requires_grad, strict=True):
diff --git a/tests/test_pilot_validate_storage_boundary.py b/tests/test_pilot_validate_storage_boundary.py
index 458b476..1de1697 100644
--- a/tests/test_pilot_validate_storage_boundary.py
+++ b/tests/test_pilot_validate_storage_boundary.py
@@ -5,9 +5,15 @@
from pathlib import Path
import pytest
+import torch
from transformers import DynamicCache
-from recurquant.storage_boundary_validation import StorageRowLocation
+from recurquant.storage_boundary_validation import (
+ StorageRowLocation,
+)
+from recurquant.storage_boundary_validation import (
+ _directional_dot_float64 as _module_directional_dot_float64,
+)
from tests.test_transformers_cache import tiny_config
@@ -54,6 +60,16 @@ def test_cache_fingerprint_covers_recurrent_history_flags() -> None:
assert script._cache_fingerprint(cache) != before
+def test_saved_directional_dot_uses_matching_float64_accumulation() -> None:
+ script = _load_script()
+ gradient = torch.tensor([100_000_000.0, 1.0, -100_000_000.0], dtype=torch.float32)
+ direction = torch.ones_like(gradient)
+
+ assert float((gradient * direction).sum().item()) == 0.0
+ assert _module_directional_dot_float64(gradient, direction) == 1.0
+ assert script._directional_dot_float64(gradient, direction) == 1.0
+
+
def _gate_rows(script, *, central_scale: float = 1.0, repeat_error: float = 0.0):
rows = []
for row_index, (label, *_coordinates) in enumerate(script.ROW_STRATA, start=1):
diff --git a/tests/test_storage_boundary_validation.py b/tests/test_storage_boundary_validation.py
index 7092b0b..4f2e52e 100644
--- a/tests/test_storage_boundary_validation.py
+++ b/tests/test_storage_boundary_validation.py
@@ -7,6 +7,7 @@
from recurquant.quantization import QuantizationSpec
from recurquant.storage_boundary_validation import (
StorageRowLocation,
+ _directional_dot_float64,
advance_uniform_int4_trajectory,
compare_directional_benefits,
interpolate_storage_row,
@@ -150,6 +151,10 @@ def test_multilayer_qwen_gradient_avoids_downstream_cache_copy_inplace() -> None
)
assert result.recurrent_layer_indices == (0, 1)
+ assert result.comparison.autograd_directional_derivative == _directional_dot_float64(
+ result.gradient_row,
+ result.direction,
+ )
assert result.comparison.baseline_repeat_absolute_error < 1e-7
assert result.comparison.autograd_directional_derivative == pytest.approx(
result.comparison.central_directional_derivative,
From 556e527b75f73d557e2bddf4a9973ce945cf1ab9 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 01:22:02 +0800
Subject: [PATCH 04/22] fix: authenticate embedded MBPP manifests consistently
---
scripts/pilot_evaluate_hrr.py | 7 ++--
src/recurquant/public_data.py | 16 +++++++-
tests/test_pilot_evaluate_hrr.py | 63 +++++++++++++++++++++++++++++++-
tests/test_public_data.py | 14 +++++++
4 files changed, 94 insertions(+), 6 deletions(-)
diff --git a/scripts/pilot_evaluate_hrr.py b/scripts/pilot_evaluate_hrr.py
index de47ffc..96b4e56 100644
--- a/scripts/pilot_evaluate_hrr.py
+++ b/scripts/pilot_evaluate_hrr.py
@@ -45,6 +45,7 @@
format_mbpp_example,
load_mbpp_rows,
mbpp_manifest,
+ mbpp_manifest_content_sha256,
mbpp_manifest_sha256,
)
from recurquant.qwen35 import (
@@ -325,7 +326,7 @@ def validate_selector_contract(evidence: dict[str, Any]) -> None:
dataset = _require_mapping(evidence.get("dataset"), context="selector dataset")
manifest = _require_mapping(dataset.get("manifest"), context="selector dataset manifest")
recorded_manifest_hash = dataset.get("manifest_sha256")
- actual_manifest_hash = sha256_bytes(canonical_json_bytes(manifest))
+ actual_manifest_hash = mbpp_manifest_content_sha256(manifest)
if recorded_manifest_hash != actual_manifest_hash:
raise ValueError("selector dataset manifest hash does not match its content")
if manifest.get("formatter_version") != "recurquant.mbpp-prompt-code.v1":
@@ -1368,7 +1369,7 @@ def main() -> int:
expected_task_ids=actual_ids,
)
actual_manifest_sha256 = mbpp_manifest_sha256(rows, phase="calibration")
- if actual_manifest_sha256 != sha256_bytes(canonical_json_bytes(actual_manifest)):
+ if actual_manifest_sha256 != mbpp_manifest_content_sha256(actual_manifest):
raise RuntimeError("calibration manifest helpers produced inconsistent hashes")
horizon = int(selector["method"]["horizon"])
@@ -1634,7 +1635,7 @@ def main() -> int:
"authenticated_selector_prefix": (
{
"manifest": selector_prefix_manifest,
- "manifest_sha256": sha256_bytes(canonical_json_bytes(selector_prefix_manifest)),
+ "manifest_sha256": mbpp_manifest_content_sha256(selector_prefix_manifest),
"ordered_task_ids": selector_prefix_ids,
"token_manifest": selector_prefix_token_manifest,
"selector_count": len(selectors),
diff --git a/src/recurquant/public_data.py b/src/recurquant/public_data.py
index 78b387f..9d24245 100644
--- a/src/recurquant/public_data.py
+++ b/src/recurquant/public_data.py
@@ -225,7 +225,21 @@ def mbpp_manifest_sha256(
) -> str:
"""Hash a canonical, provenance-bearing MBPP phase manifest."""
- return hashlib.sha256(_canonical_json(build_mbpp_manifest(rows, phase=phase))).hexdigest()
+ return mbpp_manifest_content_sha256(build_mbpp_manifest(rows, phase=phase))
+
+
+def mbpp_manifest_content_sha256(manifest: Mapping[str, Any]) -> str:
+ """Hash the exact content of an embedded MBPP manifest.
+
+ MBPP manifest hashes use compact, sorted JSON rather than the indented
+ serialization used for whole evidence artifacts. Keeping this operation
+ public lets artifact consumers authenticate an embedded manifest with the
+ same byte contract used by :func:`mbpp_manifest_sha256`.
+ """
+
+ if not isinstance(manifest, Mapping):
+ raise TypeError("manifest must be a mapping")
+ return hashlib.sha256(_canonical_json(manifest)).hexdigest()
def format_mbpp_prompt_code(row: Mapping[str, Any]) -> MBPPPromptCode:
diff --git a/tests/test_pilot_evaluate_hrr.py b/tests/test_pilot_evaluate_hrr.py
index 127842e..0cc8b6f 100644
--- a/tests/test_pilot_evaluate_hrr.py
+++ b/tests/test_pilot_evaluate_hrr.py
@@ -59,7 +59,7 @@ def _selector(kind: str) -> dict[str, object]:
},
"dataset": {
"manifest": manifest,
- "manifest_sha256": evaluator.sha256_bytes(evaluator.canonical_json_bytes(manifest)),
+ "manifest_sha256": evaluator.mbpp_manifest_content_sha256(manifest),
"tasks": [
{
"task_id": 20,
@@ -101,6 +101,65 @@ def test_artifact_generators_emit_evaluator_repository_contract(git_state) -> No
assert repository["worktree_clean"] is (repository["status"] == [])
+@pytest.mark.parametrize(
+ ("generator", "kind", "affected_field"),
+ (
+ (pilot_hrr_rows, evaluator.HRR_ARTIFACT_KIND, "captured_decode_tokens"),
+ (
+ pilot_loss_sensitivity_rows,
+ evaluator.LOSS_ARTIFACT_KIND,
+ "scored_transitions",
+ ),
+ ),
+)
+def test_generator_manifest_hash_contract_is_accepted_and_content_authenticated(
+ generator,
+ kind: str,
+ affected_field: str,
+) -> None:
+ rows = (
+ {
+ "task_id": 10,
+ "text": "Return ten.",
+ "code": "def answer():\n return 10",
+ "test_list": ["assert answer() == 10"],
+ "test_setup_code": "",
+ "challenge_test_list": [],
+ },
+ {
+ "task_id": 20,
+ "text": "Return twenty.",
+ "code": "def answer():\n return 20",
+ "test_list": ["assert answer() == 20"],
+ "test_setup_code": "",
+ "challenge_test_list": [],
+ },
+ )
+ manifest = generator.mbpp_manifest(rows, phase="calibration")
+ recorded_hash = generator.mbpp_manifest_sha256(rows, phase="calibration")
+ selector = _selector(kind)
+ selector["dataset"] = {
+ "manifest": manifest,
+ "manifest_sha256": recorded_hash,
+ "tasks": [
+ {
+ "task_id": row["task_id"],
+ "prompt_tokens": 8,
+ "code_tokens": 4,
+ affected_field: 3,
+ }
+ for row in rows
+ ],
+ }
+
+ evaluator.validate_selector_contract(selector)
+ assert recorded_hash == evaluator.mbpp_manifest_content_sha256(manifest)
+
+ selector["dataset"]["manifest"]["rows"][0]["sha256"] = "tampered"
+ with pytest.raises(ValueError, match="manifest hash"):
+ evaluator.validate_selector_contract(selector)
+
+
def _frozen_selector(kind: str, *, commit: str = "frozen-commit") -> dict[str, object]:
selector = _selector(kind)
affected_field = (
@@ -125,7 +184,7 @@ def _frozen_selector(kind: str, *, commit: str = "frozen-commit") -> dict[str, o
}
selector["dataset"] = {
"manifest": manifest,
- "manifest_sha256": evaluator.sha256_bytes(evaluator.canonical_json_bytes(manifest)),
+ "manifest_sha256": evaluator.mbpp_manifest_content_sha256(manifest),
"tasks": tasks,
}
selector["repository"] = {
diff --git a/tests/test_public_data.py b/tests/test_public_data.py
index c326394..5539191 100644
--- a/tests/test_public_data.py
+++ b/tests/test_public_data.py
@@ -20,6 +20,7 @@
load_mbpp_phase,
load_mbpp_rows,
mbpp_manifest,
+ mbpp_manifest_content_sha256,
mbpp_manifest_sha256,
mbpp_row_sha256,
mbpp_source_split,
@@ -97,11 +98,24 @@ def test_manifest_hash_is_order_independent_but_phase_bound() -> None:
assert first != confirmation
manifest = build_mbpp_manifest(rows, phase="development")
assert mbpp_manifest(rows, phase="development") == manifest
+ assert mbpp_manifest_content_sha256(manifest) == first
assert manifest["source_split"] == "validation"
assert manifest["selection_namespace"] is None
assert [item["task_id"] for item in manifest["rows"]] == [1, 2, 3]
+def test_embedded_manifest_hash_authenticates_exact_content() -> None:
+ manifest = build_mbpp_manifest([row(1)], phase="calibration")
+ expected = mbpp_manifest_sha256([row(1)], phase="calibration")
+
+ assert mbpp_manifest_content_sha256(dict(reversed(list(manifest.items())))) == expected
+
+ changed = {**manifest, "unexpected_field": "authenticated too"}
+ assert mbpp_manifest_content_sha256(changed) != expected
+ with pytest.raises(TypeError, match="mapping"):
+ mbpp_manifest_content_sha256([manifest]) # type: ignore[arg-type]
+
+
def test_prompt_code_formatter_keeps_target_separate_and_normalizes_newlines() -> None:
example = row(9, newline="\r\n", code="def answer():\r\n return 9\r\n\r\n")
example["text"] = "Write task 9."
From c2ad68b22433b1b077df5aafaacc667e305b2294 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 02:06:18 +0800
Subject: [PATCH 05/22] feat: freeze exact-byte sensitivity rank fusion
---
...aptive-same-calibration-8task-556e527.json | 2915 +++++++++++++
...xperiment005-storage-boundary-599862e.json | 3703 +++++++++++++++++
research/CLAIM_BOUNDARY.md | 18 +-
research/EXPERIMENT_005_RESULT.md | 205 +
...PERIMENT_006_RANK_FUSION_PROTOCOL_DRAFT.md | 570 +++
research/STATUS.md | 26 +-
scripts/pilot_evaluate_hrr.py | 117 +-
src/recurquant/__init__.py | 4 +
src/recurquant/packed_cache.py | 197 +
src/recurquant/qwen35.py | 30 +
tests/test_pilot_evaluate_hrr.py | 25 +
tests/test_rank_fused_mixed_packed_cache.py | 315 ++
12 files changed, 8118 insertions(+), 7 deletions(-)
create mode 100644 evidence/experiment005-adaptive-same-calibration-8task-556e527.json
create mode 100644 evidence/experiment005-storage-boundary-599862e.json
create mode 100644 research/EXPERIMENT_005_RESULT.md
create mode 100644 research/EXPERIMENT_006_RANK_FUSION_PROTOCOL_DRAFT.md
create mode 100644 tests/test_rank_fused_mixed_packed_cache.py
diff --git a/evidence/experiment005-adaptive-same-calibration-8task-556e527.json b/evidence/experiment005-adaptive-same-calibration-8task-556e527.json
new file mode 100644
index 0000000..c106a5e
--- /dev/null
+++ b/evidence/experiment005-adaptive-same-calibration-8task-556e527.json
@@ -0,0 +1,2915 @@
+{
+ "artifact_kind": "recurquant_adaptive_row_packing_same_calibration_quality_diagnostic",
+ "canonical_evidence_sha256": "f07a6b852a4c427c0b9946ad44c21d023299d173eb24695462e99e3785061d61",
+ "evidence": {
+ "adaptive_policy_contracts": {
+ "adaptive_mse_hrr_h1_quota": {
+ "batch_size": 1,
+ "layer_quota_source": "hrr_h1 selector plan",
+ "resident_bytes": 2564096,
+ "selection": "per-update aligned INT4-to-INT8 row MSE reduction"
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "batch_size": 1,
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "resident_bytes": 2564096,
+ "selection": "per-update aligned INT4-to-INT8 row MSE reduction"
+ }
+ },
+ "aggregates": {
+ "adaptive_mse_hrr_h1_quota": {
+ "macro_cvar95_kl": 3.3163906931877136,
+ "macro_delta_nll": 0.7794309854507446,
+ "macro_mean_kl": 0.7939629852771759,
+ "macro_top1_agreement": 0.6900708600878716,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "macro_cvar95_kl": 2.902877390384674,
+ "macro_delta_nll": 0.4933023080229759,
+ "macro_mean_kl": 0.4791950900107622,
+ "macro_top1_agreement": 0.7851893156766891,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "delta_direction_magnitude_int4": {
+ "macro_cvar95_kl": 3.178670048713684,
+ "macro_delta_nll": 0.5449846908450127,
+ "macro_mean_kl": 0.5180577486753464,
+ "macro_top1_agreement": 0.768309511244297,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "hrr_h1": {
+ "macro_cvar95_kl": 3.399073839187622,
+ "macro_delta_nll": 0.6301188990473747,
+ "macro_mean_kl": 0.6441312469542027,
+ "macro_top1_agreement": 0.725699856877327,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "hrr_h32": {
+ "macro_cvar95_kl": 4.149197727441788,
+ "macro_delta_nll": 0.7533748596906662,
+ "macro_mean_kl": 0.7774462774395943,
+ "macro_top1_agreement": 0.706454798579216,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "random_rows_s1101": {
+ "macro_cvar95_kl": 7.6882004737854,
+ "macro_delta_nll": 2.729534089565277,
+ "macro_mean_kl": 2.842472165822983,
+ "macro_top1_agreement": 0.35263895243406296,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "row_mse": {
+ "macro_cvar95_kl": 3.694224625825882,
+ "macro_delta_nll": 0.7946401834487915,
+ "macro_mean_kl": 0.8343886435031891,
+ "macro_top1_agreement": 0.6903071627020836,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "signed_taylor_next_int4": {
+ "macro_cvar95_kl": 4.132046535611153,
+ "macro_delta_nll": 0.8252136260271072,
+ "macro_mean_kl": 0.8870953433215618,
+ "macro_top1_agreement": 0.656972274184227,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.0154180824756622,
+ "macro_delta_nll": 0.5480052754282951,
+ "macro_mean_kl": 0.5127170253545046,
+ "macro_top1_agreement": 0.7730078846216202,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "target_directional_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.361491322517395,
+ "macro_delta_nll": 0.5357813686132431,
+ "macro_mean_kl": 0.5205607209354639,
+ "macro_top1_agreement": 0.7908198460936546,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "uniform_int4": {
+ "macro_cvar95_kl": 7.600260317325592,
+ "macro_delta_nll": 2.6861148476600647,
+ "macro_mean_kl": 2.8513285517692566,
+ "macro_top1_agreement": 0.35369928926229477,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "v02_layer0_static": {
+ "macro_cvar95_kl": 4.46854567527771,
+ "macro_delta_nll": 0.8614744991064072,
+ "macro_mean_kl": 0.9269456639885902,
+ "macro_top1_agreement": 0.6566362977027893,
+ "task_count": 8,
+ "token_count": 642
+ }
+ },
+ "aggregates_full_code_secondary": {
+ "adaptive_mse_hrr_h1_quota": {
+ "macro_cvar95_kl": 3.3028323650360107,
+ "macro_delta_nll": 0.7689840346574783,
+ "macro_mean_kl": 0.7827266603708267,
+ "macro_top1_agreement": 0.6952420696616173,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "macro_cvar95_kl": 2.891676664352417,
+ "macro_delta_nll": 0.4872139096260071,
+ "macro_mean_kl": 0.4728761240839958,
+ "macro_top1_agreement": 0.7883592247962952,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "delta_direction_magnitude_int4": {
+ "macro_cvar95_kl": 3.161902904510498,
+ "macro_delta_nll": 0.5367827117443085,
+ "macro_mean_kl": 0.5108812358230352,
+ "macro_top1_agreement": 0.7720952108502388,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "hrr_h1": {
+ "macro_cvar95_kl": 3.388882279396057,
+ "macro_delta_nll": 0.6218181103467941,
+ "macro_mean_kl": 0.635199373587966,
+ "macro_top1_agreement": 0.7301077470183372,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "hrr_h32": {
+ "macro_cvar95_kl": 4.135775178670883,
+ "macro_delta_nll": 0.7428321987390518,
+ "macro_mean_kl": 0.7663818132132292,
+ "macro_top1_agreement": 0.7108453139662743,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "random_rows_s1101": {
+ "macro_cvar95_kl": 7.672792077064514,
+ "macro_delta_nll": 2.683250844478607,
+ "macro_mean_kl": 2.791328117251396,
+ "macro_top1_agreement": 0.36465270072221756,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "row_mse": {
+ "macro_cvar95_kl": 3.675527900457382,
+ "macro_delta_nll": 0.7827504575252533,
+ "macro_mean_kl": 0.8211609497666359,
+ "macro_top1_agreement": 0.6954880431294441,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "signed_taylor_next_int4": {
+ "macro_cvar95_kl": 4.1143283396959305,
+ "macro_delta_nll": 0.8136574774980545,
+ "macro_mean_kl": 0.8736393377184868,
+ "macro_top1_agreement": 0.6626181676983833,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.002905994653702,
+ "macro_delta_nll": 0.54025799036026,
+ "macro_mean_kl": 0.5057258978486061,
+ "macro_top1_agreement": 0.7763535603880882,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "target_directional_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.3521416783332825,
+ "macro_delta_nll": 0.5284674167633057,
+ "macro_mean_kl": 0.5135181862860918,
+ "macro_top1_agreement": 0.7937816083431244,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "uniform_int4": {
+ "macro_cvar95_kl": 7.581509709358215,
+ "macro_delta_nll": 2.6367427557706833,
+ "macro_mean_kl": 2.796179473400116,
+ "macro_top1_agreement": 0.3663086034357548,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "v02_layer0_static": {
+ "macro_cvar95_kl": 4.451788902282715,
+ "macro_delta_nll": 0.8490711152553558,
+ "macro_mean_kl": 0.9121971130371094,
+ "macro_top1_agreement": 0.6625703647732735,
+ "task_count": 8,
+ "token_count": 650
+ }
+ },
+ "artifact_kind": "recurquant_adaptive_row_packing_same_calibration_quality_diagnostic",
+ "claim_boundary": "The selector and quality diagnostic use the same MBPP calibration tasks. This can catch implementation failures but cannot establish held-out generalization, novelty, speed, or a breakthrough. The actual primary uses target-directional-Fisher per-layer quotas with causal per-write row-MSE selection. The primary metric excludes the prompt-to-first-code-token prediction because no stored quantized recurrent state can affect that output.",
+ "command": [
+ "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant\\.venv\\Scripts\\python.exe",
+ "scripts\\pilot_evaluate_hrr.py",
+ "--selector-artifact",
+ "artifacts\\experiment006-hrr-selector-8task-556e527.json",
+ "--loss-selector-artifact",
+ "artifacts\\experiment006-loss-selector-8task-556e527.json",
+ "--output",
+ "artifacts\\experiment006-adaptive-same-calibration-8task-556e527.json",
+ "--limit",
+ "8",
+ "--calibration-offset",
+ "0",
+ "--device",
+ "cuda",
+ "--local-files-only",
+ "--bootstrap-samples",
+ "10000"
+ ],
+ "contrasts_baseline_minus_primary_aligned_delta_nll": {
+ "adaptive_mse_hrr_h1_quota": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.1524614840745926,
+ 0.44845127817243335
+ ],
+ "mean_improvement": 0.2861286774277687,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "delta_direction_magnitude_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.05204220674932003,
+ 0.14878664575517173
+ ],
+ "mean_improvement": 0.05168238282203674,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "hrr_h1": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.0874815434217453,
+ 0.1885298192501068
+ ],
+ "mean_improvement": 0.1368165910243988,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "hrr_h32": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.15217549167573466,
+ 0.3820252573117613
+ ],
+ "mean_improvement": 0.2600725516676903,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "random_rows_s1101": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 1.9073398858308792,
+ 2.5579519122838974
+ ],
+ "mean_improvement": 2.236231781542301,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "row_mse": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.20023177694529298,
+ 0.3911982327699661
+ ],
+ "mean_improvement": 0.3013378754258156,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "signed_taylor_next_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.26850038655102254,
+ 0.39451563525944944
+ ],
+ "mean_improvement": 0.3319113180041313,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.025941481441259337,
+ 0.14100585989654058
+ ],
+ "mean_improvement": 0.054702967405319214,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "target_directional_fisher_difference_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.026418810337781883,
+ 0.12283947486430402
+ ],
+ "mean_improvement": 0.04247906059026718,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "uniform_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 1.7744093388319016,
+ 2.5614061504602432
+ ],
+ "mean_improvement": 2.1928125396370888,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "v02_layer0_static": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.22411299496889114,
+ 0.5117134675383568
+ ],
+ "mean_improvement": 0.36817219108343124,
+ "paired_examples": 8,
+ "seed": 2339
+ }
+ },
+ "created_at_utc": "2026-07-22T17:40:53.827148+00:00",
+ "dataset": {
+ "authenticated_selector_prefix": null,
+ "content_manifest_sha256": "97d691a6d45ee29668f5b0151c1a0885629539ac9e7967e9baa30cfb5c97ae8b",
+ "disjoint_from_all_selector_artifacts": null,
+ "evaluation_task_ids": [
+ 945,
+ 794,
+ 657,
+ 702,
+ 651,
+ 720,
+ 903,
+ 918
+ ],
+ "manifest": {
+ "config": "full",
+ "dataset_id": "google-research-datasets/mbpp",
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "phase": "calibration",
+ "revision": "4bb6404fdc6cacfda99d4ac4205087b89d32030c",
+ "row_count": 8,
+ "rows": [
+ {
+ "sha256": "df3782543fe3ef4a8443a7737e1f3d7678c974984d7960d19a53c0a94ff8c046",
+ "task_id": 651
+ },
+ {
+ "sha256": "807f4d8170d4920740bd290f081110e02695892d741647dd9c06eddcde0a659d",
+ "task_id": 657
+ },
+ {
+ "sha256": "54dc13e4c5b064b80966b9f315eed560502e37213bd74a5b712fcfc01cb605f3",
+ "task_id": 702
+ },
+ {
+ "sha256": "3efcea05b02d799e12cb49c5d26bbbf2c00972fd466bc30add66ad09a754fc14",
+ "task_id": 720
+ },
+ {
+ "sha256": "18b5d375c0d8a97b8a071d73e606ae091afe52f218959ae7e262ef7e2b155d50",
+ "task_id": 794
+ },
+ {
+ "sha256": "a58f7ba4c00be27de2a85b091d06e2bd8ad57f4f7a3859501b027350a2731307",
+ "task_id": 903
+ },
+ {
+ "sha256": "6d3c59ac8dba827b2c8d4ba8307892558d3832c1e622e12f9c8d3ae7371cc4d4",
+ "task_id": 918
+ },
+ {
+ "sha256": "3208a23529c654eb5f21fcab152e38a4d46e193c11bfba5e3efe6a614339e6f3",
+ "task_id": 945
+ }
+ ],
+ "schema": "recurquant.mbpp-manifest.v1",
+ "selection_namespace": "rq-v0.2",
+ "source_split": "train"
+ },
+ "manifest_sha256": "97d691a6d45ee29668f5b0151c1a0885629539ac9e7967e9baa30cfb5c97ae8b",
+ "phase": "calibration",
+ "selection_mode": "selector_task_prefix",
+ "selection_window": {
+ "calibration_offset": 0,
+ "limit": 8,
+ "resolved_before_tokenization_and_model_load": true,
+ "stop_exclusive": 8
+ },
+ "selector_task_ids": [
+ 651,
+ 657,
+ 702,
+ 720,
+ 794,
+ 903,
+ 918,
+ 945
+ ],
+ "selector_task_prefix": false,
+ "task_count": 8,
+ "tasks": [
+ {
+ "aligned_scored_tokens": 19,
+ "code_tokens": 20,
+ "full_code_scored_tokens": 20,
+ "prompt_tokens": 112,
+ "task_id": 945
+ },
+ {
+ "aligned_scored_tokens": 52,
+ "code_tokens": 53,
+ "full_code_scored_tokens": 53,
+ "prompt_tokens": 101,
+ "task_id": 794
+ },
+ {
+ "aligned_scored_tokens": 94,
+ "code_tokens": 95,
+ "full_code_scored_tokens": 95,
+ "prompt_tokens": 76,
+ "task_id": 657
+ },
+ {
+ "aligned_scored_tokens": 180,
+ "code_tokens": 181,
+ "full_code_scored_tokens": 181,
+ "prompt_tokens": 151,
+ "task_id": 702
+ },
+ {
+ "aligned_scored_tokens": 37,
+ "code_tokens": 38,
+ "full_code_scored_tokens": 38,
+ "prompt_tokens": 117,
+ "task_id": 651
+ },
+ {
+ "aligned_scored_tokens": 51,
+ "code_tokens": 52,
+ "full_code_scored_tokens": 52,
+ "prompt_tokens": 240,
+ "task_id": 720
+ },
+ {
+ "aligned_scored_tokens": 77,
+ "code_tokens": 78,
+ "full_code_scored_tokens": 78,
+ "prompt_tokens": 83,
+ "task_id": 903
+ },
+ {
+ "aligned_scored_tokens": 132,
+ "code_tokens": 133,
+ "full_code_scored_tokens": 133,
+ "prompt_tokens": 96,
+ "task_id": 918
+ }
+ ]
+ },
+ "diagnostic_only": true,
+ "environment": {
+ "cuda_available": true,
+ "cuda_runtime": "12.8",
+ "gpu": "NVIDIA GeForce RTX 5070 Laptop GPU",
+ "packages": {
+ "datasets": "4.8.5",
+ "numpy": "2.4.6",
+ "safetensors": "0.8.0",
+ "torch": "2.11.0+cu128",
+ "transformers": "5.14.1"
+ },
+ "platform": "Windows-10-10.0.26200-SP0",
+ "python": "3.11.15 (main, Jun 2 2026, 22:29:49) [MSC v.1944 64 bit (AMD64)]"
+ },
+ "heldout_gate": {
+ "applicable": false,
+ "passed": null,
+ "reason": "same-calibration diagnostics cannot satisfy the frozen holdout gate",
+ "schema": "recurquant.experiment005-heldout-gate.v1"
+ },
+ "methods": [
+ "uniform_int4",
+ "v02_layer0_static",
+ "hrr_h1",
+ "hrr_h32",
+ "row_mse",
+ "random_rows_s1101",
+ "signed_taylor_next_int4",
+ "target_directional_fisher_difference_int4",
+ "target_diagonal_fisher_difference_int4",
+ "delta_direction_magnitude_int4",
+ "adaptive_mse_hrr_h1_quota",
+ "adaptive_mse_target_directional_fisher_quota"
+ ],
+ "metric_contract": {
+ "contrasts": "paired task-macro baseline delta NLL minus primary delta NLL",
+ "excluded_from_primary": "prompt-to-first-code-token prediction",
+ "primary": "calibration-aligned code transitions after recurrent-state storage",
+ "primary_tokens_per_task": "code_tokens - 1",
+ "secondary": "full reference-code tokens, including the unaffected first token"
+ },
+ "model": {
+ "device": "cuda",
+ "dtype": "torch.bfloat16",
+ "id": "Qwen/Qwen3.5-0.8B-Base",
+ "revision": "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68"
+ },
+ "per_task": {
+ "adaptive_mse_hrr_h1_quota": [
+ {
+ "candidate_nll": 1.521657109260559,
+ "cvar95_kl": 1.3505640029907227,
+ "delta_nll": 0.2858901023864746,
+ "max_kl": 1.3505640029907227,
+ "mean_kl": 0.3595314025878906,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "candidate_nll": 1.5042493343353271,
+ "cvar95_kl": 3.1122920513153076,
+ "delta_nll": 0.4978659152984619,
+ "max_kl": 4.499517440795898,
+ "mean_kl": 0.5165233016014099,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "candidate_nll": 1.5017389059066772,
+ "cvar95_kl": 3.9232306480407715,
+ "delta_nll": 0.7005172371864319,
+ "max_kl": 4.5721306800842285,
+ "mean_kl": 0.7471798062324524,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7234042286872864
+ },
+ {
+ "candidate_nll": 2.3410258293151855,
+ "cvar95_kl": 4.804558277130127,
+ "delta_nll": 1.3640484809875488,
+ "max_kl": 7.769333839416504,
+ "mean_kl": 1.2250819206237793,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5833333134651184
+ },
+ {
+ "candidate_nll": 1.7362922430038452,
+ "cvar95_kl": 2.3318424224853516,
+ "delta_nll": 0.5664210319519043,
+ "max_kl": 2.3942956924438477,
+ "mean_kl": 0.5648953318595886,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7027027010917664
+ },
+ {
+ "candidate_nll": 1.1313115358352661,
+ "cvar95_kl": 2.403932809829712,
+ "delta_nll": 0.29355210065841675,
+ "max_kl": 2.9691216945648193,
+ "mean_kl": 0.4569181799888611,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8039215803146362
+ },
+ {
+ "candidate_nll": 1.8575284481048584,
+ "cvar95_kl": 3.819864273071289,
+ "delta_nll": 1.023275375366211,
+ "max_kl": 4.455229759216309,
+ "mean_kl": 0.985339879989624,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.5974025726318359
+ },
+ {
+ "candidate_nll": 2.3759725093841553,
+ "cvar95_kl": 4.784841060638428,
+ "delta_nll": 1.5038776397705078,
+ "max_kl": 5.305493354797363,
+ "mean_kl": 1.4962340593338013,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5075757503509521
+ }
+ ],
+ "adaptive_mse_target_directional_fisher_quota": [
+ {
+ "candidate_nll": 1.3034541606903076,
+ "cvar95_kl": 0.8177868127822876,
+ "delta_nll": 0.06768715381622314,
+ "max_kl": 0.8177868127822876,
+ "mean_kl": 0.1112782210111618,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8947368264198303
+ },
+ {
+ "candidate_nll": 1.3124535083770752,
+ "cvar95_kl": 1.9170337915420532,
+ "delta_nll": 0.30607008934020996,
+ "max_kl": 2.5172431468963623,
+ "mean_kl": 0.325796902179718,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "candidate_nll": 1.1538501977920532,
+ "cvar95_kl": 2.4800684452056885,
+ "delta_nll": 0.35262852907180786,
+ "max_kl": 4.00590181350708,
+ "mean_kl": 0.4227640628814697,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8085106611251831
+ },
+ {
+ "candidate_nll": 2.0987746715545654,
+ "cvar95_kl": 4.060663223266602,
+ "delta_nll": 1.1217973232269287,
+ "max_kl": 6.843515872955322,
+ "mean_kl": 0.8984136581420898,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6499999761581421
+ },
+ {
+ "candidate_nll": 1.5053826570510864,
+ "cvar95_kl": 2.8130877017974854,
+ "delta_nll": 0.3355114459991455,
+ "max_kl": 3.174671173095703,
+ "mean_kl": 0.2967134416103363,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.837837815284729
+ },
+ {
+ "candidate_nll": 1.1743980646133423,
+ "cvar95_kl": 3.2352826595306396,
+ "delta_nll": 0.3366386294364929,
+ "max_kl": 3.91865611076355,
+ "mean_kl": 0.39808011054992676,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8235294222831726
+ },
+ {
+ "candidate_nll": 1.5157321691513062,
+ "cvar95_kl": 4.825870037078857,
+ "delta_nll": 0.6814790964126587,
+ "max_kl": 5.618816375732422,
+ "mean_kl": 0.6759239435195923,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7272727489471436
+ },
+ {
+ "candidate_nll": 1.6167010068893433,
+ "cvar95_kl": 3.0732264518737793,
+ "delta_nll": 0.7446061968803406,
+ "max_kl": 3.4257588386535645,
+ "mean_kl": 0.704590380191803,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6742424368858337
+ }
+ ],
+ "delta_direction_magnitude_int4": [
+ {
+ "candidate_nll": 1.5311850309371948,
+ "cvar95_kl": 1.0018543004989624,
+ "delta_nll": 0.29541802406311035,
+ "max_kl": 1.0018543004989624,
+ "mean_kl": 0.14444810152053833,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "candidate_nll": 1.4897710084915161,
+ "cvar95_kl": 5.851797103881836,
+ "delta_nll": 0.4833875894546509,
+ "max_kl": 12.883463859558105,
+ "mean_kl": 0.6974834203720093,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "candidate_nll": 1.1799800395965576,
+ "cvar95_kl": 2.4215567111968994,
+ "delta_nll": 0.37875837087631226,
+ "max_kl": 2.8704397678375244,
+ "mean_kl": 0.3736823797225952,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8510638475418091
+ },
+ {
+ "candidate_nll": 2.046947956085205,
+ "cvar95_kl": 4.560434341430664,
+ "delta_nll": 1.0699706077575684,
+ "max_kl": 7.306674957275391,
+ "mean_kl": 0.9352683424949646,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6111111044883728
+ },
+ {
+ "candidate_nll": 1.724503755569458,
+ "cvar95_kl": 3.309788227081299,
+ "delta_nll": 0.5546325445175171,
+ "max_kl": 4.023754596710205,
+ "mean_kl": 0.39229220151901245,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7567567825317383
+ },
+ {
+ "candidate_nll": 1.0724178552627563,
+ "cvar95_kl": 1.6982628107070923,
+ "delta_nll": 0.23465842008590698,
+ "max_kl": 2.735661029815674,
+ "mean_kl": 0.2690630257129669,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8627451062202454
+ },
+ {
+ "candidate_nll": 1.3286190032958984,
+ "cvar95_kl": 3.076843023300171,
+ "delta_nll": 0.494365930557251,
+ "max_kl": 4.380039215087891,
+ "mean_kl": 0.45540544390678406,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7792207598686218
+ },
+ {
+ "candidate_nll": 1.720780849456787,
+ "cvar95_kl": 3.508823871612549,
+ "delta_nll": 0.8486860394477844,
+ "max_kl": 3.912299633026123,
+ "mean_kl": 0.8768190741539001,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6742424368858337
+ }
+ ],
+ "hrr_h1": [
+ {
+ "candidate_nll": 1.4150276184082031,
+ "cvar95_kl": 0.7921264171600342,
+ "delta_nll": 0.17926061153411865,
+ "max_kl": 0.7921264171600342,
+ "mean_kl": 0.23300278186798096,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "candidate_nll": 1.3561232089996338,
+ "cvar95_kl": 3.2065913677215576,
+ "delta_nll": 0.34973978996276855,
+ "max_kl": 3.997688055038452,
+ "mean_kl": 0.47810739278793335,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8846153616905212
+ },
+ {
+ "candidate_nll": 1.2239927053451538,
+ "cvar95_kl": 3.225297451019287,
+ "delta_nll": 0.42277103662490845,
+ "max_kl": 4.80308198928833,
+ "mean_kl": 0.528471052646637,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7553191781044006
+ },
+ {
+ "candidate_nll": 2.3196535110473633,
+ "cvar95_kl": 5.10039758682251,
+ "delta_nll": 1.3426761627197266,
+ "max_kl": 6.1808671951293945,
+ "mean_kl": 1.2563951015472412,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5222222208976746
+ },
+ {
+ "candidate_nll": 1.6552441120147705,
+ "cvar95_kl": 3.9683706760406494,
+ "delta_nll": 0.4853729009628296,
+ "max_kl": 4.7960028648376465,
+ "mean_kl": 0.46324843168258667,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7567567825317383
+ },
+ {
+ "candidate_nll": 1.2251418828964233,
+ "cvar95_kl": 2.4804813861846924,
+ "delta_nll": 0.387382447719574,
+ "max_kl": 3.1602442264556885,
+ "mean_kl": 0.47150465846061707,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8039215803146362
+ },
+ {
+ "candidate_nll": 1.7142348289489746,
+ "cvar95_kl": 3.9350757598876953,
+ "delta_nll": 0.8799817562103271,
+ "max_kl": 5.582791805267334,
+ "mean_kl": 0.7679694890975952,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.649350643157959
+ },
+ {
+ "candidate_nll": 1.8658612966537476,
+ "cvar95_kl": 4.484250068664551,
+ "delta_nll": 0.9937664866447449,
+ "max_kl": 6.055515766143799,
+ "mean_kl": 0.9543510675430298,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6439393758773804
+ }
+ ],
+ "hrr_h32": [
+ {
+ "candidate_nll": 1.47858464717865,
+ "cvar95_kl": 0.8985419273376465,
+ "delta_nll": 0.24281764030456543,
+ "max_kl": 0.8985419273376465,
+ "mean_kl": 0.2616751194000244,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "candidate_nll": 1.4424853324890137,
+ "cvar95_kl": 3.2515528202056885,
+ "delta_nll": 0.43610191345214844,
+ "max_kl": 4.571720600128174,
+ "mean_kl": 0.5696570873260498,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "candidate_nll": 1.348232626914978,
+ "cvar95_kl": 3.736093521118164,
+ "delta_nll": 0.5470109581947327,
+ "max_kl": 5.296608924865723,
+ "mean_kl": 0.6284127831459045,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7446808218955994
+ },
+ {
+ "candidate_nll": 2.40244722366333,
+ "cvar95_kl": 5.3171000480651855,
+ "delta_nll": 1.4254698753356934,
+ "max_kl": 6.360416889190674,
+ "mean_kl": 1.341440200805664,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5277777910232544
+ },
+ {
+ "candidate_nll": 2.0135583877563477,
+ "cvar95_kl": 6.502284049987793,
+ "delta_nll": 0.8436871767044067,
+ "max_kl": 8.4575777053833,
+ "mean_kl": 0.7446560859680176,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7567567825317383
+ },
+ {
+ "candidate_nll": 1.2332037687301636,
+ "cvar95_kl": 3.346160888671875,
+ "delta_nll": 0.3954443335533142,
+ "max_kl": 3.942091941833496,
+ "mean_kl": 0.5599767565727234,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7843137383460999
+ },
+ {
+ "candidate_nll": 1.67708420753479,
+ "cvar95_kl": 4.948601245880127,
+ "delta_nll": 0.8428311347961426,
+ "max_kl": 6.279153823852539,
+ "mean_kl": 0.8298649191856384,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6883116960525513
+ },
+ {
+ "candidate_nll": 2.1657307147979736,
+ "cvar95_kl": 5.193247318267822,
+ "delta_nll": 1.2936358451843262,
+ "max_kl": 6.915596008300781,
+ "mean_kl": 1.283887267112732,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5
+ }
+ ],
+ "random_rows_s1101": [
+ {
+ "candidate_nll": 3.441673755645752,
+ "cvar95_kl": 6.688381195068359,
+ "delta_nll": 2.205906867980957,
+ "max_kl": 6.688381195068359,
+ "mean_kl": 2.756582260131836,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.31578946113586426
+ },
+ {
+ "candidate_nll": 3.6150243282318115,
+ "cvar95_kl": 6.7014384269714355,
+ "delta_nll": 2.6086409091949463,
+ "max_kl": 6.983257293701172,
+ "mean_kl": 2.655632495880127,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.4423076808452606
+ },
+ {
+ "candidate_nll": 3.518528461456299,
+ "cvar95_kl": 7.542943477630615,
+ "delta_nll": 2.7173068523406982,
+ "max_kl": 8.907737731933594,
+ "mean_kl": 2.757606267929077,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.3404255211353302
+ },
+ {
+ "candidate_nll": 4.852642059326172,
+ "cvar95_kl": 9.85618782043457,
+ "delta_nll": 3.875664710998535,
+ "max_kl": 11.590734481811523,
+ "mean_kl": 3.701547145843506,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.21666666865348816
+ },
+ {
+ "candidate_nll": 3.6465272903442383,
+ "cvar95_kl": 10.18855094909668,
+ "delta_nll": 2.476655960083008,
+ "max_kl": 12.039348602294922,
+ "mean_kl": 2.7627503871917725,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.3513513505458832
+ },
+ {
+ "candidate_nll": 2.9387261867523193,
+ "cvar95_kl": 6.689493179321289,
+ "delta_nll": 2.100966691970825,
+ "max_kl": 7.234011173248291,
+ "mean_kl": 2.3478646278381348,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.47058823704719543
+ },
+ {
+ "candidate_nll": 2.9399731159210205,
+ "cvar95_kl": 5.610705375671387,
+ "delta_nll": 2.105720043182373,
+ "max_kl": 6.914088249206543,
+ "mean_kl": 1.9979133605957031,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.44155845046043396
+ },
+ {
+ "candidate_nll": 4.6175055503845215,
+ "cvar95_kl": 8.227903366088867,
+ "delta_nll": 3.745410680770874,
+ "max_kl": 8.815784454345703,
+ "mean_kl": 3.759880781173706,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.24242424964904785
+ }
+ ],
+ "row_mse": [
+ {
+ "candidate_nll": 1.6338046789169312,
+ "cvar95_kl": 2.1311771869659424,
+ "delta_nll": 0.3980376720428467,
+ "max_kl": 2.1311771869659424,
+ "mean_kl": 0.5359232425689697,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "candidate_nll": 1.541896939277649,
+ "cvar95_kl": 2.8863818645477295,
+ "delta_nll": 0.5355135202407837,
+ "max_kl": 4.380407333374023,
+ "mean_kl": 0.5883387327194214,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "candidate_nll": 1.5910316705703735,
+ "cvar95_kl": 5.046751976013184,
+ "delta_nll": 0.7898100018501282,
+ "max_kl": 5.6158576011657715,
+ "mean_kl": 0.9469754099845886,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.6808510422706604
+ },
+ {
+ "candidate_nll": 2.3459646701812744,
+ "cvar95_kl": 4.837377548217773,
+ "delta_nll": 1.3689873218536377,
+ "max_kl": 7.450765132904053,
+ "mean_kl": 1.2247120141983032,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5777778029441833
+ },
+ {
+ "candidate_nll": 1.9892563819885254,
+ "cvar95_kl": 3.6711325645446777,
+ "delta_nll": 0.8193851709365845,
+ "max_kl": 3.788031578063965,
+ "mean_kl": 0.7982465028762817,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7297297120094299
+ },
+ {
+ "candidate_nll": 1.1800658702850342,
+ "cvar95_kl": 2.32446026802063,
+ "delta_nll": 0.3423064351081848,
+ "max_kl": 2.606278896331787,
+ "mean_kl": 0.5047054886817932,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7647058963775635
+ },
+ {
+ "candidate_nll": 1.8294388055801392,
+ "cvar95_kl": 4.329058647155762,
+ "delta_nll": 0.9951857328414917,
+ "max_kl": 6.58737850189209,
+ "mean_kl": 0.9180334806442261,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6753246784210205
+ },
+ {
+ "candidate_nll": 1.9799903631210327,
+ "cvar95_kl": 4.327456951141357,
+ "delta_nll": 1.1078956127166748,
+ "max_kl": 5.218027591705322,
+ "mean_kl": 1.1581742763519287,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5303030014038086
+ }
+ ],
+ "signed_taylor_next_int4": [
+ {
+ "candidate_nll": 1.5024064779281616,
+ "cvar95_kl": 1.8164697885513306,
+ "delta_nll": 0.26663947105407715,
+ "max_kl": 1.8164697885513306,
+ "mean_kl": 0.4156881272792816,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "candidate_nll": 1.7318750619888306,
+ "cvar95_kl": 4.868865966796875,
+ "delta_nll": 0.7254916429519653,
+ "max_kl": 8.179862976074219,
+ "mean_kl": 0.7837780714035034,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.75
+ },
+ {
+ "candidate_nll": 1.45570969581604,
+ "cvar95_kl": 3.475843906402588,
+ "delta_nll": 0.6544880270957947,
+ "max_kl": 4.466429710388184,
+ "mean_kl": 0.7511340379714966,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7127659320831299
+ },
+ {
+ "candidate_nll": 2.465879201889038,
+ "cvar95_kl": 5.389158248901367,
+ "delta_nll": 1.4889018535614014,
+ "max_kl": 6.654348850250244,
+ "mean_kl": 1.4111559391021729,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5055555701255798
+ },
+ {
+ "candidate_nll": 1.828425645828247,
+ "cvar95_kl": 4.301302909851074,
+ "delta_nll": 0.6585544347763062,
+ "max_kl": 4.708497047424316,
+ "mean_kl": 0.7511183023452759,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7027027010917664
+ },
+ {
+ "candidate_nll": 1.3813329935073853,
+ "cvar95_kl": 4.675906658172607,
+ "delta_nll": 0.5435735583305359,
+ "max_kl": 5.054469585418701,
+ "mean_kl": 0.7468767166137695,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7450980544090271
+ },
+ {
+ "candidate_nll": 1.8729636669158936,
+ "cvar95_kl": 4.453776836395264,
+ "delta_nll": 1.038710594177246,
+ "max_kl": 6.199273586273193,
+ "mean_kl": 1.0229319334030151,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6103895902633667
+ },
+ {
+ "candidate_nll": 2.0974442958831787,
+ "cvar95_kl": 4.075047969818115,
+ "delta_nll": 1.2253494262695312,
+ "max_kl": 5.456568717956543,
+ "mean_kl": 1.2140796184539795,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.49242424964904785
+ }
+ ],
+ "target_diagonal_fisher_difference_int4": [
+ {
+ "candidate_nll": 1.5209951400756836,
+ "cvar95_kl": 1.2558786869049072,
+ "delta_nll": 0.2852281332015991,
+ "max_kl": 1.2558786869049072,
+ "mean_kl": 0.1572151482105255,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8947368264198303
+ },
+ {
+ "candidate_nll": 1.4543321132659912,
+ "cvar95_kl": 5.37181282043457,
+ "delta_nll": 0.447948694229126,
+ "max_kl": 11.827005386352539,
+ "mean_kl": 0.6362177729606628,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "candidate_nll": 1.1983875036239624,
+ "cvar95_kl": 2.0302774906158447,
+ "delta_nll": 0.39716583490371704,
+ "max_kl": 3.6801576614379883,
+ "mean_kl": 0.3306601643562317,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8191489577293396
+ },
+ {
+ "candidate_nll": 2.0335803031921387,
+ "cvar95_kl": 3.785457134246826,
+ "delta_nll": 1.056602954864502,
+ "max_kl": 5.025235176086426,
+ "mean_kl": 0.8664608597755432,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6222222447395325
+ },
+ {
+ "candidate_nll": 1.4882766008377075,
+ "cvar95_kl": 1.346226453781128,
+ "delta_nll": 0.3184053897857666,
+ "max_kl": 1.4148379564285278,
+ "mean_kl": 0.23320914804935455,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.8108108043670654
+ },
+ {
+ "candidate_nll": 1.1482648849487305,
+ "cvar95_kl": 2.5143041610717773,
+ "delta_nll": 0.3105054497718811,
+ "max_kl": 3.022414445877075,
+ "mean_kl": 0.4038626253604889,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7843137383460999
+ },
+ {
+ "candidate_nll": 1.4200193881988525,
+ "cvar95_kl": 3.506941795349121,
+ "delta_nll": 0.5857663154602051,
+ "max_kl": 6.059634685516357,
+ "mean_kl": 0.5298561453819275,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7662337422370911
+ },
+ {
+ "candidate_nll": 1.854514241218567,
+ "cvar95_kl": 4.312446117401123,
+ "delta_nll": 0.9824194312095642,
+ "max_kl": 5.261858940124512,
+ "mean_kl": 0.9442543387413025,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6212121248245239
+ }
+ ],
+ "target_directional_fisher_difference_int4": [
+ {
+ "candidate_nll": 1.445572853088379,
+ "cvar95_kl": 1.2641404867172241,
+ "delta_nll": 0.20980584621429443,
+ "max_kl": 1.2641404867172241,
+ "mean_kl": 0.13470770418643951,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.9473684430122375
+ },
+ {
+ "candidate_nll": 1.3638256788253784,
+ "cvar95_kl": 5.890485763549805,
+ "delta_nll": 0.3574422597885132,
+ "max_kl": 12.8174409866333,
+ "mean_kl": 0.5905574560165405,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "candidate_nll": 1.1582412719726562,
+ "cvar95_kl": 2.3940727710723877,
+ "delta_nll": 0.3570196032524109,
+ "max_kl": 4.519840240478516,
+ "mean_kl": 0.36104124784469604,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8404255509376526
+ },
+ {
+ "candidate_nll": 1.9988359212875366,
+ "cvar95_kl": 4.336951732635498,
+ "delta_nll": 1.0218586921691895,
+ "max_kl": 5.376936435699463,
+ "mean_kl": 0.9023396968841553,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.644444465637207
+ },
+ {
+ "candidate_nll": 1.5535638332366943,
+ "cvar95_kl": 2.9711849689483643,
+ "delta_nll": 0.3836926221847534,
+ "max_kl": 3.4203357696533203,
+ "mean_kl": 0.3690139353275299,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7837837934494019
+ },
+ {
+ "candidate_nll": 1.1590352058410645,
+ "cvar95_kl": 1.7222825288772583,
+ "delta_nll": 0.3212757706642151,
+ "max_kl": 2.289232015609741,
+ "mean_kl": 0.3079473078250885,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.843137264251709
+ },
+ {
+ "candidate_nll": 1.4574382305145264,
+ "cvar95_kl": 3.34493350982666,
+ "delta_nll": 0.6231851577758789,
+ "max_kl": 3.576073169708252,
+ "mean_kl": 0.523201048374176,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7662337422370911
+ },
+ {
+ "candidate_nll": 1.884065866470337,
+ "cvar95_kl": 4.967878818511963,
+ "delta_nll": 1.0119709968566895,
+ "max_kl": 5.710936069488525,
+ "mean_kl": 0.9756773710250854,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6742424368858337
+ }
+ ],
+ "uniform_int4": [
+ {
+ "candidate_nll": 3.8646814823150635,
+ "cvar95_kl": 6.306801795959473,
+ "delta_nll": 2.6289143562316895,
+ "max_kl": 6.306801795959473,
+ "mean_kl": 3.1720287799835205,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.21052631735801697
+ },
+ {
+ "candidate_nll": 3.9083590507507324,
+ "cvar95_kl": 7.112916469573975,
+ "delta_nll": 2.901975631713867,
+ "max_kl": 7.502933979034424,
+ "mean_kl": 2.9117941856384277,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.4038461446762085
+ },
+ {
+ "candidate_nll": 3.974540948867798,
+ "cvar95_kl": 8.55384635925293,
+ "delta_nll": 3.1733193397521973,
+ "max_kl": 10.474206924438477,
+ "mean_kl": 3.2451982498168945,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.3404255211353302
+ },
+ {
+ "candidate_nll": 3.892319679260254,
+ "cvar95_kl": 7.774782180786133,
+ "delta_nll": 2.915342330932617,
+ "max_kl": 9.205711364746094,
+ "mean_kl": 2.783794403076172,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.32777777314186096
+ },
+ {
+ "candidate_nll": 4.135063171386719,
+ "cvar95_kl": 10.680988311767578,
+ "delta_nll": 2.9651918411254883,
+ "max_kl": 12.127657890319824,
+ "mean_kl": 3.2829434871673584,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.37837839126586914
+ },
+ {
+ "candidate_nll": 2.3367018699645996,
+ "cvar95_kl": 6.4115424156188965,
+ "delta_nll": 1.4989423751831055,
+ "max_kl": 7.608405113220215,
+ "mean_kl": 2.047372341156006,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.47058823704719543
+ },
+ {
+ "candidate_nll": 3.0540404319763184,
+ "cvar95_kl": 6.830252647399902,
+ "delta_nll": 2.219787359237671,
+ "max_kl": 8.387694358825684,
+ "mean_kl": 2.2611472606658936,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.4025973975658417
+ },
+ {
+ "candidate_nll": 4.057540416717529,
+ "cvar95_kl": 7.13095235824585,
+ "delta_nll": 3.185445547103882,
+ "max_kl": 8.500591278076172,
+ "mean_kl": 3.1063497066497803,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.2954545319080353
+ }
+ ],
+ "v02_layer0_static": [
+ {
+ "candidate_nll": 1.5403542518615723,
+ "cvar95_kl": 3.368896484375,
+ "delta_nll": 0.3045872449874878,
+ "max_kl": 3.368896484375,
+ "mean_kl": 0.5823673605918884,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.6842105388641357
+ },
+ {
+ "candidate_nll": 1.5990421772003174,
+ "cvar95_kl": 3.445737600326538,
+ "delta_nll": 0.5926587581634521,
+ "max_kl": 4.194878101348877,
+ "mean_kl": 0.6758943200111389,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "candidate_nll": 1.4461653232574463,
+ "cvar95_kl": 3.6765236854553223,
+ "delta_nll": 0.6449436545372009,
+ "max_kl": 5.483456134796143,
+ "mean_kl": 0.8215219378471375,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.6276595592498779
+ },
+ {
+ "candidate_nll": 2.4067187309265137,
+ "cvar95_kl": 5.471136569976807,
+ "delta_nll": 1.429741382598877,
+ "max_kl": 7.964560508728027,
+ "mean_kl": 1.2766573429107666,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5388888716697693
+ },
+ {
+ "candidate_nll": 2.1247687339782715,
+ "cvar95_kl": 5.125461578369141,
+ "delta_nll": 0.9548975229263306,
+ "max_kl": 5.5240960121154785,
+ "mean_kl": 0.864471971988678,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.6756756901741028
+ },
+ {
+ "candidate_nll": 1.1851874589920044,
+ "cvar95_kl": 3.251368761062622,
+ "delta_nll": 0.34742802381515503,
+ "max_kl": 3.956939935684204,
+ "mean_kl": 0.6366665959358215,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7254902124404907
+ },
+ {
+ "candidate_nll": 2.0860273838043213,
+ "cvar95_kl": 6.265845775604248,
+ "delta_nll": 1.2517743110656738,
+ "max_kl": 7.339381694793701,
+ "mean_kl": 1.1677201986312866,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6363636255264282
+ },
+ {
+ "candidate_nll": 2.2378599643707275,
+ "cvar95_kl": 5.143394947052002,
+ "delta_nll": 1.36576509475708,
+ "max_kl": 5.984044075012207,
+ "mean_kl": 1.3902655839920044,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5378788113594055
+ }
+ ]
+ },
+ "per_task_full_code_secondary": {
+ "adaptive_mse_hrr_h1_quota": [
+ {
+ "candidate_nll": 1.4839556217193604,
+ "cvar95_kl": 1.3505640029907227,
+ "delta_nll": 0.2715955972671509,
+ "max_kl": 1.3505640029907227,
+ "mean_kl": 0.3415548503398895,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.75
+ },
+ {
+ "candidate_nll": 1.5277574062347412,
+ "cvar95_kl": 3.1122920513153076,
+ "delta_nll": 0.4884723424911499,
+ "max_kl": 4.499517440795898,
+ "mean_kl": 0.5067775845527649,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "candidate_nll": 1.518835425376892,
+ "cvar95_kl": 3.9232306480407715,
+ "delta_nll": 0.6931431293487549,
+ "max_kl": 4.5721306800842285,
+ "mean_kl": 0.7393147349357605,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.7263157963752747
+ },
+ {
+ "candidate_nll": 2.3327126502990723,
+ "cvar95_kl": 4.696091651916504,
+ "delta_nll": 1.356512427330017,
+ "max_kl": 7.769333839416504,
+ "mean_kl": 1.2183135747909546,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.5856353640556335
+ },
+ {
+ "candidate_nll": 1.7083547115325928,
+ "cvar95_kl": 2.3318424224853516,
+ "delta_nll": 0.5515149831771851,
+ "max_kl": 2.3942956924438477,
+ "mean_kl": 0.5500296354293823,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7105262875556946
+ },
+ {
+ "candidate_nll": 1.1213890314102173,
+ "cvar95_kl": 2.403932809829712,
+ "delta_nll": 0.2879068851470947,
+ "max_kl": 2.9691216945648193,
+ "mean_kl": 0.4481312930583954,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "candidate_nll": 1.8414400815963745,
+ "cvar95_kl": 3.819864273071289,
+ "delta_nll": 1.0101566314697266,
+ "max_kl": 4.455229759216309,
+ "mean_kl": 0.9727073311805725,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6025640964508057
+ },
+ {
+ "candidate_nll": 2.362440347671509,
+ "cvar95_kl": 4.784841060638428,
+ "delta_nll": 1.4925702810287476,
+ "max_kl": 5.305493354797363,
+ "mean_kl": 1.484984278678894,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5112782120704651
+ }
+ ],
+ "adaptive_mse_target_directional_fisher_quota": [
+ {
+ "candidate_nll": 1.2766627073287964,
+ "cvar95_kl": 0.8177868127822876,
+ "delta_nll": 0.06430268287658691,
+ "max_kl": 0.8177868127822876,
+ "mean_kl": 0.10571432113647461,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8999999761581421
+ },
+ {
+ "candidate_nll": 1.3395802974700928,
+ "cvar95_kl": 1.9170337915420532,
+ "delta_nll": 0.30029523372650146,
+ "max_kl": 2.5172431468963623,
+ "mean_kl": 0.3196497857570648,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "candidate_nll": 1.1746087074279785,
+ "cvar95_kl": 2.4800684452056885,
+ "delta_nll": 0.3489164113998413,
+ "max_kl": 4.00590181350708,
+ "mean_kl": 0.4183139204978943,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8105263113975525
+ },
+ {
+ "candidate_nll": 2.0917999744415283,
+ "cvar95_kl": 3.971057415008545,
+ "delta_nll": 1.1155997514724731,
+ "max_kl": 6.843515872955322,
+ "mean_kl": 0.893450140953064,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6519337296485901
+ },
+ {
+ "candidate_nll": 1.4835220575332642,
+ "cvar95_kl": 2.8130877017974854,
+ "delta_nll": 0.32668232917785645,
+ "max_kl": 3.174671173095703,
+ "mean_kl": 0.28890517354011536,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "candidate_nll": 1.163646936416626,
+ "cvar95_kl": 3.2352826595306396,
+ "delta_nll": 0.3301647901535034,
+ "max_kl": 3.91865611076355,
+ "mean_kl": 0.3904247283935547,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "candidate_nll": 1.5040258169174194,
+ "cvar95_kl": 4.825870037078857,
+ "delta_nll": 0.6727423667907715,
+ "max_kl": 5.618816375732422,
+ "mean_kl": 0.6672582030296326,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7307692170143127
+ },
+ {
+ "candidate_nll": 1.6088777780532837,
+ "cvar95_kl": 3.0732264518737793,
+ "delta_nll": 0.7390077114105225,
+ "max_kl": 3.4257588386535645,
+ "mean_kl": 0.6992927193641663,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6766917109489441
+ }
+ ],
+ "delta_direction_magnitude_int4": [
+ {
+ "candidate_nll": 1.4930073022842407,
+ "cvar95_kl": 1.0018543004989624,
+ "delta_nll": 0.28064727783203125,
+ "max_kl": 1.0018543004989624,
+ "mean_kl": 0.1372257024049759,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8500000238418579
+ },
+ {
+ "candidate_nll": 1.5135524272918701,
+ "cvar95_kl": 5.851797103881836,
+ "delta_nll": 0.4742673635482788,
+ "max_kl": 12.883463859558105,
+ "mean_kl": 0.6843233704566956,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.7735849022865295
+ },
+ {
+ "candidate_nll": 1.2004636526107788,
+ "cvar95_kl": 2.4215567111968994,
+ "delta_nll": 0.3747713565826416,
+ "max_kl": 2.8704397678375244,
+ "mean_kl": 0.36974889039993286,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8526315689086914
+ },
+ {
+ "candidate_nll": 2.040259838104248,
+ "cvar95_kl": 4.426297187805176,
+ "delta_nll": 1.0640596151351929,
+ "max_kl": 7.306674957275391,
+ "mean_kl": 0.9301011562347412,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6132596731185913
+ },
+ {
+ "candidate_nll": 1.6968767642974854,
+ "cvar95_kl": 3.309788227081299,
+ "delta_nll": 0.5400370359420776,
+ "max_kl": 4.023754596710205,
+ "mean_kl": 0.3819687068462372,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7631579041481018
+ },
+ {
+ "candidate_nll": 1.063628077507019,
+ "cvar95_kl": 1.6982628107070923,
+ "delta_nll": 0.23014593124389648,
+ "max_kl": 2.735661029815674,
+ "mean_kl": 0.26388871669769287,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "candidate_nll": 1.3193116188049316,
+ "cvar95_kl": 3.076843023300171,
+ "delta_nll": 0.4880281686782837,
+ "max_kl": 4.380039215087891,
+ "mean_kl": 0.44956690073013306,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7820512652397156
+ },
+ {
+ "candidate_nll": 1.7121750116348267,
+ "cvar95_kl": 3.508823871612549,
+ "delta_nll": 0.8423049449920654,
+ "max_kl": 3.912299633026123,
+ "mean_kl": 0.8702264428138733,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6766917109489441
+ }
+ ],
+ "hrr_h1": [
+ {
+ "candidate_nll": 1.382657766342163,
+ "cvar95_kl": 0.7921264171600342,
+ "delta_nll": 0.1702977418899536,
+ "max_kl": 0.7921264171600342,
+ "mean_kl": 0.22135265171527863,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.800000011920929
+ },
+ {
+ "candidate_nll": 1.3824260234832764,
+ "cvar95_kl": 3.2065913677215576,
+ "delta_nll": 0.34314095973968506,
+ "max_kl": 3.997688055038452,
+ "mean_kl": 0.46908649802207947,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8867924809455872
+ },
+ {
+ "candidate_nll": 1.2440130710601807,
+ "cvar95_kl": 3.225297451019287,
+ "delta_nll": 0.41832077503204346,
+ "max_kl": 4.80308198928833,
+ "mean_kl": 0.5229081511497498,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.75789475440979
+ },
+ {
+ "candidate_nll": 2.3114583492279053,
+ "cvar95_kl": 5.01886510848999,
+ "delta_nll": 1.33525812625885,
+ "max_kl": 6.1808671951293945,
+ "mean_kl": 1.2494535446166992,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.5248618721961975
+ },
+ {
+ "candidate_nll": 1.6294397115707397,
+ "cvar95_kl": 3.9683706760406494,
+ "delta_nll": 0.47259998321533203,
+ "max_kl": 4.7960028648376465,
+ "mean_kl": 0.45105767250061035,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7631579041481018
+ },
+ {
+ "candidate_nll": 1.2134149074554443,
+ "cvar95_kl": 2.4804813861846924,
+ "delta_nll": 0.3799327611923218,
+ "max_kl": 3.1602442264556885,
+ "mean_kl": 0.4624372720718384,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "candidate_nll": 1.6999834775924683,
+ "cvar95_kl": 3.9350757598876953,
+ "delta_nll": 0.8687000274658203,
+ "max_kl": 5.582791805267334,
+ "mean_kl": 0.7581237554550171,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6538461446762085
+ },
+ {
+ "candidate_nll": 1.856164574623108,
+ "cvar95_kl": 4.484250068664551,
+ "delta_nll": 0.9862945079803467,
+ "max_kl": 6.055515766143799,
+ "mean_kl": 0.9471754431724548,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.646616518497467
+ }
+ ],
+ "hrr_h32": [
+ {
+ "candidate_nll": 1.4430367946624756,
+ "cvar95_kl": 0.8985419273376465,
+ "delta_nll": 0.2306767702102661,
+ "max_kl": 0.8985419273376465,
+ "mean_kl": 0.248591348528862,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8500000238418579
+ },
+ {
+ "candidate_nll": 1.4671587944030762,
+ "cvar95_kl": 3.2515528202056885,
+ "delta_nll": 0.42787373065948486,
+ "max_kl": 4.571720600128174,
+ "mean_kl": 0.5589088797569275,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8113207817077637
+ },
+ {
+ "candidate_nll": 1.3669452667236328,
+ "cvar95_kl": 3.736093521118164,
+ "delta_nll": 0.5412529706954956,
+ "max_kl": 5.296608924865723,
+ "mean_kl": 0.6217979192733765,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.7473683953285217
+ },
+ {
+ "candidate_nll": 2.393794536590576,
+ "cvar95_kl": 5.209719657897949,
+ "delta_nll": 1.417594313621521,
+ "max_kl": 6.360416889190674,
+ "mean_kl": 1.3340288400650024,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.530386745929718
+ },
+ {
+ "candidate_nll": 1.9783248901367188,
+ "cvar95_kl": 6.502284049987793,
+ "delta_nll": 0.821485161781311,
+ "max_kl": 8.4575777053833,
+ "mean_kl": 0.7250598669052124,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7631579041481018
+ },
+ {
+ "candidate_nll": 1.221321702003479,
+ "cvar95_kl": 3.346160888671875,
+ "delta_nll": 0.38783955574035645,
+ "max_kl": 3.942091941833496,
+ "mean_kl": 0.5492079854011536,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7884615659713745
+ },
+ {
+ "candidate_nll": 1.663309097290039,
+ "cvar95_kl": 4.948601245880127,
+ "delta_nll": 0.8320256471633911,
+ "max_kl": 6.279153823852539,
+ "mean_kl": 0.8192257285118103,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.692307710647583
+ },
+ {
+ "candidate_nll": 2.1537795066833496,
+ "cvar95_kl": 5.193247318267822,
+ "delta_nll": 1.2839094400405884,
+ "max_kl": 6.915596008300781,
+ "mean_kl": 1.2742339372634888,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5037593841552734
+ }
+ ],
+ "random_rows_s1101": [
+ {
+ "candidate_nll": 3.307971239089966,
+ "cvar95_kl": 6.688381195068359,
+ "delta_nll": 2.095611095428467,
+ "max_kl": 6.688381195068359,
+ "mean_kl": 2.618752956390381,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.3499999940395355
+ },
+ {
+ "candidate_nll": 3.5987062454223633,
+ "cvar95_kl": 6.7014384269714355,
+ "delta_nll": 2.5594210624694824,
+ "max_kl": 6.983257293701172,
+ "mean_kl": 2.6055264472961426,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.4528301954269409
+ },
+ {
+ "candidate_nll": 3.5143957138061523,
+ "cvar95_kl": 7.542943477630615,
+ "delta_nll": 2.6887035369873047,
+ "max_kl": 8.907737731933594,
+ "mean_kl": 2.72857928276062,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.34736841917037964
+ },
+ {
+ "candidate_nll": 4.830452919006348,
+ "cvar95_kl": 9.73292064666748,
+ "delta_nll": 3.854252815246582,
+ "max_kl": 11.590734481811523,
+ "mean_kl": 3.6810967922210693,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.2209944725036621
+ },
+ {
+ "candidate_nll": 3.5683207511901855,
+ "cvar95_kl": 10.18855094909668,
+ "delta_nll": 2.4114809036254883,
+ "max_kl": 12.039348602294922,
+ "mean_kl": 2.6900463104248047,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.3684210479259491
+ },
+ {
+ "candidate_nll": 2.89404559135437,
+ "cvar95_kl": 6.689493179321289,
+ "delta_nll": 2.060563564300537,
+ "max_kl": 7.234011173248291,
+ "mean_kl": 2.30271315574646,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.48076921701431274
+ },
+ {
+ "candidate_nll": 2.9100074768066406,
+ "cvar95_kl": 5.610705375671387,
+ "delta_nll": 2.078723907470703,
+ "max_kl": 6.914088249206543,
+ "mean_kl": 1.9722992181777954,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.44871795177459717
+ },
+ {
+ "candidate_nll": 4.587120056152344,
+ "cvar95_kl": 8.227903366088867,
+ "delta_nll": 3.717249870300293,
+ "max_kl": 8.815784454345703,
+ "mean_kl": 3.7316107749938965,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.24812030792236328
+ }
+ ],
+ "row_mse": [
+ {
+ "candidate_nll": 1.5904957056045532,
+ "cvar95_kl": 2.1311771869659424,
+ "delta_nll": 0.37813568115234375,
+ "max_kl": 2.1311771869659424,
+ "mean_kl": 0.509127140045166,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.75
+ },
+ {
+ "candidate_nll": 1.5646946430206299,
+ "cvar95_kl": 2.8863818645477295,
+ "delta_nll": 0.5254095792770386,
+ "max_kl": 4.380407333374023,
+ "mean_kl": 0.5772380232810974,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8301886916160583
+ },
+ {
+ "candidate_nll": 1.6071884632110596,
+ "cvar95_kl": 5.046751976013184,
+ "delta_nll": 0.7814961671829224,
+ "max_kl": 5.6158576011657715,
+ "mean_kl": 0.9370073676109314,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.6842105388641357
+ },
+ {
+ "candidate_nll": 2.3376240730285645,
+ "cvar95_kl": 4.687803745269775,
+ "delta_nll": 1.3614238500595093,
+ "max_kl": 7.450765132904053,
+ "mean_kl": 1.2179455757141113,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.580110490322113
+ },
+ {
+ "candidate_nll": 1.9546620845794678,
+ "cvar95_kl": 3.6711325645446777,
+ "delta_nll": 0.7978223562240601,
+ "max_kl": 3.788031578063965,
+ "mean_kl": 0.777239978313446,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "candidate_nll": 1.1692057847976685,
+ "cvar95_kl": 2.32446026802063,
+ "delta_nll": 0.3357236385345459,
+ "max_kl": 2.606278896331787,
+ "mean_kl": 0.49499958753585815,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "candidate_nll": 1.8137105703353882,
+ "cvar95_kl": 4.329058647155762,
+ "delta_nll": 0.9824271202087402,
+ "max_kl": 6.58737850189209,
+ "mean_kl": 0.9062637686729431,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6794871687889099
+ },
+ {
+ "candidate_nll": 1.9694353342056274,
+ "cvar95_kl": 4.327456951141357,
+ "delta_nll": 1.0995652675628662,
+ "max_kl": 5.218027591705322,
+ "mean_kl": 1.1494661569595337,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5338345766067505
+ }
+ ],
+ "signed_taylor_next_int4": [
+ {
+ "candidate_nll": 1.4656673669815063,
+ "cvar95_kl": 1.8164697885513306,
+ "delta_nll": 0.2533073425292969,
+ "max_kl": 1.8164697885513306,
+ "mean_kl": 0.3949037194252014,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.75
+ },
+ {
+ "candidate_nll": 1.751088261604309,
+ "cvar95_kl": 4.868865966796875,
+ "delta_nll": 0.7118031978607178,
+ "max_kl": 8.179862976074219,
+ "mean_kl": 0.7689898014068604,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.7547169923782349
+ },
+ {
+ "candidate_nll": 1.4732908010482788,
+ "cvar95_kl": 3.475843906402588,
+ "delta_nll": 0.6475985050201416,
+ "max_kl": 4.466429710388184,
+ "mean_kl": 0.7432272434234619,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.7157894968986511
+ },
+ {
+ "candidate_nll": 2.456876516342163,
+ "cvar95_kl": 5.24741268157959,
+ "delta_nll": 1.480676293373108,
+ "max_kl": 6.654348850250244,
+ "mean_kl": 1.4033595323562622,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.5082873106002808
+ },
+ {
+ "candidate_nll": 1.7980637550354004,
+ "cvar95_kl": 4.301302909851074,
+ "delta_nll": 0.6412240266799927,
+ "max_kl": 4.708497047424316,
+ "mean_kl": 0.7313520312309265,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7105262875556946
+ },
+ {
+ "candidate_nll": 1.3666024208068848,
+ "cvar95_kl": 4.675906658172607,
+ "delta_nll": 0.5331202745437622,
+ "max_kl": 5.054469585418701,
+ "mean_kl": 0.7325137257575989,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.75
+ },
+ {
+ "candidate_nll": 1.8566772937774658,
+ "cvar95_kl": 4.453776836395264,
+ "delta_nll": 1.0253938436508179,
+ "max_kl": 6.199273586273193,
+ "mean_kl": 1.0098174810409546,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6153846383094788
+ },
+ {
+ "candidate_nll": 2.0860064029693604,
+ "cvar95_kl": 4.075047969818115,
+ "delta_nll": 1.2161363363265991,
+ "max_kl": 5.456568717956543,
+ "mean_kl": 1.2049511671066284,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.49624061584472656
+ }
+ ],
+ "target_diagonal_fisher_difference_int4": [
+ {
+ "candidate_nll": 1.48332679271698,
+ "cvar95_kl": 1.2558786869049072,
+ "delta_nll": 0.2709667682647705,
+ "max_kl": 1.2558786869049072,
+ "mean_kl": 0.14935438334941864,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8999999761581421
+ },
+ {
+ "candidate_nll": 1.478781819343567,
+ "cvar95_kl": 5.37181282043457,
+ "delta_nll": 0.4394967555999756,
+ "max_kl": 11.827005386352539,
+ "mean_kl": 0.624213695526123,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "candidate_nll": 1.218677282333374,
+ "cvar95_kl": 2.0302774906158447,
+ "delta_nll": 0.3929849863052368,
+ "max_kl": 3.6801576614379883,
+ "mean_kl": 0.32717952132225037,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.821052610874176
+ },
+ {
+ "candidate_nll": 2.026965618133545,
+ "cvar95_kl": 3.6853604316711426,
+ "delta_nll": 1.0507653951644897,
+ "max_kl": 5.025235176086426,
+ "mean_kl": 0.8616735935211182,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6243094205856323
+ },
+ {
+ "candidate_nll": 1.466866135597229,
+ "cvar95_kl": 1.346226453781128,
+ "delta_nll": 0.3100264072418213,
+ "max_kl": 1.4148379564285278,
+ "mean_kl": 0.22707204520702362,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.8157894611358643
+ },
+ {
+ "candidate_nll": 1.1380162239074707,
+ "cvar95_kl": 2.5143041610717773,
+ "delta_nll": 0.30453407764434814,
+ "max_kl": 3.022414445877075,
+ "mean_kl": 0.39609605073928833,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7884615659713745
+ },
+ {
+ "candidate_nll": 1.4095401763916016,
+ "cvar95_kl": 3.506941795349121,
+ "delta_nll": 0.5782567262649536,
+ "max_kl": 6.059634685516357,
+ "mean_kl": 0.5230631232261658,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "candidate_nll": 1.8449028730392456,
+ "cvar95_kl": 4.312446117401123,
+ "delta_nll": 0.9750328063964844,
+ "max_kl": 5.261858940124512,
+ "mean_kl": 0.9371547698974609,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6240601539611816
+ }
+ ],
+ "target_directional_fisher_difference_int4": [
+ {
+ "candidate_nll": 1.4116756916046143,
+ "cvar95_kl": 1.2641404867172241,
+ "delta_nll": 0.19931566715240479,
+ "max_kl": 1.2641404867172241,
+ "mean_kl": 0.1279723197221756,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.949999988079071
+ },
+ {
+ "candidate_nll": 1.3899832963943481,
+ "cvar95_kl": 5.890485763549805,
+ "delta_nll": 0.35069823265075684,
+ "max_kl": 12.8174409866333,
+ "mean_kl": 0.5794148445129395,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8301886916160583
+ },
+ {
+ "candidate_nll": 1.178953766822815,
+ "cvar95_kl": 2.3940727710723877,
+ "delta_nll": 0.35326147079467773,
+ "max_kl": 4.519840240478516,
+ "mean_kl": 0.35724082589149475,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "candidate_nll": 1.9924132823944092,
+ "cvar95_kl": 4.262154579162598,
+ "delta_nll": 1.016213059425354,
+ "max_kl": 5.376936435699463,
+ "mean_kl": 0.8973543643951416,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6464088559150696
+ },
+ {
+ "candidate_nll": 1.5304352045059204,
+ "cvar95_kl": 2.9711849689483643,
+ "delta_nll": 0.3735954761505127,
+ "max_kl": 3.4203357696533203,
+ "mean_kl": 0.3593030869960785,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "candidate_nll": 1.148579478263855,
+ "cvar95_kl": 1.7222825288772583,
+ "delta_nll": 0.3150973320007324,
+ "max_kl": 2.289232015609741,
+ "mean_kl": 0.3020252585411072,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.8461538553237915
+ },
+ {
+ "candidate_nll": 1.4464792013168335,
+ "cvar95_kl": 3.34493350982666,
+ "delta_nll": 0.6151957511901855,
+ "max_kl": 3.576073169708252,
+ "mean_kl": 0.5164933204650879,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "candidate_nll": 1.8742324113845825,
+ "cvar95_kl": 4.967878818511963,
+ "delta_nll": 1.0043623447418213,
+ "max_kl": 5.710936069488525,
+ "mean_kl": 0.9683414697647095,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6766917109489441
+ }
+ ],
+ "uniform_int4": [
+ {
+ "candidate_nll": 3.7098286151885986,
+ "cvar95_kl": 6.306801795959473,
+ "delta_nll": 2.4974684715270996,
+ "max_kl": 6.306801795959473,
+ "mean_kl": 3.013427257537842,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.25
+ },
+ {
+ "candidate_nll": 3.8865065574645996,
+ "cvar95_kl": 7.112916469573975,
+ "delta_nll": 2.8472213745117188,
+ "max_kl": 7.502933979034424,
+ "mean_kl": 2.8568546772003174,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.4150943458080292
+ },
+ {
+ "candidate_nll": 3.9656083583831787,
+ "cvar95_kl": 8.55384635925293,
+ "delta_nll": 3.139915943145752,
+ "max_kl": 10.474206924438477,
+ "mean_kl": 3.21103835105896,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.34736841917037964
+ },
+ {
+ "candidate_nll": 3.8754353523254395,
+ "cvar95_kl": 7.624777317047119,
+ "delta_nll": 2.899235248565674,
+ "max_kl": 9.205711364746094,
+ "mean_kl": 2.7684144973754883,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.33149170875549316
+ },
+ {
+ "candidate_nll": 4.044000625610352,
+ "cvar95_kl": 10.680988311767578,
+ "delta_nll": 2.8871607780456543,
+ "max_kl": 12.127657890319824,
+ "mean_kl": 3.1965503692626953,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.3947368562221527
+ },
+ {
+ "candidate_nll": 2.303598642349243,
+ "cvar95_kl": 6.4115424156188965,
+ "delta_nll": 1.4701164960861206,
+ "max_kl": 7.608405113220215,
+ "mean_kl": 2.0079994201660156,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.48076921701431274
+ },
+ {
+ "candidate_nll": 3.0226120948791504,
+ "cvar95_kl": 6.830252647399902,
+ "delta_nll": 2.191328525543213,
+ "max_kl": 8.387694358825684,
+ "mean_kl": 2.2321579456329346,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.41025641560554504
+ },
+ {
+ "candidate_nll": 4.031365394592285,
+ "cvar95_kl": 7.13095235824585,
+ "delta_nll": 3.1614952087402344,
+ "max_kl": 8.500591278076172,
+ "mean_kl": 3.082993268966675,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.30075186491012573
+ }
+ ],
+ "v02_layer0_static": [
+ {
+ "candidate_nll": 1.5017179250717163,
+ "cvar95_kl": 3.368896484375,
+ "delta_nll": 0.28935790061950684,
+ "max_kl": 3.368896484375,
+ "mean_kl": 0.5532490015029907,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.699999988079071
+ },
+ {
+ "candidate_nll": 1.6207616329193115,
+ "cvar95_kl": 3.445737600326538,
+ "delta_nll": 0.5814765691757202,
+ "max_kl": 4.194878101348877,
+ "mean_kl": 0.663141667842865,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8301886916160583
+ },
+ {
+ "candidate_nll": 1.4638469219207764,
+ "cvar95_kl": 3.6765236854553223,
+ "delta_nll": 0.6381546258926392,
+ "max_kl": 5.483456134796143,
+ "mean_kl": 0.8128743171691895,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.6315789222717285
+ },
+ {
+ "candidate_nll": 2.3980424404144287,
+ "cvar95_kl": 5.337082386016846,
+ "delta_nll": 1.4218422174453735,
+ "max_kl": 7.964560508728027,
+ "mean_kl": 1.2696040868759155,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.541436493396759
+ },
+ {
+ "candidate_nll": 2.086608409881592,
+ "cvar95_kl": 5.125461578369141,
+ "delta_nll": 0.9297686815261841,
+ "max_kl": 5.5240960121154785,
+ "mean_kl": 0.8417227268218994,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.6842105388641357
+ },
+ {
+ "candidate_nll": 1.1742287874221802,
+ "cvar95_kl": 3.251368761062622,
+ "delta_nll": 0.3407466411590576,
+ "max_kl": 3.956939935684204,
+ "mean_kl": 0.624423086643219,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7307692170143127
+ },
+ {
+ "candidate_nll": 2.067009449005127,
+ "cvar95_kl": 6.265845775604248,
+ "delta_nll": 1.235725998878479,
+ "max_kl": 7.339381694793701,
+ "mean_kl": 1.1527493000030518,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6410256624221802
+ },
+ {
+ "candidate_nll": 2.2253663539886475,
+ "cvar95_kl": 5.143394947052002,
+ "delta_nll": 1.3554962873458862,
+ "max_kl": 5.984044075012207,
+ "mean_kl": 1.3798127174377441,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5413534045219421
+ }
+ ]
+ },
+ "prerequisite_artifacts": {},
+ "primary": "adaptive_mse_target_directional_fisher_quota",
+ "repository": {
+ "commit": "556e527b75f73d557e2bddf4a9973ce945cf1ab9",
+ "end": {
+ "commit": "556e527b75f73d557e2bddf4a9973ce945cf1ab9",
+ "status": [],
+ "worktree_clean": true
+ },
+ "stable_commit": true,
+ "start": {
+ "commit": "556e527b75f73d557e2bddf4a9973ce945cf1ab9",
+ "status": [],
+ "worktree_clean": true
+ },
+ "status": [],
+ "worktree_clean": true
+ },
+ "schema_version": 1,
+ "selector_artifacts": {
+ "hrr": {
+ "canonical_evidence_sha256": "07e646ccb9b1df5ff9873a94f7bacb07d7a4e2b70136e3a68f40d1619814d899",
+ "path": "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant-adoption\\artifacts\\experiment006-hrr-selector-8task-556e527.json",
+ "sha256": "fa02e1d468ecc13c78b7cf8e63f237e372c556d9fed0c1f4b47c9dd901a808dd"
+ },
+ "loss_sensitivity": {
+ "canonical_evidence_sha256": "ae92af38475720eb1ce19527f1c2de3d0d1fc045a1160a83f8da30ecde282214",
+ "path": "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant-adoption\\artifacts\\experiment006-loss-selector-8task-556e527.json",
+ "sha256": "33bdc5939429281ba5377eeb02d59fac72a0f8da657c713bb7854d235e2fb057"
+ }
+ },
+ "source_files": {
+ "paths": [
+ "scripts/pilot_evaluate_hrr.py",
+ "src/recurquant/cache.py",
+ "src/recurquant/evaluation.py",
+ "src/recurquant/evidence.py",
+ "src/recurquant/metrics.py",
+ "src/recurquant/mixed_quantization.py",
+ "src/recurquant/packed_cache.py",
+ "src/recurquant/public_data.py",
+ "src/recurquant/quantization.py",
+ "src/recurquant/qwen35.py",
+ "src/recurquant/row_policy.py"
+ ],
+ "sha256_end": {
+ "scripts/pilot_evaluate_hrr.py": "9d17dba62bbf5c8a0b8ab675b531463c07dcedd44c74bc32dff140fb8d3b2d90",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "1c4bd0d45fe7f07ba6c842e07e4733e69c3e2abe52c3e8a129cba3299c08f9da",
+ "src/recurquant/packed_cache.py": "84e1f2cc9e40ac4970562cb6ad6a74be1f9b72cff8741fdf29d9eb4b1e9c2d22",
+ "src/recurquant/public_data.py": "82cb2970900204d7278d656709ded3f80a3b1ff8fd3ffeb270816b5f9ddc3feb",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/qwen35.py": "f3bbd6e996045ae10da61003729a4329286601634b115abe49196386c5f0a819",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708"
+ },
+ "sha256_start": {
+ "scripts/pilot_evaluate_hrr.py": "9d17dba62bbf5c8a0b8ab675b531463c07dcedd44c74bc32dff140fb8d3b2d90",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "1c4bd0d45fe7f07ba6c842e07e4733e69c3e2abe52c3e8a129cba3299c08f9da",
+ "src/recurquant/packed_cache.py": "84e1f2cc9e40ac4970562cb6ad6a74be1f9b72cff8741fdf29d9eb4b1e9c2d22",
+ "src/recurquant/public_data.py": "82cb2970900204d7278d656709ded3f80a3b1ff8fd3ffeb270816b5f9ddc3feb",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/qwen35.py": "f3bbd6e996045ae10da61003729a4329286601634b115abe49196386c5f0a819",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708"
+ },
+ "stable": true
+ },
+ "storage": {
+ "candidates": {
+ "adaptive_mse_hrr_h1_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "delta_direction_magnitude_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "hrr_h1": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "hrr_h32": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "random_rows_s1101": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "row_mse": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "signed_taylor_next_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "target_directional_fisher_difference_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "uniform_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "largest_materialized_state_bytes": 1048576,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2433024,
+ "resident_compression_ratio": 7.757575757575758
+ },
+ "v02_layer0_static": {
+ "full_precision_equivalent_bytes": 18874368,
+ "largest_materialized_state_bytes": 1048576,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252
+ }
+ },
+ "fp32_reference_recurrent_state_bytes": 18874368
+ }
+ },
+ "schema_version": 1
+}
diff --git a/evidence/experiment005-storage-boundary-599862e.json b/evidence/experiment005-storage-boundary-599862e.json
new file mode 100644
index 0000000..f5d8c7d
--- /dev/null
+++ b/evidence/experiment005-storage-boundary-599862e.json
@@ -0,0 +1,3703 @@
+{
+ "artifact_kind": "recurquant_storage_boundary_taylor_diagnostic",
+ "canonical_evidence_sha256": "b168330b4c39963b7c149230d4b1ad9fa57b20b02d6d95ee583ee9941f68b19f",
+ "evidence": {
+ "artifact_kind": "recurquant_storage_boundary_taylor_diagnostic",
+ "claim_boundary": "One pinned calibration task, one target transition, four rows fixed by geometry, and four finite-difference step sizes. This checks implementation sign and local derivative consistency only. It does not establish policy quality, held-out generalization, free generation, statistical significance, novelty, speed, memory improvement, or a breakthrough.",
+ "command": [
+ "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant\\.venv\\Scripts\\python.exe",
+ "scripts\\pilot_validate_storage_boundary.py",
+ "--output",
+ "artifacts\\experiment005-storage-boundary-599862e.json",
+ "--device",
+ "cuda",
+ "--local-files-only"
+ ],
+ "created_at_utc": "2026-07-22T17:07:41.231231+00:00",
+ "dataset": {
+ "code_token_ids_canonical_sha256": "9a3026f57cc9b4e304ac38ecf106b4841cbf37c7cdeb6d8ce9f5abd4f6c3c615",
+ "code_tokens": 20,
+ "code_utf8_sha256": "9fc3b6b4a08339f6a15d8b95135d4c7ae28054fbb1bb66813fbec897eb513c7c",
+ "development_or_confirmation_loaded": false,
+ "input_token_id": 727,
+ "manifest": {
+ "config": "full",
+ "dataset_id": "google-research-datasets/mbpp",
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "phase": "calibration",
+ "revision": "4bb6404fdc6cacfda99d4ac4205087b89d32030c",
+ "row_count": 1,
+ "rows": [
+ {
+ "sha256": "3208a23529c654eb5f21fcab152e38a4d46e193c11bfba5e3efe6a614339e6f3",
+ "task_id": 945
+ }
+ ],
+ "schema": "recurquant.mbpp-manifest.v1",
+ "selection_namespace": "rq-v0.2",
+ "source_split": "train"
+ },
+ "manifest_sha256": "221fca7ac25d13dbd2fa445c2f4082b99a36f2fcfeeef5c68833dd5b1f46fe93",
+ "phase": "calibration",
+ "prompt_token_ids_canonical_sha256": "44f5eae6514eeee15042229026079e4e58c1c0b63155b2284454deb39ad3e279",
+ "prompt_tokens": 112,
+ "prompt_utf8_sha256": "2bbf9ffde8045523b93582d26cf6161d21945fc2face9003be831cb6e8f29a6f",
+ "target_token_id": 13992,
+ "task_id": 945,
+ "task_index": 0,
+ "task_prefix_limit": 1,
+ "transition_index": 0
+ },
+ "derivative_gate": {
+ "failures": [
+ "central-difference sign agreement fell below threshold"
+ ],
+ "observed": {
+ "converged_row_fraction": 0.75,
+ "informative_rows": 4,
+ "maximum_baseline_repeat_absolute_error": 0.0,
+ "median_relative_error": 0.03400520381314055,
+ "near_zero_checks": 0,
+ "near_zero_checks_passed": 0,
+ "near_zero_rows": 0,
+ "rows": 4,
+ "sign_agreement": 0.8125,
+ "sign_checks": 16
+ },
+ "passed": false,
+ "thresholds": {
+ "baseline_repeat_absolute_tolerance": 1e-07,
+ "derivative_informative_floor": 1e-08,
+ "maximum_median_relative_error": 0.1,
+ "minimum_converged_row_fraction": 0.75,
+ "minimum_informative_rows": 3,
+ "minimum_sign_agreement": 0.95,
+ "model_dtype": "torch.float32",
+ "near_zero_absolute_tolerance": 2e-07
+ }
+ },
+ "diagnostic_only": true,
+ "environment": {
+ "cuda_available": true,
+ "cuda_runtime": "12.8",
+ "gpu": "NVIDIA GeForce RTX 5070 Laptop GPU",
+ "packages": {
+ "datasets": "4.8.5",
+ "numpy": "2.4.6",
+ "safetensors": "0.8.0",
+ "torch": "2.11.0+cu128",
+ "transformers": "5.14.1"
+ },
+ "platform": "Windows-10-10.0.26200-SP0",
+ "python": "3.11.15 (main, Jun 2 2026, 22:29:49) [MSC v.1944 64 bit (AMD64)]"
+ },
+ "implementation": {
+ "source_hashes_end": {
+ "scripts/pilot_validate_storage_boundary.py": "bba39f4e7f218c8b8c319c7b047071655b634a5dc5cb0471bc67d0bf6a2f076a",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/public_data.py": "16a79a86afc0db4b32a606aaa492b348f1509e14fd6a88b51cb384220c7d43cf",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/storage_boundary_validation.py": "20e02a2da70141ce6580133b8c3bd8b7cd9ebd8a8912f533f5a62974ca13a7d8"
+ },
+ "source_hashes_start": {
+ "scripts/pilot_validate_storage_boundary.py": "bba39f4e7f218c8b8c319c7b047071655b634a5dc5cb0471bc67d0bf6a2f076a",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/public_data.py": "16a79a86afc0db4b32a606aaa492b348f1509e14fd6a88b51cb384220c7d43cf",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/storage_boundary_validation.py": "20e02a2da70141ce6580133b8c3bd8b7cd9ebd8a8912f533f5a62974ca13a7d8"
+ },
+ "unchanged_during_run": true
+ },
+ "method": {
+ "cache_isolation": {
+ "cache_metadata_attributes": [
+ "offloading",
+ "layer_class_to_replicate"
+ ],
+ "claim_limit": "This fingerprint does not claim to serialize arbitrary unlisted Python attributes or external model state.",
+ "fingerprint_scope": "Tensor shapes, dtypes, and bytes for keys, values, convolution states, and recurrent states; cache/layer classes; layer count; and the listed cache-history, initialization, geometry, dtype, and device metadata.",
+ "layer_metadata_attributes": [
+ "number_of_states",
+ "is_conv_states_initialized",
+ "is_recurrent_states_initialized",
+ "has_previous_state",
+ "conv_kernel_size",
+ "is_initialized",
+ "cumulative_length",
+ "sliding_window",
+ "max_cache_len",
+ "device",
+ "dtype",
+ "record_past"
+ ],
+ "procedure": "The raw cache fingerprint is checked before and after every row-epsilon validation. Each alpha forward deep-copies an identical physical-INT4 boundary cache."
+ },
+ "deployable_alphas": [
+ 0,
+ 1
+ ],
+ "epsilons": [
+ 0.25,
+ 0.125,
+ 0.0625,
+ 0.03125
+ ],
+ "forward_count": 80,
+ "loss": "teacher-forced next-token target NLL",
+ "negative_alpha_note": "-epsilon is controlled extrapolation used only for central difference",
+ "quantity_checked": "-gradient dot (Q8(raw row) - Q4(raw row))",
+ "row_selection": {
+ "frozen_in_source": true,
+ "strata_source_coordinates": [
+ {
+ "head_index": 0,
+ "label": "early_low",
+ "recurrent_layer_ordinal": 0,
+ "row_index": 0
+ },
+ {
+ "head_index": 5,
+ "label": "early_mid",
+ "recurrent_layer_ordinal": 5,
+ "row_index": 42
+ },
+ {
+ "head_index": 10,
+ "label": "late_mid",
+ "recurrent_layer_ordinal": 11,
+ "row_index": 85
+ },
+ {
+ "head_index": 15,
+ "label": "late_high",
+ "recurrent_layer_ordinal": 17,
+ "row_index": 127
+ }
+ ],
+ "uses_measured_benefit": false
+ },
+ "storage_path": "Q4(raw) + alpha * (Q8(raw) - Q4(raw)) for one row",
+ "trajectory": "uniform physical-INT4 pack/dequantize storage before every prior token; raw update retained at the measured boundary"
+ },
+ "model": {
+ "attention_implementation": "eager",
+ "class": "Qwen3_5ForCausalLM",
+ "config_canonical_sha256": "ca893b30656df515d5fa986c579d0ec59c1edd6740e920b086423e1f14e69840",
+ "device": "cuda",
+ "dtype": "torch.float32",
+ "id": "Qwen/Qwen3.5-0.8B-Base",
+ "parameter_count": 752393024,
+ "recurrent_geometry": {
+ "key_rows": 128,
+ "model_layer_indices": [
+ 0,
+ 1,
+ 2,
+ 4,
+ 5,
+ 6,
+ 8,
+ 9,
+ 10,
+ 12,
+ 13,
+ 14,
+ 16,
+ 17,
+ 18,
+ 20,
+ 21,
+ 22
+ ],
+ "value_dim": 128,
+ "value_heads": 16
+ },
+ "revision": "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68"
+ },
+ "quantizers": {
+ "int4": {
+ "bits": 4,
+ "epsilon": 1e-12,
+ "flatten_last_dims": 1,
+ "group_size": 128,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "seed": 2339
+ },
+ "int8": {
+ "bits": 8,
+ "epsilon": 1e-12,
+ "flatten_last_dims": 1,
+ "group_size": 128,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "seed": 2339
+ },
+ "physical_endpoint_note": "Q4 and Q8 endpoint rows are decoded from actual packed payloads and FP16 scales; intermediate alphas are floating-point interventions"
+ },
+ "raw_boundary_cache_fingerprint_sha256": "7824648f2747b05fa877d28a7ff3a654ea29e5fa8fc469593c85ac4d051e6789",
+ "repository": {
+ "end": {
+ "commit": "599862eef3b635f14b05c578f02393a0abd072a6",
+ "status": [],
+ "tracked_diff_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
+ "worktree_clean": true
+ },
+ "start": {
+ "commit": "599862eef3b635f14b05c578f02393a0abd072a6",
+ "status": [],
+ "tracked_diff_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
+ "worktree_clean": true
+ }
+ },
+ "rows": [
+ {
+ "epsilon_results": [
+ {
+ "autograd_directional_derivative": 1.534285755042659e-07,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": 0.0,
+ "derivative_absolute_error": 1.534285755042659e-07,
+ "derivative_sign_agreement": false,
+ "endpoint_sign_agreement": false,
+ "endpoint_taylor_residual": 1.534285755042659e-07,
+ "epsilon": 0.25,
+ "loss_at_int8_endpoint": 0.03833549842238426,
+ "loss_at_minus_epsilon": 0.03833549842238426,
+ "loss_at_plus_epsilon": 0.03833549842238426,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 0.0,
+ "predicted_benefit_autograd": -1.534285755042659e-07,
+ "predicted_benefit_central": -0.0,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": 1.534285755042659e-07,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": 4.6193599700927734e-07,
+ "derivative_absolute_error": 3.0850742150501144e-07,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": false,
+ "endpoint_taylor_residual": 1.534285755042659e-07,
+ "epsilon": 0.125,
+ "loss_at_int8_endpoint": 0.03833549842238426,
+ "loss_at_minus_epsilon": 0.03833549842238426,
+ "loss_at_plus_epsilon": 0.038335613906383514,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 0.0,
+ "predicted_benefit_autograd": -1.534285755042659e-07,
+ "predicted_benefit_central": -4.6193599700927734e-07,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": 1.534285755042659e-07,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": 0.0,
+ "derivative_absolute_error": 1.534285755042659e-07,
+ "derivative_sign_agreement": false,
+ "endpoint_sign_agreement": false,
+ "endpoint_taylor_residual": 1.534285755042659e-07,
+ "epsilon": 0.0625,
+ "loss_at_int8_endpoint": 0.03833549842238426,
+ "loss_at_minus_epsilon": 0.03833549842238426,
+ "loss_at_plus_epsilon": 0.03833549842238426,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 0.0,
+ "predicted_benefit_autograd": -1.534285755042659e-07,
+ "predicted_benefit_central": -0.0,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": 1.534285755042659e-07,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": 0.0,
+ "derivative_absolute_error": 1.534285755042659e-07,
+ "derivative_sign_agreement": false,
+ "endpoint_sign_agreement": false,
+ "endpoint_taylor_residual": 1.534285755042659e-07,
+ "epsilon": 0.03125,
+ "loss_at_int8_endpoint": 0.03833549842238426,
+ "loss_at_minus_epsilon": 0.03833549842238426,
+ "loss_at_plus_epsilon": 0.03833549842238426,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 0.0,
+ "predicted_benefit_autograd": -1.534285755042659e-07,
+ "predicted_benefit_central": -0.0,
+ "repeated_loss_at_zero": 0.03833549842238426
+ }
+ ],
+ "location": {
+ "head_index": 0,
+ "layer_index": 0,
+ "row_index": 0
+ },
+ "negative_gradient_dot_direction": -1.534285755042659e-07,
+ "physical_endpoints": {
+ "int4": {
+ "bits": 4,
+ "payload": {
+ "canonical_values_sha256": "0d54d9cd5816c202130519c6aa049b93918def5596281f70b1fd9d18e010fe86",
+ "dtype": "torch.uint8",
+ "l2_norm": 1215.2584087345374,
+ "maximum": 255.0,
+ "minimum": 0.0,
+ "raw_bytes_sha256": "3fd0f13f3b8f86f57b34c5f5ebe66369202311773b5117a31359dca368286c49",
+ "shape": [
+ 64
+ ]
+ },
+ "payload_bytes": 64,
+ "resident_bytes": 66,
+ "scale_bytes": 2,
+ "scales": {
+ "canonical_values_sha256": "aa3d97fa317385be616cfe1206bedd0540874c7285600de845da0e84773d3eaa",
+ "dtype": "torch.float16",
+ "l2_norm": 0.00023603439331054688,
+ "maximum": 0.00023603439331054688,
+ "minimum": 0.00023603439331054688,
+ "raw_bytes_sha256": "bc4244e57d9c7f1d7686c1a6c8266d7774b5e7551374dfb93817bd7180741920",
+ "shape": [
+ 1,
+ 1
+ ],
+ "values_float64": [
+ [
+ 0.00023603439331054688
+ ]
+ ]
+ }
+ },
+ "int8": {
+ "bits": 8,
+ "payload": {
+ "canonical_values_sha256": "3fa7ca5100867ff6e37eeb07d7ae21a7fc3be26c0a3eda4f90b3861b35f83cf4",
+ "dtype": "torch.int8",
+ "l2_norm": 411.32347367977917,
+ "maximum": 127.0,
+ "minimum": -93.0,
+ "raw_bytes_sha256": "ae4fdaf03fa4b1a4892bbe8d49d0ef8229b79253604000a5c89836fc15809d2d",
+ "shape": [
+ 128
+ ]
+ },
+ "payload_bytes": 128,
+ "resident_bytes": 130,
+ "scale_bytes": 2,
+ "scales": {
+ "canonical_values_sha256": "38457251b4f7dc3f159dda5f9be801d07e1754f8577e23c5b65a856dcadaad3d",
+ "dtype": "torch.float16",
+ "l2_norm": 1.2993812561035156e-05,
+ "maximum": 1.2993812561035156e-05,
+ "minimum": 1.2993812561035156e-05,
+ "raw_bytes_sha256": "153d812467db095632c6583da7f82cf7ad1e3f9ef18b6358c10f28d2804822f4",
+ "shape": [
+ 1,
+ 1
+ ],
+ "values_float64": [
+ [
+ 1.2993812561035156e-05
+ ]
+ ]
+ }
+ }
+ },
+ "selection_basis": "fixed geometry only; no selector scores or benefits read",
+ "stratum": "early_low",
+ "tensors": {
+ "direction_int8_minus_int4": {
+ "canonical_values_sha256": "394217bb3c626e38366d57e4e9834a8a4edcc886b882c15866c322dbd941b10a",
+ "dtype": "torch.float32",
+ "l2_norm": 0.0007519544623991942,
+ "maximum": 0.0001169443130493164,
+ "minimum": -0.00011909008026123047,
+ "raw_bytes_sha256": "5d9b2af5c69052b13e394ab0f435170adc60af237f4f5b81416b5568be4f8f02",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ 4.112720489501953e-05,
+ 0.0001016855239868164,
+ -0.00010609626770019531,
+ 1.2993812561035156e-05,
+ 1.5139579772949219e-05,
+ -3.0279159545898438e-05,
+ 2.8133392333984375e-05,
+ 7.367134094238281e-05,
+ 4.3272972106933594e-05,
+ 9.524822235107422e-05,
+ 1.0848045349121094e-05,
+ -6.282329559326172e-05,
+ -9.524822235107422e-05,
+ 2.5987625122070312e-05,
+ 0.00010180473327636719,
+ 5.8531761169433594e-05,
+ -2.5987625122070312e-05,
+ 1.2993812561035156e-05,
+ -2.5987625122070312e-05,
+ 8.225440979003906e-05,
+ -0.00011265277862548828,
+ -8.440017700195312e-05,
+ 1.0848045349121094e-05,
+ -8.702278137207031e-06,
+ 4.291534423828125e-06,
+ 6.711483001708984e-05,
+ 8.702278137207031e-06,
+ -3.457069396972656e-05,
+ 0.0001125335693359375,
+ 3.0279159545898438e-05,
+ -7.796287536621094e-05,
+ -6.4373016357421875e-06,
+ 2.1457672119140625e-06,
+ -2.5987625122070312e-05,
+ -2.8133392333984375e-05,
+ -0.00010180473327636719,
+ 1.2993812561035156e-05,
+ -4.410743713378906e-06,
+ 8.237361907958984e-05,
+ 1.2993812561035156e-05,
+ 3.254413604736328e-05,
+ -0.00010824203491210938,
+ -3.24249267578125e-05,
+ 6.282329559326172e-05,
+ 3.24249267578125e-05,
+ 6.556510925292969e-06,
+ -4.982948303222656e-05,
+ 2.1457672119140625e-06,
+ -9.524822235107422e-05,
+ 9.09566879272461e-05,
+ -6.0677528381347656e-05,
+ -3.898143768310547e-05,
+ 9.310245513916016e-05,
+ 6.496906280517578e-05,
+ -6.282329559326172e-05,
+ 3.898143768310547e-05,
+ -2.0265579223632812e-06,
+ 2.384185791015625e-05,
+ -7.581710815429688e-05,
+ -0.00010180473327636719,
+ 5.841255187988281e-05,
+ 3.6835670471191406e-05,
+ -8.0108642578125e-05,
+ -9.524822235107422e-05,
+ 5.412101745605469e-05,
+ 4.291534423828125e-06,
+ 0.00010180473327636719,
+ 3.24249267578125e-05,
+ -3.6835670471191406e-05,
+ 4.112720489501953e-05,
+ -0.00010395050048828125,
+ 1.0848045349121094e-05,
+ -7.796287536621094e-05,
+ 4.3272972106933594e-05,
+ 6.92605972290039e-05,
+ 9.09566879272461e-05,
+ -0.00011909008026123047,
+ 8.0108642578125e-05,
+ 6.0677528381347656e-05,
+ 9.09566879272461e-05,
+ 9.09566879272461e-05,
+ -7.796287536621094e-05,
+ -1.5139579772949219e-05,
+ -7.581710815429688e-05,
+ -7.581710815429688e-05,
+ -7.796287536621094e-05,
+ 0.00011038780212402344,
+ -8.237361907958984e-05,
+ -8.0108642578125e-05,
+ 0.0001169443130493164,
+ -8.881092071533203e-05,
+ 4.553794860839844e-05,
+ 1.0848045349121094e-05,
+ 9.524822235107422e-05,
+ 4.3272972106933594e-05,
+ -8.702278137207031e-06,
+ -9.310245513916016e-05,
+ 3.457069396972656e-05,
+ -3.0279159545898438e-05,
+ -6.282329559326172e-05,
+ 1.0848045349121094e-05,
+ 8.0108642578125e-05,
+ -4.3272972106933594e-05,
+ -8.666515350341797e-05,
+ -2.1457672119140625e-06,
+ 0.00010395050048828125,
+ -1.2993812561035156e-05,
+ -5.1975250244140625e-05,
+ 9.310245513916016e-05,
+ -2.8133392333984375e-05,
+ -8.45193862915039e-05,
+ -1.2993812561035156e-05,
+ -8.0108642578125e-05,
+ 5.841255187988281e-05,
+ 5.841255187988281e-05,
+ 9.09566879272461e-05,
+ 6.496906280517578e-05,
+ 6.496906280517578e-05,
+ -3.898143768310547e-05,
+ 7.140636444091797e-05,
+ -0.00010824203491210938,
+ 4.756450653076172e-05,
+ 0.00010609626770019531,
+ 8.45193862915039e-05,
+ -4.3272972106933594e-05,
+ 0.00010180473327636719,
+ 8.237361907958984e-05,
+ -2.8252601623535156e-05
+ ]
+ },
+ "int4": {
+ "canonical_values_sha256": "60b059103a7059ad68ad1d38fee9bd30fd1f4201a1917b9daa9545e54d6e061c",
+ "dtype": "torch.float32",
+ "l2_norm": 0.005403074222010136,
+ "maximum": 0.0016522407531738281,
+ "minimum": -0.0011801719665527344,
+ "raw_bytes_sha256": "010fde4c421f0837c77cfa5f37002d64486f4d69fd9cd3265673295096a74678",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ -0.00023603439331054688,
+ -0.0011801719665527344,
+ 0.00023603439331054688,
+ 0.0,
+ -0.00023603439331054688,
+ 0.00047206878662109375,
+ -0.00023603439331054688,
+ 0.00047206878662109375,
+ -0.00047206878662109375,
+ -0.00047206878662109375,
+ 0.00023603439331054688,
+ -0.00023603439331054688,
+ 0.00047206878662109375,
+ 0.0,
+ 0.00023603439331054688,
+ 0.0007081031799316406,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.00047206878662109375,
+ -0.00047206878662109375,
+ 0.0007081031799316406,
+ 0.00023603439331054688,
+ -0.00047206878662109375,
+ -0.00047206878662109375,
+ -0.00023603439331054688,
+ 0.00047206878662109375,
+ 0.0009441375732421875,
+ -0.0009441375732421875,
+ -0.00047206878662109375,
+ 0.0,
+ 0.0007081031799316406,
+ -0.00023603439331054688,
+ 0.0,
+ 0.00023603439331054688,
+ -0.00023603439331054688,
+ 0.0,
+ -0.0009441375732421875,
+ 0.0009441375732421875,
+ 0.0,
+ 0.0007081031799316406,
+ 0.00047206878662109375,
+ 0.0007081031799316406,
+ 0.00023603439331054688,
+ -0.0007081031799316406,
+ 0.0007081031799316406,
+ -0.00023603439331054688,
+ -0.00023603439331054688,
+ 0.00047206878662109375,
+ 0.0,
+ -0.00047206878662109375,
+ 0.0,
+ -0.00023603439331054688,
+ 0.0,
+ -0.00023603439331054688,
+ 0.0,
+ 0.0016522407531738281,
+ 0.00023603439331054688,
+ -0.00023603439331054688,
+ -0.00023603439331054688,
+ -0.0007081031799316406,
+ 0.00023603439331054688,
+ 0.00023603439331054688,
+ 0.00047206878662109375,
+ -0.00023603439331054688,
+ -0.00047206878662109375,
+ 0.00023603439331054688,
+ -0.0007081031799316406,
+ -0.00023603439331054688,
+ -0.00023603439331054688,
+ 0.0,
+ 0.00023603439331054688,
+ 0.0,
+ -0.00047206878662109375,
+ -0.00047206878662109375,
+ 0.0,
+ 0.00023603439331054688,
+ -0.00023603439331054688,
+ 0.00047206878662109375,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.00023603439331054688,
+ -0.00023603439331054688,
+ -0.00023603439331054688,
+ 0.0,
+ -0.0007081031799316406,
+ -0.0009441375732421875,
+ 0.00023603439331054688,
+ 0.0,
+ -0.00023603439331054688,
+ 0.0007081031799316406,
+ 0.00023603439331054688,
+ -0.00047206878662109375,
+ -0.00047206878662109375,
+ -0.00047206878662109375,
+ 0.00023603439331054688,
+ -0.0009441375732421875,
+ 0.00047206878662109375,
+ -0.00023603439331054688,
+ 0.00023603439331054688,
+ -0.00023603439331054688,
+ 0.00047206878662109375,
+ -0.00047206878662109375,
+ 0.00023603439331054688,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.00023603439331054688,
+ 0.00023603439331054688,
+ -0.0007081031799316406,
+ 0.0,
+ 0.00023603439331054688,
+ -0.0007081031799316406,
+ -0.0007081031799316406,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.0007081031799316406,
+ 0.00047206878662109375,
+ -0.0009441375732421875,
+ -0.00023603439331054688,
+ 0.0007081031799316406,
+ 0.00047206878662109375,
+ 0.00023603439331054688,
+ 0.0009441375732421875,
+ -0.0011801719665527344
+ ]
+ },
+ "int8": {
+ "canonical_values_sha256": "8538c857419a1f71c18747b3d2225975ab8c97d9b3b132b929ce6a3f8242b454",
+ "dtype": "torch.float32",
+ "l2_norm": 0.005344660118948928,
+ "maximum": 0.0016502141952514648,
+ "minimum": -0.0012084245681762695,
+ "raw_bytes_sha256": "80e6ed2fc6472833a21a15c7f18b3b4dfa396e52ac5881562c9046bf7c55cec0",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ -0.00019490718841552734,
+ -0.001078486442565918,
+ 0.00012993812561035156,
+ 1.2993812561035156e-05,
+ -0.00022089481353759766,
+ 0.0004417896270751953,
+ -0.0002079010009765625,
+ 0.0005457401275634766,
+ -0.00042879581451416016,
+ -0.00037682056427001953,
+ 0.00024688243865966797,
+ -0.0002988576889038086,
+ 0.00037682056427001953,
+ 2.5987625122070312e-05,
+ 0.00033783912658691406,
+ 0.0007666349411010742,
+ -2.5987625122070312e-05,
+ 1.2993812561035156e-05,
+ -2.5987625122070312e-05,
+ -0.0003898143768310547,
+ -0.000584721565246582,
+ 0.0006237030029296875,
+ 0.00024688243865966797,
+ -0.0004807710647583008,
+ -0.0004677772521972656,
+ -0.00016891956329345703,
+ 0.0004807710647583008,
+ 0.0009095668792724609,
+ -0.00083160400390625,
+ -0.0004417896270751953,
+ -7.796287536621094e-05,
+ 0.0007016658782958984,
+ -0.0002338886260986328,
+ -2.5987625122070312e-05,
+ 0.0002079010009765625,
+ -0.00033783912658691406,
+ 1.2993812561035156e-05,
+ -0.0009485483169555664,
+ 0.0010265111923217773,
+ 1.2993812561035156e-05,
+ 0.0007406473159790039,
+ 0.0003638267517089844,
+ 0.0006756782531738281,
+ 0.0002988576889038086,
+ -0.0006756782531738281,
+ 0.0007146596908569336,
+ -0.00028586387634277344,
+ -0.0002338886260986328,
+ 0.00037682056427001953,
+ 9.09566879272461e-05,
+ -0.0005327463150024414,
+ -3.898143768310547e-05,
+ -0.00014293193817138672,
+ 6.496906280517578e-05,
+ -0.0002988576889038086,
+ 3.898143768310547e-05,
+ 0.0016502141952514648,
+ 0.0002598762512207031,
+ -0.00031185150146484375,
+ -0.00033783912658691406,
+ -0.0006496906280517578,
+ 0.0002728700637817383,
+ 0.00015592575073242188,
+ 0.00037682056427001953,
+ -0.0001819133758544922,
+ -0.0004677772521972656,
+ 0.00033783912658691406,
+ -0.0006756782531738281,
+ -0.0002728700637817383,
+ -0.00019490718841552734,
+ -0.00010395050048828125,
+ 0.00024688243865966797,
+ -7.796287536621094e-05,
+ -0.00042879581451416016,
+ -0.00040280818939208984,
+ 9.09566879272461e-05,
+ 0.0001169443130493164,
+ -0.00015592575073242188,
+ 0.0005327463150024414,
+ 9.09566879272461e-05,
+ 9.09566879272461e-05,
+ -7.796287536621094e-05,
+ 0.00022089481353759766,
+ -0.00031185150146484375,
+ -0.00031185150146484375,
+ -7.796287536621094e-05,
+ -0.0005977153778076172,
+ -0.0010265111923217773,
+ 0.00015592575073242188,
+ 0.0001169443130493164,
+ -0.0003248453140258789,
+ 0.0007536411285400391,
+ 0.00024688243865966797,
+ -0.00037682056427001953,
+ -0.00042879581451416016,
+ -0.0004807710647583008,
+ 0.00014293193817138672,
+ -0.0009095668792724609,
+ 0.0004417896270751953,
+ -0.0002988576889038086,
+ 0.00024688243865966797,
+ -0.00015592575073242188,
+ 0.00042879581451416016,
+ -0.0005587339401245117,
+ 0.0002338886260986328,
+ 0.00010395050048828125,
+ -1.2993812561035156e-05,
+ -5.1975250244140625e-05,
+ -0.00014293193817138672,
+ 0.0002079010009765625,
+ -0.0007926225662231445,
+ -1.2993812561035156e-05,
+ 0.00015592575073242188,
+ -0.0006496906280517578,
+ -0.0006496906280517578,
+ 9.09566879272461e-05,
+ 6.496906280517578e-05,
+ 6.496906280517578e-05,
+ -3.898143768310547e-05,
+ -0.0006366968154907227,
+ 0.0003638267517089844,
+ -0.0008965730667114258,
+ -0.00012993812561035156,
+ 0.0007926225662231445,
+ 0.00042879581451416016,
+ 0.00033783912658691406,
+ 0.0010265111923217773,
+ -0.0012084245681762695
+ ]
+ },
+ "loss_gradient_at_int4": {
+ "canonical_values_sha256": "67c79fc1cb9aba63bba8f341e08d9e6d71850bead6685814039c6288f981c61b",
+ "dtype": "torch.float32",
+ "l2_norm": 0.003127558815259713,
+ "maximum": 0.0012044388568028808,
+ "minimum": -0.0014652479439973831,
+ "raw_bytes_sha256": "6f860e6cf47be09e312c1976fb3000aca13737226f53e23bdacb8b7ee6e44a12",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ 4.0121925849234685e-05,
+ -1.453314416721696e-05,
+ 3.810534326476045e-05,
+ -0.0014652479439973831,
+ 0.00019000659813173115,
+ 3.723724603332812e-06,
+ -0.00014393853780347854,
+ 0.00021465247846208513,
+ -3.8028520066291094e-05,
+ -0.00037438643630594015,
+ -3.365786324138753e-05,
+ 3.207503687008284e-05,
+ 0.00030304197571240366,
+ 0.0002472660271450877,
+ -9.100228635361418e-05,
+ 0.00018716046179179102,
+ 3.151826831526705e-06,
+ 8.166956604327424e-07,
+ -0.0003958467859774828,
+ 0.0003626192919909954,
+ 5.590635919361375e-05,
+ -5.176590275368653e-05,
+ 1.691858415142633e-06,
+ 6.986414518905804e-05,
+ -7.925711543066427e-06,
+ 0.0001743033790262416,
+ -1.5754843843751587e-05,
+ -2.092689464916475e-05,
+ 5.431053432403132e-05,
+ -8.760235505178571e-05,
+ -0.00033011677442118526,
+ 6.486841448349878e-05,
+ 0.0003417272528167814,
+ 1.5420346244354732e-05,
+ 0.000140633070259355,
+ 3.83711994800251e-05,
+ 0.0002507652388885617,
+ 3.0248962502810173e-05,
+ 0.00021704599203076214,
+ 0.00029982777778059244,
+ 2.9171760616009124e-05,
+ -0.0006656377809122205,
+ 0.00018375070067122579,
+ 7.186462607933208e-05,
+ 0.00013023240899201483,
+ 0.00010745247709564865,
+ -4.6613979520770954e-07,
+ 0.0010571791790425777,
+ -0.0005343984812498093,
+ 3.746489164768718e-05,
+ 1.378134129481623e-05,
+ 0.0003882687888108194,
+ 3.207664121873677e-05,
+ 0.0004072289157193154,
+ 6.675038457615301e-05,
+ -4.845243779527664e-07,
+ -2.1090299924253486e-05,
+ 2.9154540243325755e-05,
+ -0.0005050036706961691,
+ 6.042003951733932e-05,
+ -0.0002736158494371921,
+ -3.1506697268923745e-05,
+ -4.256513784639537e-05,
+ -0.0006339387618936598,
+ 4.9974772991845384e-05,
+ 0.0005914060748182237,
+ -2.0804692724141205e-07,
+ -0.0003655400068964809,
+ -0.00011054335482185706,
+ 3.514359923428856e-05,
+ 0.00010499435302335769,
+ 2.0217883502482437e-05,
+ -0.00020201042934786528,
+ 0.000137581693707034,
+ 8.702150080353022e-05,
+ 7.412884588120505e-05,
+ 1.9229853933211416e-05,
+ -0.00023611298820469528,
+ -1.9121998775517568e-05,
+ 0.0003650361322797835,
+ 3.379775444045663e-05,
+ 7.590035966131836e-05,
+ -0.00010220558033324778,
+ -8.603109017712995e-05,
+ -0.00010479399497853592,
+ 0.0003069610975217074,
+ -0.00012774401693604887,
+ 0.0012044388568028808,
+ 0.00012073965626768768,
+ -0.00014046794967725873,
+ 0.00010612639744067565,
+ 8.597088162787259e-05,
+ 3.462782478891313e-05,
+ 0.00013716108514927328,
+ -1.1427018762333319e-05,
+ -3.9407212170772254e-05,
+ 0.00014652384561486542,
+ 0.00015648429689463228,
+ -0.0006306541035883129,
+ -0.0001632800413062796,
+ -5.207517261851535e-08,
+ 0.00013249820040073246,
+ 0.0001896713802125305,
+ 8.480659744236618e-06,
+ 4.246124080964364e-05,
+ 1.2468427485146094e-05,
+ -1.0186796316702385e-05,
+ -5.500212137121707e-05,
+ 8.745844752411358e-06,
+ 0.0002530416240915656,
+ 5.9063553635496646e-05,
+ 0.00016291705833282322,
+ 0.00017211049271281809,
+ -8.76178455655463e-05,
+ 0.000145248748594895,
+ -0.00011981178249698132,
+ 0.00020222362945787609,
+ 5.737483297707513e-05,
+ -0.000326595880324021,
+ 3.17381345666945e-05,
+ -5.5141605116659775e-05,
+ 6.377282261382788e-05,
+ 2.123031663359143e-06,
+ -0.0003012898378074169,
+ -4.55460867669899e-05,
+ 0.00011733896099030972,
+ -0.00010606370778987184,
+ -1.0186779945797753e-05
+ ]
+ },
+ "raw": {
+ "canonical_values_sha256": "547f5483f3c26517b7f53052b141135f32ca015672531c336705947607fb0681",
+ "dtype": "torch.float32",
+ "l2_norm": 0.005343935083630054,
+ "maximum": 0.0016519349301233888,
+ "minimum": -0.0012140736216679215,
+ "raw_bytes_sha256": "bea65f3b8b69b1df9ad7a829813628fe9c2cc01ad5d870afe2fe19dcd15af9fb",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ -0.00019379037257749587,
+ -0.0010756086558103561,
+ 0.00013283158477861434,
+ 1.802097358449828e-05,
+ -0.00021471169020514935,
+ 0.0004365873464848846,
+ -0.00021412949718069285,
+ 0.0005486449226737022,
+ -0.00043012388050556183,
+ -0.0003757371159736067,
+ 0.0002446980797685683,
+ -0.00030522755696438253,
+ 0.00037207567947916687,
+ 2.0437877537915483e-05,
+ 0.0003402886213734746,
+ 0.0007701908471062779,
+ -3.0381823307834566e-05,
+ 9.566935659677256e-06,
+ -2.2934971639188007e-05,
+ -0.0003888510982505977,
+ -0.0005853778566233814,
+ 0.0006199822528287768,
+ 0.0002527919423300773,
+ -0.0004817026201635599,
+ -0.00047305019688792527,
+ -0.00017439632210880518,
+ 0.00048098547267727554,
+ 0.0009117043809965253,
+ -0.0008298082393594086,
+ -0.0004439906042534858,
+ -7.411822298308834e-05,
+ 0.0006962721236050129,
+ -0.00023489761224482208,
+ -2.389781548117753e-05,
+ 0.0002081423590425402,
+ -0.00034301579580642283,
+ 1.4081647350394633e-05,
+ -0.0009537634905427694,
+ 0.0010216082446277142,
+ 1.4112855751591269e-05,
+ 0.0007458401378244162,
+ 0.0003682246315293014,
+ 0.0006791074411012232,
+ 0.0002940101840067655,
+ -0.0006753107300028205,
+ 0.0007114767795428634,
+ -0.0002860665845219046,
+ -0.0002352440933464095,
+ 0.00037975938175804913,
+ 9.031985973706469e-05,
+ -0.0005314383306540549,
+ -3.838391421595588e-05,
+ -0.00013648498861584812,
+ 6.17213809164241e-05,
+ -0.00030199356842786074,
+ 3.991300400230102e-05,
+ 0.0016519349301233888,
+ 0.0002582320594228804,
+ -0.00031544434023089707,
+ -0.0003315793292131275,
+ -0.000652141054160893,
+ 0.0002708297106437385,
+ 0.0001545728591736406,
+ 0.00037752804928459227,
+ -0.00017978592950385064,
+ -0.0004629180475603789,
+ 0.0003366240707691759,
+ -0.0006699720397591591,
+ -0.00027058954583480954,
+ -0.00019002628687303513,
+ -0.0001005535596050322,
+ 0.00024050082720350474,
+ -7.593863119836897e-05,
+ -0.0004272337828297168,
+ -0.0003964986826758832,
+ 8.657728903926909e-05,
+ 0.00011983906733803451,
+ -0.0001586215221323073,
+ 0.0005319272167980671,
+ 8.601707668276504e-05,
+ 8.864569099387154e-05,
+ -8.255503053078428e-05,
+ 0.00022726244060322642,
+ -0.00030778718064539135,
+ -0.0003067672369070351,
+ -8.059741230681539e-05,
+ -0.0006038307910785079,
+ -0.0010269507765769958,
+ 0.00015374172653537244,
+ 0.00011757532774936408,
+ -0.0003201532526873052,
+ 0.0007546620327048004,
+ 0.00024242316430900246,
+ -0.00037266663275659084,
+ -0.0004303486202843487,
+ -0.00048607689677737653,
+ 0.0001401198242092505,
+ -0.0009129754034802318,
+ 0.00043950616964139044,
+ -0.0002993687812704593,
+ 0.0002487409219611436,
+ -0.00015965387865435332,
+ 0.00043052929686382413,
+ -0.0005537896649912,
+ 0.0002327719412278384,
+ 9.84773287200369e-05,
+ -9.874969691736624e-06,
+ -4.6649540308862925e-05,
+ -0.0001441372442059219,
+ 0.00020183349261060357,
+ -0.0007961459923535585,
+ -1.5044844076328445e-05,
+ 0.00015473674284294248,
+ -0.00064617651514709,
+ -0.0006460756412707269,
+ 9.389820479555055e-05,
+ 6.910791125847027e-05,
+ 6.676896737189963e-05,
+ -3.689781078719534e-05,
+ -0.0006348807946778834,
+ 0.0003634223830886185,
+ -0.00089254294289276,
+ -0.00013443078205455095,
+ 0.0007885873783379793,
+ 0.00042339658830314875,
+ 0.00033546073245815933,
+ 0.0010313866659998894,
+ -0.0012140736216679215
+ ]
+ }
+ }
+ },
+ {
+ "epsilon_results": [
+ {
+ "autograd_directional_derivative": 0.00029959994844631476,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": 0.00029943883419036865,
+ "derivative_absolute_error": 1.6111425594610845e-07,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": -4.956406064792352e-05,
+ "epsilon": 0.25,
+ "loss_at_int8_endpoint": 0.0386846624314785,
+ "loss_at_minus_epsilon": 0.03826344758272171,
+ "loss_at_plus_epsilon": 0.038413166999816895,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": -0.0003491640090942383,
+ "predicted_benefit_autograd": -0.00029959994844631476,
+ "predicted_benefit_central": -0.00029943883419036865,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": 0.00029959994844631476,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": 0.00029875338077545166,
+ "derivative_absolute_error": 8.465676708631006e-07,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": -4.956406064792352e-05,
+ "epsilon": 0.125,
+ "loss_at_int8_endpoint": 0.0386846624314785,
+ "loss_at_minus_epsilon": 0.03829878568649292,
+ "loss_at_plus_epsilon": 0.03837347403168678,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": -0.0003491640090942383,
+ "predicted_benefit_autograd": -0.00029959994844631476,
+ "predicted_benefit_central": -0.00029875338077545166,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": 0.00029959994844631476,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": 0.0002973973751068115,
+ "derivative_absolute_error": 2.2025733395032374e-06,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": -4.956406064792352e-05,
+ "epsilon": 0.0625,
+ "loss_at_int8_endpoint": 0.0386846624314785,
+ "loss_at_minus_epsilon": 0.03831679746508598,
+ "loss_at_plus_epsilon": 0.038353972136974335,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": -0.0003491640090942383,
+ "predicted_benefit_autograd": -0.00029959994844631476,
+ "predicted_benefit_central": -0.0002973973751068115,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": 0.00029959994844631476,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": 0.00029921531677246094,
+ "derivative_absolute_error": 3.846316738538233e-07,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": -4.956406064792352e-05,
+ "epsilon": 0.03125,
+ "loss_at_int8_endpoint": 0.0386846624314785,
+ "loss_at_minus_epsilon": 0.038326092064380646,
+ "loss_at_plus_epsilon": 0.038344793021678925,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": -0.0003491640090942383,
+ "predicted_benefit_autograd": -0.00029959994844631476,
+ "predicted_benefit_central": -0.00029921531677246094,
+ "repeated_loss_at_zero": 0.03833549842238426
+ }
+ ],
+ "location": {
+ "head_index": 5,
+ "layer_index": 6,
+ "row_index": 42
+ },
+ "negative_gradient_dot_direction": -0.00029959994844631476,
+ "physical_endpoints": {
+ "int4": {
+ "bits": 4,
+ "payload": {
+ "canonical_values_sha256": "7151f5a33d174760aa5c975e3f34d8790390e0b46c756c3a2c61e0aafe423c96",
+ "dtype": "torch.uint8",
+ "l2_norm": 266.65708316112665,
+ "maximum": 240.0,
+ "minimum": 0.0,
+ "raw_bytes_sha256": "9a3e61d6cc915b8613599b671c72cae54c619f8b5d62e5e6260835d2154fc0ef",
+ "shape": [
+ 64
+ ]
+ },
+ "payload_bytes": 64,
+ "resident_bytes": 66,
+ "scale_bytes": 2,
+ "scales": {
+ "canonical_values_sha256": "e5457855a5662feb2ef6732ee8537af371cf8ef962ba5246f344573eef47aa44",
+ "dtype": "torch.float16",
+ "l2_norm": 0.01355743408203125,
+ "maximum": 0.01355743408203125,
+ "minimum": 0.01355743408203125,
+ "raw_bytes_sha256": "ea122dcea26befcf2c2d85a9dacc51c8b6cd244952377e4ea7cfb94d59c5aa8f",
+ "shape": [
+ 1,
+ 1
+ ],
+ "values_float64": [
+ [
+ 0.01355743408203125
+ ]
+ ]
+ }
+ },
+ "int8": {
+ "bits": 8,
+ "payload": {
+ "canonical_values_sha256": "eba6846aa7b5710635a4bfd0316bb95810ac8deb5857396e89b443c7504348a8",
+ "dtype": "torch.int8",
+ "l2_norm": 137.30258555467918,
+ "maximum": 127.0,
+ "minimum": -13.0,
+ "raw_bytes_sha256": "995b4df4ac9ecc0c9a7ca3990ed525be2a35b16f8a0d0c855614a626e0bd6c17",
+ "shape": [
+ 128
+ ]
+ },
+ "payload_bytes": 128,
+ "resident_bytes": 130,
+ "scale_bytes": 2,
+ "scales": {
+ "canonical_values_sha256": "903234ec0d35e3de2c91cc18a38fe07fa8d7b7d5afef4a8797b6ca7315b73bf8",
+ "dtype": "torch.float16",
+ "l2_norm": 0.0007472038269042969,
+ "maximum": 0.0007472038269042969,
+ "minimum": 0.0007472038269042969,
+ "raw_bytes_sha256": "b61b1ab67e2d51ef6081ca93413acb566999985e3809f017d22c2d832afe0891",
+ "shape": [
+ 1,
+ 1
+ ],
+ "values_float64": [
+ [
+ 0.0007472038269042969
+ ]
+ ]
+ }
+ }
+ },
+ "selection_basis": "fixed geometry only; no selector scores or benefits read",
+ "stratum": "early_mid",
+ "tensors": {
+ "direction_int8_minus_int4": {
+ "canonical_values_sha256": "c06c985c675a7767d2d772c89fff8ff05414e59e09a72dba49d2d7c0ad9d90e6",
+ "dtype": "torch.float32",
+ "l2_norm": 0.0352696513218317,
+ "maximum": 0.006832599639892578,
+ "minimum": -0.006085395812988281,
+ "raw_bytes_sha256": "45b2065b9a90309e67292737b4342ee5a38c1470eaa15e3e8ea30be1611e71fd",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ -0.0029888153076171875,
+ 0.006832599639892578,
+ -0.0029888153076171875,
+ 0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.0022416114807128906,
+ -0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0037360191345214844,
+ -0.0029888153076171875,
+ 0.0029888153076171875,
+ -0.0029888153076171875,
+ 0.0014944076538085938,
+ -0.0037360191345214844,
+ -0.0029888153076171875,
+ -0.0022416114807128906,
+ -0.0022416114807128906,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ 0.0007472038269042969,
+ -0.0037360191345214844,
+ -0.0007472038269042969,
+ -0.005977630615234375,
+ 0.0029888153076171875,
+ -0.0022416114807128906,
+ -0.0007472038269042969,
+ -0.0037360191345214844,
+ -0.005230426788330078,
+ 0.0022416114807128906,
+ -0.0007472038269042969,
+ -0.0014944076538085938,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ 0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.005977630615234375,
+ 0.0022416114807128906,
+ 0.0029888153076171875,
+ -0.004483222961425781,
+ -0.0037360191345214844,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0022416114807128906,
+ -0.0022416114807128906,
+ -0.0022416114807128906,
+ 0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.005977630615234375,
+ 0.0029888153076171875,
+ -0.005230426788330078,
+ -0.0029888153076171875,
+ -7.152557373046875e-06,
+ 0.0022416114807128906,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ 0.0037360191345214844,
+ -0.0037360191345214844,
+ 0.0029888153076171875,
+ -0.0029888153076171875,
+ 0.005230426788330078,
+ -0.005230426788330078,
+ -0.0029888153076171875,
+ 0.0022416114807128906,
+ 0.0014944076538085938,
+ -0.0022416114807128906,
+ 0.0022416114807128906,
+ 0.0014944076538085938,
+ 0.0022416114807128906,
+ 0.0022416114807128906,
+ -0.0022416114807128906,
+ 0.0029888153076171875,
+ 0.0022416114807128906,
+ -0.0029888153076171875,
+ 0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.0014944076538085938,
+ -0.0029888153076171875,
+ 0.0037360191345214844,
+ -0.0029888153076171875,
+ -0.0014944076538085938,
+ -0.0022416114807128906,
+ 0.0022416114807128906,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0022416114807128906,
+ 0.0038437843322753906,
+ -0.005230426788330078,
+ 0.0029888153076171875,
+ 0.0014944076538085938,
+ 0.0022416114807128906,
+ 0.0022416114807128906,
+ 0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.0014944076538085938,
+ 0.0029888153076171875,
+ 0.0014944076538085938,
+ 0.0014944076538085938,
+ -0.0022416114807128906,
+ -0.0022416114807128906,
+ -0.004483222961425781,
+ -0.0022416114807128906,
+ -0.0029888153076171875,
+ -0.006085395812988281,
+ 0.0014944076538085938,
+ 0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.0037360191345214844,
+ -0.0022416114807128906,
+ 0.0029888153076171875,
+ -0.004483222961425781,
+ 0.0014944076538085938,
+ -0.0029888153076171875,
+ 0.0029888153076171875,
+ -0.0022416114807128906,
+ -0.0014944076538085938,
+ 0.0045909881591796875,
+ 0.0022416114807128906,
+ -0.0029888153076171875,
+ -0.0037360191345214844,
+ -0.0022416114807128906,
+ 0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.002349376678466797
+ ]
+ },
+ "int4": {
+ "canonical_values_sha256": "1ff1400f9e5c0cabd224bc4103b6ce333cd0ad0707325933cb06c3bca0285014",
+ "dtype": "torch.float32",
+ "l2_norm": 0.09962638716718386,
+ "maximum": 0.09490203857421875,
+ "minimum": -0.01355743408203125,
+ "raw_bytes_sha256": "2631d2b760210f99510ecb29db86046ff583d17eac77bed6c0dbc6e5e1776099",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ 0.0,
+ -0.01355743408203125,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.09490203857421875,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.01355743408203125,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.01355743408203125,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.01355743408203125,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.01355743408203125
+ ]
+ },
+ "int8": {
+ "canonical_values_sha256": "9d7239dca6c5d388b6a0ccd7704def1f44c4bcf3df3f9f894355fbd345528e76",
+ "dtype": "torch.float32",
+ "l2_norm": 0.10259301737031093,
+ "maximum": 0.0948948860168457,
+ "minimum": -0.00971364974975586,
+ "raw_bytes_sha256": "897bb2d5d95ef0a8b12af44b24a3dc2d3921d78dfec749c61a62d5eacf4ee94e",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ -0.0029888153076171875,
+ -0.006724834442138672,
+ -0.0029888153076171875,
+ 0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.0022416114807128906,
+ -0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0037360191345214844,
+ -0.0029888153076171875,
+ 0.0029888153076171875,
+ -0.0029888153076171875,
+ 0.0014944076538085938,
+ -0.0037360191345214844,
+ -0.0029888153076171875,
+ -0.0022416114807128906,
+ -0.0022416114807128906,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ 0.0007472038269042969,
+ -0.0037360191345214844,
+ -0.0007472038269042969,
+ -0.005977630615234375,
+ 0.0029888153076171875,
+ -0.0022416114807128906,
+ -0.0007472038269042969,
+ -0.0037360191345214844,
+ -0.005230426788330078,
+ 0.0022416114807128906,
+ -0.0007472038269042969,
+ -0.0014944076538085938,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ 0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.005977630615234375,
+ 0.0022416114807128906,
+ 0.0029888153076171875,
+ -0.004483222961425781,
+ -0.0037360191345214844,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0022416114807128906,
+ -0.0022416114807128906,
+ -0.0022416114807128906,
+ 0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.005977630615234375,
+ 0.0029888153076171875,
+ -0.005230426788330078,
+ -0.0029888153076171875,
+ 0.0948948860168457,
+ 0.0022416114807128906,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ 0.0037360191345214844,
+ -0.0037360191345214844,
+ 0.0029888153076171875,
+ -0.0029888153076171875,
+ 0.005230426788330078,
+ -0.005230426788330078,
+ -0.0029888153076171875,
+ 0.0022416114807128906,
+ 0.0014944076538085938,
+ -0.0022416114807128906,
+ 0.0022416114807128906,
+ 0.0014944076538085938,
+ 0.0022416114807128906,
+ 0.0022416114807128906,
+ -0.0022416114807128906,
+ 0.0029888153076171875,
+ 0.0022416114807128906,
+ -0.0029888153076171875,
+ 0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.0014944076538085938,
+ -0.0029888153076171875,
+ 0.0037360191345214844,
+ -0.0029888153076171875,
+ -0.0014944076538085938,
+ -0.0022416114807128906,
+ 0.0022416114807128906,
+ -0.0029888153076171875,
+ -0.0029888153076171875,
+ -0.0022416114807128906,
+ -0.00971364974975586,
+ -0.005230426788330078,
+ 0.0029888153076171875,
+ 0.0014944076538085938,
+ 0.0022416114807128906,
+ 0.0022416114807128906,
+ 0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.0014944076538085938,
+ 0.0029888153076171875,
+ 0.0014944076538085938,
+ 0.0014944076538085938,
+ -0.0022416114807128906,
+ -0.0022416114807128906,
+ -0.004483222961425781,
+ -0.0022416114807128906,
+ -0.0029888153076171875,
+ 0.007472038269042969,
+ 0.0014944076538085938,
+ 0.0022416114807128906,
+ -0.0037360191345214844,
+ -0.0037360191345214844,
+ -0.0022416114807128906,
+ 0.0029888153076171875,
+ -0.004483222961425781,
+ 0.0014944076538085938,
+ -0.0029888153076171875,
+ 0.0029888153076171875,
+ -0.0022416114807128906,
+ -0.0014944076538085938,
+ -0.008966445922851562,
+ 0.0022416114807128906,
+ -0.0029888153076171875,
+ -0.0037360191345214844,
+ -0.0022416114807128906,
+ 0.0029888153076171875,
+ -0.0029888153076171875,
+ 0.011208057403564453
+ ]
+ },
+ "loss_gradient_at_int4": {
+ "canonical_values_sha256": "7c0cc88f36b916b4f7f4dc7d17fc6f1d4badba311ee639c4201f59ec33757300",
+ "dtype": "torch.float32",
+ "l2_norm": 0.08001767673232525,
+ "maximum": 0.023209013044834137,
+ "minimum": -0.025209762156009674,
+ "raw_bytes_sha256": "a90202200533c3b4e95c933b007c323588aaf18af16c888e0b5a08c2f82924b6",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ -0.0027175049763172865,
+ -0.0003276357601862401,
+ -0.020155401900410652,
+ 0.0005243148771114647,
+ -0.013450332917273045,
+ -0.0008292212733067572,
+ -0.0030808323062956333,
+ -0.015706079080700874,
+ -0.0006606923416256905,
+ 0.0022989835124462843,
+ -0.003861528355628252,
+ -0.02238510176539421,
+ -0.00044209189945831895,
+ -0.0006077263387851417,
+ 0.0021817833185195923,
+ -0.001053734915331006,
+ -0.001008952152915299,
+ -0.005524966400116682,
+ -0.00012737866200041026,
+ -0.00826566107571125,
+ -0.0032932220492511988,
+ -0.001318704686127603,
+ 0.0005194001132622361,
+ -0.0017069539753720164,
+ -0.00012385219451971352,
+ 0.001675705425441265,
+ 0.022884191945195198,
+ 3.152773933834396e-05,
+ 0.0007931843865662813,
+ -0.0005929690087214112,
+ 0.0028055214788764715,
+ 0.0011522044660523534,
+ 0.0003312931803520769,
+ -0.025209762156009674,
+ 0.004694707226008177,
+ 0.010709112510085106,
+ -0.002477819100022316,
+ 0.00025887638912536204,
+ -0.0007299584103748202,
+ -0.001881369506008923,
+ 0.0020237048156559467,
+ 0.004589654039591551,
+ 0.003164313966408372,
+ -0.00010503174416953698,
+ -0.00020070724713150412,
+ -0.0024339475203305483,
+ 0.011234140954911709,
+ 0.013112992979586124,
+ -0.001841863850131631,
+ -0.010041276924312115,
+ -0.0016470137052237988,
+ -0.004059570375829935,
+ -0.0010410768445581198,
+ -0.0017329648835584521,
+ -0.0012126376386731863,
+ -8.860190428094938e-05,
+ -0.0015123509801924229,
+ -0.0015365539584308863,
+ 0.007086790632456541,
+ -0.0030459873378276825,
+ 0.00026912076282314956,
+ -0.007969656027853489,
+ 0.0015691056614741683,
+ 0.00118764559738338,
+ -0.004289643839001656,
+ -0.0005457059014588594,
+ -0.009788764640688896,
+ -6.778791430406272e-05,
+ -0.0009619109332561493,
+ -0.0002742013311944902,
+ -0.0006537490990012884,
+ 0.0014140693238005042,
+ 0.0030833259224891663,
+ -0.016598429530858994,
+ -0.0062997001223266125,
+ 0.000710696738678962,
+ 3.7235586205497384e-05,
+ 0.0014361264184117317,
+ 0.004831257276237011,
+ 0.0006701520760543644,
+ -0.0038317672442644835,
+ 0.0005006910068914294,
+ 1.5584477296215482e-05,
+ -0.00030235748272389174,
+ -0.00648996327072382,
+ 2.870080788852647e-05,
+ 0.003719195257872343,
+ -0.0030341572128236294,
+ 0.0030974196270108223,
+ 0.01760663464665413,
+ -0.01371284294873476,
+ 0.009409880265593529,
+ -0.0010854169959202409,
+ -0.0012244621757417917,
+ -0.01730027049779892,
+ 0.0002185485791414976,
+ 0.0022324693854898214,
+ -0.016176506876945496,
+ -0.001305376528762281,
+ 0.004882744513452053,
+ 0.0030354440677911043,
+ 0.0003765160799957812,
+ -5.415566556621343e-05,
+ 0.004649699665606022,
+ -0.00743628665804863,
+ 0.0011575561948120594,
+ 0.01046521496027708,
+ -0.000720703974366188,
+ -0.014603525400161743,
+ 0.0009494528640061617,
+ -0.004250010009855032,
+ 0.007279657758772373,
+ 0.0019179577939212322,
+ 0.023209013044834137,
+ -0.011126314289867878,
+ -0.00039831644971854985,
+ 0.00296734063886106,
+ -0.0005466865259222686,
+ 0.005008988548070192,
+ 2.1269814169500023e-05,
+ 0.0009362744749523699,
+ 0.00019358952704351395,
+ 0.001772815128788352,
+ 0.006267456337809563,
+ 3.127349555143155e-05,
+ -0.0037909168750047684,
+ 0.002707608276978135,
+ 7.4240546382498e-05
+ ]
+ },
+ "raw": {
+ "canonical_values_sha256": "016673f8a0a9aa5b9bbd1100e31c7b64aa0b89ee426c4bac5e624ca0985ecdd0",
+ "dtype": "torch.float32",
+ "l2_norm": 0.10238110161539994,
+ "maximum": 0.09487682580947876,
+ "minimum": -0.009922420606017113,
+ "raw_bytes_sha256": "cc580c364f89f139040a96b477150b334cc57b40dc9c06113aa0f4c832d09755",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ -0.0029320395551621914,
+ -0.007034617010504007,
+ -0.002991390647366643,
+ 0.0024421715643256903,
+ -0.0038457121700048447,
+ -0.002299122978001833,
+ -0.0022030093241482973,
+ -0.0036332369782030582,
+ -0.002877729246392846,
+ -0.0030248225666582584,
+ -0.0035262037999927998,
+ -0.0029306476935744286,
+ 0.0027862894348800182,
+ -0.002666288986802101,
+ 0.0017117469105869532,
+ -0.003672768361866474,
+ -0.002903818851336837,
+ -0.0025001377798616886,
+ -0.0019354326650500298,
+ -0.003249821485951543,
+ -0.0029526599682867527,
+ 0.0008451170288026333,
+ -0.003943594638258219,
+ -0.0005147385527379811,
+ -0.005886126309633255,
+ 0.003085201606154442,
+ -0.002057240577414632,
+ -0.0005655144341289997,
+ -0.003421070985496044,
+ -0.004904790781438351,
+ 0.0022562267258763313,
+ -0.0010719652054831386,
+ -0.0011362876975908875,
+ -0.002746646059677005,
+ -0.00269512040540576,
+ 0.0022004020866006613,
+ -0.0036200587637722492,
+ -0.005896538496017456,
+ 0.002225730801001191,
+ 0.0028231823816895485,
+ -0.004130710382014513,
+ -0.0035660997964441776,
+ -0.0029069301672279835,
+ -0.0029601436108350754,
+ -0.002817538334056735,
+ -0.0025712617207318544,
+ -0.0019997518975287676,
+ -0.002371979644522071,
+ 0.0031222200486809015,
+ -0.002879819832742214,
+ -0.0032094658818095922,
+ -0.005982609931379557,
+ 0.0028455168940126896,
+ -0.00496077723801136,
+ -0.003296896116808057,
+ 0.09487682580947876,
+ 0.0025029536336660385,
+ -0.00326131796464324,
+ -0.0029464142862707376,
+ -0.0029302325565367937,
+ 0.003967858385294676,
+ -0.0035616031382232904,
+ 0.002617573831230402,
+ -0.0026816781610250473,
+ 0.004999736323952675,
+ -0.005246664863079786,
+ -0.002939329482614994,
+ 0.002129572443664074,
+ 0.0013498920015990734,
+ -0.0019359495490789413,
+ 0.002240112517029047,
+ 0.0015617324970662594,
+ 0.00203457148745656,
+ 0.002598834689706564,
+ -0.002398354932665825,
+ 0.0031359533313661814,
+ 0.0024869348853826523,
+ -0.0030048880726099014,
+ 0.002307279733940959,
+ -0.0036795518826693296,
+ -0.0014305604854598641,
+ -0.0027368247974663973,
+ 0.003625893034040928,
+ -0.0029890486039221287,
+ -0.0015506435884162784,
+ -0.0021128247026354074,
+ 0.002118997508659959,
+ -0.003011779859662056,
+ -0.0032350521069020033,
+ -0.0022212706971913576,
+ -0.009922420606017113,
+ -0.0049258507788181305,
+ 0.002640523947775364,
+ 0.0013643484562635422,
+ 0.0019444229546934366,
+ 0.002171399537473917,
+ 0.002008311450481415,
+ -0.003516797674819827,
+ -0.001264780992642045,
+ 0.0032632930669933558,
+ 0.0011543661821633577,
+ 0.0014585567405447364,
+ -0.002015913836658001,
+ -0.002231092192232609,
+ -0.004117255099117756,
+ -0.0023906962014734745,
+ -0.003074115142226219,
+ 0.007428928278386593,
+ 0.00171749503351748,
+ 0.0024207537062466145,
+ -0.0035413603764027357,
+ -0.00406581349670887,
+ -0.0023295769933611155,
+ 0.002905068453401327,
+ -0.00414698850363493,
+ 0.0011502404231578112,
+ -0.003164410823956132,
+ 0.0032191139180213213,
+ -0.00208600633777678,
+ -0.0016344969626516104,
+ -0.008600357919931412,
+ 0.0021065936889499426,
+ -0.0029186923056840897,
+ -0.0035873253364115953,
+ -0.0023697647266089916,
+ 0.0030752811580896378,
+ -0.0031521981582045555,
+ 0.01093108020722866
+ ]
+ }
+ }
+ },
+ {
+ "epsilon_results": [
+ {
+ "autograd_directional_derivative": -1.3584273734915022e-05,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": -1.3537704944610596e-05,
+ "derivative_absolute_error": 4.656879030442637e-08,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": -1.620527895567457e-07,
+ "epsilon": 0.25,
+ "loss_at_int8_endpoint": 0.038322076201438904,
+ "loss_at_minus_epsilon": 0.03833882510662079,
+ "loss_at_plus_epsilon": 0.03833205625414848,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 1.3422220945358276e-05,
+ "predicted_benefit_autograd": 1.3584273734915022e-05,
+ "predicted_benefit_central": 1.3537704944610596e-05,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": -1.3584273734915022e-05,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": -1.284480094909668e-05,
+ "derivative_absolute_error": 7.394727858183424e-07,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": -1.620527895567457e-07,
+ "epsilon": 0.125,
+ "loss_at_int8_endpoint": 0.038322076201438904,
+ "loss_at_minus_epsilon": 0.0383371040225029,
+ "loss_at_plus_epsilon": 0.038333892822265625,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 1.3422220945358276e-05,
+ "predicted_benefit_autograd": 1.3584273734915022e-05,
+ "predicted_benefit_central": 1.284480094909668e-05,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": -1.3584273734915022e-05,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": -1.3768672943115234e-05,
+ "derivative_absolute_error": 1.843992082002123e-07,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": -1.620527895567457e-07,
+ "epsilon": 0.0625,
+ "loss_at_int8_endpoint": 0.038322076201438904,
+ "loss_at_minus_epsilon": 0.03833630308508873,
+ "loss_at_plus_epsilon": 0.03833458200097084,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 1.3422220945358276e-05,
+ "predicted_benefit_autograd": 1.3584273734915022e-05,
+ "predicted_benefit_central": 1.3768672943115234e-05,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": -1.3584273734915022e-05,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": -1.6510486602783203e-05,
+ "derivative_absolute_error": 2.926212867868181e-06,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": -1.620527895567457e-07,
+ "epsilon": 0.03125,
+ "loss_at_int8_endpoint": 0.038322076201438904,
+ "loss_at_minus_epsilon": 0.038336072117090225,
+ "loss_at_plus_epsilon": 0.03833504021167755,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 1.3422220945358276e-05,
+ "predicted_benefit_autograd": 1.3584273734915022e-05,
+ "predicted_benefit_central": 1.6510486602783203e-05,
+ "repeated_loss_at_zero": 0.03833549842238426
+ }
+ ],
+ "location": {
+ "head_index": 10,
+ "layer_index": 14,
+ "row_index": 85
+ },
+ "negative_gradient_dot_direction": 1.3584273734915022e-05,
+ "physical_endpoints": {
+ "int4": {
+ "bits": 4,
+ "payload": {
+ "canonical_values_sha256": "3c08ce1f64f70b11ea429ebc2ffc937e67aac6279057411c0655ecf2447db599",
+ "dtype": "torch.uint8",
+ "l2_norm": 115.20850663036997,
+ "maximum": 112.0,
+ "minimum": 0.0,
+ "raw_bytes_sha256": "42975c4c7040f6c5ca118588596a9fedee3b695ed9715b946db685a895b4769d",
+ "shape": [
+ 64
+ ]
+ },
+ "payload_bytes": 64,
+ "resident_bytes": 66,
+ "scale_bytes": 2,
+ "scales": {
+ "canonical_values_sha256": "393d7a6570dd545d967b0322689f93de8497383dc3fa85afaa24e996461ae8f5",
+ "dtype": "torch.float16",
+ "l2_norm": 0.0013341903686523438,
+ "maximum": 0.0013341903686523438,
+ "minimum": 0.0013341903686523438,
+ "raw_bytes_sha256": "db4c81b92ed048143cf3f50736540bdb052c316c7f5d35eaf25f9f5281db8eda",
+ "shape": [
+ 1,
+ 1
+ ],
+ "values_float64": [
+ [
+ 0.0013341903686523438
+ ]
+ ]
+ }
+ },
+ "int8": {
+ "bits": 8,
+ "payload": {
+ "canonical_values_sha256": "f9046fe9a3bf32dc6e9a906e77a311ff9a22e867806426c7e6bf8f04671b576b",
+ "dtype": "torch.int8",
+ "l2_norm": 168.88457596832222,
+ "maximum": 127.0,
+ "minimum": -77.0,
+ "raw_bytes_sha256": "e9baf2c5d09bcfbba79c58fa84a3635632500e63ba9c10be2eebb9fa5c34f01e",
+ "shape": [
+ 128
+ ]
+ },
+ "payload_bytes": 128,
+ "resident_bytes": 130,
+ "scale_bytes": 2,
+ "scales": {
+ "canonical_values_sha256": "01ce665f669c3737b17ee96030e23f6a3a5dc44d6fc84f99810b0c6c8b4fcef9",
+ "dtype": "torch.float16",
+ "l2_norm": 7.355213165283203e-05,
+ "maximum": 7.355213165283203e-05,
+ "minimum": 7.355213165283203e-05,
+ "raw_bytes_sha256": "806505393e046db3163e748c7c7ee1763d242f1f7815a0aaa32c211916df6f04",
+ "shape": [
+ 1,
+ 1
+ ],
+ "values_float64": [
+ [
+ 7.355213165283203e-05
+ ]
+ ]
+ }
+ }
+ },
+ "selection_basis": "fixed geometry only; no selector scores or benefits read",
+ "stratum": "late_mid",
+ "tensors": {
+ "direction_int8_minus_int4": {
+ "canonical_values_sha256": "67a81f1e0ada244f9a911493de67ea3b2b689c1df7964c47aef2f302f2dcb5d4",
+ "dtype": "torch.float32",
+ "l2_norm": 0.0036123360814285404,
+ "maximum": 0.0006619691848754883,
+ "minimum": -0.0006619691848754883,
+ "raw_bytes_sha256": "3f2b4e1610cae48e168f1de62ec57ee4aefd0f5ef9db98550bb48ac70a7936a4",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ 0.00036776065826416016,
+ -0.00036776065826416016,
+ 7.355213165283203e-05,
+ -0.0005148649215698242,
+ 0.00036776065826416016,
+ 0.0002206563949584961,
+ -0.00014710426330566406,
+ -7.355213165283203e-05,
+ -7.355213165283203e-05,
+ 0.0004413127899169922,
+ -0.00014710426330566406,
+ -0.00014710426330566406,
+ 0.0,
+ 0.00014710426330566406,
+ 0.0,
+ -0.0005884170532226562,
+ -0.00014710426330566406,
+ -0.0004413127899169922,
+ -0.0002206563949584961,
+ -0.0004413127899169922,
+ 0.0005148649215698242,
+ -0.00036776065826416016,
+ -0.00036776065826416016,
+ -0.0002942085266113281,
+ 0.00014710426330566406,
+ 7.355213165283203e-05,
+ 0.0002206563949584961,
+ -0.0004413127899169922,
+ -0.00014710426330566406,
+ 0.0002942085266113281,
+ 0.0,
+ 0.0005884170532226562,
+ 0.0005148649215698242,
+ 1.7881393432617188e-06,
+ -0.0002206563949584961,
+ 7.355213165283203e-05,
+ 0.0006414651870727539,
+ -0.0004515647888183594,
+ -0.0002206563949584961,
+ 0.0006619691848754883,
+ 0.00014710426330566406,
+ 0.00036776065826416016,
+ 0.0004413127899169922,
+ 0.0002206563949584961,
+ 0.0,
+ 0.00036776065826416016,
+ 0.00036776065826416016,
+ -0.0005884170532226562,
+ 0.0,
+ 0.0006619691848754883,
+ -0.0005251169204711914,
+ 7.355213165283203e-05,
+ -0.00036776065826416016,
+ -7.355213165283203e-05,
+ -7.355213165283203e-05,
+ 0.0002206563949584961,
+ 0.0004413127899169922,
+ -0.00014710426330566406,
+ -0.00014710426330566406,
+ 0.00036776065826416016,
+ -0.0005884170532226562,
+ 0.0005148649215698242,
+ -0.0002942085266113281,
+ -0.00036776065826416016,
+ 0.00014710426330566406,
+ -0.0002942085266113281,
+ 0.0002206563949584961,
+ 0.00014710426330566406,
+ 0.0005148649215698242,
+ -0.0004413127899169922,
+ 0.0,
+ -0.00014710426330566406,
+ 0.0002206563949584961,
+ 0.0002206563949584961,
+ 0.0003472566604614258,
+ -0.0002942085266113281,
+ -7.355213165283203e-05,
+ -0.00036776065826416016,
+ 0.0,
+ -7.355213165283203e-05,
+ -0.00036776065826416016,
+ -0.0004413127899169922,
+ 7.355213165283203e-05,
+ -8.380413055419922e-05,
+ -7.355213165283203e-05,
+ -0.0002206563949584961,
+ -0.0002942085266113281,
+ -0.0002942085266113281,
+ 7.355213165283203e-05,
+ -0.00036776065826416016,
+ -0.00014710426330566406,
+ 7.355213165283203e-05,
+ 7.355213165283203e-05,
+ 0.0005884170532226562,
+ 7.355213165283203e-05,
+ -7.355213165283203e-05,
+ 0.0,
+ 0.0002206563949584961,
+ 0.0004413127899169922,
+ 7.355213165283203e-05,
+ 7.355213165283203e-05,
+ -0.0002206563949584961,
+ 7.355213165283203e-05,
+ -7.355213165283203e-05,
+ 0.00014710426330566406,
+ 0.0,
+ 0.00036776065826416016,
+ 0.0005148649215698242,
+ 0.0002942085266113281,
+ -0.0002942085266113281,
+ -0.0005148649215698242,
+ -0.0002206563949584961,
+ 0.0002942085266113281,
+ 0.00036776065826416016,
+ -0.0003267526626586914,
+ -0.0005884170532226562,
+ -0.0002942085266113281,
+ 7.355213165283203e-05,
+ 7.355213165283203e-05,
+ 0.0005148649215698242,
+ -0.0002206563949584961,
+ 0.0,
+ -0.0002942085266113281,
+ 0.00036776065826416016,
+ 0.0002942085266113281,
+ -0.0002206563949584961,
+ -0.0006619691848754883,
+ 7.355213165283203e-05
+ ]
+ },
+ "int4": {
+ "canonical_values_sha256": "b78ac6994a1f1a948a8d3f81ad62069e735c22c7e2df025898100caaf93c833d",
+ "dtype": "torch.float32",
+ "l2_norm": 0.011631201976801685,
+ "maximum": 0.009339332580566406,
+ "minimum": -0.005336761474609375,
+ "raw_bytes_sha256": "ae1616927d95bfcfa135ee092cc8286f4b0589432e6e408cb997164a3d49d1fd",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.009339332580566406,
+ 0.0,
+ 0.0,
+ 0.0026683807373046875,
+ 0.0013341903686523438,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0013341903686523438,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0026683807373046875,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0013341903686523438,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.005336761474609375,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0
+ ]
+ },
+ "int8": {
+ "canonical_values_sha256": "e62e7424782355091211de84e4e8ca6344cb2dc3657949b41a4bf6104fc14bde",
+ "dtype": "torch.float32",
+ "l2_norm": 0.012421820565754749,
+ "maximum": 0.009341120719909668,
+ "minimum": -0.005663514137268066,
+ "raw_bytes_sha256": "fa8db3a101439263cfa6f5cd5dc96370b63289aa24f227b528c1ce9a948a9a55",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ 0.00036776065826416016,
+ -0.00036776065826416016,
+ 7.355213165283203e-05,
+ -0.0005148649215698242,
+ 0.00036776065826416016,
+ 0.0002206563949584961,
+ -0.00014710426330566406,
+ -7.355213165283203e-05,
+ -7.355213165283203e-05,
+ 0.0004413127899169922,
+ -0.00014710426330566406,
+ -0.00014710426330566406,
+ 0.0,
+ 0.00014710426330566406,
+ 0.0,
+ -0.0005884170532226562,
+ -0.00014710426330566406,
+ -0.0004413127899169922,
+ -0.0002206563949584961,
+ -0.0004413127899169922,
+ 0.0005148649215698242,
+ -0.00036776065826416016,
+ -0.00036776065826416016,
+ -0.0002942085266113281,
+ 0.00014710426330566406,
+ 7.355213165283203e-05,
+ 0.0002206563949584961,
+ -0.0004413127899169922,
+ -0.00014710426330566406,
+ 0.0002942085266113281,
+ 0.0,
+ 0.0005884170532226562,
+ 0.0005148649215698242,
+ 0.009341120719909668,
+ -0.0002206563949584961,
+ 7.355213165283203e-05,
+ 0.0033098459243774414,
+ 0.0008826255798339844,
+ -0.0002206563949584961,
+ 0.0006619691848754883,
+ 0.00014710426330566406,
+ 0.00036776065826416016,
+ 0.0004413127899169922,
+ 0.0002206563949584961,
+ 0.0,
+ 0.00036776065826416016,
+ 0.00036776065826416016,
+ -0.0005884170532226562,
+ 0.0,
+ 0.0006619691848754883,
+ 0.0008090734481811523,
+ 7.355213165283203e-05,
+ -0.00036776065826416016,
+ -7.355213165283203e-05,
+ -7.355213165283203e-05,
+ 0.0002206563949584961,
+ 0.0004413127899169922,
+ -0.00014710426330566406,
+ -0.00014710426330566406,
+ 0.00036776065826416016,
+ -0.0005884170532226562,
+ 0.0005148649215698242,
+ -0.0002942085266113281,
+ -0.00036776065826416016,
+ 0.00014710426330566406,
+ -0.0002942085266113281,
+ 0.0002206563949584961,
+ 0.00014710426330566406,
+ 0.0005148649215698242,
+ -0.0004413127899169922,
+ 0.0,
+ -0.00014710426330566406,
+ 0.0002206563949584961,
+ 0.0002206563949584961,
+ 0.0030156373977661133,
+ -0.0002942085266113281,
+ -7.355213165283203e-05,
+ -0.00036776065826416016,
+ 0.0,
+ -7.355213165283203e-05,
+ -0.00036776065826416016,
+ -0.0004413127899169922,
+ 7.355213165283203e-05,
+ 0.0012503862380981445,
+ -7.355213165283203e-05,
+ -0.0002206563949584961,
+ -0.0002942085266113281,
+ -0.0002942085266113281,
+ 7.355213165283203e-05,
+ -0.00036776065826416016,
+ -0.00014710426330566406,
+ 7.355213165283203e-05,
+ 7.355213165283203e-05,
+ 0.0005884170532226562,
+ 7.355213165283203e-05,
+ -7.355213165283203e-05,
+ 0.0,
+ 0.0002206563949584961,
+ 0.0004413127899169922,
+ 7.355213165283203e-05,
+ 7.355213165283203e-05,
+ -0.0002206563949584961,
+ 7.355213165283203e-05,
+ -7.355213165283203e-05,
+ 0.00014710426330566406,
+ 0.0,
+ 0.00036776065826416016,
+ 0.0005148649215698242,
+ 0.0002942085266113281,
+ -0.0002942085266113281,
+ -0.0005148649215698242,
+ -0.0002206563949584961,
+ 0.0002942085266113281,
+ 0.00036776065826416016,
+ -0.005663514137268066,
+ -0.0005884170532226562,
+ -0.0002942085266113281,
+ 7.355213165283203e-05,
+ 7.355213165283203e-05,
+ 0.0005148649215698242,
+ -0.0002206563949584961,
+ 0.0,
+ -0.0002942085266113281,
+ 0.00036776065826416016,
+ 0.0002942085266113281,
+ -0.0002206563949584961,
+ -0.0006619691848754883,
+ 7.355213165283203e-05
+ ]
+ },
+ "loss_gradient_at_int4": {
+ "canonical_values_sha256": "dcd78acd419298343d33460fd6a366d70a7a128f283e7828b02601110a490ab8",
+ "dtype": "torch.float32",
+ "l2_norm": 0.03435780826421048,
+ "maximum": 0.010081492364406586,
+ "minimum": -0.010253221727907658,
+ "raw_bytes_sha256": "f33f33e1a426ef1c58b6149de5ce03243f3e9d86791dc22eb17ed4b03689ccb4",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ -0.0003970327088609338,
+ 0.0003646864206530154,
+ 0.00037626191624440253,
+ -0.00043498515151441097,
+ 3.3147040085168555e-05,
+ -0.0002062611310975626,
+ -0.0019486499950289726,
+ -0.0007853410788811743,
+ -8.70870499056764e-05,
+ -0.00014901894610375166,
+ -0.0004910423303954303,
+ 0.006501345429569483,
+ 0.0006284315604716539,
+ 0.00017583883891347796,
+ 0.0009390859049744904,
+ -0.00010802542237797752,
+ 0.0063725984655320644,
+ -0.00044416033779270947,
+ 0.0008169167558662593,
+ -2.064452382910531e-05,
+ 0.0023585790768265724,
+ -0.0006857092375867069,
+ 7.628298044437543e-05,
+ -0.0015600802144035697,
+ 0.0007478899788111448,
+ 0.006097858771681786,
+ 3.1598552595824e-05,
+ -0.0019337728153914213,
+ -0.001680854125879705,
+ 0.0008024008711799979,
+ 6.444359314627945e-05,
+ -0.010253221727907658,
+ -0.0006921364110894501,
+ 2.89907657133881e-05,
+ 0.008137487806379795,
+ -0.0014983481960371137,
+ 0.00011529939365573227,
+ 0.00034857410355471075,
+ 0.005119620822370052,
+ -0.000544450362212956,
+ 0.008973919786512852,
+ -0.0012649879790842533,
+ -0.008016331121325493,
+ 0.00027138047153130174,
+ 0.004307220224291086,
+ 0.00047914692549966276,
+ -0.0022003729827702045,
+ 0.0007037149625830352,
+ -2.0900168237858452e-05,
+ 0.00037718735984526575,
+ -4.584517591865733e-05,
+ -0.0010730689391493797,
+ -0.0004153414338361472,
+ -0.0017634721007198095,
+ -0.0015042825834825635,
+ -7.324340549530461e-05,
+ -0.0014596432447433472,
+ -0.005341006442904472,
+ -0.005833963863551617,
+ -0.0024763166438788176,
+ -0.008591641671955585,
+ -0.0008821674273349345,
+ 0.005772270727902651,
+ -0.00012678127677645534,
+ 0.010081492364406586,
+ 0.0026908547151833773,
+ 0.00041017751209437847,
+ 2.1611969714285806e-05,
+ -0.009123306721448898,
+ -0.0009750028257258236,
+ 0.0009467782801948488,
+ -2.685971230675932e-05,
+ 0.0005714294966310263,
+ -2.0022611352032982e-05,
+ -0.0001750052470015362,
+ -5.6928030971903354e-05,
+ -0.002038605511188507,
+ 0.0008041317923925817,
+ -0.00020420609507709742,
+ 0.0001836200972320512,
+ -0.00024183900677599013,
+ 0.0014824827667325735,
+ -0.004946093074977398,
+ 4.8942842113319784e-05,
+ -0.0010513808811083436,
+ 0.005475117824971676,
+ 0.004698910750448704,
+ 0.0005337325274012983,
+ 7.045140228001401e-05,
+ -9.264743130188435e-05,
+ 0.0029080475214868784,
+ -0.0005454171914607286,
+ 0.0013810762902721763,
+ -0.0006582688074558973,
+ -0.0012097774306312203,
+ -0.004021117929369211,
+ -4.063134838361293e-05,
+ 0.009070378728210926,
+ 0.00012149823305662721,
+ 0.0009188314434140921,
+ -0.00027620996115729213,
+ 0.0021183688659220934,
+ -0.0010267008328810334,
+ 0.0011070152977481484,
+ -0.001812207279726863,
+ 7.198240200523287e-05,
+ -0.000769140780903399,
+ 0.0011461679823696613,
+ -0.005124816205352545,
+ 0.00014577836554963142,
+ -0.0008548257756046951,
+ 0.000542345573194325,
+ 0.0012207470135763288,
+ 0.0008899868698790669,
+ 9.384380973642692e-05,
+ 0.000630103750154376,
+ -0.0012888554483652115,
+ -0.00031878476147539914,
+ 0.00500541040673852,
+ -7.301186997210607e-05,
+ 0.0028638620860874653,
+ 5.453464109450579e-05,
+ -0.0032537924125790596,
+ -2.4757415303611197e-05,
+ -0.0004303451278246939,
+ 0.00043827586341649294,
+ -0.0005271973204798996,
+ -3.428183845244348e-05
+ ]
+ },
+ "raw": {
+ "canonical_values_sha256": "67fe9e4075fa6609384dafa0a25fa9819104409ed44a1edab4939dc675ecc0d7",
+ "dtype": "torch.float32",
+ "l2_norm": 0.012411466115262542,
+ "maximum": 0.00933741219341755,
+ "minimum": -0.005656912922859192,
+ "raw_bytes_sha256": "ca1dd68fda2933f7cd63af2ce8fb9ac0c8ba893cd0652622fb2448b4dbc7c6a2",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ 0.0003989010292571038,
+ -0.00036397131043486297,
+ 9.16377903195098e-05,
+ -0.00048732562572695315,
+ 0.00035114827915094793,
+ 0.00024059756833594292,
+ -0.00013058747572358698,
+ -4.027938484796323e-05,
+ -7.007436943240464e-05,
+ 0.0004198191745672375,
+ -0.00011846155393868685,
+ -0.00015583154163323343,
+ 2.376829070271924e-05,
+ 0.0001832168927649036,
+ -2.4614331778138876e-05,
+ -0.0005938139511272311,
+ -0.00014084069698583335,
+ -0.00046239877701736987,
+ -0.00022923536016605794,
+ -0.00045082299038767815,
+ 0.0005355920293368399,
+ -0.00036336472840048373,
+ -0.0003664851828943938,
+ -0.00027432735078036785,
+ 0.00015633599832654,
+ 4.708069172920659e-05,
+ 0.00022422312758862972,
+ -0.0004508383572101593,
+ -0.0001582576078362763,
+ 0.00025980224017985165,
+ -3.0924376915208995e-05,
+ 0.0005680660251528025,
+ 0.0005034806090407073,
+ 0.00933741219341755,
+ -0.00025395676493644714,
+ 7.904898666311055e-05,
+ 0.0032933116890490055,
+ 0.0008563857991248369,
+ -0.00023436083574779332,
+ 0.00062843959312886,
+ 0.00012154812429798767,
+ 0.00033628748496994376,
+ 0.0004774529079440981,
+ 0.0001944397226907313,
+ -2.2846485080663115e-05,
+ 0.0003958996676374227,
+ 0.0003573747235350311,
+ -0.0005852949689142406,
+ -1.694968705123756e-05,
+ 0.0006388768670149148,
+ 0.0008061483385972679,
+ 0.00010204660793533549,
+ -0.00035154068609699607,
+ -6.201572978170589e-05,
+ -9.501641034148633e-05,
+ 0.00019697971583809704,
+ 0.00045907587627880275,
+ -0.0001651393249630928,
+ -0.00018024556629825383,
+ 0.00033315340988337994,
+ -0.0006136183510534465,
+ 0.0004954790929332376,
+ -0.0003000041760969907,
+ -0.0003911517560482025,
+ 0.00014410317817237228,
+ -0.0002598438586574048,
+ 0.00021403777645900846,
+ 0.0001835465955082327,
+ 0.0005418857326731086,
+ -0.0004065525718033314,
+ 8.712509043107275e-06,
+ -0.00013217926607467234,
+ 0.0002465316792950034,
+ 0.00021358586673159152,
+ 0.0030089523643255234,
+ -0.0002715504670049995,
+ -5.484102439368144e-05,
+ -0.000386713829357177,
+ -2.174855035264045e-05,
+ -9.105110802920535e-05,
+ -0.00036260392516851425,
+ -0.00047078492934815586,
+ 0.00010549400030868128,
+ 0.0012669209390878677,
+ -7.305837061721832e-05,
+ -0.00022047816310077906,
+ -0.00027220422634854913,
+ -0.00031681489781476557,
+ 0.00010450913396198303,
+ -0.00038631941424682736,
+ -0.00012644470552913845,
+ 9.664664685260504e-05,
+ 4.027212708024308e-05,
+ 0.0005839267396368086,
+ 7.449690019711852e-05,
+ -5.423227776191197e-05,
+ 1.1268665730312932e-05,
+ 0.0002506005112081766,
+ 0.00044172460911795497,
+ 7.874043512856588e-05,
+ 8.179495489457622e-05,
+ -0.00024407925957348198,
+ 4.745332626043819e-05,
+ -9.734371269587427e-05,
+ 0.00014138867845758796,
+ 1.0870789992623031e-06,
+ 0.00039846080471761525,
+ 0.0005240801838226616,
+ 0.00027983234031125903,
+ -0.00029308442026376724,
+ -0.000527639058418572,
+ -0.00023497146321460605,
+ 0.0003199306083843112,
+ 0.00034300811239518225,
+ -0.005656912922859192,
+ -0.0005910696345381439,
+ -0.00029408332193270326,
+ 4.0263741539092734e-05,
+ 7.653381180716679e-05,
+ 0.0005318233161233366,
+ -0.0001885065430542454,
+ 3.665313124656677e-05,
+ -0.0002689381071832031,
+ 0.0003800131962634623,
+ 0.00031109098927117884,
+ -0.00020414018945302814,
+ -0.0006520471652038395,
+ 4.768112557940185e-05
+ ]
+ }
+ }
+ },
+ {
+ "epsilon_results": [
+ {
+ "autograd_directional_derivative": -7.265385653310616e-06,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": -7.338821887969971e-06,
+ "derivative_absolute_error": 7.343623465935496e-08,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": 7.716152495781687e-08,
+ "epsilon": 0.25,
+ "loss_at_int8_endpoint": 0.038328155875205994,
+ "loss_at_minus_epsilon": 0.03833721950650215,
+ "loss_at_plus_epsilon": 0.038333550095558167,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 7.342547178268433e-06,
+ "predicted_benefit_autograd": 7.265385653310616e-06,
+ "predicted_benefit_central": 7.338821887969971e-06,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": -7.265385653310616e-06,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": -7.808208465576172e-06,
+ "derivative_absolute_error": 5.428228122655561e-07,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": 7.716152495781687e-08,
+ "epsilon": 0.125,
+ "loss_at_int8_endpoint": 0.038328155875205994,
+ "loss_at_minus_epsilon": 0.03833630308508873,
+ "loss_at_plus_epsilon": 0.038334351032972336,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 7.342547178268433e-06,
+ "predicted_benefit_autograd": 7.265385653310616e-06,
+ "predicted_benefit_central": 7.808208465576172e-06,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": -7.265385653310616e-06,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": -8.285045623779297e-06,
+ "derivative_absolute_error": 1.0196599704686811e-06,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": 7.716152495781687e-08,
+ "epsilon": 0.0625,
+ "loss_at_int8_endpoint": 0.038328155875205994,
+ "loss_at_minus_epsilon": 0.03833596035838127,
+ "loss_at_plus_epsilon": 0.0383349247276783,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 7.342547178268433e-06,
+ "predicted_benefit_autograd": 7.265385653310616e-06,
+ "predicted_benefit_central": 8.285045623779297e-06,
+ "repeated_loss_at_zero": 0.03833549842238426
+ },
+ {
+ "autograd_directional_derivative": -7.265385653310616e-06,
+ "baseline_repeat_absolute_error": 0.0,
+ "central_directional_derivative": -7.331371307373047e-06,
+ "derivative_absolute_error": 6.598565406243113e-08,
+ "derivative_sign_agreement": true,
+ "endpoint_sign_agreement": true,
+ "endpoint_taylor_residual": 7.716152495781687e-08,
+ "epsilon": 0.03125,
+ "loss_at_int8_endpoint": 0.038328155875205994,
+ "loss_at_minus_epsilon": 0.038335613906383514,
+ "loss_at_plus_epsilon": 0.038335155695676804,
+ "loss_at_zero": 0.03833549842238426,
+ "measured_endpoint_benefit": 7.342547178268433e-06,
+ "predicted_benefit_autograd": 7.265385653310616e-06,
+ "predicted_benefit_central": 7.331371307373047e-06,
+ "repeated_loss_at_zero": 0.03833549842238426
+ }
+ ],
+ "location": {
+ "head_index": 15,
+ "layer_index": 22,
+ "row_index": 127
+ },
+ "negative_gradient_dot_direction": 7.265385653310616e-06,
+ "physical_endpoints": {
+ "int4": {
+ "bits": 4,
+ "payload": {
+ "canonical_values_sha256": "e078492c0a55551e909d496c1e9348eeee70781b4a9bc5c4ec0bbba3f8a8e023",
+ "dtype": "torch.uint8",
+ "l2_norm": 549.7726802961384,
+ "maximum": 241.0,
+ "minimum": 0.0,
+ "raw_bytes_sha256": "0450872ca332a2e87d85734cc12c07264e550cc8ddca08e8cf36039f1006f2a1",
+ "shape": [
+ 64
+ ]
+ },
+ "payload_bytes": 64,
+ "resident_bytes": 66,
+ "scale_bytes": 2,
+ "scales": {
+ "canonical_values_sha256": "2e5682fbd93e8927deb3fbcfe3b4bdb135bb389e077e543d9c3b1c152fce727d",
+ "dtype": "torch.float16",
+ "l2_norm": 0.004425048828125,
+ "maximum": 0.004425048828125,
+ "minimum": 0.004425048828125,
+ "raw_bytes_sha256": "a2961c17e7292220e3cdaf6956e91087c7a9d761f90c008d173df445cd1258c0",
+ "shape": [
+ 1,
+ 1
+ ],
+ "values_float64": [
+ [
+ 0.004425048828125
+ ]
+ ]
+ }
+ },
+ "int8": {
+ "bits": 8,
+ "payload": {
+ "canonical_values_sha256": "4d31a949b08821ef2ddeace1f729cbf49d76a39785332b65fa776a5ba345c0f1",
+ "dtype": "torch.int8",
+ "l2_norm": 144.63402089411744,
+ "maximum": 127.0,
+ "minimum": -20.0,
+ "raw_bytes_sha256": "cd663048a3a6ca52e2c2878e3f0f3ca31794fa601583fa3d99f3c687c51677fd",
+ "shape": [
+ 128
+ ]
+ },
+ "payload_bytes": 128,
+ "resident_bytes": 130,
+ "scale_bytes": 2,
+ "scales": {
+ "canonical_values_sha256": "f560ae22f5ca26eeb237a601eeb4770c833d8210c02ade4b6e4044ff8e0225a9",
+ "dtype": "torch.float16",
+ "l2_norm": 0.00024402141571044922,
+ "maximum": 0.00024402141571044922,
+ "minimum": 0.00024402141571044922,
+ "raw_bytes_sha256": "8e235f2e7a311629405b1aa7517681a82bac3ca13fbfea681c7eced005e5766b",
+ "shape": [
+ 1,
+ 1
+ ],
+ "values_float64": [
+ [
+ 0.00024402141571044922
+ ]
+ ]
+ }
+ }
+ },
+ "selection_basis": "fixed geometry only; no selector scores or benefits read",
+ "stratum": "late_high",
+ "tensors": {
+ "direction_int8_minus_int4": {
+ "canonical_values_sha256": "d2ed418e9571a30500132609d86239580a6999516ba769f6d250f544345a7ad2",
+ "dtype": "torch.float32",
+ "l2_norm": 0.012143085857547746,
+ "maximum": 0.002228856086730957,
+ "minimum": -0.002261519432067871,
+ "raw_bytes_sha256": "9d3438bf42f6c1b35c3d011cec0d3a260a3fd2fa65803a1415e9b9db234d7ce1",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ -0.001008749008178711,
+ -0.0009760856628417969,
+ -0.00048804283142089844,
+ -0.00048804283142089844,
+ -0.0017081499099731445,
+ -0.0009760856628417969,
+ 0.0014641284942626953,
+ -0.00048804283142089844,
+ -0.0017081499099731445,
+ -0.00024402141571044922,
+ 0.0,
+ -0.0004553794860839844,
+ 0.0014641284942626953,
+ -0.0009760856628417969,
+ -0.00048804283142089844,
+ 0.0019521713256835938,
+ 0.002196192741394043,
+ -0.0007320642471313477,
+ -0.0007320642471313477,
+ -0.001220107078552246,
+ 0.0,
+ -0.00048804283142089844,
+ 0.00048804283142089844,
+ -0.0017081499099731445,
+ 0.00048804283142089844,
+ -0.0007320642471313477,
+ 0.0009760856628417969,
+ 0.0,
+ -0.0019521713256835938,
+ -0.0017081499099731445,
+ -0.00048804283142089844,
+ -0.0014967918395996094,
+ 0.0007320642471313477,
+ -0.00024402141571044922,
+ -0.002196192741394043,
+ 0.0007647275924682617,
+ -0.00024402141571044922,
+ -0.0017408132553100586,
+ -0.00048804283142089844,
+ -0.00048804283142089844,
+ 0.0014641284942626953,
+ 0.0,
+ -0.0007320642471313477,
+ 0.001220107078552246,
+ -0.001008749008178711,
+ 0.0019521713256835938,
+ 0.0,
+ -0.0014641284942626953,
+ 0.0,
+ 0.00024402141571044922,
+ -0.00024402141571044922,
+ 1.537799835205078e-05,
+ 0.0,
+ -0.0009760856628417969,
+ 0.0,
+ 0.0007320642471313477,
+ 0.0009760856628417969,
+ 0.001220107078552246,
+ -0.001220107078552246,
+ -0.00024402141571044922,
+ -0.001984834671020508,
+ -0.001220107078552246,
+ -0.00048804283142089844,
+ -0.00024402141571044922,
+ -0.0007320642471313477,
+ 0.00048804283142089844,
+ -0.0009760856628417969,
+ 0.0007320642471313477,
+ 0.00024402141571044922,
+ -0.001220107078552246,
+ 0.002196192741394043,
+ 0.00048804283142089844,
+ 0.0007320642471313477,
+ -0.0017408132553100586,
+ -0.0007320642471313477,
+ 0.001220107078552246,
+ -0.001984834671020508,
+ 0.002228856086730957,
+ 0.0007320642471313477,
+ 0.001008749008178711,
+ -0.0009760856628417969,
+ 0.00024402141571044922,
+ 0.001984834671020508,
+ 0.00048804283142089844,
+ 0.0017081499099731445,
+ 0.0,
+ -0.00024402141571044922,
+ 0.0,
+ 0.00024402141571044922,
+ 0.001220107078552246,
+ -0.0007320642471313477,
+ 0.0,
+ -0.0007320642471313477,
+ 0.0017081499099731445,
+ 0.0,
+ 0.0014967918395996094,
+ 0.0,
+ -0.0007320642471313477,
+ 0.0007320642471313477,
+ 0.00048804283142089844,
+ -0.00024402141571044922,
+ -0.0007320642471313477,
+ 0.0017408132553100586,
+ -0.001220107078552246,
+ -0.002261519432067871,
+ 0.00048804283142089844,
+ -0.0017081499099731445,
+ 0.0017081499099731445,
+ -0.00048804283142089844,
+ -0.0009760856628417969,
+ 0.0009760856628417969,
+ 0.0017081499099731445,
+ -0.00024402141571044922,
+ 0.0009760856628417969,
+ 0.00048804283142089844,
+ -0.00024402141571044922,
+ 0.00048804283142089844,
+ 0.0007320642471313477,
+ 0.00048804283142089844,
+ 0.0017081499099731445,
+ 0.00048804283142089844,
+ 0.0,
+ 0.0007320642471313477,
+ -0.0009760856628417969,
+ 0.001220107078552246,
+ -0.0007320642471313477,
+ 0.0,
+ -0.0014641284942626953
+ ]
+ },
+ "int4": {
+ "canonical_values_sha256": "173cd87e69938cf26b2012d709dbc091158743ded89ce2a0d2dc91b49b938f35",
+ "dtype": "torch.float32",
+ "l2_norm": 0.036220585690963904,
+ "maximum": 0.030975341796875,
+ "minimum": -0.004425048828125,
+ "raw_bytes_sha256": "13adc0c770fe23c19e1f7c2a8e2d3c21276f59aacc474a6d256c15b72589e401",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ 0.004425048828125,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.004425048828125,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.004425048828125,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.004425048828125,
+ 0.0,
+ 0.004425048828125,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.004425048828125,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.030975341796875,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.004425048828125,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.004425048828125,
+ 0.0,
+ 0.0,
+ 0.004425048828125,
+ -0.004425048828125,
+ 0.0,
+ -0.004425048828125,
+ 0.0,
+ 0.0,
+ -0.004425048828125,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.004425048828125,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ -0.004425048828125,
+ 0.0,
+ 0.00885009765625,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0
+ ]
+ },
+ "int8": {
+ "canonical_values_sha256": "8b500faf0c0c74aeb430d103a5f7dc56b3f441bd1c962a1d0724db9291b09cca",
+ "dtype": "torch.float32",
+ "l2_norm": 0.03529379853847723,
+ "maximum": 0.03099071979522705,
+ "minimum": -0.004880428314208984,
+ "raw_bytes_sha256": "6abcd342b764f36e9ca2cabb9fa32d4f60a16f83bd50ffce9be08f888d421bda",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ 0.003416299819946289,
+ -0.0009760856628417969,
+ -0.00048804283142089844,
+ -0.00048804283142089844,
+ -0.0017081499099731445,
+ -0.0009760856628417969,
+ 0.0014641284942626953,
+ -0.00048804283142089844,
+ -0.0017081499099731445,
+ -0.00024402141571044922,
+ 0.0,
+ -0.004880428314208984,
+ 0.0014641284942626953,
+ -0.0009760856628417969,
+ -0.00048804283142089844,
+ 0.0019521713256835938,
+ 0.002196192741394043,
+ -0.0007320642471313477,
+ -0.0007320642471313477,
+ -0.001220107078552246,
+ 0.0,
+ -0.00048804283142089844,
+ 0.00048804283142089844,
+ -0.0017081499099731445,
+ 0.00048804283142089844,
+ -0.0007320642471313477,
+ 0.0009760856628417969,
+ 0.0,
+ -0.0019521713256835938,
+ -0.0017081499099731445,
+ -0.00048804283142089844,
+ 0.0029282569885253906,
+ 0.0007320642471313477,
+ -0.00024402141571044922,
+ -0.002196192741394043,
+ -0.0036603212356567383,
+ -0.00024402141571044922,
+ 0.0026842355728149414,
+ -0.00048804283142089844,
+ -0.00048804283142089844,
+ 0.0014641284942626953,
+ 0.0,
+ -0.0007320642471313477,
+ 0.001220107078552246,
+ 0.003416299819946289,
+ 0.0019521713256835938,
+ 0.0,
+ -0.0014641284942626953,
+ 0.0,
+ 0.00024402141571044922,
+ -0.00024402141571044922,
+ 0.03099071979522705,
+ 0.0,
+ -0.0009760856628417969,
+ 0.0,
+ 0.0007320642471313477,
+ 0.0009760856628417969,
+ 0.001220107078552246,
+ -0.001220107078552246,
+ -0.00024402141571044922,
+ 0.002440214157104492,
+ -0.001220107078552246,
+ -0.00048804283142089844,
+ -0.00024402141571044922,
+ -0.0007320642471313477,
+ 0.00048804283142089844,
+ -0.0009760856628417969,
+ 0.0007320642471313477,
+ 0.00024402141571044922,
+ -0.001220107078552246,
+ 0.002196192741394043,
+ 0.00048804283142089844,
+ 0.0007320642471313477,
+ 0.0026842355728149414,
+ -0.0007320642471313477,
+ 0.001220107078552246,
+ 0.002440214157104492,
+ -0.002196192741394043,
+ 0.0007320642471313477,
+ -0.003416299819946289,
+ -0.0009760856628417969,
+ 0.00024402141571044922,
+ -0.002440214157104492,
+ 0.00048804283142089844,
+ 0.0017081499099731445,
+ 0.0,
+ -0.00024402141571044922,
+ 0.0,
+ 0.00024402141571044922,
+ 0.001220107078552246,
+ -0.0007320642471313477,
+ 0.0,
+ -0.0007320642471313477,
+ 0.0017081499099731445,
+ 0.0,
+ -0.0029282569885253906,
+ 0.0,
+ -0.0007320642471313477,
+ 0.0007320642471313477,
+ 0.00048804283142089844,
+ -0.00024402141571044922,
+ -0.0007320642471313477,
+ -0.0026842355728149414,
+ -0.001220107078552246,
+ 0.006588578224182129,
+ 0.00048804283142089844,
+ -0.0017081499099731445,
+ 0.0017081499099731445,
+ -0.00048804283142089844,
+ -0.0009760856628417969,
+ 0.0009760856628417969,
+ 0.0017081499099731445,
+ -0.00024402141571044922,
+ 0.0009760856628417969,
+ 0.00048804283142089844,
+ -0.00024402141571044922,
+ 0.00048804283142089844,
+ 0.0007320642471313477,
+ 0.00048804283142089844,
+ 0.0017081499099731445,
+ 0.00048804283142089844,
+ 0.0,
+ 0.0007320642471313477,
+ -0.0009760856628417969,
+ 0.001220107078552246,
+ -0.0007320642471313477,
+ 0.0,
+ -0.0014641284942626953
+ ]
+ },
+ "loss_gradient_at_int4": {
+ "canonical_values_sha256": "c0594ad3c0bf5f4fd710e3a276dba85cfb6e0223b2b4d07df1a1c7837056556a",
+ "dtype": "torch.float32",
+ "l2_norm": 0.10387240447312462,
+ "maximum": 0.005024394020438194,
+ "minimum": -0.10125575959682465,
+ "raw_bytes_sha256": "fd3cf385e7d128b0258d626fc5aa3ac0d11f0a27aee3d607d88f217d820e2627",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ 0.0019262632122263312,
+ 0.0014212650712579489,
+ 0.0018424993613734841,
+ 0.00044091936433687806,
+ 0.0015512824757024646,
+ -0.0005846951971761882,
+ 0.001816079136915505,
+ -0.0007030523847788572,
+ 0.0010886210948228836,
+ 0.0007587548461742699,
+ -0.00042972713708877563,
+ 0.0007131386664696038,
+ -0.0026562924031168222,
+ -0.0022879280149936676,
+ 0.00020134383521508425,
+ 0.0012937015853822231,
+ -0.0006283644470386207,
+ 0.001814778777770698,
+ -0.0008928566821850836,
+ 0.0021847118623554707,
+ 0.0003682237584143877,
+ -0.0032275733537971973,
+ -0.0020399605855345726,
+ 1.7102549463743344e-05,
+ -0.0015094504924491048,
+ 0.005024394020438194,
+ -0.0013270904310047626,
+ -0.004006475210189819,
+ -0.001264957245439291,
+ -0.002969715278595686,
+ 0.0003037245769519359,
+ 0.0020395617466419935,
+ 0.0002787635021377355,
+ -0.0027401847764849663,
+ 0.0019351282389834523,
+ 0.000865015375893563,
+ 0.003045918419957161,
+ 0.0008799028000794351,
+ -0.00022349724895320833,
+ 0.0014818405034020543,
+ 0.0021660763304680586,
+ -0.0013035888550803065,
+ 0.0009661199292168021,
+ 0.0011042940896004438,
+ -4.259186971466988e-05,
+ 0.001931531005539,
+ 0.0018730104202404618,
+ -0.001610899344086647,
+ 1.8201817510998808e-05,
+ 0.0002562880690675229,
+ -0.0016326926415786147,
+ -0.000296322803478688,
+ 0.0008874211343936622,
+ 0.00237401039339602,
+ -0.0005520188133232296,
+ -0.0014659594744443893,
+ -0.002238436369225383,
+ -0.00023758533643558621,
+ -0.0013755356194451451,
+ 0.003170112846419215,
+ -2.999253865709761e-06,
+ -0.0003864453756250441,
+ 0.00038092833710834384,
+ -1.0315288818674162e-05,
+ 0.0015959372976794839,
+ -0.0028114791493862867,
+ -0.0006342470878735185,
+ -0.002881780732423067,
+ -0.000330432754708454,
+ -0.003920666873455048,
+ 0.00295234564691782,
+ -0.00375390169210732,
+ -0.0006752145127393305,
+ 0.002069951733574271,
+ 0.0013031925773248076,
+ -0.002939094789326191,
+ -0.0006464685429818928,
+ -0.0005180641310289502,
+ 0.0002598516584839672,
+ -0.00320771848782897,
+ 0.003138857427984476,
+ -0.00028357093106023967,
+ 0.001396036590449512,
+ 0.00024147650401573628,
+ 0.0011078240349888802,
+ -0.00862223282456398,
+ 0.00016674147627782077,
+ 0.0002756033791229129,
+ 0.0011518512619659305,
+ 0.0005915284855291247,
+ 0.0001652283244766295,
+ -0.0002336077013751492,
+ 0.0035872948355972767,
+ -0.00021893883240409195,
+ -1.306984995608218e-05,
+ -0.0017337235622107983,
+ -0.0005415351479314268,
+ -0.0019791380036622286,
+ -0.0007222827989608049,
+ -0.0030868903268128633,
+ -0.0045274533331394196,
+ 0.0022112843580543995,
+ 0.002182932337746024,
+ -0.0022974596358835697,
+ 0.00010378618026152253,
+ 0.003722365479916334,
+ -5.5316617363132536e-05,
+ -0.005031160544604063,
+ 0.00040788864134810865,
+ 0.00024843018036335707,
+ 5.637917638523504e-05,
+ 0.0025499844923615456,
+ -0.00020873371977359056,
+ 0.00351886497810483,
+ -0.004114441107958555,
+ 0.0005371936713345349,
+ -0.002831262070685625,
+ 0.00032315996941179037,
+ 0.0005294861039146781,
+ 0.0028284615837037563,
+ 0.0006890354561619461,
+ -0.0001529195433249697,
+ -0.001153047545813024,
+ -0.0017877217615023255,
+ 0.0032552292104810476,
+ 0.0015389617765322328,
+ -0.10125575959682465,
+ -0.00043290964094921947
+ ]
+ },
+ "raw": {
+ "canonical_values_sha256": "7371fb24e1e36ae4fab3e31114b9f8b7453a22e8daf1421fbeda931cffe8ad76",
+ "dtype": "torch.float32",
+ "l2_norm": 0.035325674672423146,
+ "maximum": 0.030985061079263687,
+ "minimum": -0.0049955351278185844,
+ "raw_bytes_sha256": "9d3522890a8ef6b15bed0c9a3912bedf11d55ccb9ca790473f9eb6ac9267614c",
+ "shape": [
+ 128
+ ],
+ "values_float64": [
+ 0.0033048740588128567,
+ -0.0009036565897986293,
+ -0.0004718718701042235,
+ -0.0005730967386625707,
+ -0.0018201423808932304,
+ -0.0009769850876182318,
+ 0.0015801569679751992,
+ -0.0005055133951827884,
+ -0.0016842734767124057,
+ -0.00018287071725353599,
+ 2.4830371330608614e-05,
+ -0.0049955351278185844,
+ 0.0015779350651428103,
+ -0.0009750170866027474,
+ -0.0006039075087755919,
+ 0.0018452492076903582,
+ 0.002122819423675537,
+ -0.000657621945720166,
+ -0.0006538856541737914,
+ -0.0012589447433128953,
+ -8.350703865289688e-06,
+ -0.0004530471342150122,
+ 0.0004968642024323344,
+ -0.001730817137286067,
+ 0.0005820555379614234,
+ -0.0006949602393433452,
+ 0.0009517923463135958,
+ 2.9515966161852702e-05,
+ -0.001885510515421629,
+ -0.0017142510041594505,
+ -0.0004046951071359217,
+ 0.002827821997925639,
+ 0.0006249356083571911,
+ -0.00035871274303644896,
+ -0.0022091413848102093,
+ -0.0037344861775636673,
+ -0.00017846697301138192,
+ 0.002784297801554203,
+ -0.0005782331572845578,
+ -0.00043647567508742213,
+ 0.0015016065444797277,
+ 7.54362263251096e-05,
+ -0.0006566747324541211,
+ 0.001181323197670281,
+ 0.0034497505985200405,
+ 0.002008379902690649,
+ -1.1217780411243439e-05,
+ -0.0013945455430075526,
+ 5.295201845001429e-06,
+ 0.00012845979654230177,
+ -0.0003596028545871377,
+ 0.030985061079263687,
+ -7.698233821429312e-05,
+ -0.0010325881885364652,
+ 5.2082803449593484e-05,
+ 0.0007889000116847456,
+ 0.0008905564900487661,
+ 0.0012876545079052448,
+ -0.0011105824960395694,
+ -0.0002456603688187897,
+ 0.002481573959812522,
+ -0.0011894172057509422,
+ -0.0004677886900026351,
+ -0.00014422183448914438,
+ -0.0008031816105358303,
+ 0.000479788810480386,
+ -0.0008763678488321602,
+ 0.0008192200912162662,
+ 0.0001313754473812878,
+ -0.001098668435588479,
+ 0.0021382207050919533,
+ 0.0004850035475101322,
+ 0.0006242943927645683,
+ 0.0027718483470380306,
+ -0.0008028076845221221,
+ 0.0013181354152038693,
+ 0.0024828286841511726,
+ -0.0022591620218008757,
+ 0.000688544474542141,
+ -0.0034598312340676785,
+ -0.0009268087451346219,
+ 0.0001778502919478342,
+ -0.0025246834848076105,
+ 0.0004280513967387378,
+ 0.0016832324909046292,
+ 5.359098213375546e-05,
+ -0.0003197666082996875,
+ -6.854796083644032e-05,
+ 0.00014169668429531157,
+ 0.001153209712356329,
+ -0.0008407275890931487,
+ -8.969995542429388e-05,
+ -0.0007316211704164743,
+ 0.0015954526606947184,
+ -3.644587195594795e-05,
+ -0.0029524227138608694,
+ -3.355645458213985e-05,
+ -0.0008109586196951568,
+ 0.0006715458584949374,
+ 0.0005319491610862315,
+ -0.000167220423463732,
+ -0.0006476528942584991,
+ -0.0025838364381343126,
+ -0.001242813770659268,
+ 0.0066603561863303185,
+ 0.0005581948207691312,
+ -0.0015995127614587545,
+ 0.00175798824056983,
+ -0.0005289377877488732,
+ -0.0009065548656508327,
+ 0.0009147872333414853,
+ 0.0017985677113756537,
+ -0.00034901819890365005,
+ 0.0010500828502699733,
+ 0.0005373249878175557,
+ -0.00032956726499833167,
+ 0.0004026848473586142,
+ 0.0006724025588482618,
+ 0.00050860655028373,
+ 0.0016747908666729927,
+ 0.0005131553043611348,
+ -9.920362936099991e-05,
+ 0.0008079062681645155,
+ -0.0009977761656045914,
+ 0.0012843883596360683,
+ -0.0008153929957188666,
+ -0.00010738235869212076,
+ -0.0013448388781398535
+ ]
+ }
+ }
+ }
+ ],
+ "schema_version": 1,
+ "seed": 2339
+ },
+ "schema_version": 1
+}
diff --git a/research/CLAIM_BOUNDARY.md b/research/CLAIM_BOUNDARY.md
index 0a2613d..2e1e9f5 100644
--- a/research/CLAIM_BOUNDARY.md
+++ b/research/CLAIM_BOUNDARY.md
@@ -1,6 +1,6 @@
# Claim boundary
-Last reviewed: 2026-07-22
+Last reviewed: 2026-07-23
## What is already established
@@ -32,6 +32,22 @@ generated-code correctness, lower latency, lower whole-model or peak memory, or
cross-model generality. Mean decay, write gate, state-update magnitude, and
residual magnitude remain rejected diagnostic selectors from the earlier pilot.
+## Current v0.3 research boundary
+
+Experiment 005 permanently failed its frozen numerical prerequisite before
+holdout (`13/16 = 0.8125` sign agreement versus a required `0.95`). Its later
+same-calibration adaptive-MSE postmortem was promising but achieved only a
+7.93% descriptive excess-NLL reduction against the strongest static empirical
+selector, with a paired 95% interval crossing zero. The ranked `[8, 16)`
+holdout remained unopened.
+
+Experiment 006 currently defines and implements deterministic rank fusion of
+offline target-directional sensitivity and causal per-write reconstruction
+benefit at the same exact byte budget. It has no GPU quality result at this
+checkpoint, and its heldout path remains disabled until a candidate-aligned
+numeric and packing prerequisite passes. It supports an experiment, not an
+improvement, novelty, deployment, or breakthrough claim.
+
## Claims prohibited without new evidence
- "First recurrent-state quantization method."
diff --git a/research/EXPERIMENT_005_RESULT.md b/research/EXPERIMENT_005_RESULT.md
new file mode 100644
index 0000000..335dbd3
--- /dev/null
+++ b/research/EXPERIMENT_005_RESULT.md
@@ -0,0 +1,205 @@
+# Experiment 005 result: gate failure and same-calibration postmortem
+
+> **Status: permanently failed before holdout.**
+>
+> The frozen storage-boundary validator achieved 13/16 sign checks
+> (`0.8125`) against a required minimum of `0.95`. Experiment 005 therefore
+> did not open its ranked `[8, 16)` heldout-calibration window. Later results
+> on the already inspected selector partition are postmortem diagnostics only;
+> they do not reopen the gate or support an improvement, generalization,
+> novelty, or breakthrough claim.
+
+Date recorded: 2026-07-23
+
+## Frozen gate evidence
+
+The permanent gate decision is backed by:
+
+| Field | Value |
+| --- | --- |
+| Artifact | `evidence/experiment005-storage-boundary-599862e.json` |
+| Artifact kind | `recurquant_storage_boundary_taylor_diagnostic` |
+| Clean implementation commit | `599862eef3b635f14b05c578f02393a0abd072a6` |
+| File SHA-256 | `61a2936bd20679bad441921d26b556f5986eec61449c4a9743c9b0b5e0bea86d` |
+| Canonical evidence SHA-256 | `b168330b4c39963b7c149230d4b1ad9fa57b20b02d6d95ee583ee9941f68b19f` |
+| Created at | `2026-07-22T17:07:41.231231+00:00` |
+| Model arithmetic | FP32 |
+| Hardware | NVIDIA RTX 5070 Laptop GPU |
+| PyTorch | `2.11.0+cu128` |
+| Transformers | `5.14.1` |
+| Evidence verification | valid, with no verifier errors |
+
+The artifact records `passed: false`. Its only failed conjunction member is
+central-difference sign agreement:
+
+| Check | Frozen threshold | Observed | Result |
+| --- | ---: | ---: | --- |
+| Repeated baseline maximum difference | at most `1e-7` | `0.0` | pass |
+| Informative rows | at least 3 of 4 | 4 of 4 | pass |
+| Central-difference sign agreement | at least `0.95` | `13/16 = 0.8125` | **fail** |
+| Median absolute relative derivative error | at most `0.10` | `0.03400520381314055` | pass |
+| Convergent informative rows | at least `0.75` | `0.75` | pass |
+| Near-zero-row absolute-error checks | at most `2e-7` | no near-zero rows | pass |
+
+The overall gate is a conjunction, so one failed condition is a failed gate.
+The threshold, row strata, epsilon grid, arithmetic mode, and pass rule remain
+as frozen. We will not weaken them, delete the failed row, or rerun a modified
+validator and label it the Experiment 005 result.
+
+## Failure localization
+
+All three sign misses came from the fixed `early_low` row. The other three
+rows produced 12/12 correct sign checks. For `early_low`, the autograd
+directional derivative was
+
+```text
++1.534285755042659e-07
+```
+
+at a base target NLL of `0.03833549842238426`. One FP32 scalar ULP at that loss
+is `3.725290298461914e-09`. Across epsilon values `1/4`, `1/8`, `1/16`, and
+`1/32`, the expected central-difference numerators were approximately 20.59,
+10.30, 5.15, and 2.57 ULPs. The observed numerator counts were 0, 31, 0, and 0
+ULPs, yielding sign flags `false`, `true`, `false`, and `false`. The observed
+endpoint benefit for this row was zero.
+
+This pattern is **consistent with finite-precision loss resolution** at that
+row and transition. It does not prove that resolution was the sole cause, and
+it does not turn the failed gate into a pass. More importantly, this validator
+tested the signed local derivative
+
+```text
+g dot (Q8(raw) - Q4(raw)),
+```
+
+not the actual squared endpoint score used to form the target-directional
+Fisher quotas:
+
+```text
+(g dot e4)^2 - (g dot e8)^2.
+```
+
+Future candidates must validate their own score algebra and packing directly.
+They must not inherit this failed signed-derivative check as evidence for a
+different formula.
+
+## Holdout remained unopened
+
+Experiment 005 froze the following first generalization window:
+
+```text
+phase: calibration
+ranked offset: 8
+task count: 8
+window: [8, 16)
+```
+
+The gate failed before tokenization or model loading for that window. No
+Experiment 005 heldout artifact was produced, and the ranked `[8, 16)` rows
+remain unchanged and unopened. Any later protocol that proposes to use this
+window must authenticate that fact before access; it may not silently substitute
+a different window after seeing data.
+
+## Same-calibration postmortem
+
+After the failure, we ran one descriptive quality diagnostic on the already
+inspected selector partition. Its evidence is:
+
+| Field | Value |
+| --- | --- |
+| Artifact | `evidence/experiment005-adaptive-same-calibration-8task-556e527.json` |
+| Artifact kind | `recurquant_adaptive_row_packing_same_calibration_quality_diagnostic` |
+| Clean implementation commit | `556e527b75f73d557e2bddf4a9973ce945cf1ab9` |
+| File SHA-256 | `3495698932b43d93f387bb61492f91fc38840097020980977451be2042a02164` |
+| Canonical evidence SHA-256 | `f07a6b852a4c427c0b9946ad44c21d023299d173eb24695462e99e3785061d61` |
+| Created at | `2026-07-22T17:40:53.827148+00:00` |
+| Selection | selector-task prefix, offset 0, limit 8, stop 8 |
+| Aligned scored tokens | 642 |
+| Primary method | `adaptive_mse_target_directional_fisher_quota` |
+| Holdout applicability | `false` |
+| Holdout pass value | `null` |
+
+The filename begins with `experiment006` because it was generated during later
+development, but its primary method is the plain Experiment 005 adaptive-MSE
+candidate. It contains no rank fusion and cannot be treated as Experiment 006
+evidence. The eight task IDs were `945`, `794`, `657`, `702`, `651`, `720`,
+`903`, and `918`; all belong to the selector partition already used for method
+development.
+
+The task-macro results were:
+
+| Method | Excess next-token NLL |
+| --- | ---: |
+| `adaptive_mse_target_directional_fisher_quota` | `0.4933023080229759` |
+| `target_directional_fisher_difference_int4` | `0.5357813686132431` |
+| `target_diagonal_fisher_difference_int4` | `0.5480052754282951` |
+| `delta_direction_magnitude_int4` | `0.5449846908450127` |
+| `hrr_h1` | `0.6301188990473747` |
+| `hrr_h32` | `0.7533748596906662` |
+| `adaptive_mse_hrr_h1_quota` | `0.7794309854507446` |
+| `row_mse` | `0.7946401834487915` |
+| `v02_layer0_static` | `0.8614744991064072` |
+| `uniform_int4` | `2.6861148476600647` |
+| `random_rows_s1101` | `2.729534089565277` |
+
+For the primary, mean KL was `0.4791950900107622`, worst-token KL CVaR95 was
+`2.902877390384674`, and top-1 agreement was `0.7851893156766891`.
+
+Using 10,000 paired bootstrap resamples with seed 2339, comparator-minus-primary
+contrasts included:
+
+| Comparator | Mean improvement | Paired 95% interval |
+| --- | ---: | ---: |
+| `adaptive_mse_hrr_h1_quota` | `0.2861286774277687` | `[0.1524614840745926, 0.44845127817243335]` |
+| `target_directional_fisher_difference_int4` | `0.04247906059026718` | `[-0.026418810337781883, 0.12283947486430402]` |
+| `target_diagonal_fisher_difference_int4` | `0.054702967405319214` | `[-0.025941481441259337, 0.14100585989654058]` |
+| `delta_direction_magnitude_int4` | `0.05168238282203674` | `[-0.05204220674932003, 0.14878664575517173]` |
+| `hrr_h1` | `0.1368165910243988` | `[0.0874815434217453, 0.1885298192501068]` |
+
+The strongest equal-byte static comparator by excess NLL was
+`target_directional_fisher_difference_int4`. The descriptive relative
+reduction against it was
+
+```text
+(0.5357813686132431 - 0.4933023080229759)
+/ 0.5357813686132431
+= 0.0792843183409219
+```
+
+or approximately 7.93%. That is below the frozen 20% requirement, and the
+paired interval against this comparator crosses zero. The postmortem therefore
+would not satisfy the frozen quality gate even if it had been held out. Its
+positive interval against the H1-quota adaptive ablation is useful for forming
+a new hypothesis, but it is not evidence of generalization.
+
+## Related selector artifacts
+
+Two selector artifacts were also generated at commit
+`556e527b75f73d557e2bddf4a9973ce945cf1ab9`:
+
+| Artifact | File SHA-256 | Canonical evidence SHA-256 |
+| --- | --- | --- |
+| `artifacts/experiment006-hrr-selector-8task-556e527.json` | `fa02e1d468ecc13c78b7cf8e63f237e372c556d9fed0c1f4b47c9dd901a808dd` | `07e646ccb9b1df5ff9873a94f7bacb07d7a4e2b70136e3a68f40d1619814d899` |
+| `artifacts/experiment006-loss-selector-8task-556e527.json` | `33bdc5939429281ba5377eeb02d59fac72a0f8da657c713bb7854d235e2fb057` | `ae92af38475720eb1ce19527f1c2de3d0d1fc045a1160a83f8da30ecde282214` |
+
+These are authenticated exploratory inputs, not heldout results. They predate
+the Experiment 006 fusion freeze and cannot satisfy a later protocol's
+implementation, score-validation, or provenance prerequisites without
+regeneration from that protocol's clean committed implementation.
+
+## Result and claim boundary
+
+The durable findings are limited to:
+
+1. the frozen Experiment 005 numerical gate failed at `0.8125 < 0.95`;
+2. the failure was localized to three checks on one low-signal row and is
+ consistent with, but not proven to be caused by, FP32 loss resolution;
+3. the ranked `[8, 16)` holdout was not opened;
+4. plain adaptive MSE was promising on the same eight tasks used to construct
+ its quotas, but did not clear the frozen effect-size or strongest-static
+ uncertainty requirements; and
+5. any successor is a new candidate with a new artifact kind and an independent
+ validation gate.
+
+Experiment 005 makes no breakthrough claim. It remains below the
+heldout-calibration rung of the claim ladder.
diff --git a/research/EXPERIMENT_006_RANK_FUSION_PROTOCOL_DRAFT.md b/research/EXPERIMENT_006_RANK_FUSION_PROTOCOL_DRAFT.md
new file mode 100644
index 0000000..88ad05e
--- /dev/null
+++ b/research/EXPERIMENT_006_RANK_FUSION_PROTOCOL_DRAFT.md
@@ -0,0 +1,570 @@
+# Experiment 006: quota-constrained rank fusion protocol draft
+
+> **Status: pre-holdout protocol freeze. The ranked `[8, 16)` window is
+> unopened.**
+>
+> The immutable primary is equal rank fusion with `lambda = 0.5`. Values
+> `lambda = 0.25` and `lambda = 0.75` are predeclared ablations only; neither
+> may replace the primary after results are visible. The `lambda = 0` and
+> `lambda = 1` endpoints are controls. This protocol makes no improvement,
+> novelty, systems, or breakthrough claim.
+
+Date opened: 2026-07-23
+
+## Relation to Experiment 005
+
+Experiment 005 failed its frozen storage-boundary sign gate: 13 of 16 checks
+agreed, or `0.8125`, below the required `0.95`. That failure is permanent and
+is recorded in `EXPERIMENT_005_RESULT.md`. It stopped Experiment 005 before
+the ranked `[8, 16)` heldout-calibration window was opened.
+
+The failed gate validated a signed local derivative,
+
+```text
+g dot (Q8(raw) - Q4(raw)),
+```
+
+not the squared endpoint score that generated the layer quotas and not the
+reconstruction-error score used at runtime. Experiment 006 therefore uses a
+new candidate-aligned numerical and packing gate. The old finite-difference
+result remains available as a labeled non-gating diagnostic; it is not erased,
+rerun under looser thresholds, or inherited as evidence for this candidate.
+
+## Research question
+
+At the same exact resident recurrent-state byte budget and the same frozen
+per-layer INT8 quotas, does a deterministic equal-rank combination of:
+
+1. offline target-directional sensitivity; and
+2. causal per-write INT4-to-INT8 reconstruction-error reduction
+
+preserve Qwen3.5 Gated DeltaNet outputs better than either component alone,
+the strongest equal-byte static policy, and the H1-quota adaptive control on a
+previously unopened eight-task calibration window?
+
+This is a small heldout-calibration diagnostic. It is not a confirmation set.
+
+## Frozen candidate
+
+### Physical rows and layer quotas
+
+Each Gated DeltaNet recurrent layer contains 2,048 physical matrix rows:
+16 heads by 128 key rows. A row's canonical coordinate is
+`(layer_index, head_index, key_row_index)`, with flattened in-layer index
+
+```text
+head_index * 128 + key_row_index.
+```
+
+The offline selector computes the frozen
+`target_directional_fisher_difference_int4` score for every row. For a scored
+storage boundary, with target-NLL gradient `g` and aligned quantization errors
+
+```text
+e4 = Q4(raw) - raw
+e8 = Q8(raw) - raw,
+```
+
+the primitive score is
+
+```text
+(g dot e4)^2 - (g dot e8)^2.
+```
+
+Task-macro aggregation over the authenticated first eight selector tasks gives
+the static row score `S_(l,r)`. Negative values are retained. A global stable
+descending rank under the exact format budget selects 1,976 rows. The number
+selected in layer `l` becomes its immutable quota `q_l`, with
+
+```text
+sum_l q_l = 1,976.
+```
+
+The exact quota vector and the global selected mask must be recorded and
+hashed in the regenerated selector artifact. Experiment 006 never retunes
+`q_l` on the heldout window.
+
+### Per-write reconstruction score
+
+At each real recurrent-state write, the dynamic score for row `r` in layer
+`l` is
+
+```text
+M_(t,l,r) = mean((Q4(raw_(t,l,r)) - raw_(t,l,r))^2)
+ - mean((Q8(raw_(t,l,r)) - raw_(t,l,r))^2).
+```
+
+The Q4 and Q8 errors are aligned endpoints of the same source row and the same
+quantizer contract. Higher values mean that promoting the row removes more
+instantaneous reconstruction error.
+
+### Deterministic per-layer ranks
+
+For each layer independently:
+
+- `r_S(l,r)` is the zero-based descending rank of `S_(l,r)`;
+- `r_M(t,l,r)` is the zero-based descending rank of `M_(t,l,r)` at that write;
+- rank 0 is best; and
+- exact score ties are resolved by ascending canonical flattened in-layer
+ coordinate.
+
+Ranks are permutations of the integers 0 through 2,047. No unstable GPU sort,
+random tie break, epsilon tie, or rounded display value may determine a rank.
+The ranking implementation must produce the same integer arrays as the
+canonical CPU FP64 implementation.
+
+### Frozen fusion family
+
+`lambda` is the weight on the **static sensitivity rank**. It does not mix
+directional Fisher with diagonal Fisher. Multiplying by four gives exact
+integer costs and avoids floating-point tie ambiguity:
+
+| Role | `lambda` | Integer cost to minimize |
+| --- | ---: | --- |
+| Endpoint control: plain adaptive MSE | `0` | `4 * r_M` |
+| Predeclared ablation | `0.25` | `3 * r_M + r_S` |
+| **Frozen primary: equal rank fusion** | **`0.5`** | **`2 * r_M + 2 * r_S`** |
+| Predeclared ablation | `0.75` | `r_M + 3 * r_S` |
+| Endpoint control: static target-Fisher plan | `1` | `4 * r_S` |
+
+For every write and layer, select exactly the `q_l` rows with smallest fusion
+cost. Final cost ties are resolved by ascending canonical flattened coordinate.
+The physical packer stores those rows as INT8 and all other rows as INT4.
+
+The primary artifact method name is frozen as:
+
+```text
+rank_fusion_l050_target_fisher_adaptive_mse
+```
+
+The `lambda = 0.25` and `lambda = 0.75` results must be reported regardless of
+sign, but they are ablations. A better ablation cannot be promoted to primary,
+used for the pass decision, or described as the prespecified result. Any later
+choice of a different weight is a new experiment on new data.
+
+### Endpoint invariants
+
+Before any heldout access:
+
+1. `lambda = 0` must reproduce the existing
+ `adaptive_mse_target_directional_fisher_quota` mask exactly at every
+ audited write;
+2. `lambda = 1` must reproduce the frozen static
+ `target_directional_fisher_difference_int4` mask exactly at every write;
+3. each layer must select exactly `q_l` rows for every lambda value;
+4. the total promotion count must be exactly 1,976; and
+5. repeated runs from identical inputs must produce byte-identical ranks,
+ costs, masks, payloads, and hashes.
+
+One mismatch fails closed. The endpoints are controls, not alternative primary
+methods.
+
+### Causality boundary
+
+The experiment is batch-one. Static ranks are frozen from the selector
+partition. At runtime, the dynamic rank may use only the current raw state and
+its current aligned Q4/Q8 endpoints before that state is stored. It may not use
+the next token, future token, target label, future query, future state, or
+future logits.
+
+## Exact storage contract
+
+For Qwen3.5-0.8B-Base at batch one:
+
+| Component | Rank-fusion/static row format | Static v0.2 |
+| --- | ---: | ---: |
+| All-INT4 payload | 2,359,296 B | 2,359,296 B |
+| FP16 scales | 73,728 B | 73,728 B |
+| Precision mask | 4,608 B | 0 B |
+| INT8 promotion payload | 126,464 B | 131,072 B |
+| Promoted rows | 1,976 | 2,048 |
+| **Resident total** | **2,564,096 B** | **2,564,096 B** |
+
+The evaluator checks these values from live packed tensors after every task
+for every rank-fusion method. Resident bytes exclude model weights, the full
+attention cache, temporary endpoint tensors, rank workspaces, kernel
+workspace, framework bookkeeping, and CUDA allocator reserved memory.
+
+## Candidate-aligned numerical gate
+
+The gate validates the score algebra actually used by this candidate and the
+physical masks derived from it. All reference calculations run on CPU FP64
+from the exact source FP32 tensors saved before score reduction. The model-side
+implementation may remain FP32, but it must agree with the independent
+reference within the deterministic bounds below and must produce identical
+ranks and masks.
+
+This is an implementation-validity audit, not a statistical sample. Its
+geometry is fixed without reading selector scores:
+
+- selector-task positions `0` and `7` in authenticated order;
+- the first and last affected code transitions in each selected task;
+- recurrent model layers `0`, `9`, `18`, and `22`;
+- value heads `0`, `7`, and `15`; and
+- key rows `0`, `31`, `63`, `95`, and `127`.
+
+The static dot-product audit therefore contains exactly 240 primitive rows.
+For the same 16 task-transition-layer writes, the dynamic audit retains the
+whole `[16, 128, 128]` source state and validates all 2,048 row scores, ranks,
+and the final mask. This scope is small enough to release as raw sidecar data
+while covering early through late layers, heads, rows, short-horizon and
+long-horizon boundaries. Expanding or replacing this set after inspecting its
+result is a new gate, not an Experiment 006 retry.
+
+Let FP32 unit roundoff be
+
+```text
+u = 2^-24 = 5.960464477539063e-8.
+```
+
+For a reduction of length 128, freeze
+
+```text
+gamma_128 = 128*u / (1 - 128*u)
+ = 7.629452739355006e-6
+
+gamma_3 = 3*u / (1 - 3*u)
+ = 1.788139663006007e-7.
+```
+
+### Static sensitivity score
+
+For every one of the 240 frozen primitive rows, independently compute for `b`
+in `{4, 8}`:
+
+```text
+d_b = sum_i float64(g_i) * float64(e_b_i)
+A_b = sum_i abs(float64(g_i) * float64(e_b_i))
+B_b = gamma_128 * A_b
+```
+
+and
+
+```text
+S_ref = d_4^2 - d_8^2
+
+B_S = 2*abs(d_4)*B_4 + B_4^2
+ + 2*abs(d_8)*B_8 + B_8^2
+ + gamma_3 * ((abs(d_4) + B_4)^2 + (abs(d_8) + B_8)^2).
+```
+
+For all 240 finite primitive rows, the implementation score must satisfy
+
+```text
+abs(S_impl - S_ref) <= B_S.
+```
+
+There is no aggregate pass percentage. Separately, the selector must retain
+authenticated per-task FP64 accumulator arrays for the complete 36,864-row
+production score field. Independent CPU code recomputes their task-macro mean,
+stable global plan, per-layer `r_S`, `q_l`, and endpoint mask from those stored
+arrays. The production artifact must match every complete-array hash, rank,
+quota, coordinate, and mask exactly. The sampled primitive audit validates the
+underlying dot-and-square implementation; the full-array replay validates its
+aggregation and allocation without requiring tens of gigabytes of raw
+gradient/error tensors.
+
+### Dynamic reconstruction score
+
+For all 2,048 rows at each of the 16 frozen writes, independently compute
+
+```text
+m_b = (1/128) * sum_i float64(e_b_i)^2
+M_ref = m_4 - m_8
+
+gamma_256 = 256*u / (1 - 256*u)
+ = 1.5259021896696422e-5
+
+B_M = gamma_256 * (m_4 + m_8)
+ + 8*epsilon_FP64*max(1, m_4 + m_8).
+```
+
+For every finite audited row, require
+
+```text
+abs(M_impl - M_ref) <= B_M.
+```
+
+The small FP64 term is only a deterministic representation guard. For each
+audited write, canonical CPU FP64 values determine all 2,048 `r_M` positions;
+the production ranks, integer fusion costs, masks, and packed endpoints must
+match exactly.
+
+These bounds assume finite, normal-range arithmetic without overflow or
+underflow. A non-finite source, score, metric, payload, or model output, or an
+overflow/underflow condition affecting a checked reduction, fails closed and
+is recorded rather than omitted. If the implementation is changed to use the
+canonical FP64 scores directly, the artifact must still store the exact FP64
+array hashes and prove rank, quota, mask, and packing parity.
+
+### Exact tensor-byte authentication
+
+Every released audit source and derived array is content-addressed using its
+exact logical bytes, not JSON-rendered decimal strings. The artifact records
+dtype, shape, axis meaning, little-endian byte order, contiguous C-order, and
+SHA-256 for:
+
+- the 240 sampled source FP32 `g`, `e4`, and `e8` rows;
+- the 16 full audited FP32 source states and their physical Q4/Q8 endpoints;
+- sampled canonical FP64 primitive scores and complete authenticated per-task
+ FP64 selector accumulator arrays;
+- canonical FP64 per-write MSE scores for all audited rows;
+- per-layer static and dynamic integer ranks;
+- the integer quota vector;
+- every lambda's integer fusion-cost arrays;
+- selected masks and promotion coordinates; and
+- packed INT4 payloads, INT8 promotion payloads, FP16 scales, and mask bytes.
+
+Large raw tensors may live in a deterministic `.npz` sidecar, but the JSON gate
+artifact must authenticate the sidecar file and every contained logical array.
+The validator recomputes task-macro aggregation, stable ties, exact layer
+quotas, all 1,976 promotions, and the 2,564,096-byte resident total. Every
+check must pass. The gate artifact reports each condition and an overall
+conjunction and exits nonzero on failure.
+
+## Artifact and provenance prerequisites
+
+Experiment 006 uses distinct schema and artifact kinds. No Experiment 004 or
+005 artifact may be renamed or relabeled as Experiment 006 evidence. Before
+holdout access, the following must exist from one clean committed protocol and
+implementation:
+
+1. a regenerated target-directional selector artifact;
+2. a regenerated H1 selector artifact for the quota-control method;
+3. a passing candidate-aligned numerical, rank, endpoint-parity, byte, and
+ packing gate artifact; and
+4. a preflight record authenticating the unopened holdout and all inputs.
+
+Each artifact must record:
+
+- its schema version, artifact kind, file SHA-256, and canonical evidence
+ SHA-256;
+- the committed SHA-256 of this protocol and every relevant source file;
+- the same clean Git commit at start and end, with identical source maps;
+- model `Qwen/Qwen3.5-0.8B-Base` at revision
+ `dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68`;
+- dataset `google-research-datasets/mbpp`, config `full`, source split `train`,
+ calibration phase, at revision
+ `4bb6404fdc6cacfda99d4ac4205087b89d32030c`;
+- selection namespace `rq-v0.2` and formatter version
+ `recurquant.mbpp-prompt-code.v1`;
+- the exact tokenizer identity, revision, settings, rendered text hashes,
+ ordered task IDs, canonical row-content hashes, and aligned token counts;
+- the quantizer contract, rounding mode, scale representation, storage timing,
+ tensor shapes, row-coordinate convention, and recurrent-layer list;
+- `q_l`, all method names, the complete lambda table, integer cost formulas,
+ ranks, masks, exact tensor-byte hashes, and endpoint-parity results;
+- bootstrap seed 2339, random-row seed 1101, all other RNG seeds and states,
+ deterministic settings, and commands;
+- Python, PyTorch, Transformers, CUDA, driver, package-lock, OS, CPU, GPU, and
+ hardware details; and
+- every gate threshold, observation, pass value, exception, warning, and exit
+ status.
+
+The clean commit must contain both the frozen protocol and implementation. All
+selector and gate artifacts must be generated afterward from that exact
+commit. A dirty tree, a source hash change, an uncommitted protocol, or an
+artifact from a predecessor commit fails preflight.
+
+### Existing evidence is exploratory only
+
+The following authenticated artifacts predate this fusion protocol:
+
+| Artifact | File SHA-256 | Canonical evidence SHA-256 | Classification |
+| --- | --- | --- | --- |
+| `experiment005-storage-boundary-599862e.json` | `61a2936bd20679bad441921d26b556f5986eec61449c4a9743c9b0b5e0bea86d` | `b168330b4c39963b7c149230d4b1ad9fa57b20b02d6d95ee583ee9941f68b19f` | frozen failed E005 gate, `passed: false` |
+| `experiment006-hrr-selector-8task-599862e.json` | `7a67e159f9dbab5e92cc9a837831359d3aa180ccd4725807f1836a7d5aeba55a` | `5acbe38d575c741153cf0142bced9227a9654693f946e4d768b9b62847bb672b` | pre-freeze selector input |
+| `experiment006-loss-selector-8task-599862e.json` | `b4972b40b32d67557520c0af3d3c4467f69283819765f8c3e1c9f4b92f560bf6` | `9243ec49933442c4d48f6e51321c33010d681fc5a3fffa4cca70599d52cf26d4` | pre-freeze selector input |
+| `experiment006-hrr-selector-8task-556e527.json` | `fa02e1d468ecc13c78b7cf8e63f237e372c556d9fed0c1f4b47c9dd901a808dd` | `07e646ccb9b1df5ff9873a94f7bacb07d7a4e2b70136e3a68f40d1619814d899` | pre-freeze selector input |
+| `experiment006-loss-selector-8task-556e527.json` | `33bdc5939429281ba5377eeb02d59fac72a0f8da657c713bb7854d235e2fb057` | `ae92af38475720eb1ce19527f1c2de3d0d1fc045a1160a83f8da30ecde282214` | pre-freeze selector input |
+| `experiment006-adaptive-same-calibration-8task-556e527.json` | `3495698932b43d93f387bb61492f91fc38840097020980977451be2042a02164` | `f07a6b852a4c427c0b9946ad44c21d023299d173eb24695462e99e3785061d61` | E005 same-calibration postmortem; no fusion |
+
+They may be cited for history and used to test artifact readers. They cannot
+satisfy Experiment 006's regenerated selector, candidate-aligned gate,
+preflight, or heldout-result requirements.
+
+## Frozen methods and controls
+
+Every row-format method below uses exactly 1,976 promotions and the exact
+2,564,096-byte resident recurrent-state total unless explicitly noted:
+
+1. `rank_fusion_l050_target_fisher_adaptive_mse` - frozen primary.
+2. `rank_fusion_l025_target_fisher_adaptive_mse` - report-only ablation.
+3. `rank_fusion_l075_target_fisher_adaptive_mse` - report-only ablation.
+4. `adaptive_mse_target_directional_fisher_quota` - `lambda = 0` endpoint and
+ individual adaptive component.
+5. `target_directional_fisher_difference_int4` - `lambda = 1` endpoint and
+ equal-byte static comparator.
+6. `adaptive_mse_hrr_h1_quota` - individual adaptive quota control.
+7. `hrr_h1` - static comparator.
+8. `hrr_h32` - retained negative static hypothesis.
+9. `row_mse` - static task-macro reconstruction-error allocation.
+10. `v02_layer0_static` - equal resident bytes with 2,048 promotions and no
+ precision mask.
+11. `random_rows_s1101` - prespecified random static policy.
+12. `signed_taylor_next_int4` - retained static diagnostic.
+13. `target_diagonal_fisher_difference_int4` - retained static diagnostic.
+14. `delta_direction_magnitude_int4` - retained static diagnostic.
+15. `uniform_int4` - lower-byte control, not an equal-byte competitor.
+
+The strongest individual adaptive component is selected deterministically as
+the lower-macro-excess-NLL member of methods 4 and 6 on the frozen holdout.
+The `lambda = 1` endpoint is static and is not eligible for that label. The
+`lambda = 0.25` and `lambda = 0.75` fused ablations are not individual
+components and cannot replace or qualify the primary.
+
+## Data separation and one-time holdout audit
+
+The authenticated first eight ranked MBPP calibration rows are the selector
+partition. They have already been inspected and can support only development
+and same-calibration diagnostics. Repository evidence at this protocol freeze
+contains selector-prefix and offset-0 postmortem artifacts, but no artifact
+that opens the ranked `[8, 16)` window.
+
+The one-time Experiment 006 window is frozen as:
+
+```text
+phase: calibration
+ranked offset: 8
+task count: 8
+window: [8, 16)
+```
+
+Before tokenization or model loading, the heldout evaluator must:
+
+1. verify both regenerated selector artifacts, the passing Experiment 006
+ numerical/packing gate, this protocol hash, and the same clean commit;
+2. reconstruct and authenticate the pinned ranked population independently;
+3. require exact arguments `--calibration-offset 8` and `--limit 8`;
+4. authenticate the first-eight selector prefix by dataset/config/revision,
+ source split, phase, namespace, formatter, ordered IDs, and row hashes;
+5. prove `[8, 16)` is disjoint from every selector and development task ID;
+6. verify that no prior artifact, log, cache manifest, command record, or
+ source change shows that `[8, 16)` was opened; and
+7. record a passing preflight before loading any heldout text.
+
+If there is evidence that `[8, 16)` was previously opened, the protocol aborts.
+It must not silently choose another offset under the Experiment 006 name.
+
+After preflight, one invocation evaluates every frozen method on the same
+ordered tasks and aligned transitions. It writes a complete artifact even when
+a metric or gate fails, records the failure, and exits with status 2. A crash
+may be resumed only from authenticated, immutable per-task records without
+rerunning, omitting, or replacing a revealed task. No lambda, quota, component,
+method, threshold, seed, metric, or comparator may change after heldout access.
+
+The evaluator records the heldout row-content manifest, rendered-text hashes,
+token counts, source maps, commands, packages, hardware, clean commit, and
+start/end hashes. Start and end records must be identical.
+
+## Metrics and frozen quality gate
+
+The primary metric is task-macro excess next-token NLL relative to an FP32
+recurrent state, scored only on code transitions after a quantized recurrent
+state has been stored. The prompt-to-first-code-token prediction is excluded.
+Use 10,000 paired bootstrap resamples with seed 2339.
+
+The equal-byte static comparator set is unchanged from Experiment 005:
+
+```text
+hrr_h1
+hrr_h32
+row_mse
+random_rows_s1101
+v02_layer0_static
+signed_taylor_next_int4
+target_directional_fisher_difference_int4
+target_diagonal_fisher_difference_int4
+delta_direction_magnitude_int4
+```
+
+The strongest equal-byte static comparator is the member with the lowest
+macro excess NLL on the frozen window. Uniform INT4 is excluded because it
+uses fewer resident bytes. Adaptive methods and fused ablations are excluded
+from the static set.
+
+The `lambda = 0.5` primary passes this small heldout-calibration gate only if
+all conditions hold:
+
+1. resident recurrent-state bytes equal 2,564,096 exactly on every task;
+2. primary macro excess NLL is lower than every equal-byte static comparator;
+3. the paired 95% interval versus the strongest equal-byte static comparator
+ is strictly above zero when expressed as comparator minus primary;
+4. relative excess-NLL reduction versus that static comparator is at least
+ 20%; if its excess NLL is non-positive, this condition fails closed;
+5. the paired 95% interval versus `adaptive_mse_hrr_h1_quota` is strictly above
+ zero when expressed as H1-adaptive minus primary;
+6. the paired 95% interval versus the strongest individual adaptive component
+ defined above is strictly above zero when expressed as component minus
+ primary;
+7. macro top-1 agreement is no more than `0.01` below the strongest equal-byte
+ static comparator;
+8. macro worst-token KL CVaR95 is no more than `0.10` above that comparator;
+9. on every task, primary excess NLL is at most `1.0` worse than that
+ comparator's excess NLL;
+10. no metric, source tensor, score, payload, or model output is non-finite;
+11. the candidate-aligned numerical, rank, endpoint-parity, promotion-count,
+ and exact-byte gate passes every row and write; and
+12. every code, protocol, artifact, manifest, tensor-byte, and source hash
+ verifies, with the same clean repository commit and source map at start and
+ end.
+
+Conditions 1 through 5 and 7 through 12 preserve Experiment 005's quality and
+evidence thresholds. Condition 6 is the additional rank-fusion requirement:
+the fused primary must beat its strongest individual adaptive component with
+a paired lower confidence bound above zero. The evaluator records every
+threshold, observed value, interval, pass value, and the overall conjunction.
+There is no discretionary override.
+
+The two intermediate-lambda ablations are always reported but do not enter the
+primary pass conjunction. They can diagnose the shape of the tradeoff; they
+cannot rescue a failed `lambda = 0.5` result.
+
+## Systems boundary
+
+This prototype computes two quantized endpoints, CPU-reference audits, stable
+ranks, integer fusion costs, and masks in Python. It is expected to add
+overhead. Resident packed-state bytes alone do not establish lower end-to-end
+memory, faster decoding, or practical deployment value.
+
+No latency, throughput, peak-memory, energy, kernel-efficiency, or speed claim
+is permitted from this experiment. A later fused Triton or CUDA implementation
+must preserve exact mask and endpoint parity and separately benchmark p50/p95
+decode latency, throughput, peak allocated and reserved memory, and workspace
+against static packing on named hardware.
+
+## Prior-art and novelty boundary
+
+Rank aggregation, Fisher/Taylor sensitivity, reconstruction-error selection,
+mixed-bit quantization, layer quotas, dynamic precision, and recurrent-state
+cache quantization are established ideas. No one ingredient is claimed as new.
+
+The narrow testable contribution is the particular exact-byte combination of
+frozen target-directional layer quotas, per-layer static sensitivity ranks,
+causal per-write aligned Q4-to-Q8 MSE ranks, and deterministic integer rank
+fusion for a Gated DeltaNet language-model recurrent state.
+
+A pass on eight MBPP calibration tasks would show only a scoped signal worth
+further study. It would not establish architectural generality, useful speed,
+state-of-the-art quality, or a breakthrough. Promotion beyond this stage
+requires, at minimum:
+
+- a larger untouched code development set and a separately frozen test set;
+- natural-text, retrieval, free-generation, and long-context evaluations;
+- multiple checkpoints, model sizes, recurrent architectures, and rounding
+ seeds;
+- closest-method reproductions and full systems benchmarks; and
+- independent replication from released code and raw artifacts.
+
+## Decision rule
+
+- **Gate failure before holdout:** record the failed prerequisite; keep the
+ holdout closed.
+- **Heldout primary failure:** publish the complete artifact and stop this
+ candidate. Do not tune lambda on `[8, 16)`.
+- **Ablation wins but primary fails:** report the ablation result as exploratory
+ and open a new protocol on new data; do not relabel it primary.
+- **Primary passes:** advance only to a larger preregistered development stage.
+ Do not use breakthrough language.
+
+The current state is below the heldout-calibration rung of the claim ladder.
diff --git a/research/STATUS.md b/research/STATUS.md
index 957a2a6..cbfeb89 100644
--- a/research/STATUS.md
+++ b/research/STATUS.md
@@ -1,5 +1,29 @@
# Research status
+## v0.3 experimental track
+
+Last updated: 2026-07-23
+
+Experiment 005 stopped before holdout after its frozen real-storage-boundary
+sign gate achieved `13/16 = 0.8125`, below the required `0.95`. Its permanent
+failure, authenticated artifact, and same-calibration postmortem are recorded
+in [`EXPERIMENT_005_RESULT.md`](EXPERIMENT_005_RESULT.md). The ranked MBPP
+calibration window `[8, 16)` was not opened.
+
+Experiment 006 freezes one successor hypothesis: within the same exact
+per-layer quotas, combine the offline target-directional sensitivity rank with
+the causal per-write INT4-to-INT8 reconstruction-benefit rank. Equal rank
+fusion (`lambda = 0.5`) is the immutable primary; `0.25` and `0.75` are
+report-only ablations. The implementation and protocol are complete for a
+same-calibration diagnostic, but no rank-fusion GPU result or heldout result
+exists at this checkpoint. The holdout remains fail-closed pending a passing
+candidate-aligned numerical/packing gate. See
+[`EXPERIMENT_006_RANK_FUSION_PROTOCOL_DRAFT.md`](EXPERIMENT_006_RANK_FUSION_PROTOCOL_DRAFT.md).
+
+No v0.3 improvement, novelty, speed, or breakthrough claim is supported.
+
+## v0.2 confirmed release
+
The frozen v0.2 public-data study completed on 2026-07-22. Every preregistered
quality gate passed on all 500 untouched MBPP test tasks and 30,244 scored
tokens. The exact result, integrity anchors, infrastructure-resume record, and
@@ -13,7 +37,7 @@ development decision is in [`DEVELOPMENT_002.md`](DEVELOPMENT_002.md).
The remainder of this file preserves the diagnostic v0.1 snapshot. Do not read
its historical "next action" as the current project state.
-Last updated: 2026-07-22
+Snapshot date: 2026-07-22
## Confirmed implementation
diff --git a/scripts/pilot_evaluate_hrr.py b/scripts/pilot_evaluate_hrr.py
index 96b4e56..fe3379b 100644
--- a/scripts/pilot_evaluate_hrr.py
+++ b/scripts/pilot_evaluate_hrr.py
@@ -39,6 +39,7 @@
AdaptiveMixedPackedRecurrentStateCache,
MixedPackedRecurrentStateCache,
PackedRecurrentStateCache,
+ RankFusedMixedPackedRecurrentStateCache,
)
from recurquant.public_data import (
MBPP_CALIBRATION_SIZE,
@@ -52,6 +53,7 @@
create_qwen35_adaptive_exact_budget_cache,
create_qwen35_exact_budget_cache,
create_qwen35_packed_cache,
+ create_qwen35_rank_fused_exact_budget_cache,
create_qwen35_v02_mixed_cache,
)
from recurquant.row_policy import ExactBudgetRowPlan, select_rows_exact_budget
@@ -64,6 +66,12 @@
LOSS_SELECTOR_PRIMARY = "signed_taylor_next_int4"
ADAPTIVE_H1 = "adaptive_mse_hrr_h1_quota"
ADAPTIVE_TARGET_FISHER = "adaptive_mse_target_directional_fisher_quota"
+RANK_FUSION_METHODS = (
+ ("rank_fusion_l025_target_fisher_adaptive_mse", 0.25),
+ ("rank_fusion_l050_target_fisher_adaptive_mse", 0.50),
+ ("rank_fusion_l075_target_fisher_adaptive_mse", 0.75),
+)
+RANK_FUSION_PRIMARY = "rank_fusion_l050_target_fisher_adaptive_mse"
LOSS_SCORE_NAMES = (
LOSS_SELECTOR_PRIMARY,
"target_directional_fisher_difference_int4",
@@ -110,6 +118,12 @@
"src/recurquant/row_policy.py",
)
+RankFusionCacheSpec = tuple[
+ ExactBudgetRowPlan,
+ Mapping[int, torch.Tensor],
+ float,
+]
+
@dataclass(slots=True)
class _TokenAccumulator:
@@ -150,6 +164,15 @@ def parse_args() -> argparse.Namespace:
parser.add_argument("--selector-artifact", type=Path, required=True)
parser.add_argument("--loss-selector-artifact", type=Path)
parser.add_argument("--storage-boundary-artifact", type=Path)
+ parser.add_argument(
+ "--rank-fusion",
+ action="store_true",
+ help=(
+ "Run the frozen Experiment 006 same-calibration rank-fusion primary "
+ "and its predeclared 0.25/0.75 ablations. Positive offsets remain "
+ "disabled until the separate Experiment 006 prerequisite is implemented."
+ ),
+ )
parser.add_argument("--output", type=Path, required=True)
parser.add_argument("--limit", type=int)
parser.add_argument(
@@ -472,11 +495,17 @@ def validate_frozen_holdout_request(
selectors: Sequence[Mapping[str, Any]],
loss_selector_present: bool,
storage_boundary_present: bool,
+ rank_fusion_enabled: bool = False,
) -> None:
"""Refuse any positive-offset run outside Experiment 005's frozen request."""
if offset == 0:
return
+ if rank_fusion_enabled:
+ raise ValueError(
+ "Experiment 006 rank-fusion holdout remains closed until its separate "
+ "candidate-aligned numeric prerequisite and frozen gate are implemented"
+ )
if offset != FROZEN_HOLDOUT_OFFSET or limit != FROZEN_HOLDOUT_LIMIT:
raise ValueError(
"Experiment 005 heldout-calibration requires the exact ranked window "
@@ -859,6 +888,12 @@ def evaluate_frozen_holdout_gate(
def primary_claim_text(primary_name: str) -> str:
"""Describe the actual primary without implying a missing loss selector."""
+ if primary_name == RANK_FUSION_PRIMARY:
+ return (
+ "The actual primary uses target-directional-Fisher per-layer quotas "
+ "and equal-weight ordinal rank fusion between calibrated static row "
+ "sensitivity and causal per-write INT4-to-INT8 MSE reduction."
+ )
if primary_name == ADAPTIVE_TARGET_FISHER:
return (
"The actual primary uses target-directional-Fisher per-layer quotas "
@@ -953,17 +988,20 @@ def make_caches(
*,
plans: dict[str, ExactBudgetRowPlan],
adaptive_plans: dict[str, ExactBudgetRowPlan],
+ rank_fusion_specs: Mapping[str, RankFusionCacheSpec] | None = None,
) -> dict[
str,
PackedRecurrentStateCache
| MixedPackedRecurrentStateCache
- | AdaptiveMixedPackedRecurrentStateCache,
+ | AdaptiveMixedPackedRecurrentStateCache
+ | RankFusedMixedPackedRecurrentStateCache,
]:
caches: dict[
str,
PackedRecurrentStateCache
| MixedPackedRecurrentStateCache
- | AdaptiveMixedPackedRecurrentStateCache,
+ | AdaptiveMixedPackedRecurrentStateCache
+ | RankFusedMixedPackedRecurrentStateCache,
] = {
"uniform_int4": create_qwen35_packed_cache(model, bits=4),
"v02_layer0_static": create_qwen35_v02_mixed_cache(model),
@@ -974,6 +1012,20 @@ def make_caches(
if name in caches:
raise ValueError(f"adaptive cache name duplicates another method: {name}")
caches[name] = create_qwen35_adaptive_exact_budget_cache(model, plan=plan)
+ score_device = next(model.parameters()).device
+ for name, (plan, static_scores, static_rank_weight) in (rank_fusion_specs or {}).items():
+ if name in caches:
+ raise ValueError(f"rank-fusion cache name duplicates another method: {name}")
+ scores_on_device = {
+ layer_index: scores.to(score_device)
+ for layer_index, scores in static_scores.items()
+ }
+ caches[name] = create_qwen35_rank_fused_exact_budget_cache(
+ model,
+ plan=plan,
+ static_scores_by_layer=scores_on_device,
+ static_rank_weight=static_rank_weight,
+ )
return caches
@@ -994,6 +1046,7 @@ def evaluate_task(
code_ids: torch.Tensor,
plans: dict[str, ExactBudgetRowPlan],
adaptive_plans: dict[str, ExactBudgetRowPlan],
+ rank_fusion_specs: Mapping[str, RankFusionCacheSpec] | None = None,
) -> tuple[
dict[str, dict[str, float | int]],
dict[str, dict[str, float | int]],
@@ -1001,7 +1054,12 @@ def evaluate_task(
int,
]:
reference_cache = DynamicCache(config=model.config)
- caches = make_caches(model, plans=plans, adaptive_plans=adaptive_plans)
+ caches = make_caches(
+ model,
+ plans=plans,
+ adaptive_plans=adaptive_plans,
+ rank_fusion_specs=rank_fusion_specs,
+ )
aligned_accumulators = {name: _TokenAccumulator.empty() for name in caches}
full_code_accumulators = {name: _TokenAccumulator.empty() for name in caches}
@@ -1298,6 +1356,8 @@ def main() -> int:
expected_kind=LOSS_ARTIFACT_KIND,
)
validate_compatible_selector(selector, loss_selector)
+ if args.rank_fusion and loss_selector is None:
+ raise ValueError("--rank-fusion requires --loss-selector-artifact")
storage_boundary: dict[str, Any] | None = None
storage_boundary_sha256: str | None = None
if args.storage_boundary_artifact is not None:
@@ -1319,6 +1379,7 @@ def main() -> int:
selectors=selectors,
loss_selector_present=loss_selector is not None,
storage_boundary_present=storage_boundary is not None,
+ rank_fusion_enabled=args.rank_fusion,
)
if heldout_calibration:
validate_heldout_repository_start(repository_start, selectors)
@@ -1384,6 +1445,7 @@ def main() -> int:
"random_rows_s1101": random_plan_like(hrr_primary_plan),
}
adaptive_plans = {ADAPTIVE_H1: h1_plan}
+ rank_fusion_specs: dict[str, RankFusionCacheSpec] = {}
primary_name = hrr_primary_name
primary_plan = hrr_primary_plan
if loss_selector is not None:
@@ -1391,6 +1453,16 @@ def main() -> int:
adaptive_plans[ADAPTIVE_TARGET_FISHER] = plans["target_directional_fisher_difference_int4"]
primary_name = ADAPTIVE_TARGET_FISHER
primary_plan = adaptive_plans[primary_name]
+ if args.rank_fusion:
+ target_fisher_scores = scores_from_artifact(
+ loss_selector,
+ "target_directional_fisher_difference_int4",
+ )
+ rank_fusion_specs = {
+ name: (primary_plan, target_fisher_scores, weight)
+ for name, weight in RANK_FUSION_METHODS
+ }
+ primary_name = RANK_FUSION_PRIMARY
torch.manual_seed(SEED)
device = select_device(args.device)
@@ -1460,6 +1532,7 @@ def main() -> int:
code_ids=code_ids,
plans=plans,
adaptive_plans=adaptive_plans,
+ rank_fusion_specs=rank_fusion_specs,
)
if storage_anchor is None:
storage_anchor = storage
@@ -1488,6 +1561,10 @@ def main() -> int:
summary = storage_anchor[name]
if summary["resident_bytes"] != adaptive_plans[name].resident_bytes:
raise RuntimeError(f"{name} did not realize its exact resident-byte plan")
+ for name, (plan, _, _) in rank_fusion_specs.items():
+ summary = storage_anchor[name]
+ if summary["resident_bytes"] != plan.resident_bytes:
+ raise RuntimeError(f"{name} did not realize its exact resident-byte plan")
if storage_anchor["v02_layer0_static"]["resident_bytes"] != primary_plan.resident_bytes:
raise RuntimeError("v0.2 static and the primary row plan are not equal-byte")
@@ -1535,10 +1612,19 @@ def main() -> int:
)
else:
heldout_gate = {
- "schema": "recurquant.experiment005-heldout-gate.v1",
+ "schema": (
+ "recurquant.experiment006-heldout-gate.v1"
+ if args.rank_fusion
+ else "recurquant.experiment005-heldout-gate.v1"
+ ),
"applicable": False,
"passed": None,
- "reason": "same-calibration diagnostics cannot satisfy the frozen holdout gate",
+ "reason": (
+ "same-calibration diagnostics cannot satisfy the frozen Experiment 006 "
+ "holdout gate; rank-fusion positive offsets remain disabled"
+ if args.rank_fusion
+ else "same-calibration diagnostics cannot satisfy the frozen holdout gate"
+ ),
}
selector_artifacts = {
"hrr": {
@@ -1565,6 +1651,8 @@ def main() -> int:
if heldout_calibration
else "recurquant_adaptive_row_packing_same_calibration_quality_diagnostic"
)
+ if args.rank_fusion:
+ quality_artifact_kind = "recurquant_rank_fusion_same_calibration_quality_diagnostic"
prerequisite_artifacts: dict[str, dict[str, Any]] = {}
if storage_boundary is not None:
assert args.storage_boundary_artifact is not None
@@ -1675,6 +1763,25 @@ def main() -> int:
if loss_selector is not None
else {}
),
+ **{
+ name: {
+ "selection": (
+ "per-layer ordinal rank fusion of calibrated target-directional-"
+ "Fisher scores and per-write aligned INT4-to-INT8 row MSE reduction"
+ ),
+ "static_rank_weight": weight,
+ "dynamic_rank_weight": 1.0 - weight,
+ "rank_normalization": (
+ "zero-best ordinal positions, stable flattened row ties"
+ ),
+ "layer_quota_source": (
+ "target_directional_fisher_difference_int4 selector plan"
+ ),
+ "batch_size": 1,
+ "resident_bytes": plan.resident_bytes,
+ }
+ for name, (plan, _, weight) in rank_fusion_specs.items()
+ },
},
"storage": {
"fp32_reference_recurrent_state_bytes": reference_state_bytes,
diff --git a/src/recurquant/__init__.py b/src/recurquant/__init__.py
index 21ca0f5..a702bfb 100644
--- a/src/recurquant/__init__.py
+++ b/src/recurquant/__init__.py
@@ -47,6 +47,7 @@
AdaptiveMixedPackedRecurrentStateCache,
MixedPackedRecurrentStateCache,
PackedRecurrentStateCache,
+ RankFusedMixedPackedRecurrentStateCache,
)
from .quantization import (
PackedQuantizedTensor,
@@ -59,6 +60,7 @@
create_qwen35_adaptive_exact_budget_cache,
create_qwen35_exact_budget_cache,
create_qwen35_packed_cache,
+ create_qwen35_rank_fused_exact_budget_cache,
create_qwen35_v02_mixed_cache,
)
from .row_policy import ExactBudgetRowPlan, RowLocation, select_rows_exact_budget
@@ -78,6 +80,7 @@
"PackedMixedQuantizedTensor",
"PackedQuantizedTensor",
"PackedRecurrentStateCache",
+ "RankFusedMixedPackedRecurrentStateCache",
"PhysicalMetricRun",
"PhysicalRowPromotionOracleResult",
"QuantizationResult",
@@ -95,6 +98,7 @@
"create_qwen35_adaptive_exact_budget_cache",
"create_qwen35_exact_budget_cache",
"create_qwen35_packed_cache",
+ "create_qwen35_rank_fused_exact_budget_cache",
"create_qwen35_v02_mixed_cache",
"finite_horizon_row_read_risk",
"finite_horizon_row_read_risk_from_energies",
diff --git a/src/recurquant/packed_cache.py b/src/recurquant/packed_cache.py
index 0a809d2..4f1b15c 100644
--- a/src/recurquant/packed_cache.py
+++ b/src/recurquant/packed_cache.py
@@ -6,6 +6,7 @@
import math
from collections.abc import Callable, Iterator, Mapping, MutableMapping
from dataclasses import asdict, dataclass
+from numbers import Real
import torch
from transformers import DynamicCache
@@ -882,6 +883,121 @@ def _precision_mask(
return mask.reshape(self.expected_heads, self.expected_rows)
+def _validate_static_rank_weight(value: object) -> float:
+ if isinstance(value, bool) or not isinstance(value, Real):
+ raise TypeError("static_rank_weight must be a real number")
+ weight = float(value)
+ if not math.isfinite(weight) or not 0.0 <= weight <= 1.0:
+ raise ValueError("static_rank_weight must be finite and in [0, 1]")
+ return weight
+
+
+def _descending_rank_positions(values: torch.Tensor) -> torch.Tensor:
+ """Return deterministic zero-best ordinal rank positions."""
+
+ flat = values.reshape(-1)
+ order = torch.argsort(flat, descending=True, stable=True)
+ ranks = torch.empty(flat.numel(), dtype=torch.int64, device=flat.device)
+ ranks[order] = torch.arange(flat.numel(), dtype=torch.int64, device=flat.device)
+ return ranks
+
+
+class RankFusedMixedPackedLinearAttentionLayer(AdaptiveMixedPackedLinearAttentionLayer):
+ """Fuse calibrated static ranks with causal per-write MSE-benefit ranks."""
+
+ def __init__(self, **kwargs: object) -> None:
+ super().__init__(**kwargs)
+ self.static_rank_weight: float | None = None
+ self.static_rank_positions: torch.Tensor | None = None
+
+ def configure_rank_fusion(
+ self,
+ static_scores: torch.Tensor,
+ *,
+ static_rank_weight: float,
+ ) -> None:
+ expected_shape = (self.expected_heads, self.expected_rows)
+ if tuple(static_scores.shape) != expected_shape:
+ raise ValueError(
+ f"layer {self.layer_index} static scores must have shape {expected_shape}; "
+ f"got {tuple(static_scores.shape)}"
+ )
+ if not static_scores.is_floating_point():
+ raise TypeError(f"layer {self.layer_index} static scores must be floating point")
+ if static_scores.device.type == "meta":
+ raise ValueError(f"layer {self.layer_index} static scores must be materialized")
+ if not torch.isfinite(static_scores).all().item():
+ raise ValueError(f"layer {self.layer_index} static scores must be finite")
+ self.static_rank_weight = _validate_static_rank_weight(static_rank_weight)
+ with torch.no_grad():
+ self.static_rank_positions = _descending_rank_positions(
+ static_scores.detach().clone()
+ )
+
+ def _precision_mask(
+ self,
+ recurrent_states: torch.Tensor,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ ) -> torch.Tensor:
+ # Reuse the complete geometry checks without applying the static mask.
+ MixedPackedLinearAttentionLayer._precision_mask(
+ self,
+ recurrent_states,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ if recurrent_states.shape[0] != 1:
+ raise ValueError(
+ "rank-fused mixed cache selection currently requires batch size 1; "
+ f"got {recurrent_states.shape[0]}"
+ )
+ if self.static_rank_weight is None or self.static_rank_positions is None:
+ raise RuntimeError(f"layer {self.layer_index} rank fusion was not configured")
+ if self.static_rank_positions.device != recurrent_states.device:
+ raise ValueError(
+ f"layer {self.layer_index} static scores and recurrent state must use "
+ "the same device"
+ )
+
+ total_groups = self.expected_heads * self.expected_rows
+ quota = len(self.high_precision_group_indices)
+ mask = torch.zeros(
+ total_groups,
+ dtype=torch.bool,
+ device=recurrent_states.device,
+ )
+ if quota == 0:
+ return mask.reshape(self.expected_heads, self.expected_rows)
+ if quota == total_groups:
+ return torch.ones_like(mask).reshape(self.expected_heads, self.expected_rows)
+
+ with torch.no_grad():
+ source = recurrent_states.detach().to(torch.float32)
+ low = quantize_dequantize(recurrent_states, low_spec).tensor.to(torch.float32)
+ high = quantize_dequantize(recurrent_states, high_spec).tensor.to(torch.float32)
+ dynamic_benefit = (
+ (low - source).square().mean(dim=-1)
+ - (high - source).square().mean(dim=-1)
+ ).reshape(-1)
+ dynamic_rank = _descending_rank_positions(dynamic_benefit)
+ quarter_units = self.static_rank_weight * 4.0
+ if quarter_units.is_integer():
+ static_units = int(quarter_units)
+ fused_cost = (
+ static_units * self.static_rank_positions
+ + (4 - static_units) * dynamic_rank
+ )
+ else:
+ fused_cost = self.static_rank_weight * self.static_rank_positions + (
+ 1.0 - self.static_rank_weight
+ ) * dynamic_rank
+ ranked = torch.argsort(fused_cost, descending=False, stable=True)
+ mask[ranked[:quota]] = True
+ return mask.reshape(self.expected_heads, self.expected_rows)
+
+
class MixedPackedRecurrentStateCache(DynamicCache):
"""Drop-in cache driven by an exact-byte row-level INT4/INT8 plan."""
@@ -1058,3 +1174,84 @@ class AdaptiveMixedPackedRecurrentStateCache(MixedPackedRecurrentStateCache):
_mixed_layer_class = AdaptiveMixedPackedLinearAttentionLayer
selection_method = "instantaneous_aligned_mse_reduction"
+
+
+class RankFusedMixedPackedRecurrentStateCache(MixedPackedRecurrentStateCache):
+ """Exact-byte cache fusing static selector and instantaneous MSE ranks."""
+
+ _mixed_layer_class = RankFusedMixedPackedLinearAttentionLayer
+ selection_method = "quota_preserving_static_dynamic_rank_fusion"
+
+ def __init__(
+ self,
+ config: object,
+ *,
+ plan: ExactBudgetRowPlan,
+ static_scores_by_layer: Mapping[int, torch.Tensor],
+ static_rank_weight: float,
+ rounding: RoundingMode = "nearest",
+ seed: int = 2339,
+ record_evidence: bool = False,
+ ) -> None:
+ weight = _validate_static_rank_weight(static_rank_weight)
+ if not isinstance(static_scores_by_layer, Mapping) or not static_scores_by_layer:
+ raise ValueError("static_scores_by_layer must be a non-empty mapping")
+ if any(
+ isinstance(index, bool) or not isinstance(index, int) or index < 0
+ for index in static_scores_by_layer
+ ):
+ raise ValueError("static score layer indices must be non-negative integers")
+
+ expected_shapes = {
+ layer_index: (head_count, row_count)
+ for layer_index, head_count, row_count in plan.score_shapes
+ }
+ actual_layers = set(static_scores_by_layer)
+ expected_layers = set(expected_shapes)
+ if actual_layers != expected_layers:
+ missing = sorted(expected_layers - actual_layers)
+ extra = sorted(actual_layers - expected_layers)
+ raise ValueError(
+ "static score layers must exactly match the row plan; "
+ f"missing={missing}, extra={extra}"
+ )
+
+ validated_scores: dict[int, torch.Tensor] = {}
+ score_devices: set[torch.device] = set()
+ for layer_index in sorted(expected_layers):
+ scores = static_scores_by_layer[layer_index]
+ if not isinstance(scores, torch.Tensor):
+ raise TypeError(f"layer {layer_index} static scores must be a tensor")
+ expected_shape = expected_shapes[layer_index]
+ if tuple(scores.shape) != expected_shape:
+ raise ValueError(
+ f"layer {layer_index} static scores must have shape {expected_shape}; "
+ f"got {tuple(scores.shape)}"
+ )
+ if not scores.is_floating_point():
+ raise TypeError(f"layer {layer_index} static scores must be floating point")
+ if scores.device.type == "meta":
+ raise ValueError(f"layer {layer_index} static scores must be materialized")
+ if not torch.isfinite(scores).all().item():
+ raise ValueError(f"layer {layer_index} static scores must be finite")
+ validated_scores[layer_index] = scores.detach().clone()
+ score_devices.add(scores.device)
+ if len(score_devices) != 1:
+ raise ValueError("all static score tensors must use the same device")
+
+ self.static_rank_weight = weight
+ self.static_scores_by_layer = validated_scores
+ super().__init__(
+ config,
+ plan=plan,
+ rounding=rounding,
+ seed=seed,
+ record_evidence=record_evidence,
+ )
+ for layer_index, layer in self.mixed_packed_layers():
+ if not isinstance(layer, RankFusedMixedPackedLinearAttentionLayer):
+ raise RuntimeError(f"layer {layer_index} is not rank-fusion capable")
+ layer.configure_rank_fusion(
+ validated_scores[layer_index],
+ static_rank_weight=weight,
+ )
diff --git a/src/recurquant/qwen35.py b/src/recurquant/qwen35.py
index 4a4e086..c760734 100644
--- a/src/recurquant/qwen35.py
+++ b/src/recurquant/qwen35.py
@@ -14,6 +14,7 @@
AdaptiveMixedPackedRecurrentStateCache,
MixedPackedRecurrentStateCache,
PackedRecurrentStateCache,
+ RankFusedMixedPackedRecurrentStateCache,
)
from .quantization import QuantizationSpec, RoundingMode
from .row_policy import ExactBudgetRowPlan
@@ -315,6 +316,35 @@ def create_qwen35_adaptive_exact_budget_cache(
)
+def create_qwen35_rank_fused_exact_budget_cache(
+ model_or_config: Qwen35Source,
+ *,
+ plan: ExactBudgetRowPlan,
+ static_scores_by_layer: Mapping[int, torch.Tensor],
+ static_rank_weight: float,
+ rounding: RoundingMode = "nearest",
+ seed: int = 2339,
+ record_evidence: bool = False,
+) -> RankFusedMixedPackedRecurrentStateCache:
+ """Create an exact-byte static/dynamic rank-fusion cache for Qwen3.5.
+
+ The row plan fixes each layer's promotion quota. Within that quota, one
+ global weight fuses calibrated static-score ranks with causal per-write ranks
+ of aligned INT4-to-INT8 MSE reduction. Static score tensors must cover the
+ plan's layers exactly and reside on the same device as recurrent states.
+ """
+
+ return RankFusedMixedPackedRecurrentStateCache(
+ _validated_exact_budget_config(model_or_config, plan=plan),
+ plan=plan,
+ static_scores_by_layer=static_scores_by_layer,
+ static_rank_weight=static_rank_weight,
+ rounding=rounding,
+ seed=seed,
+ record_evidence=record_evidence,
+ )
+
+
def create_qwen35_v02_mixed_cache(
model_or_config: Qwen35Source,
*,
diff --git a/tests/test_pilot_evaluate_hrr.py b/tests/test_pilot_evaluate_hrr.py
index 0cc8b6f..1606aa4 100644
--- a/tests/test_pilot_evaluate_hrr.py
+++ b/tests/test_pilot_evaluate_hrr.py
@@ -475,6 +475,24 @@ def test_frozen_holdout_request_requires_exact_window_and_two_eight_task_selecto
)
+def test_experiment006_rank_fusion_holdout_remains_fail_closed() -> None:
+ selectors = [
+ _frozen_selector(evaluator.HRR_ARTIFACT_KIND),
+ _frozen_selector(evaluator.LOSS_ARTIFACT_KIND),
+ ]
+
+ with pytest.raises(ValueError, match="rank-fusion holdout remains closed"):
+ evaluator.validate_frozen_holdout_request(
+ offset=8,
+ limit=8,
+ bootstrap_samples=10_000,
+ selectors=selectors,
+ loss_selector_present=True,
+ storage_boundary_present=True,
+ rank_fusion_enabled=True,
+ )
+
+
@pytest.mark.parametrize(
("changes", "message"),
[
@@ -766,10 +784,17 @@ def test_frozen_holdout_gate_reports_each_threshold_failure(mutation, failed_che
def test_claim_and_exit_code_follow_actual_primary_and_gate() -> None:
static_claim = evaluator.primary_claim_text("hrr_h32")
adaptive_claim = evaluator.primary_claim_text(evaluator.ADAPTIVE_TARGET_FISHER)
+ fusion_claim = evaluator.primary_claim_text(evaluator.RANK_FUSION_PRIMARY)
assert "static HRR" in static_claim
assert "no loss-selector" in static_claim
assert "target-directional-Fisher" in adaptive_claim
+ assert "equal-weight ordinal rank fusion" in fusion_claim
+ assert evaluator.RANK_FUSION_METHODS == (
+ ("rank_fusion_l025_target_fisher_adaptive_mse", 0.25),
+ ("rank_fusion_l050_target_fisher_adaptive_mse", 0.50),
+ ("rank_fusion_l075_target_fisher_adaptive_mse", 0.75),
+ )
assert evaluator.diagnostic_exit_code(heldout_calibration=True, gate_passed=False) == 2
assert evaluator.diagnostic_exit_code(heldout_calibration=True, gate_passed=True) == 0
assert evaluator.diagnostic_exit_code(heldout_calibration=False, gate_passed=False) == 0
diff --git a/tests/test_rank_fused_mixed_packed_cache.py b/tests/test_rank_fused_mixed_packed_cache.py
new file mode 100644
index 0000000..89bf886
--- /dev/null
+++ b/tests/test_rank_fused_mixed_packed_cache.py
@@ -0,0 +1,315 @@
+from __future__ import annotations
+
+import hashlib
+import math
+
+import pytest
+import torch
+from transformers import Qwen3_5ForCausalLM
+
+from recurquant import (
+ RankFusedMixedPackedRecurrentStateCache,
+ create_qwen35_rank_fused_exact_budget_cache,
+)
+from recurquant.packed_cache import (
+ AdaptiveMixedPackedLinearAttentionLayer,
+ RankFusedMixedPackedLinearAttentionLayer,
+)
+from recurquant.qwen35 import create_qwen35_adaptive_exact_budget_cache
+from recurquant.row_policy import ExactBudgetRowPlan, select_rows_exact_budget
+from tests.test_transformers_cache import tiny_config
+
+
+def _target_for_promotions(
+ scores: dict[int, torch.Tensor],
+ *,
+ promotions: int,
+ group_size: int = 8,
+ scale_bits: int = 16,
+) -> int:
+ total_groups = sum(score.numel() for score in scores.values())
+ low_group_bytes = math.ceil(4 * group_size / 8) + scale_bits // 8
+ increment = math.ceil(8 * group_size / 8) - math.ceil(4 * group_size / 8)
+ return total_groups * low_group_bytes + math.ceil(total_groups / 8) + promotions * increment
+
+
+def _plan(
+ *,
+ promotions: int,
+ scores: dict[int, torch.Tensor] | None = None,
+) -> ExactBudgetRowPlan:
+ if scores is None:
+ scores = {0: torch.arange(16, dtype=torch.float32).reshape(2, 8)}
+ return select_rows_exact_budget(
+ scores,
+ target_resident_bytes=_target_for_promotions(scores, promotions=promotions),
+ group_size=8,
+ )
+
+
+def _rank_fused_mask(
+ cache: RankFusedMixedPackedRecurrentStateCache,
+ layer_index: int = 0,
+) -> torch.Tensor:
+ layer = cache.layers[layer_index]
+ assert isinstance(layer, RankFusedMixedPackedLinearAttentionLayer)
+ packed = layer.packed_states[0]
+ assert packed is not None
+ return packed.high_precision_mask().reshape(-1)
+
+
+def _adaptive_mask(cache: object, layer_index: int = 0) -> torch.Tensor:
+ layer = cache.layers[layer_index] # type: ignore[attr-defined]
+ assert isinstance(layer, AdaptiveMixedPackedLinearAttentionLayer)
+ packed = layer.packed_states[0]
+ assert packed is not None
+ return packed.high_precision_mask().reshape(-1)
+
+
+def test_zero_weight_exactly_matches_existing_adaptive_selector_and_storage() -> None:
+ static_scores = {0: torch.arange(16, dtype=torch.float32).reshape(2, 8)}
+ plan = _plan(promotions=5, scores=static_scores)
+ adaptive = create_qwen35_adaptive_exact_budget_cache(tiny_config(), plan=plan)
+ rank_fused = create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ static_scores_by_layer=static_scores,
+ static_rank_weight=0.0,
+ )
+ state = torch.randn((1, 2, 8, 8), generator=torch.Generator().manual_seed(307))
+
+ adaptive_result = adaptive.update_recurrent_state(state, layer_idx=0)
+ rank_fused_result = rank_fused.update_recurrent_state(state, layer_idx=0)
+
+ assert torch.equal(_rank_fused_mask(rank_fused), _adaptive_mask(adaptive))
+ assert torch.equal(rank_fused_result, adaptive_result)
+ adaptive_packed = adaptive.layers[0].packed_states[0] # type: ignore[attr-defined]
+ rank_fused_packed = rank_fused.layers[0].packed_states[0] # type: ignore[attr-defined]
+ assert adaptive_packed is not None
+ assert rank_fused_packed is not None
+ assert torch.equal(rank_fused_packed.low_payload, adaptive_packed.low_payload)
+ assert torch.equal(rank_fused_packed.high_payload, adaptive_packed.high_payload)
+ assert torch.equal(rank_fused_packed.scales, adaptive_packed.scales)
+ assert torch.equal(rank_fused_packed.precision_mask, adaptive_packed.precision_mask)
+ assert rank_fused.storage_summary() == adaptive.storage_summary()
+
+
+def test_one_weight_exactly_selects_static_plan_rows() -> None:
+ static_scores = {
+ 0: torch.tensor(
+ [1.0, 8.0, 3.0, 14.0, 0.0, 5.0, 12.0, 4.0, 11.0, 2.0, 15.0, 7.0,
+ 9.0, 13.0, 6.0, 10.0]
+ ).reshape(2, 8)
+ }
+ plan = _plan(promotions=5, scores=static_scores)
+ cache = create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ static_scores_by_layer=static_scores,
+ static_rank_weight=1.0,
+ )
+ state = torch.randn((1, 2, 8, 8), generator=torch.Generator().manual_seed(311))
+
+ cache.update_recurrent_state(state, layer_idx=0)
+
+ expected = torch.zeros(16, dtype=torch.bool)
+ expected[list(plan.groups_for_layer(0))] = True
+ assert torch.equal(_rank_fused_mask(cache), expected)
+
+
+def test_equal_static_and_dynamic_scores_use_stable_flattened_order() -> None:
+ static_scores = {0: torch.zeros((2, 8), dtype=torch.float32)}
+ plan = _plan(promotions=3, scores=static_scores)
+ first = create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ static_scores_by_layer=static_scores,
+ static_rank_weight=0.5,
+ )
+ second = create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ static_scores_by_layer=static_scores,
+ static_rank_weight=0.5,
+ )
+ state = torch.zeros((1, 2, 8, 8))
+
+ first.update_recurrent_state(state, layer_idx=0)
+ second.update_recurrent_state(state, layer_idx=0)
+
+ expected = torch.zeros(16, dtype=torch.bool)
+ expected[:3] = True
+ assert torch.equal(_rank_fused_mask(first), expected)
+ assert torch.equal(_rank_fused_mask(second), expected)
+
+
+@pytest.mark.parametrize("promotions", [0, 16])
+def test_zero_and_full_quotas_keep_exact_counts_and_bytes(promotions: int) -> None:
+ static_scores = {0: torch.arange(16, dtype=torch.float32).reshape(2, 8)}
+ plan = _plan(promotions=promotions, scores=static_scores)
+ cache = create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ static_scores_by_layer=static_scores,
+ static_rank_weight=0.5,
+ )
+
+ cache.update_recurrent_state(
+ torch.randn((1, 2, 8, 8), generator=torch.Generator().manual_seed(309)),
+ layer_idx=0,
+ )
+
+ assert _rank_fused_mask(cache).sum().item() == promotions
+ assert cache.storage_summary()["high_precision_groups"] == promotions
+ assert cache.storage_summary()["resident_bytes"] == plan.resident_bytes
+
+
+@pytest.mark.parametrize("weight", [-0.01, 1.01, float("nan"), float("inf")])
+def test_invalid_static_rank_weight_values_are_rejected(weight: float) -> None:
+ scores = {0: torch.zeros((2, 8))}
+
+ with pytest.raises(ValueError, match=r"finite and in \[0, 1\]"):
+ create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(),
+ plan=_plan(promotions=3, scores=scores),
+ static_scores_by_layer=scores,
+ static_rank_weight=weight,
+ )
+
+
+@pytest.mark.parametrize("weight", [True, "0.5"])
+def test_non_real_static_rank_weights_are_rejected(weight: object) -> None:
+ scores = {0: torch.zeros((2, 8))}
+
+ with pytest.raises(TypeError, match="must be a real number"):
+ create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(),
+ plan=_plan(promotions=3, scores=scores),
+ static_scores_by_layer=scores,
+ static_rank_weight=weight, # type: ignore[arg-type]
+ )
+
+
+@pytest.mark.parametrize(
+ ("static_scores", "error_type", "message"),
+ [
+ ({1: torch.zeros((2, 8))}, ValueError, "exactly match the row plan"),
+ ({0: torch.zeros(16)}, ValueError, "must have shape"),
+ ({0: torch.zeros((2, 8), dtype=torch.int64)}, TypeError, "floating point"),
+ ({0: torch.full((2, 8), float("nan"))}, ValueError, "must be finite"),
+ ({0: torch.zeros((2, 8), device="meta")}, ValueError, "must be materialized"),
+ ({0: object()}, TypeError, "must be a tensor"),
+ ],
+)
+def test_invalid_static_score_maps_are_rejected(
+ static_scores: dict[int, object],
+ error_type: type[Exception],
+ message: str,
+) -> None:
+ plan_scores = {0: torch.zeros((2, 8))}
+
+ with pytest.raises(error_type, match=message):
+ create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(),
+ plan=_plan(promotions=3, scores=plan_scores),
+ static_scores_by_layer=static_scores, # type: ignore[arg-type]
+ static_rank_weight=0.5,
+ )
+
+
+def test_static_scores_must_share_the_recurrent_state_device() -> None:
+ static_scores = {0: torch.zeros((2, 8))}
+ cache = create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(),
+ plan=_plan(promotions=3, scores=static_scores),
+ static_scores_by_layer=static_scores,
+ static_rank_weight=0.5,
+ )
+
+ with pytest.raises(ValueError, match="same device"):
+ cache.update_recurrent_state(torch.zeros((1, 2, 8, 8), device="meta"), layer_idx=0)
+
+
+def test_each_layer_preserves_quota_exact_bytes_and_distinct_evidence_method() -> None:
+ static_scores = {
+ 0: torch.tensor([100.0, 99.0, 98.0] + [-100.0] * 13).reshape(2, 8),
+ 1: torch.tensor([97.0, 96.0, 95.0, 94.0] + [-200.0] * 12).reshape(2, 8),
+ }
+ plan = _plan(promotions=7, scores=static_scores)
+ cache = create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(["linear_attention", "linear_attention"]),
+ plan=plan,
+ static_scores_by_layer=static_scores,
+ static_rank_weight=0.25,
+ record_evidence=True,
+ )
+ generator = torch.Generator().manual_seed(313)
+
+ cache.update_recurrent_state(torch.randn((1, 2, 8, 8), generator=generator), layer_idx=0)
+ cache.update_recurrent_state(torch.randn((1, 2, 8, 8), generator=generator), layer_idx=1)
+
+ assert [_rank_fused_mask(cache, index).sum().item() for index in (0, 1)] == [3, 4]
+ summary = cache.storage_summary()
+ assert summary["high_precision_groups"] == plan.promoted_group_count == 7
+ assert summary["resident_bytes"] == plan.resident_bytes
+ assert len(cache.update_evidence) == 2
+ assert all(
+ evidence.selection_method == "quota_preserving_static_dynamic_rank_fusion"
+ for evidence in cache.update_evidence
+ )
+ for evidence, layer_index in zip(cache.update_evidence, (0, 1), strict=True):
+ packed = cache.layers[layer_index].packed_states[0] # type: ignore[attr-defined]
+ assert packed is not None
+ expected_hash = hashlib.sha256(
+ bytes(packed.precision_mask.detach().cpu().tolist())
+ ).hexdigest()
+ assert evidence.high_precision_mask_sha256 == expected_hash
+
+
+def test_batch_one_and_inference_only_contracts_are_preserved() -> None:
+ static_scores = {0: torch.zeros((2, 8))}
+ plan = _plan(promotions=3, scores=static_scores)
+ batch_cache = create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ static_scores_by_layer=static_scores,
+ static_rank_weight=0.5,
+ )
+
+ with pytest.raises(ValueError, match="requires batch size 1; got 2"):
+ batch_cache.update_recurrent_state(torch.zeros((2, 2, 8, 8)), layer_idx=0)
+
+ grad_cache = create_qwen35_rank_fused_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ static_scores_by_layer=static_scores,
+ static_rank_weight=0.5,
+ )
+ state = torch.randn((1, 2, 8, 8), requires_grad=True)
+ with pytest.raises(RuntimeError, match="inference-only"):
+ grad_cache.update_recurrent_state(state, layer_idx=0)
+ with torch.no_grad():
+ restored = grad_cache.update_recurrent_state(state, layer_idx=0)
+ assert not restored.requires_grad
+
+
+def test_rank_fused_factory_runs_tiny_qwen_prefill_and_decode() -> None:
+ torch.manual_seed(317)
+ model = Qwen3_5ForCausalLM._from_config(
+ tiny_config(),
+ attn_implementation="eager",
+ ).eval()
+ static_scores = {0: torch.arange(16, dtype=torch.float32).reshape(2, 8)}
+ cache = create_qwen35_rank_fused_exact_budget_cache(
+ model,
+ plan=_plan(promotions=5, scores=static_scores),
+ static_scores_by_layer=static_scores,
+ static_rank_weight=0.5,
+ )
+
+ with torch.inference_mode():
+ model(torch.randint(0, model.config.vocab_size, (1, 5)), past_key_values=cache)
+ output = model(torch.randint(0, model.config.vocab_size, (1, 1)), past_key_values=cache)
+
+ assert output.logits.shape == (1, 1, model.config.vocab_size)
+ assert _rank_fused_mask(cache).sum().item() == 5
From 91a4240ca988488110fa3cfff1c62f56ac1b9822 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 02:36:47 +0800
Subject: [PATCH 06/22] research: record rank-fusion rejection
---
...fusion-same-calibration-8task-c2ad68b.json | 3600 +++++++++++++++++
research/CLAIM_BOUNDARY.md | 17 +-
research/EXPERIMENT_006_RESULT.md | 113 +
research/STATUS.md | 23 +-
4 files changed, 3738 insertions(+), 15 deletions(-)
create mode 100644 evidence/experiment006-rank-fusion-same-calibration-8task-c2ad68b.json
create mode 100644 research/EXPERIMENT_006_RESULT.md
diff --git a/evidence/experiment006-rank-fusion-same-calibration-8task-c2ad68b.json b/evidence/experiment006-rank-fusion-same-calibration-8task-c2ad68b.json
new file mode 100644
index 0000000..44e1bc7
--- /dev/null
+++ b/evidence/experiment006-rank-fusion-same-calibration-8task-c2ad68b.json
@@ -0,0 +1,3600 @@
+{
+ "artifact_kind": "recurquant_rank_fusion_same_calibration_quality_diagnostic",
+ "canonical_evidence_sha256": "94699c298767d5d1f1e9f2ca61f766fe541871b90bb2f054c8b2aef9bd292827",
+ "evidence": {
+ "adaptive_policy_contracts": {
+ "adaptive_mse_hrr_h1_quota": {
+ "batch_size": 1,
+ "layer_quota_source": "hrr_h1 selector plan",
+ "resident_bytes": 2564096,
+ "selection": "per-update aligned INT4-to-INT8 row MSE reduction"
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "batch_size": 1,
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "resident_bytes": 2564096,
+ "selection": "per-update aligned INT4-to-INT8 row MSE reduction"
+ },
+ "rank_fusion_l025_target_fisher_adaptive_mse": {
+ "batch_size": 1,
+ "dynamic_rank_weight": 0.75,
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "rank_normalization": "zero-best ordinal positions, stable flattened row ties",
+ "resident_bytes": 2564096,
+ "selection": "per-layer ordinal rank fusion of calibrated target-directional-Fisher scores and per-write aligned INT4-to-INT8 row MSE reduction",
+ "static_rank_weight": 0.25
+ },
+ "rank_fusion_l050_target_fisher_adaptive_mse": {
+ "batch_size": 1,
+ "dynamic_rank_weight": 0.5,
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "rank_normalization": "zero-best ordinal positions, stable flattened row ties",
+ "resident_bytes": 2564096,
+ "selection": "per-layer ordinal rank fusion of calibrated target-directional-Fisher scores and per-write aligned INT4-to-INT8 row MSE reduction",
+ "static_rank_weight": 0.5
+ },
+ "rank_fusion_l075_target_fisher_adaptive_mse": {
+ "batch_size": 1,
+ "dynamic_rank_weight": 0.25,
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "rank_normalization": "zero-best ordinal positions, stable flattened row ties",
+ "resident_bytes": 2564096,
+ "selection": "per-layer ordinal rank fusion of calibrated target-directional-Fisher scores and per-write aligned INT4-to-INT8 row MSE reduction",
+ "static_rank_weight": 0.75
+ }
+ },
+ "aggregates": {
+ "adaptive_mse_hrr_h1_quota": {
+ "macro_cvar95_kl": 3.3163906931877136,
+ "macro_delta_nll": 0.7794309854507446,
+ "macro_mean_kl": 0.7939629852771759,
+ "macro_top1_agreement": 0.6900708600878716,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "macro_cvar95_kl": 2.902877390384674,
+ "macro_delta_nll": 0.4933023080229759,
+ "macro_mean_kl": 0.4791950900107622,
+ "macro_top1_agreement": 0.7851893156766891,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "delta_direction_magnitude_int4": {
+ "macro_cvar95_kl": 3.178670048713684,
+ "macro_delta_nll": 0.5449846908450127,
+ "macro_mean_kl": 0.5180577486753464,
+ "macro_top1_agreement": 0.768309511244297,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "hrr_h1": {
+ "macro_cvar95_kl": 3.399073839187622,
+ "macro_delta_nll": 0.6301188990473747,
+ "macro_mean_kl": 0.6441312469542027,
+ "macro_top1_agreement": 0.725699856877327,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "hrr_h32": {
+ "macro_cvar95_kl": 4.149197727441788,
+ "macro_delta_nll": 0.7533748596906662,
+ "macro_mean_kl": 0.7774462774395943,
+ "macro_top1_agreement": 0.706454798579216,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "random_rows_s1101": {
+ "macro_cvar95_kl": 7.6882004737854,
+ "macro_delta_nll": 2.729534089565277,
+ "macro_mean_kl": 2.842472165822983,
+ "macro_top1_agreement": 0.35263895243406296,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "rank_fusion_l025_target_fisher_adaptive_mse": {
+ "macro_cvar95_kl": 2.647984318435192,
+ "macro_delta_nll": 0.45971328765153885,
+ "macro_mean_kl": 0.4394213994964957,
+ "macro_top1_agreement": 0.7817395776510239,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "rank_fusion_l050_target_fisher_adaptive_mse": {
+ "macro_cvar95_kl": 3.0126770064234734,
+ "macro_delta_nll": 0.5148733034729958,
+ "macro_mean_kl": 0.47354681603610516,
+ "macro_top1_agreement": 0.7846591621637344,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "rank_fusion_l075_target_fisher_adaptive_mse": {
+ "macro_cvar95_kl": 2.9275923669338226,
+ "macro_delta_nll": 0.45596349984407425,
+ "macro_mean_kl": 0.46292636543512344,
+ "macro_top1_agreement": 0.7851797938346863,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "row_mse": {
+ "macro_cvar95_kl": 3.694224625825882,
+ "macro_delta_nll": 0.7946401834487915,
+ "macro_mean_kl": 0.8343886435031891,
+ "macro_top1_agreement": 0.6903071627020836,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "signed_taylor_next_int4": {
+ "macro_cvar95_kl": 4.132046535611153,
+ "macro_delta_nll": 0.8252136260271072,
+ "macro_mean_kl": 0.8870953433215618,
+ "macro_top1_agreement": 0.656972274184227,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.0154180824756622,
+ "macro_delta_nll": 0.5480052754282951,
+ "macro_mean_kl": 0.5127170253545046,
+ "macro_top1_agreement": 0.7730078846216202,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "target_directional_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.361491322517395,
+ "macro_delta_nll": 0.5357813686132431,
+ "macro_mean_kl": 0.5205607209354639,
+ "macro_top1_agreement": 0.7908198460936546,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "uniform_int4": {
+ "macro_cvar95_kl": 7.600260317325592,
+ "macro_delta_nll": 2.6861148476600647,
+ "macro_mean_kl": 2.8513285517692566,
+ "macro_top1_agreement": 0.35369928926229477,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "v02_layer0_static": {
+ "macro_cvar95_kl": 4.46854567527771,
+ "macro_delta_nll": 0.8614744991064072,
+ "macro_mean_kl": 0.9269456639885902,
+ "macro_top1_agreement": 0.6566362977027893,
+ "task_count": 8,
+ "token_count": 642
+ }
+ },
+ "aggregates_full_code_secondary": {
+ "adaptive_mse_hrr_h1_quota": {
+ "macro_cvar95_kl": 3.3028323650360107,
+ "macro_delta_nll": 0.7689840346574783,
+ "macro_mean_kl": 0.7827266603708267,
+ "macro_top1_agreement": 0.6952420696616173,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "macro_cvar95_kl": 2.891676664352417,
+ "macro_delta_nll": 0.4872139096260071,
+ "macro_mean_kl": 0.4728761240839958,
+ "macro_top1_agreement": 0.7883592247962952,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "delta_direction_magnitude_int4": {
+ "macro_cvar95_kl": 3.161902904510498,
+ "macro_delta_nll": 0.5367827117443085,
+ "macro_mean_kl": 0.5108812358230352,
+ "macro_top1_agreement": 0.7720952108502388,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "hrr_h1": {
+ "macro_cvar95_kl": 3.388882279396057,
+ "macro_delta_nll": 0.6218181103467941,
+ "macro_mean_kl": 0.635199373587966,
+ "macro_top1_agreement": 0.7301077470183372,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "hrr_h32": {
+ "macro_cvar95_kl": 4.135775178670883,
+ "macro_delta_nll": 0.7428321987390518,
+ "macro_mean_kl": 0.7663818132132292,
+ "macro_top1_agreement": 0.7108453139662743,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "random_rows_s1101": {
+ "macro_cvar95_kl": 7.672792077064514,
+ "macro_delta_nll": 2.683250844478607,
+ "macro_mean_kl": 2.791328117251396,
+ "macro_top1_agreement": 0.36465270072221756,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "rank_fusion_l025_target_fisher_adaptive_mse": {
+ "macro_cvar95_kl": 2.6400135681033134,
+ "macro_delta_nll": 0.45371565222740173,
+ "macro_mean_kl": 0.43340064492076635,
+ "macro_top1_agreement": 0.7850585505366325,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "rank_fusion_l050_target_fisher_adaptive_mse": {
+ "macro_cvar95_kl": 2.9978653118014336,
+ "macro_delta_nll": 0.5071478486061096,
+ "macro_mean_kl": 0.4670790918171406,
+ "macro_top1_agreement": 0.7878864780068398,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "rank_fusion_l075_target_fisher_adaptive_mse": {
+ "macro_cvar95_kl": 2.9184549748897552,
+ "macro_delta_nll": 0.44983577728271484,
+ "macro_mean_kl": 0.45663437992334366,
+ "macro_top1_agreement": 0.7884416431188583,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "row_mse": {
+ "macro_cvar95_kl": 3.675527900457382,
+ "macro_delta_nll": 0.7827504575252533,
+ "macro_mean_kl": 0.8211609497666359,
+ "macro_top1_agreement": 0.6954880431294441,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "signed_taylor_next_int4": {
+ "macro_cvar95_kl": 4.1143283396959305,
+ "macro_delta_nll": 0.8136574774980545,
+ "macro_mean_kl": 0.8736393377184868,
+ "macro_top1_agreement": 0.6626181676983833,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.002905994653702,
+ "macro_delta_nll": 0.54025799036026,
+ "macro_mean_kl": 0.5057258978486061,
+ "macro_top1_agreement": 0.7763535603880882,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "target_directional_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.3521416783332825,
+ "macro_delta_nll": 0.5284674167633057,
+ "macro_mean_kl": 0.5135181862860918,
+ "macro_top1_agreement": 0.7937816083431244,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "uniform_int4": {
+ "macro_cvar95_kl": 7.581509709358215,
+ "macro_delta_nll": 2.6367427557706833,
+ "macro_mean_kl": 2.796179473400116,
+ "macro_top1_agreement": 0.3663086034357548,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "v02_layer0_static": {
+ "macro_cvar95_kl": 4.451788902282715,
+ "macro_delta_nll": 0.8490711152553558,
+ "macro_mean_kl": 0.9121971130371094,
+ "macro_top1_agreement": 0.6625703647732735,
+ "task_count": 8,
+ "token_count": 650
+ }
+ },
+ "artifact_kind": "recurquant_rank_fusion_same_calibration_quality_diagnostic",
+ "claim_boundary": "The selector and quality diagnostic use the same MBPP calibration tasks. This can catch implementation failures but cannot establish held-out generalization, novelty, speed, or a breakthrough. The actual primary uses target-directional-Fisher per-layer quotas and equal-weight ordinal rank fusion between calibrated static row sensitivity and causal per-write INT4-to-INT8 MSE reduction. The primary metric excludes the prompt-to-first-code-token prediction because no stored quantized recurrent state can affect that output.",
+ "command": [
+ "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant\\.venv\\Scripts\\python.exe",
+ "scripts\\pilot_evaluate_hrr.py",
+ "--selector-artifact",
+ "artifacts\\experiment006-hrr-selector-8task-c2ad68b.json",
+ "--loss-selector-artifact",
+ "artifacts\\experiment006-loss-selector-8task-c2ad68b.json",
+ "--rank-fusion",
+ "--output",
+ "artifacts\\experiment006-rank-fusion-same-calibration-8task-c2ad68b.json",
+ "--limit",
+ "8",
+ "--calibration-offset",
+ "0",
+ "--device",
+ "cuda",
+ "--local-files-only",
+ "--bootstrap-samples",
+ "10000"
+ ],
+ "contrasts_baseline_minus_primary_aligned_delta_nll": {
+ "adaptive_mse_hrr_h1_quota": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.09466566145420074,
+ 0.4699110761284828
+ ],
+ "mean_improvement": 0.26455768197774887,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.09485602006316185,
+ 0.04348200932145117
+ ],
+ "mean_improvement": -0.021570995450019836,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "delta_direction_magnitude_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.03507361672818655,
+ 0.09447117149829865
+ ],
+ "mean_improvement": 0.030111387372016907,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "hrr_h1": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.013706466928124428,
+ 0.22241826355457306
+ ],
+ "mean_improvement": 0.11524559557437897,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "hrr_h32": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.10536027327179912,
+ 0.38470350783318275
+ ],
+ "mean_improvement": 0.23850155621767044,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "random_rows_s1101": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 1.883858323097229,
+ 2.5675873629748818
+ ],
+ "mean_improvement": 2.2146607860922813,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "rank_fusion_l025_target_fisher_adaptive_mse": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.1031366042792797,
+ -0.01751011610031128
+ ],
+ "mean_improvement": -0.05516001582145691,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "rank_fusion_l075_target_fisher_adaptive_mse": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.11918644607067108,
+ 0.010958641767501831
+ ],
+ "mean_improvement": -0.05890980362892151,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "row_mse": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.16535255517810585,
+ 0.38727159965783353
+ ],
+ "mean_improvement": 0.27976687997579575,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "signed_taylor_next_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.19199554771184923,
+ 0.42361942678689957
+ ],
+ "mean_improvement": 0.3103403225541115,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.0461135059595108,
+ 0.13095849044620977
+ ],
+ "mean_improvement": 0.03313197195529938,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "target_directional_fisher_difference_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.05002020299434662,
+ 0.12526661902666092
+ ],
+ "mean_improvement": 0.020908065140247345,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "uniform_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 1.7834644988179207,
+ 2.517783500254154
+ ],
+ "mean_improvement": 2.171241544187069,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "v02_layer0_static": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.18083281815052032,
+ 0.5182874798774719
+ ],
+ "mean_improvement": 0.3466011956334114,
+ "paired_examples": 8,
+ "seed": 2339
+ }
+ },
+ "created_at_utc": "2026-07-22T18:30:13.878345+00:00",
+ "dataset": {
+ "authenticated_selector_prefix": null,
+ "content_manifest_sha256": "97d691a6d45ee29668f5b0151c1a0885629539ac9e7967e9baa30cfb5c97ae8b",
+ "disjoint_from_all_selector_artifacts": null,
+ "evaluation_task_ids": [
+ 945,
+ 794,
+ 657,
+ 702,
+ 651,
+ 720,
+ 903,
+ 918
+ ],
+ "manifest": {
+ "config": "full",
+ "dataset_id": "google-research-datasets/mbpp",
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "phase": "calibration",
+ "revision": "4bb6404fdc6cacfda99d4ac4205087b89d32030c",
+ "row_count": 8,
+ "rows": [
+ {
+ "sha256": "df3782543fe3ef4a8443a7737e1f3d7678c974984d7960d19a53c0a94ff8c046",
+ "task_id": 651
+ },
+ {
+ "sha256": "807f4d8170d4920740bd290f081110e02695892d741647dd9c06eddcde0a659d",
+ "task_id": 657
+ },
+ {
+ "sha256": "54dc13e4c5b064b80966b9f315eed560502e37213bd74a5b712fcfc01cb605f3",
+ "task_id": 702
+ },
+ {
+ "sha256": "3efcea05b02d799e12cb49c5d26bbbf2c00972fd466bc30add66ad09a754fc14",
+ "task_id": 720
+ },
+ {
+ "sha256": "18b5d375c0d8a97b8a071d73e606ae091afe52f218959ae7e262ef7e2b155d50",
+ "task_id": 794
+ },
+ {
+ "sha256": "a58f7ba4c00be27de2a85b091d06e2bd8ad57f4f7a3859501b027350a2731307",
+ "task_id": 903
+ },
+ {
+ "sha256": "6d3c59ac8dba827b2c8d4ba8307892558d3832c1e622e12f9c8d3ae7371cc4d4",
+ "task_id": 918
+ },
+ {
+ "sha256": "3208a23529c654eb5f21fcab152e38a4d46e193c11bfba5e3efe6a614339e6f3",
+ "task_id": 945
+ }
+ ],
+ "schema": "recurquant.mbpp-manifest.v1",
+ "selection_namespace": "rq-v0.2",
+ "source_split": "train"
+ },
+ "manifest_sha256": "97d691a6d45ee29668f5b0151c1a0885629539ac9e7967e9baa30cfb5c97ae8b",
+ "phase": "calibration",
+ "selection_mode": "selector_task_prefix",
+ "selection_window": {
+ "calibration_offset": 0,
+ "limit": 8,
+ "resolved_before_tokenization_and_model_load": true,
+ "stop_exclusive": 8
+ },
+ "selector_task_ids": [
+ 651,
+ 657,
+ 702,
+ 720,
+ 794,
+ 903,
+ 918,
+ 945
+ ],
+ "selector_task_prefix": false,
+ "task_count": 8,
+ "tasks": [
+ {
+ "aligned_scored_tokens": 19,
+ "code_tokens": 20,
+ "full_code_scored_tokens": 20,
+ "prompt_tokens": 112,
+ "task_id": 945
+ },
+ {
+ "aligned_scored_tokens": 52,
+ "code_tokens": 53,
+ "full_code_scored_tokens": 53,
+ "prompt_tokens": 101,
+ "task_id": 794
+ },
+ {
+ "aligned_scored_tokens": 94,
+ "code_tokens": 95,
+ "full_code_scored_tokens": 95,
+ "prompt_tokens": 76,
+ "task_id": 657
+ },
+ {
+ "aligned_scored_tokens": 180,
+ "code_tokens": 181,
+ "full_code_scored_tokens": 181,
+ "prompt_tokens": 151,
+ "task_id": 702
+ },
+ {
+ "aligned_scored_tokens": 37,
+ "code_tokens": 38,
+ "full_code_scored_tokens": 38,
+ "prompt_tokens": 117,
+ "task_id": 651
+ },
+ {
+ "aligned_scored_tokens": 51,
+ "code_tokens": 52,
+ "full_code_scored_tokens": 52,
+ "prompt_tokens": 240,
+ "task_id": 720
+ },
+ {
+ "aligned_scored_tokens": 77,
+ "code_tokens": 78,
+ "full_code_scored_tokens": 78,
+ "prompt_tokens": 83,
+ "task_id": 903
+ },
+ {
+ "aligned_scored_tokens": 132,
+ "code_tokens": 133,
+ "full_code_scored_tokens": 133,
+ "prompt_tokens": 96,
+ "task_id": 918
+ }
+ ]
+ },
+ "diagnostic_only": true,
+ "environment": {
+ "cuda_available": true,
+ "cuda_runtime": "12.8",
+ "gpu": "NVIDIA GeForce RTX 5070 Laptop GPU",
+ "packages": {
+ "datasets": "4.8.5",
+ "numpy": "2.4.6",
+ "safetensors": "0.8.0",
+ "torch": "2.11.0+cu128",
+ "transformers": "5.14.1"
+ },
+ "platform": "Windows-10-10.0.26200-SP0",
+ "python": "3.11.15 (main, Jun 2 2026, 22:29:49) [MSC v.1944 64 bit (AMD64)]"
+ },
+ "heldout_gate": {
+ "applicable": false,
+ "passed": null,
+ "reason": "same-calibration diagnostics cannot satisfy the frozen Experiment 006 holdout gate; rank-fusion positive offsets remain disabled",
+ "schema": "recurquant.experiment006-heldout-gate.v1"
+ },
+ "methods": [
+ "uniform_int4",
+ "v02_layer0_static",
+ "hrr_h1",
+ "hrr_h32",
+ "row_mse",
+ "random_rows_s1101",
+ "signed_taylor_next_int4",
+ "target_directional_fisher_difference_int4",
+ "target_diagonal_fisher_difference_int4",
+ "delta_direction_magnitude_int4",
+ "adaptive_mse_hrr_h1_quota",
+ "adaptive_mse_target_directional_fisher_quota",
+ "rank_fusion_l025_target_fisher_adaptive_mse",
+ "rank_fusion_l050_target_fisher_adaptive_mse",
+ "rank_fusion_l075_target_fisher_adaptive_mse"
+ ],
+ "metric_contract": {
+ "contrasts": "paired task-macro baseline delta NLL minus primary delta NLL",
+ "excluded_from_primary": "prompt-to-first-code-token prediction",
+ "primary": "calibration-aligned code transitions after recurrent-state storage",
+ "primary_tokens_per_task": "code_tokens - 1",
+ "secondary": "full reference-code tokens, including the unaffected first token"
+ },
+ "model": {
+ "device": "cuda",
+ "dtype": "torch.bfloat16",
+ "id": "Qwen/Qwen3.5-0.8B-Base",
+ "revision": "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68"
+ },
+ "per_task": {
+ "adaptive_mse_hrr_h1_quota": [
+ {
+ "candidate_nll": 1.521657109260559,
+ "cvar95_kl": 1.3505640029907227,
+ "delta_nll": 0.2858901023864746,
+ "max_kl": 1.3505640029907227,
+ "mean_kl": 0.3595314025878906,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "candidate_nll": 1.5042493343353271,
+ "cvar95_kl": 3.1122920513153076,
+ "delta_nll": 0.4978659152984619,
+ "max_kl": 4.499517440795898,
+ "mean_kl": 0.5165233016014099,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "candidate_nll": 1.5017389059066772,
+ "cvar95_kl": 3.9232306480407715,
+ "delta_nll": 0.7005172371864319,
+ "max_kl": 4.5721306800842285,
+ "mean_kl": 0.7471798062324524,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7234042286872864
+ },
+ {
+ "candidate_nll": 2.3410258293151855,
+ "cvar95_kl": 4.804558277130127,
+ "delta_nll": 1.3640484809875488,
+ "max_kl": 7.769333839416504,
+ "mean_kl": 1.2250819206237793,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5833333134651184
+ },
+ {
+ "candidate_nll": 1.7362922430038452,
+ "cvar95_kl": 2.3318424224853516,
+ "delta_nll": 0.5664210319519043,
+ "max_kl": 2.3942956924438477,
+ "mean_kl": 0.5648953318595886,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7027027010917664
+ },
+ {
+ "candidate_nll": 1.1313115358352661,
+ "cvar95_kl": 2.403932809829712,
+ "delta_nll": 0.29355210065841675,
+ "max_kl": 2.9691216945648193,
+ "mean_kl": 0.4569181799888611,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8039215803146362
+ },
+ {
+ "candidate_nll": 1.8575284481048584,
+ "cvar95_kl": 3.819864273071289,
+ "delta_nll": 1.023275375366211,
+ "max_kl": 4.455229759216309,
+ "mean_kl": 0.985339879989624,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.5974025726318359
+ },
+ {
+ "candidate_nll": 2.3759725093841553,
+ "cvar95_kl": 4.784841060638428,
+ "delta_nll": 1.5038776397705078,
+ "max_kl": 5.305493354797363,
+ "mean_kl": 1.4962340593338013,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5075757503509521
+ }
+ ],
+ "adaptive_mse_target_directional_fisher_quota": [
+ {
+ "candidate_nll": 1.3034541606903076,
+ "cvar95_kl": 0.8177868127822876,
+ "delta_nll": 0.06768715381622314,
+ "max_kl": 0.8177868127822876,
+ "mean_kl": 0.1112782210111618,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8947368264198303
+ },
+ {
+ "candidate_nll": 1.3124535083770752,
+ "cvar95_kl": 1.9170337915420532,
+ "delta_nll": 0.30607008934020996,
+ "max_kl": 2.5172431468963623,
+ "mean_kl": 0.325796902179718,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "candidate_nll": 1.1538501977920532,
+ "cvar95_kl": 2.4800684452056885,
+ "delta_nll": 0.35262852907180786,
+ "max_kl": 4.00590181350708,
+ "mean_kl": 0.4227640628814697,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8085106611251831
+ },
+ {
+ "candidate_nll": 2.0987746715545654,
+ "cvar95_kl": 4.060663223266602,
+ "delta_nll": 1.1217973232269287,
+ "max_kl": 6.843515872955322,
+ "mean_kl": 0.8984136581420898,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6499999761581421
+ },
+ {
+ "candidate_nll": 1.5053826570510864,
+ "cvar95_kl": 2.8130877017974854,
+ "delta_nll": 0.3355114459991455,
+ "max_kl": 3.174671173095703,
+ "mean_kl": 0.2967134416103363,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.837837815284729
+ },
+ {
+ "candidate_nll": 1.1743980646133423,
+ "cvar95_kl": 3.2352826595306396,
+ "delta_nll": 0.3366386294364929,
+ "max_kl": 3.91865611076355,
+ "mean_kl": 0.39808011054992676,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8235294222831726
+ },
+ {
+ "candidate_nll": 1.5157321691513062,
+ "cvar95_kl": 4.825870037078857,
+ "delta_nll": 0.6814790964126587,
+ "max_kl": 5.618816375732422,
+ "mean_kl": 0.6759239435195923,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7272727489471436
+ },
+ {
+ "candidate_nll": 1.6167010068893433,
+ "cvar95_kl": 3.0732264518737793,
+ "delta_nll": 0.7446061968803406,
+ "max_kl": 3.4257588386535645,
+ "mean_kl": 0.704590380191803,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6742424368858337
+ }
+ ],
+ "delta_direction_magnitude_int4": [
+ {
+ "candidate_nll": 1.5311850309371948,
+ "cvar95_kl": 1.0018543004989624,
+ "delta_nll": 0.29541802406311035,
+ "max_kl": 1.0018543004989624,
+ "mean_kl": 0.14444810152053833,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "candidate_nll": 1.4897710084915161,
+ "cvar95_kl": 5.851797103881836,
+ "delta_nll": 0.4833875894546509,
+ "max_kl": 12.883463859558105,
+ "mean_kl": 0.6974834203720093,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "candidate_nll": 1.1799800395965576,
+ "cvar95_kl": 2.4215567111968994,
+ "delta_nll": 0.37875837087631226,
+ "max_kl": 2.8704397678375244,
+ "mean_kl": 0.3736823797225952,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8510638475418091
+ },
+ {
+ "candidate_nll": 2.046947956085205,
+ "cvar95_kl": 4.560434341430664,
+ "delta_nll": 1.0699706077575684,
+ "max_kl": 7.306674957275391,
+ "mean_kl": 0.9352683424949646,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6111111044883728
+ },
+ {
+ "candidate_nll": 1.724503755569458,
+ "cvar95_kl": 3.309788227081299,
+ "delta_nll": 0.5546325445175171,
+ "max_kl": 4.023754596710205,
+ "mean_kl": 0.39229220151901245,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7567567825317383
+ },
+ {
+ "candidate_nll": 1.0724178552627563,
+ "cvar95_kl": 1.6982628107070923,
+ "delta_nll": 0.23465842008590698,
+ "max_kl": 2.735661029815674,
+ "mean_kl": 0.2690630257129669,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8627451062202454
+ },
+ {
+ "candidate_nll": 1.3286190032958984,
+ "cvar95_kl": 3.076843023300171,
+ "delta_nll": 0.494365930557251,
+ "max_kl": 4.380039215087891,
+ "mean_kl": 0.45540544390678406,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7792207598686218
+ },
+ {
+ "candidate_nll": 1.720780849456787,
+ "cvar95_kl": 3.508823871612549,
+ "delta_nll": 0.8486860394477844,
+ "max_kl": 3.912299633026123,
+ "mean_kl": 0.8768190741539001,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6742424368858337
+ }
+ ],
+ "hrr_h1": [
+ {
+ "candidate_nll": 1.4150276184082031,
+ "cvar95_kl": 0.7921264171600342,
+ "delta_nll": 0.17926061153411865,
+ "max_kl": 0.7921264171600342,
+ "mean_kl": 0.23300278186798096,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "candidate_nll": 1.3561232089996338,
+ "cvar95_kl": 3.2065913677215576,
+ "delta_nll": 0.34973978996276855,
+ "max_kl": 3.997688055038452,
+ "mean_kl": 0.47810739278793335,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8846153616905212
+ },
+ {
+ "candidate_nll": 1.2239927053451538,
+ "cvar95_kl": 3.225297451019287,
+ "delta_nll": 0.42277103662490845,
+ "max_kl": 4.80308198928833,
+ "mean_kl": 0.528471052646637,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7553191781044006
+ },
+ {
+ "candidate_nll": 2.3196535110473633,
+ "cvar95_kl": 5.10039758682251,
+ "delta_nll": 1.3426761627197266,
+ "max_kl": 6.1808671951293945,
+ "mean_kl": 1.2563951015472412,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5222222208976746
+ },
+ {
+ "candidate_nll": 1.6552441120147705,
+ "cvar95_kl": 3.9683706760406494,
+ "delta_nll": 0.4853729009628296,
+ "max_kl": 4.7960028648376465,
+ "mean_kl": 0.46324843168258667,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7567567825317383
+ },
+ {
+ "candidate_nll": 1.2251418828964233,
+ "cvar95_kl": 2.4804813861846924,
+ "delta_nll": 0.387382447719574,
+ "max_kl": 3.1602442264556885,
+ "mean_kl": 0.47150465846061707,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8039215803146362
+ },
+ {
+ "candidate_nll": 1.7142348289489746,
+ "cvar95_kl": 3.9350757598876953,
+ "delta_nll": 0.8799817562103271,
+ "max_kl": 5.582791805267334,
+ "mean_kl": 0.7679694890975952,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.649350643157959
+ },
+ {
+ "candidate_nll": 1.8658612966537476,
+ "cvar95_kl": 4.484250068664551,
+ "delta_nll": 0.9937664866447449,
+ "max_kl": 6.055515766143799,
+ "mean_kl": 0.9543510675430298,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6439393758773804
+ }
+ ],
+ "hrr_h32": [
+ {
+ "candidate_nll": 1.47858464717865,
+ "cvar95_kl": 0.8985419273376465,
+ "delta_nll": 0.24281764030456543,
+ "max_kl": 0.8985419273376465,
+ "mean_kl": 0.2616751194000244,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "candidate_nll": 1.4424853324890137,
+ "cvar95_kl": 3.2515528202056885,
+ "delta_nll": 0.43610191345214844,
+ "max_kl": 4.571720600128174,
+ "mean_kl": 0.5696570873260498,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "candidate_nll": 1.348232626914978,
+ "cvar95_kl": 3.736093521118164,
+ "delta_nll": 0.5470109581947327,
+ "max_kl": 5.296608924865723,
+ "mean_kl": 0.6284127831459045,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7446808218955994
+ },
+ {
+ "candidate_nll": 2.40244722366333,
+ "cvar95_kl": 5.3171000480651855,
+ "delta_nll": 1.4254698753356934,
+ "max_kl": 6.360416889190674,
+ "mean_kl": 1.341440200805664,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5277777910232544
+ },
+ {
+ "candidate_nll": 2.0135583877563477,
+ "cvar95_kl": 6.502284049987793,
+ "delta_nll": 0.8436871767044067,
+ "max_kl": 8.4575777053833,
+ "mean_kl": 0.7446560859680176,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7567567825317383
+ },
+ {
+ "candidate_nll": 1.2332037687301636,
+ "cvar95_kl": 3.346160888671875,
+ "delta_nll": 0.3954443335533142,
+ "max_kl": 3.942091941833496,
+ "mean_kl": 0.5599767565727234,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7843137383460999
+ },
+ {
+ "candidate_nll": 1.67708420753479,
+ "cvar95_kl": 4.948601245880127,
+ "delta_nll": 0.8428311347961426,
+ "max_kl": 6.279153823852539,
+ "mean_kl": 0.8298649191856384,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6883116960525513
+ },
+ {
+ "candidate_nll": 2.1657307147979736,
+ "cvar95_kl": 5.193247318267822,
+ "delta_nll": 1.2936358451843262,
+ "max_kl": 6.915596008300781,
+ "mean_kl": 1.283887267112732,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5
+ }
+ ],
+ "random_rows_s1101": [
+ {
+ "candidate_nll": 3.441673755645752,
+ "cvar95_kl": 6.688381195068359,
+ "delta_nll": 2.205906867980957,
+ "max_kl": 6.688381195068359,
+ "mean_kl": 2.756582260131836,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.31578946113586426
+ },
+ {
+ "candidate_nll": 3.6150243282318115,
+ "cvar95_kl": 6.7014384269714355,
+ "delta_nll": 2.6086409091949463,
+ "max_kl": 6.983257293701172,
+ "mean_kl": 2.655632495880127,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.4423076808452606
+ },
+ {
+ "candidate_nll": 3.518528461456299,
+ "cvar95_kl": 7.542943477630615,
+ "delta_nll": 2.7173068523406982,
+ "max_kl": 8.907737731933594,
+ "mean_kl": 2.757606267929077,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.3404255211353302
+ },
+ {
+ "candidate_nll": 4.852642059326172,
+ "cvar95_kl": 9.85618782043457,
+ "delta_nll": 3.875664710998535,
+ "max_kl": 11.590734481811523,
+ "mean_kl": 3.701547145843506,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.21666666865348816
+ },
+ {
+ "candidate_nll": 3.6465272903442383,
+ "cvar95_kl": 10.18855094909668,
+ "delta_nll": 2.476655960083008,
+ "max_kl": 12.039348602294922,
+ "mean_kl": 2.7627503871917725,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.3513513505458832
+ },
+ {
+ "candidate_nll": 2.9387261867523193,
+ "cvar95_kl": 6.689493179321289,
+ "delta_nll": 2.100966691970825,
+ "max_kl": 7.234011173248291,
+ "mean_kl": 2.3478646278381348,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.47058823704719543
+ },
+ {
+ "candidate_nll": 2.9399731159210205,
+ "cvar95_kl": 5.610705375671387,
+ "delta_nll": 2.105720043182373,
+ "max_kl": 6.914088249206543,
+ "mean_kl": 1.9979133605957031,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.44155845046043396
+ },
+ {
+ "candidate_nll": 4.6175055503845215,
+ "cvar95_kl": 8.227903366088867,
+ "delta_nll": 3.745410680770874,
+ "max_kl": 8.815784454345703,
+ "mean_kl": 3.759880781173706,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.24242424964904785
+ }
+ ],
+ "rank_fusion_l025_target_fisher_adaptive_mse": [
+ {
+ "candidate_nll": 1.308542013168335,
+ "cvar95_kl": 0.5476110577583313,
+ "delta_nll": 0.07277500629425049,
+ "max_kl": 0.5476110577583313,
+ "mean_kl": 0.1180289015173912,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8947368264198303
+ },
+ {
+ "candidate_nll": 1.3385816812515259,
+ "cvar95_kl": 4.6195759773254395,
+ "delta_nll": 0.33219826221466064,
+ "max_kl": 10.639549255371094,
+ "mean_kl": 0.46620890498161316,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "candidate_nll": 1.1510136127471924,
+ "cvar95_kl": 2.115337371826172,
+ "delta_nll": 0.349791944026947,
+ "max_kl": 2.943488121032715,
+ "mean_kl": 0.3464886248111725,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8191489577293396
+ },
+ {
+ "candidate_nll": 2.004521131515503,
+ "cvar95_kl": 3.4346132278442383,
+ "delta_nll": 1.0275437831878662,
+ "max_kl": 3.884718656539917,
+ "mean_kl": 0.828351616859436,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6388888955116272
+ },
+ {
+ "candidate_nll": 1.595062494277954,
+ "cvar95_kl": 2.882763385772705,
+ "delta_nll": 0.4251912832260132,
+ "max_kl": 3.8439416885375977,
+ "mean_kl": 0.2852352559566498,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7837837934494019
+ },
+ {
+ "candidate_nll": 1.1346981525421143,
+ "cvar95_kl": 1.6122020483016968,
+ "delta_nll": 0.2969387173652649,
+ "max_kl": 2.0629024505615234,
+ "mean_kl": 0.3509748876094818,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8039215803146362
+ },
+ {
+ "candidate_nll": 1.3990256786346436,
+ "cvar95_kl": 2.8662056922912598,
+ "delta_nll": 0.5647726058959961,
+ "max_kl": 3.3556666374206543,
+ "mean_kl": 0.48418501019477844,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7662337422370911
+ },
+ {
+ "candidate_nll": 1.480589509010315,
+ "cvar95_kl": 3.1055657863616943,
+ "delta_nll": 0.6084946990013123,
+ "max_kl": 3.798787832260132,
+ "mean_kl": 0.6358979940414429,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6818181872367859
+ }
+ ],
+ "rank_fusion_l050_target_fisher_adaptive_mse": [
+ {
+ "candidate_nll": 1.5093951225280762,
+ "cvar95_kl": 0.8987298607826233,
+ "delta_nll": 0.2736281156539917,
+ "max_kl": 0.8987298607826233,
+ "mean_kl": 0.14470414817333221,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8947368264198303
+ },
+ {
+ "candidate_nll": 1.4004530906677246,
+ "cvar95_kl": 5.547763824462891,
+ "delta_nll": 0.3940696716308594,
+ "max_kl": 11.912494659423828,
+ "mean_kl": 0.5358436703681946,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "candidate_nll": 1.1147215366363525,
+ "cvar95_kl": 1.98459792137146,
+ "delta_nll": 0.3134998679161072,
+ "max_kl": 3.370647430419922,
+ "mean_kl": 0.36030343174934387,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8404255509376526
+ },
+ {
+ "candidate_nll": 2.057145118713379,
+ "cvar95_kl": 4.717962265014648,
+ "delta_nll": 1.0801677703857422,
+ "max_kl": 7.9719157218933105,
+ "mean_kl": 0.9272428750991821,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6000000238418579
+ },
+ {
+ "candidate_nll": 1.6388764381408691,
+ "cvar95_kl": 1.394677996635437,
+ "delta_nll": 0.4690052270889282,
+ "max_kl": 1.8365423679351807,
+ "mean_kl": 0.2506403923034668,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.8108108043670654
+ },
+ {
+ "candidate_nll": 1.1787712574005127,
+ "cvar95_kl": 2.0722763538360596,
+ "delta_nll": 0.34101182222366333,
+ "max_kl": 3.2154455184936523,
+ "mean_kl": 0.37735816836357117,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7843137383460999
+ },
+ {
+ "candidate_nll": 1.4263502359390259,
+ "cvar95_kl": 3.011165142059326,
+ "delta_nll": 0.5920971632003784,
+ "max_kl": 3.5681447982788086,
+ "mean_kl": 0.5023840665817261,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7922077775001526
+ },
+ {
+ "candidate_nll": 1.5276015996932983,
+ "cvar95_kl": 4.474242687225342,
+ "delta_nll": 0.6555067896842957,
+ "max_kl": 7.097709655761719,
+ "mean_kl": 0.6898977756500244,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.689393937587738
+ }
+ ],
+ "rank_fusion_l075_target_fisher_adaptive_mse": [
+ {
+ "candidate_nll": 1.4376497268676758,
+ "cvar95_kl": 0.8146014213562012,
+ "delta_nll": 0.2018827199935913,
+ "max_kl": 0.8146014213562012,
+ "mean_kl": 0.14454495906829834,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8947368264198303
+ },
+ {
+ "candidate_nll": 1.3472338914871216,
+ "cvar95_kl": 4.832159519195557,
+ "delta_nll": 0.34085047245025635,
+ "max_kl": 11.05977725982666,
+ "mean_kl": 0.4911138713359833,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "candidate_nll": 1.1052132844924927,
+ "cvar95_kl": 1.8371307849884033,
+ "delta_nll": 0.3039916157722473,
+ "max_kl": 2.0717790126800537,
+ "mean_kl": 0.2828344702720642,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8723404407501221
+ },
+ {
+ "candidate_nll": 1.981873869895935,
+ "cvar95_kl": 3.8317477703094482,
+ "delta_nll": 1.004896640777588,
+ "max_kl": 4.884922981262207,
+ "mean_kl": 0.8705005049705505,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6166666746139526
+ },
+ {
+ "candidate_nll": 1.4516879320144653,
+ "cvar95_kl": 2.722851276397705,
+ "delta_nll": 0.2818167209625244,
+ "max_kl": 3.8837664127349854,
+ "mean_kl": 0.30501824617385864,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7837837934494019
+ },
+ {
+ "candidate_nll": 1.0186411142349243,
+ "cvar95_kl": 2.0080268383026123,
+ "delta_nll": 0.18088167905807495,
+ "max_kl": 2.1898462772369385,
+ "mean_kl": 0.29253461956977844,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8627451062202454
+ },
+ {
+ "candidate_nll": 1.3669706583023071,
+ "cvar95_kl": 2.899691581726074,
+ "delta_nll": 0.5327175855636597,
+ "max_kl": 3.168577194213867,
+ "mean_kl": 0.47193723917007446,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7272727489471436
+ },
+ {
+ "candidate_nll": 1.6727653741836548,
+ "cvar95_kl": 4.47452974319458,
+ "delta_nll": 0.8006705641746521,
+ "max_kl": 5.708219051361084,
+ "mean_kl": 0.8449270129203796,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6969696879386902
+ }
+ ],
+ "row_mse": [
+ {
+ "candidate_nll": 1.6338046789169312,
+ "cvar95_kl": 2.1311771869659424,
+ "delta_nll": 0.3980376720428467,
+ "max_kl": 2.1311771869659424,
+ "mean_kl": 0.5359232425689697,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "candidate_nll": 1.541896939277649,
+ "cvar95_kl": 2.8863818645477295,
+ "delta_nll": 0.5355135202407837,
+ "max_kl": 4.380407333374023,
+ "mean_kl": 0.5883387327194214,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "candidate_nll": 1.5910316705703735,
+ "cvar95_kl": 5.046751976013184,
+ "delta_nll": 0.7898100018501282,
+ "max_kl": 5.6158576011657715,
+ "mean_kl": 0.9469754099845886,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.6808510422706604
+ },
+ {
+ "candidate_nll": 2.3459646701812744,
+ "cvar95_kl": 4.837377548217773,
+ "delta_nll": 1.3689873218536377,
+ "max_kl": 7.450765132904053,
+ "mean_kl": 1.2247120141983032,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5777778029441833
+ },
+ {
+ "candidate_nll": 1.9892563819885254,
+ "cvar95_kl": 3.6711325645446777,
+ "delta_nll": 0.8193851709365845,
+ "max_kl": 3.788031578063965,
+ "mean_kl": 0.7982465028762817,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7297297120094299
+ },
+ {
+ "candidate_nll": 1.1800658702850342,
+ "cvar95_kl": 2.32446026802063,
+ "delta_nll": 0.3423064351081848,
+ "max_kl": 2.606278896331787,
+ "mean_kl": 0.5047054886817932,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7647058963775635
+ },
+ {
+ "candidate_nll": 1.8294388055801392,
+ "cvar95_kl": 4.329058647155762,
+ "delta_nll": 0.9951857328414917,
+ "max_kl": 6.58737850189209,
+ "mean_kl": 0.9180334806442261,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6753246784210205
+ },
+ {
+ "candidate_nll": 1.9799903631210327,
+ "cvar95_kl": 4.327456951141357,
+ "delta_nll": 1.1078956127166748,
+ "max_kl": 5.218027591705322,
+ "mean_kl": 1.1581742763519287,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5303030014038086
+ }
+ ],
+ "signed_taylor_next_int4": [
+ {
+ "candidate_nll": 1.5024064779281616,
+ "cvar95_kl": 1.8164697885513306,
+ "delta_nll": 0.26663947105407715,
+ "max_kl": 1.8164697885513306,
+ "mean_kl": 0.4156881272792816,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "candidate_nll": 1.7318750619888306,
+ "cvar95_kl": 4.868865966796875,
+ "delta_nll": 0.7254916429519653,
+ "max_kl": 8.179862976074219,
+ "mean_kl": 0.7837780714035034,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.75
+ },
+ {
+ "candidate_nll": 1.45570969581604,
+ "cvar95_kl": 3.475843906402588,
+ "delta_nll": 0.6544880270957947,
+ "max_kl": 4.466429710388184,
+ "mean_kl": 0.7511340379714966,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7127659320831299
+ },
+ {
+ "candidate_nll": 2.465879201889038,
+ "cvar95_kl": 5.389158248901367,
+ "delta_nll": 1.4889018535614014,
+ "max_kl": 6.654348850250244,
+ "mean_kl": 1.4111559391021729,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5055555701255798
+ },
+ {
+ "candidate_nll": 1.828425645828247,
+ "cvar95_kl": 4.301302909851074,
+ "delta_nll": 0.6585544347763062,
+ "max_kl": 4.708497047424316,
+ "mean_kl": 0.7511183023452759,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7027027010917664
+ },
+ {
+ "candidate_nll": 1.3813329935073853,
+ "cvar95_kl": 4.675906658172607,
+ "delta_nll": 0.5435735583305359,
+ "max_kl": 5.054469585418701,
+ "mean_kl": 0.7468767166137695,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7450980544090271
+ },
+ {
+ "candidate_nll": 1.8729636669158936,
+ "cvar95_kl": 4.453776836395264,
+ "delta_nll": 1.038710594177246,
+ "max_kl": 6.199273586273193,
+ "mean_kl": 1.0229319334030151,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6103895902633667
+ },
+ {
+ "candidate_nll": 2.0974442958831787,
+ "cvar95_kl": 4.075047969818115,
+ "delta_nll": 1.2253494262695312,
+ "max_kl": 5.456568717956543,
+ "mean_kl": 1.2140796184539795,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.49242424964904785
+ }
+ ],
+ "target_diagonal_fisher_difference_int4": [
+ {
+ "candidate_nll": 1.5209951400756836,
+ "cvar95_kl": 1.2558786869049072,
+ "delta_nll": 0.2852281332015991,
+ "max_kl": 1.2558786869049072,
+ "mean_kl": 0.1572151482105255,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8947368264198303
+ },
+ {
+ "candidate_nll": 1.4543321132659912,
+ "cvar95_kl": 5.37181282043457,
+ "delta_nll": 0.447948694229126,
+ "max_kl": 11.827005386352539,
+ "mean_kl": 0.6362177729606628,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "candidate_nll": 1.1983875036239624,
+ "cvar95_kl": 2.0302774906158447,
+ "delta_nll": 0.39716583490371704,
+ "max_kl": 3.6801576614379883,
+ "mean_kl": 0.3306601643562317,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8191489577293396
+ },
+ {
+ "candidate_nll": 2.0335803031921387,
+ "cvar95_kl": 3.785457134246826,
+ "delta_nll": 1.056602954864502,
+ "max_kl": 5.025235176086426,
+ "mean_kl": 0.8664608597755432,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6222222447395325
+ },
+ {
+ "candidate_nll": 1.4882766008377075,
+ "cvar95_kl": 1.346226453781128,
+ "delta_nll": 0.3184053897857666,
+ "max_kl": 1.4148379564285278,
+ "mean_kl": 0.23320914804935455,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.8108108043670654
+ },
+ {
+ "candidate_nll": 1.1482648849487305,
+ "cvar95_kl": 2.5143041610717773,
+ "delta_nll": 0.3105054497718811,
+ "max_kl": 3.022414445877075,
+ "mean_kl": 0.4038626253604889,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7843137383460999
+ },
+ {
+ "candidate_nll": 1.4200193881988525,
+ "cvar95_kl": 3.506941795349121,
+ "delta_nll": 0.5857663154602051,
+ "max_kl": 6.059634685516357,
+ "mean_kl": 0.5298561453819275,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7662337422370911
+ },
+ {
+ "candidate_nll": 1.854514241218567,
+ "cvar95_kl": 4.312446117401123,
+ "delta_nll": 0.9824194312095642,
+ "max_kl": 5.261858940124512,
+ "mean_kl": 0.9442543387413025,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6212121248245239
+ }
+ ],
+ "target_directional_fisher_difference_int4": [
+ {
+ "candidate_nll": 1.445572853088379,
+ "cvar95_kl": 1.2641404867172241,
+ "delta_nll": 0.20980584621429443,
+ "max_kl": 1.2641404867172241,
+ "mean_kl": 0.13470770418643951,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.9473684430122375
+ },
+ {
+ "candidate_nll": 1.3638256788253784,
+ "cvar95_kl": 5.890485763549805,
+ "delta_nll": 0.3574422597885132,
+ "max_kl": 12.8174409866333,
+ "mean_kl": 0.5905574560165405,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "candidate_nll": 1.1582412719726562,
+ "cvar95_kl": 2.3940727710723877,
+ "delta_nll": 0.3570196032524109,
+ "max_kl": 4.519840240478516,
+ "mean_kl": 0.36104124784469604,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8404255509376526
+ },
+ {
+ "candidate_nll": 1.9988359212875366,
+ "cvar95_kl": 4.336951732635498,
+ "delta_nll": 1.0218586921691895,
+ "max_kl": 5.376936435699463,
+ "mean_kl": 0.9023396968841553,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.644444465637207
+ },
+ {
+ "candidate_nll": 1.5535638332366943,
+ "cvar95_kl": 2.9711849689483643,
+ "delta_nll": 0.3836926221847534,
+ "max_kl": 3.4203357696533203,
+ "mean_kl": 0.3690139353275299,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7837837934494019
+ },
+ {
+ "candidate_nll": 1.1590352058410645,
+ "cvar95_kl": 1.7222825288772583,
+ "delta_nll": 0.3212757706642151,
+ "max_kl": 2.289232015609741,
+ "mean_kl": 0.3079473078250885,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.843137264251709
+ },
+ {
+ "candidate_nll": 1.4574382305145264,
+ "cvar95_kl": 3.34493350982666,
+ "delta_nll": 0.6231851577758789,
+ "max_kl": 3.576073169708252,
+ "mean_kl": 0.523201048374176,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7662337422370911
+ },
+ {
+ "candidate_nll": 1.884065866470337,
+ "cvar95_kl": 4.967878818511963,
+ "delta_nll": 1.0119709968566895,
+ "max_kl": 5.710936069488525,
+ "mean_kl": 0.9756773710250854,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6742424368858337
+ }
+ ],
+ "uniform_int4": [
+ {
+ "candidate_nll": 3.8646814823150635,
+ "cvar95_kl": 6.306801795959473,
+ "delta_nll": 2.6289143562316895,
+ "max_kl": 6.306801795959473,
+ "mean_kl": 3.1720287799835205,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.21052631735801697
+ },
+ {
+ "candidate_nll": 3.9083590507507324,
+ "cvar95_kl": 7.112916469573975,
+ "delta_nll": 2.901975631713867,
+ "max_kl": 7.502933979034424,
+ "mean_kl": 2.9117941856384277,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.4038461446762085
+ },
+ {
+ "candidate_nll": 3.974540948867798,
+ "cvar95_kl": 8.55384635925293,
+ "delta_nll": 3.1733193397521973,
+ "max_kl": 10.474206924438477,
+ "mean_kl": 3.2451982498168945,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.3404255211353302
+ },
+ {
+ "candidate_nll": 3.892319679260254,
+ "cvar95_kl": 7.774782180786133,
+ "delta_nll": 2.915342330932617,
+ "max_kl": 9.205711364746094,
+ "mean_kl": 2.783794403076172,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.32777777314186096
+ },
+ {
+ "candidate_nll": 4.135063171386719,
+ "cvar95_kl": 10.680988311767578,
+ "delta_nll": 2.9651918411254883,
+ "max_kl": 12.127657890319824,
+ "mean_kl": 3.2829434871673584,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.37837839126586914
+ },
+ {
+ "candidate_nll": 2.3367018699645996,
+ "cvar95_kl": 6.4115424156188965,
+ "delta_nll": 1.4989423751831055,
+ "max_kl": 7.608405113220215,
+ "mean_kl": 2.047372341156006,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.47058823704719543
+ },
+ {
+ "candidate_nll": 3.0540404319763184,
+ "cvar95_kl": 6.830252647399902,
+ "delta_nll": 2.219787359237671,
+ "max_kl": 8.387694358825684,
+ "mean_kl": 2.2611472606658936,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.4025973975658417
+ },
+ {
+ "candidate_nll": 4.057540416717529,
+ "cvar95_kl": 7.13095235824585,
+ "delta_nll": 3.185445547103882,
+ "max_kl": 8.500591278076172,
+ "mean_kl": 3.1063497066497803,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.2954545319080353
+ }
+ ],
+ "v02_layer0_static": [
+ {
+ "candidate_nll": 1.5403542518615723,
+ "cvar95_kl": 3.368896484375,
+ "delta_nll": 0.3045872449874878,
+ "max_kl": 3.368896484375,
+ "mean_kl": 0.5823673605918884,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.6842105388641357
+ },
+ {
+ "candidate_nll": 1.5990421772003174,
+ "cvar95_kl": 3.445737600326538,
+ "delta_nll": 0.5926587581634521,
+ "max_kl": 4.194878101348877,
+ "mean_kl": 0.6758943200111389,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "candidate_nll": 1.4461653232574463,
+ "cvar95_kl": 3.6765236854553223,
+ "delta_nll": 0.6449436545372009,
+ "max_kl": 5.483456134796143,
+ "mean_kl": 0.8215219378471375,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.6276595592498779
+ },
+ {
+ "candidate_nll": 2.4067187309265137,
+ "cvar95_kl": 5.471136569976807,
+ "delta_nll": 1.429741382598877,
+ "max_kl": 7.964560508728027,
+ "mean_kl": 1.2766573429107666,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5388888716697693
+ },
+ {
+ "candidate_nll": 2.1247687339782715,
+ "cvar95_kl": 5.125461578369141,
+ "delta_nll": 0.9548975229263306,
+ "max_kl": 5.5240960121154785,
+ "mean_kl": 0.864471971988678,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.6756756901741028
+ },
+ {
+ "candidate_nll": 1.1851874589920044,
+ "cvar95_kl": 3.251368761062622,
+ "delta_nll": 0.34742802381515503,
+ "max_kl": 3.956939935684204,
+ "mean_kl": 0.6366665959358215,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7254902124404907
+ },
+ {
+ "candidate_nll": 2.0860273838043213,
+ "cvar95_kl": 6.265845775604248,
+ "delta_nll": 1.2517743110656738,
+ "max_kl": 7.339381694793701,
+ "mean_kl": 1.1677201986312866,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6363636255264282
+ },
+ {
+ "candidate_nll": 2.2378599643707275,
+ "cvar95_kl": 5.143394947052002,
+ "delta_nll": 1.36576509475708,
+ "max_kl": 5.984044075012207,
+ "mean_kl": 1.3902655839920044,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5378788113594055
+ }
+ ]
+ },
+ "per_task_full_code_secondary": {
+ "adaptive_mse_hrr_h1_quota": [
+ {
+ "candidate_nll": 1.4839556217193604,
+ "cvar95_kl": 1.3505640029907227,
+ "delta_nll": 0.2715955972671509,
+ "max_kl": 1.3505640029907227,
+ "mean_kl": 0.3415548503398895,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.75
+ },
+ {
+ "candidate_nll": 1.5277574062347412,
+ "cvar95_kl": 3.1122920513153076,
+ "delta_nll": 0.4884723424911499,
+ "max_kl": 4.499517440795898,
+ "mean_kl": 0.5067775845527649,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "candidate_nll": 1.518835425376892,
+ "cvar95_kl": 3.9232306480407715,
+ "delta_nll": 0.6931431293487549,
+ "max_kl": 4.5721306800842285,
+ "mean_kl": 0.7393147349357605,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.7263157963752747
+ },
+ {
+ "candidate_nll": 2.3327126502990723,
+ "cvar95_kl": 4.696091651916504,
+ "delta_nll": 1.356512427330017,
+ "max_kl": 7.769333839416504,
+ "mean_kl": 1.2183135747909546,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.5856353640556335
+ },
+ {
+ "candidate_nll": 1.7083547115325928,
+ "cvar95_kl": 2.3318424224853516,
+ "delta_nll": 0.5515149831771851,
+ "max_kl": 2.3942956924438477,
+ "mean_kl": 0.5500296354293823,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7105262875556946
+ },
+ {
+ "candidate_nll": 1.1213890314102173,
+ "cvar95_kl": 2.403932809829712,
+ "delta_nll": 0.2879068851470947,
+ "max_kl": 2.9691216945648193,
+ "mean_kl": 0.4481312930583954,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "candidate_nll": 1.8414400815963745,
+ "cvar95_kl": 3.819864273071289,
+ "delta_nll": 1.0101566314697266,
+ "max_kl": 4.455229759216309,
+ "mean_kl": 0.9727073311805725,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6025640964508057
+ },
+ {
+ "candidate_nll": 2.362440347671509,
+ "cvar95_kl": 4.784841060638428,
+ "delta_nll": 1.4925702810287476,
+ "max_kl": 5.305493354797363,
+ "mean_kl": 1.484984278678894,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5112782120704651
+ }
+ ],
+ "adaptive_mse_target_directional_fisher_quota": [
+ {
+ "candidate_nll": 1.2766627073287964,
+ "cvar95_kl": 0.8177868127822876,
+ "delta_nll": 0.06430268287658691,
+ "max_kl": 0.8177868127822876,
+ "mean_kl": 0.10571432113647461,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8999999761581421
+ },
+ {
+ "candidate_nll": 1.3395802974700928,
+ "cvar95_kl": 1.9170337915420532,
+ "delta_nll": 0.30029523372650146,
+ "max_kl": 2.5172431468963623,
+ "mean_kl": 0.3196497857570648,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "candidate_nll": 1.1746087074279785,
+ "cvar95_kl": 2.4800684452056885,
+ "delta_nll": 0.3489164113998413,
+ "max_kl": 4.00590181350708,
+ "mean_kl": 0.4183139204978943,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8105263113975525
+ },
+ {
+ "candidate_nll": 2.0917999744415283,
+ "cvar95_kl": 3.971057415008545,
+ "delta_nll": 1.1155997514724731,
+ "max_kl": 6.843515872955322,
+ "mean_kl": 0.893450140953064,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6519337296485901
+ },
+ {
+ "candidate_nll": 1.4835220575332642,
+ "cvar95_kl": 2.8130877017974854,
+ "delta_nll": 0.32668232917785645,
+ "max_kl": 3.174671173095703,
+ "mean_kl": 0.28890517354011536,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "candidate_nll": 1.163646936416626,
+ "cvar95_kl": 3.2352826595306396,
+ "delta_nll": 0.3301647901535034,
+ "max_kl": 3.91865611076355,
+ "mean_kl": 0.3904247283935547,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "candidate_nll": 1.5040258169174194,
+ "cvar95_kl": 4.825870037078857,
+ "delta_nll": 0.6727423667907715,
+ "max_kl": 5.618816375732422,
+ "mean_kl": 0.6672582030296326,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7307692170143127
+ },
+ {
+ "candidate_nll": 1.6088777780532837,
+ "cvar95_kl": 3.0732264518737793,
+ "delta_nll": 0.7390077114105225,
+ "max_kl": 3.4257588386535645,
+ "mean_kl": 0.6992927193641663,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6766917109489441
+ }
+ ],
+ "delta_direction_magnitude_int4": [
+ {
+ "candidate_nll": 1.4930073022842407,
+ "cvar95_kl": 1.0018543004989624,
+ "delta_nll": 0.28064727783203125,
+ "max_kl": 1.0018543004989624,
+ "mean_kl": 0.1372257024049759,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8500000238418579
+ },
+ {
+ "candidate_nll": 1.5135524272918701,
+ "cvar95_kl": 5.851797103881836,
+ "delta_nll": 0.4742673635482788,
+ "max_kl": 12.883463859558105,
+ "mean_kl": 0.6843233704566956,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.7735849022865295
+ },
+ {
+ "candidate_nll": 1.2004636526107788,
+ "cvar95_kl": 2.4215567111968994,
+ "delta_nll": 0.3747713565826416,
+ "max_kl": 2.8704397678375244,
+ "mean_kl": 0.36974889039993286,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8526315689086914
+ },
+ {
+ "candidate_nll": 2.040259838104248,
+ "cvar95_kl": 4.426297187805176,
+ "delta_nll": 1.0640596151351929,
+ "max_kl": 7.306674957275391,
+ "mean_kl": 0.9301011562347412,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6132596731185913
+ },
+ {
+ "candidate_nll": 1.6968767642974854,
+ "cvar95_kl": 3.309788227081299,
+ "delta_nll": 0.5400370359420776,
+ "max_kl": 4.023754596710205,
+ "mean_kl": 0.3819687068462372,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7631579041481018
+ },
+ {
+ "candidate_nll": 1.063628077507019,
+ "cvar95_kl": 1.6982628107070923,
+ "delta_nll": 0.23014593124389648,
+ "max_kl": 2.735661029815674,
+ "mean_kl": 0.26388871669769287,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "candidate_nll": 1.3193116188049316,
+ "cvar95_kl": 3.076843023300171,
+ "delta_nll": 0.4880281686782837,
+ "max_kl": 4.380039215087891,
+ "mean_kl": 0.44956690073013306,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7820512652397156
+ },
+ {
+ "candidate_nll": 1.7121750116348267,
+ "cvar95_kl": 3.508823871612549,
+ "delta_nll": 0.8423049449920654,
+ "max_kl": 3.912299633026123,
+ "mean_kl": 0.8702264428138733,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6766917109489441
+ }
+ ],
+ "hrr_h1": [
+ {
+ "candidate_nll": 1.382657766342163,
+ "cvar95_kl": 0.7921264171600342,
+ "delta_nll": 0.1702977418899536,
+ "max_kl": 0.7921264171600342,
+ "mean_kl": 0.22135265171527863,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.800000011920929
+ },
+ {
+ "candidate_nll": 1.3824260234832764,
+ "cvar95_kl": 3.2065913677215576,
+ "delta_nll": 0.34314095973968506,
+ "max_kl": 3.997688055038452,
+ "mean_kl": 0.46908649802207947,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8867924809455872
+ },
+ {
+ "candidate_nll": 1.2440130710601807,
+ "cvar95_kl": 3.225297451019287,
+ "delta_nll": 0.41832077503204346,
+ "max_kl": 4.80308198928833,
+ "mean_kl": 0.5229081511497498,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.75789475440979
+ },
+ {
+ "candidate_nll": 2.3114583492279053,
+ "cvar95_kl": 5.01886510848999,
+ "delta_nll": 1.33525812625885,
+ "max_kl": 6.1808671951293945,
+ "mean_kl": 1.2494535446166992,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.5248618721961975
+ },
+ {
+ "candidate_nll": 1.6294397115707397,
+ "cvar95_kl": 3.9683706760406494,
+ "delta_nll": 0.47259998321533203,
+ "max_kl": 4.7960028648376465,
+ "mean_kl": 0.45105767250061035,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7631579041481018
+ },
+ {
+ "candidate_nll": 1.2134149074554443,
+ "cvar95_kl": 2.4804813861846924,
+ "delta_nll": 0.3799327611923218,
+ "max_kl": 3.1602442264556885,
+ "mean_kl": 0.4624372720718384,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "candidate_nll": 1.6999834775924683,
+ "cvar95_kl": 3.9350757598876953,
+ "delta_nll": 0.8687000274658203,
+ "max_kl": 5.582791805267334,
+ "mean_kl": 0.7581237554550171,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6538461446762085
+ },
+ {
+ "candidate_nll": 1.856164574623108,
+ "cvar95_kl": 4.484250068664551,
+ "delta_nll": 0.9862945079803467,
+ "max_kl": 6.055515766143799,
+ "mean_kl": 0.9471754431724548,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.646616518497467
+ }
+ ],
+ "hrr_h32": [
+ {
+ "candidate_nll": 1.4430367946624756,
+ "cvar95_kl": 0.8985419273376465,
+ "delta_nll": 0.2306767702102661,
+ "max_kl": 0.8985419273376465,
+ "mean_kl": 0.248591348528862,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8500000238418579
+ },
+ {
+ "candidate_nll": 1.4671587944030762,
+ "cvar95_kl": 3.2515528202056885,
+ "delta_nll": 0.42787373065948486,
+ "max_kl": 4.571720600128174,
+ "mean_kl": 0.5589088797569275,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8113207817077637
+ },
+ {
+ "candidate_nll": 1.3669452667236328,
+ "cvar95_kl": 3.736093521118164,
+ "delta_nll": 0.5412529706954956,
+ "max_kl": 5.296608924865723,
+ "mean_kl": 0.6217979192733765,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.7473683953285217
+ },
+ {
+ "candidate_nll": 2.393794536590576,
+ "cvar95_kl": 5.209719657897949,
+ "delta_nll": 1.417594313621521,
+ "max_kl": 6.360416889190674,
+ "mean_kl": 1.3340288400650024,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.530386745929718
+ },
+ {
+ "candidate_nll": 1.9783248901367188,
+ "cvar95_kl": 6.502284049987793,
+ "delta_nll": 0.821485161781311,
+ "max_kl": 8.4575777053833,
+ "mean_kl": 0.7250598669052124,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7631579041481018
+ },
+ {
+ "candidate_nll": 1.221321702003479,
+ "cvar95_kl": 3.346160888671875,
+ "delta_nll": 0.38783955574035645,
+ "max_kl": 3.942091941833496,
+ "mean_kl": 0.5492079854011536,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7884615659713745
+ },
+ {
+ "candidate_nll": 1.663309097290039,
+ "cvar95_kl": 4.948601245880127,
+ "delta_nll": 0.8320256471633911,
+ "max_kl": 6.279153823852539,
+ "mean_kl": 0.8192257285118103,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.692307710647583
+ },
+ {
+ "candidate_nll": 2.1537795066833496,
+ "cvar95_kl": 5.193247318267822,
+ "delta_nll": 1.2839094400405884,
+ "max_kl": 6.915596008300781,
+ "mean_kl": 1.2742339372634888,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5037593841552734
+ }
+ ],
+ "random_rows_s1101": [
+ {
+ "candidate_nll": 3.307971239089966,
+ "cvar95_kl": 6.688381195068359,
+ "delta_nll": 2.095611095428467,
+ "max_kl": 6.688381195068359,
+ "mean_kl": 2.618752956390381,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.3499999940395355
+ },
+ {
+ "candidate_nll": 3.5987062454223633,
+ "cvar95_kl": 6.7014384269714355,
+ "delta_nll": 2.5594210624694824,
+ "max_kl": 6.983257293701172,
+ "mean_kl": 2.6055264472961426,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.4528301954269409
+ },
+ {
+ "candidate_nll": 3.5143957138061523,
+ "cvar95_kl": 7.542943477630615,
+ "delta_nll": 2.6887035369873047,
+ "max_kl": 8.907737731933594,
+ "mean_kl": 2.72857928276062,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.34736841917037964
+ },
+ {
+ "candidate_nll": 4.830452919006348,
+ "cvar95_kl": 9.73292064666748,
+ "delta_nll": 3.854252815246582,
+ "max_kl": 11.590734481811523,
+ "mean_kl": 3.6810967922210693,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.2209944725036621
+ },
+ {
+ "candidate_nll": 3.5683207511901855,
+ "cvar95_kl": 10.18855094909668,
+ "delta_nll": 2.4114809036254883,
+ "max_kl": 12.039348602294922,
+ "mean_kl": 2.6900463104248047,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.3684210479259491
+ },
+ {
+ "candidate_nll": 2.89404559135437,
+ "cvar95_kl": 6.689493179321289,
+ "delta_nll": 2.060563564300537,
+ "max_kl": 7.234011173248291,
+ "mean_kl": 2.30271315574646,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.48076921701431274
+ },
+ {
+ "candidate_nll": 2.9100074768066406,
+ "cvar95_kl": 5.610705375671387,
+ "delta_nll": 2.078723907470703,
+ "max_kl": 6.914088249206543,
+ "mean_kl": 1.9722992181777954,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.44871795177459717
+ },
+ {
+ "candidate_nll": 4.587120056152344,
+ "cvar95_kl": 8.227903366088867,
+ "delta_nll": 3.717249870300293,
+ "max_kl": 8.815784454345703,
+ "mean_kl": 3.7316107749938965,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.24812030792236328
+ }
+ ],
+ "rank_fusion_l025_target_fisher_adaptive_mse": [
+ {
+ "candidate_nll": 1.281496286392212,
+ "cvar95_kl": 0.5476110577583313,
+ "delta_nll": 0.06913626194000244,
+ "max_kl": 0.5476110577583313,
+ "mean_kl": 0.11212744563817978,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8999999761581421
+ },
+ {
+ "candidate_nll": 1.3652154207229614,
+ "cvar95_kl": 4.6195759773254395,
+ "delta_nll": 0.3259303569793701,
+ "max_kl": 10.639549255371094,
+ "mean_kl": 0.4574125111103058,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "candidate_nll": 1.171802043914795,
+ "cvar95_kl": 2.115337371826172,
+ "delta_nll": 0.3461097478866577,
+ "max_kl": 2.943488121032715,
+ "mean_kl": 0.34284138679504395,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.821052610874176
+ },
+ {
+ "candidate_nll": 1.9980671405792236,
+ "cvar95_kl": 3.370847225189209,
+ "delta_nll": 1.0218669176101685,
+ "max_kl": 3.884718656539917,
+ "mean_kl": 0.823775053024292,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6408839821815491
+ },
+ {
+ "candidate_nll": 1.570841908454895,
+ "cvar95_kl": 2.882763385772705,
+ "delta_nll": 0.4140021800994873,
+ "max_kl": 3.8439416885375977,
+ "mean_kl": 0.2777290642261505,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "candidate_nll": 1.1247104406356812,
+ "cvar95_kl": 1.6122020483016968,
+ "delta_nll": 0.2912282943725586,
+ "max_kl": 2.0629024505615234,
+ "mean_kl": 0.34422537684440613,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "candidate_nll": 1.3888152837753296,
+ "cvar95_kl": 2.8662056922912598,
+ "delta_nll": 0.5575318336486816,
+ "max_kl": 3.3556666374206543,
+ "mean_kl": 0.4779775142669678,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "candidate_nll": 1.4737896919250488,
+ "cvar95_kl": 3.1055657863616943,
+ "delta_nll": 0.6039196252822876,
+ "max_kl": 3.798787832260132,
+ "mean_kl": 0.6311168074607849,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6842105388641357
+ }
+ ],
+ "rank_fusion_l050_target_fisher_adaptive_mse": [
+ {
+ "candidate_nll": 1.4723068475723267,
+ "cvar95_kl": 0.8987298607826233,
+ "delta_nll": 0.2599468231201172,
+ "max_kl": 0.8987298607826233,
+ "mean_kl": 0.13746893405914307,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8999999761581421
+ },
+ {
+ "candidate_nll": 1.425919532775879,
+ "cvar95_kl": 5.547763824462891,
+ "delta_nll": 0.3866344690322876,
+ "max_kl": 11.912494659423828,
+ "mean_kl": 0.5257333517074585,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "candidate_nll": 1.1358920335769653,
+ "cvar95_kl": 1.98459792137146,
+ "delta_nll": 0.3101997375488281,
+ "max_kl": 3.370647430419922,
+ "mean_kl": 0.3565107583999634,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "candidate_nll": 2.050400495529175,
+ "cvar95_kl": 4.599469184875488,
+ "delta_nll": 1.0742002725601196,
+ "max_kl": 7.9719157218933105,
+ "mean_kl": 0.9221199750900269,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6022099256515503
+ },
+ {
+ "candidate_nll": 1.6135027408599854,
+ "cvar95_kl": 1.394677996635437,
+ "delta_nll": 0.45666301250457764,
+ "max_kl": 1.8365423679351807,
+ "mean_kl": 0.24404460191726685,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.8157894611358643
+ },
+ {
+ "candidate_nll": 1.1679359674453735,
+ "cvar95_kl": 2.0722763538360596,
+ "delta_nll": 0.334453821182251,
+ "max_kl": 3.2154455184936523,
+ "mean_kl": 0.37010127305984497,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7884615659713745
+ },
+ {
+ "candidate_nll": 1.4157897233963013,
+ "cvar95_kl": 3.011165142059326,
+ "delta_nll": 0.5845062732696533,
+ "max_kl": 3.5681447982788086,
+ "mean_kl": 0.4959432780742645,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7948718070983887
+ },
+ {
+ "candidate_nll": 1.5204484462738037,
+ "cvar95_kl": 4.474242210388184,
+ "delta_nll": 0.6505783796310425,
+ "max_kl": 7.097709655761719,
+ "mean_kl": 0.6847105622291565,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6917293071746826
+ }
+ ],
+ "rank_fusion_l075_target_fisher_adaptive_mse": [
+ {
+ "candidate_nll": 1.4041485786437988,
+ "cvar95_kl": 0.8146014213562012,
+ "delta_nll": 0.19178855419158936,
+ "max_kl": 0.8146014213562012,
+ "mean_kl": 0.1373177170753479,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8999999761581421
+ },
+ {
+ "candidate_nll": 1.3737043142318726,
+ "cvar95_kl": 4.832159519195557,
+ "delta_nll": 0.33441925048828125,
+ "max_kl": 11.05977725982666,
+ "mean_kl": 0.4818475842475891,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8301886916160583
+ },
+ {
+ "candidate_nll": 1.126483678817749,
+ "cvar95_kl": 1.8371307849884033,
+ "delta_nll": 0.3007913827896118,
+ "max_kl": 2.0717790126800537,
+ "mean_kl": 0.2798572778701782,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8736842274665833
+ },
+ {
+ "candidate_nll": 1.9755451679229736,
+ "cvar95_kl": 3.758648633956909,
+ "delta_nll": 0.9993449449539185,
+ "max_kl": 4.884922981262207,
+ "mean_kl": 0.8656911253929138,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6187845468521118
+ },
+ {
+ "candidate_nll": 1.431240200996399,
+ "cvar95_kl": 2.722851276397705,
+ "delta_nll": 0.2744004726409912,
+ "max_kl": 3.8837664127349854,
+ "mean_kl": 0.2969914376735687,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "candidate_nll": 1.0108853578567505,
+ "cvar95_kl": 2.0080268383026123,
+ "delta_nll": 0.17740321159362793,
+ "max_kl": 2.1898462772369385,
+ "mean_kl": 0.28690892457962036,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "candidate_nll": 1.3571714162826538,
+ "cvar95_kl": 2.899691581726074,
+ "delta_nll": 0.5258879661560059,
+ "max_kl": 3.168577194213867,
+ "mean_kl": 0.4658867418766022,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7307692170143127
+ },
+ {
+ "candidate_nll": 1.664520502090454,
+ "cvar95_kl": 4.47452974319458,
+ "delta_nll": 0.7946504354476929,
+ "max_kl": 5.708219051361084,
+ "mean_kl": 0.838574230670929,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6992481350898743
+ }
+ ],
+ "row_mse": [
+ {
+ "candidate_nll": 1.5904957056045532,
+ "cvar95_kl": 2.1311771869659424,
+ "delta_nll": 0.37813568115234375,
+ "max_kl": 2.1311771869659424,
+ "mean_kl": 0.509127140045166,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.75
+ },
+ {
+ "candidate_nll": 1.5646946430206299,
+ "cvar95_kl": 2.8863818645477295,
+ "delta_nll": 0.5254095792770386,
+ "max_kl": 4.380407333374023,
+ "mean_kl": 0.5772380232810974,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8301886916160583
+ },
+ {
+ "candidate_nll": 1.6071884632110596,
+ "cvar95_kl": 5.046751976013184,
+ "delta_nll": 0.7814961671829224,
+ "max_kl": 5.6158576011657715,
+ "mean_kl": 0.9370073676109314,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.6842105388641357
+ },
+ {
+ "candidate_nll": 2.3376240730285645,
+ "cvar95_kl": 4.687803745269775,
+ "delta_nll": 1.3614238500595093,
+ "max_kl": 7.450765132904053,
+ "mean_kl": 1.2179455757141113,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.580110490322113
+ },
+ {
+ "candidate_nll": 1.9546620845794678,
+ "cvar95_kl": 3.6711325645446777,
+ "delta_nll": 0.7978223562240601,
+ "max_kl": 3.788031578063965,
+ "mean_kl": 0.777239978313446,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "candidate_nll": 1.1692057847976685,
+ "cvar95_kl": 2.32446026802063,
+ "delta_nll": 0.3357236385345459,
+ "max_kl": 2.606278896331787,
+ "mean_kl": 0.49499958753585815,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "candidate_nll": 1.8137105703353882,
+ "cvar95_kl": 4.329058647155762,
+ "delta_nll": 0.9824271202087402,
+ "max_kl": 6.58737850189209,
+ "mean_kl": 0.9062637686729431,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6794871687889099
+ },
+ {
+ "candidate_nll": 1.9694353342056274,
+ "cvar95_kl": 4.327456951141357,
+ "delta_nll": 1.0995652675628662,
+ "max_kl": 5.218027591705322,
+ "mean_kl": 1.1494661569595337,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5338345766067505
+ }
+ ],
+ "signed_taylor_next_int4": [
+ {
+ "candidate_nll": 1.4656673669815063,
+ "cvar95_kl": 1.8164697885513306,
+ "delta_nll": 0.2533073425292969,
+ "max_kl": 1.8164697885513306,
+ "mean_kl": 0.3949037194252014,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.75
+ },
+ {
+ "candidate_nll": 1.751088261604309,
+ "cvar95_kl": 4.868865966796875,
+ "delta_nll": 0.7118031978607178,
+ "max_kl": 8.179862976074219,
+ "mean_kl": 0.7689898014068604,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.7547169923782349
+ },
+ {
+ "candidate_nll": 1.4732908010482788,
+ "cvar95_kl": 3.475843906402588,
+ "delta_nll": 0.6475985050201416,
+ "max_kl": 4.466429710388184,
+ "mean_kl": 0.7432272434234619,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.7157894968986511
+ },
+ {
+ "candidate_nll": 2.456876516342163,
+ "cvar95_kl": 5.24741268157959,
+ "delta_nll": 1.480676293373108,
+ "max_kl": 6.654348850250244,
+ "mean_kl": 1.4033595323562622,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.5082873106002808
+ },
+ {
+ "candidate_nll": 1.7980637550354004,
+ "cvar95_kl": 4.301302909851074,
+ "delta_nll": 0.6412240266799927,
+ "max_kl": 4.708497047424316,
+ "mean_kl": 0.7313520312309265,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7105262875556946
+ },
+ {
+ "candidate_nll": 1.3666024208068848,
+ "cvar95_kl": 4.675906658172607,
+ "delta_nll": 0.5331202745437622,
+ "max_kl": 5.054469585418701,
+ "mean_kl": 0.7325137257575989,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.75
+ },
+ {
+ "candidate_nll": 1.8566772937774658,
+ "cvar95_kl": 4.453776836395264,
+ "delta_nll": 1.0253938436508179,
+ "max_kl": 6.199273586273193,
+ "mean_kl": 1.0098174810409546,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6153846383094788
+ },
+ {
+ "candidate_nll": 2.0860064029693604,
+ "cvar95_kl": 4.075047969818115,
+ "delta_nll": 1.2161363363265991,
+ "max_kl": 5.456568717956543,
+ "mean_kl": 1.2049511671066284,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.49624061584472656
+ }
+ ],
+ "target_diagonal_fisher_difference_int4": [
+ {
+ "candidate_nll": 1.48332679271698,
+ "cvar95_kl": 1.2558786869049072,
+ "delta_nll": 0.2709667682647705,
+ "max_kl": 1.2558786869049072,
+ "mean_kl": 0.14935438334941864,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8999999761581421
+ },
+ {
+ "candidate_nll": 1.478781819343567,
+ "cvar95_kl": 5.37181282043457,
+ "delta_nll": 0.4394967555999756,
+ "max_kl": 11.827005386352539,
+ "mean_kl": 0.624213695526123,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "candidate_nll": 1.218677282333374,
+ "cvar95_kl": 2.0302774906158447,
+ "delta_nll": 0.3929849863052368,
+ "max_kl": 3.6801576614379883,
+ "mean_kl": 0.32717952132225037,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.821052610874176
+ },
+ {
+ "candidate_nll": 2.026965618133545,
+ "cvar95_kl": 3.6853604316711426,
+ "delta_nll": 1.0507653951644897,
+ "max_kl": 5.025235176086426,
+ "mean_kl": 0.8616735935211182,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6243094205856323
+ },
+ {
+ "candidate_nll": 1.466866135597229,
+ "cvar95_kl": 1.346226453781128,
+ "delta_nll": 0.3100264072418213,
+ "max_kl": 1.4148379564285278,
+ "mean_kl": 0.22707204520702362,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.8157894611358643
+ },
+ {
+ "candidate_nll": 1.1380162239074707,
+ "cvar95_kl": 2.5143041610717773,
+ "delta_nll": 0.30453407764434814,
+ "max_kl": 3.022414445877075,
+ "mean_kl": 0.39609605073928833,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7884615659713745
+ },
+ {
+ "candidate_nll": 1.4095401763916016,
+ "cvar95_kl": 3.506941795349121,
+ "delta_nll": 0.5782567262649536,
+ "max_kl": 6.059634685516357,
+ "mean_kl": 0.5230631232261658,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "candidate_nll": 1.8449028730392456,
+ "cvar95_kl": 4.312446117401123,
+ "delta_nll": 0.9750328063964844,
+ "max_kl": 5.261858940124512,
+ "mean_kl": 0.9371547698974609,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6240601539611816
+ }
+ ],
+ "target_directional_fisher_difference_int4": [
+ {
+ "candidate_nll": 1.4116756916046143,
+ "cvar95_kl": 1.2641404867172241,
+ "delta_nll": 0.19931566715240479,
+ "max_kl": 1.2641404867172241,
+ "mean_kl": 0.1279723197221756,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.949999988079071
+ },
+ {
+ "candidate_nll": 1.3899832963943481,
+ "cvar95_kl": 5.890485763549805,
+ "delta_nll": 0.35069823265075684,
+ "max_kl": 12.8174409866333,
+ "mean_kl": 0.5794148445129395,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8301886916160583
+ },
+ {
+ "candidate_nll": 1.178953766822815,
+ "cvar95_kl": 2.3940727710723877,
+ "delta_nll": 0.35326147079467773,
+ "max_kl": 4.519840240478516,
+ "mean_kl": 0.35724082589149475,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "candidate_nll": 1.9924132823944092,
+ "cvar95_kl": 4.262154579162598,
+ "delta_nll": 1.016213059425354,
+ "max_kl": 5.376936435699463,
+ "mean_kl": 0.8973543643951416,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6464088559150696
+ },
+ {
+ "candidate_nll": 1.5304352045059204,
+ "cvar95_kl": 2.9711849689483643,
+ "delta_nll": 0.3735954761505127,
+ "max_kl": 3.4203357696533203,
+ "mean_kl": 0.3593030869960785,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "candidate_nll": 1.148579478263855,
+ "cvar95_kl": 1.7222825288772583,
+ "delta_nll": 0.3150973320007324,
+ "max_kl": 2.289232015609741,
+ "mean_kl": 0.3020252585411072,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.8461538553237915
+ },
+ {
+ "candidate_nll": 1.4464792013168335,
+ "cvar95_kl": 3.34493350982666,
+ "delta_nll": 0.6151957511901855,
+ "max_kl": 3.576073169708252,
+ "mean_kl": 0.5164933204650879,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "candidate_nll": 1.8742324113845825,
+ "cvar95_kl": 4.967878818511963,
+ "delta_nll": 1.0043623447418213,
+ "max_kl": 5.710936069488525,
+ "mean_kl": 0.9683414697647095,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6766917109489441
+ }
+ ],
+ "uniform_int4": [
+ {
+ "candidate_nll": 3.7098286151885986,
+ "cvar95_kl": 6.306801795959473,
+ "delta_nll": 2.4974684715270996,
+ "max_kl": 6.306801795959473,
+ "mean_kl": 3.013427257537842,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.25
+ },
+ {
+ "candidate_nll": 3.8865065574645996,
+ "cvar95_kl": 7.112916469573975,
+ "delta_nll": 2.8472213745117188,
+ "max_kl": 7.502933979034424,
+ "mean_kl": 2.8568546772003174,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.4150943458080292
+ },
+ {
+ "candidate_nll": 3.9656083583831787,
+ "cvar95_kl": 8.55384635925293,
+ "delta_nll": 3.139915943145752,
+ "max_kl": 10.474206924438477,
+ "mean_kl": 3.21103835105896,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.34736841917037964
+ },
+ {
+ "candidate_nll": 3.8754353523254395,
+ "cvar95_kl": 7.624777317047119,
+ "delta_nll": 2.899235248565674,
+ "max_kl": 9.205711364746094,
+ "mean_kl": 2.7684144973754883,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.33149170875549316
+ },
+ {
+ "candidate_nll": 4.044000625610352,
+ "cvar95_kl": 10.680988311767578,
+ "delta_nll": 2.8871607780456543,
+ "max_kl": 12.127657890319824,
+ "mean_kl": 3.1965503692626953,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.3947368562221527
+ },
+ {
+ "candidate_nll": 2.303598642349243,
+ "cvar95_kl": 6.4115424156188965,
+ "delta_nll": 1.4701164960861206,
+ "max_kl": 7.608405113220215,
+ "mean_kl": 2.0079994201660156,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.48076921701431274
+ },
+ {
+ "candidate_nll": 3.0226120948791504,
+ "cvar95_kl": 6.830252647399902,
+ "delta_nll": 2.191328525543213,
+ "max_kl": 8.387694358825684,
+ "mean_kl": 2.2321579456329346,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.41025641560554504
+ },
+ {
+ "candidate_nll": 4.031365394592285,
+ "cvar95_kl": 7.13095235824585,
+ "delta_nll": 3.1614952087402344,
+ "max_kl": 8.500591278076172,
+ "mean_kl": 3.082993268966675,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.30075186491012573
+ }
+ ],
+ "v02_layer0_static": [
+ {
+ "candidate_nll": 1.5017179250717163,
+ "cvar95_kl": 3.368896484375,
+ "delta_nll": 0.28935790061950684,
+ "max_kl": 3.368896484375,
+ "mean_kl": 0.5532490015029907,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.699999988079071
+ },
+ {
+ "candidate_nll": 1.6207616329193115,
+ "cvar95_kl": 3.445737600326538,
+ "delta_nll": 0.5814765691757202,
+ "max_kl": 4.194878101348877,
+ "mean_kl": 0.663141667842865,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8301886916160583
+ },
+ {
+ "candidate_nll": 1.4638469219207764,
+ "cvar95_kl": 3.6765236854553223,
+ "delta_nll": 0.6381546258926392,
+ "max_kl": 5.483456134796143,
+ "mean_kl": 0.8128743171691895,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.6315789222717285
+ },
+ {
+ "candidate_nll": 2.3980424404144287,
+ "cvar95_kl": 5.337082386016846,
+ "delta_nll": 1.4218422174453735,
+ "max_kl": 7.964560508728027,
+ "mean_kl": 1.2696040868759155,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.541436493396759
+ },
+ {
+ "candidate_nll": 2.086608409881592,
+ "cvar95_kl": 5.125461578369141,
+ "delta_nll": 0.9297686815261841,
+ "max_kl": 5.5240960121154785,
+ "mean_kl": 0.8417227268218994,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.6842105388641357
+ },
+ {
+ "candidate_nll": 1.1742287874221802,
+ "cvar95_kl": 3.251368761062622,
+ "delta_nll": 0.3407466411590576,
+ "max_kl": 3.956939935684204,
+ "mean_kl": 0.624423086643219,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7307692170143127
+ },
+ {
+ "candidate_nll": 2.067009449005127,
+ "cvar95_kl": 6.265845775604248,
+ "delta_nll": 1.235725998878479,
+ "max_kl": 7.339381694793701,
+ "mean_kl": 1.1527493000030518,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6410256624221802
+ },
+ {
+ "candidate_nll": 2.2253663539886475,
+ "cvar95_kl": 5.143394947052002,
+ "delta_nll": 1.3554962873458862,
+ "max_kl": 5.984044075012207,
+ "mean_kl": 1.3798127174377441,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5413534045219421
+ }
+ ]
+ },
+ "prerequisite_artifacts": {},
+ "primary": "rank_fusion_l050_target_fisher_adaptive_mse",
+ "repository": {
+ "commit": "c2ad68b22433b1b077df5aafaacc667e305b2294",
+ "end": {
+ "commit": "c2ad68b22433b1b077df5aafaacc667e305b2294",
+ "status": [],
+ "worktree_clean": true
+ },
+ "stable_commit": true,
+ "start": {
+ "commit": "c2ad68b22433b1b077df5aafaacc667e305b2294",
+ "status": [],
+ "worktree_clean": true
+ },
+ "status": [],
+ "worktree_clean": true
+ },
+ "schema_version": 1,
+ "selector_artifacts": {
+ "hrr": {
+ "canonical_evidence_sha256": "7970961fd88b522998189ad64f26b333aed9c88ff5f653de5449fd9e01d8cbc8",
+ "path": "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant-adoption\\artifacts\\experiment006-hrr-selector-8task-c2ad68b.json",
+ "sha256": "d0c4267095ee3f5068627b189a1fd9f58cb02f6e25672d9b89dd0990e5b09330"
+ },
+ "loss_sensitivity": {
+ "canonical_evidence_sha256": "bff4e33253990b8115e1f35e74516c4975c2fe4aac5066475afe968eb8a64609",
+ "path": "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant-adoption\\artifacts\\experiment006-loss-selector-8task-c2ad68b.json",
+ "sha256": "95c16656edb32efbc985f2fea59e229634dd558f4f4bf04819b8efc37783a1d6"
+ }
+ },
+ "source_files": {
+ "paths": [
+ "scripts/pilot_evaluate_hrr.py",
+ "src/recurquant/cache.py",
+ "src/recurquant/evaluation.py",
+ "src/recurquant/evidence.py",
+ "src/recurquant/metrics.py",
+ "src/recurquant/mixed_quantization.py",
+ "src/recurquant/packed_cache.py",
+ "src/recurquant/public_data.py",
+ "src/recurquant/quantization.py",
+ "src/recurquant/qwen35.py",
+ "src/recurquant/row_policy.py"
+ ],
+ "sha256_end": {
+ "scripts/pilot_evaluate_hrr.py": "f37c9ddd2b252ed4a40109d0ba9361db1fad6d5ed33b3106970af4f0d716ca4d",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "1c4bd0d45fe7f07ba6c842e07e4733e69c3e2abe52c3e8a129cba3299c08f9da",
+ "src/recurquant/packed_cache.py": "754c40a7a1017216547455bed02a9943814492ef2e17f6cf25014b0ab4fe74f2",
+ "src/recurquant/public_data.py": "82cb2970900204d7278d656709ded3f80a3b1ff8fd3ffeb270816b5f9ddc3feb",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/qwen35.py": "6fd942f5b2974529bb5c1ed9a91de0fa8da28f56eb51464573efb11cb0b7c4e3",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708"
+ },
+ "sha256_start": {
+ "scripts/pilot_evaluate_hrr.py": "f37c9ddd2b252ed4a40109d0ba9361db1fad6d5ed33b3106970af4f0d716ca4d",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "1c4bd0d45fe7f07ba6c842e07e4733e69c3e2abe52c3e8a129cba3299c08f9da",
+ "src/recurquant/packed_cache.py": "754c40a7a1017216547455bed02a9943814492ef2e17f6cf25014b0ab4fe74f2",
+ "src/recurquant/public_data.py": "82cb2970900204d7278d656709ded3f80a3b1ff8fd3ffeb270816b5f9ddc3feb",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/qwen35.py": "6fd942f5b2974529bb5c1ed9a91de0fa8da28f56eb51464573efb11cb0b7c4e3",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708"
+ },
+ "stable": true
+ },
+ "storage": {
+ "candidates": {
+ "adaptive_mse_hrr_h1_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "delta_direction_magnitude_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "hrr_h1": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "hrr_h32": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "random_rows_s1101": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "rank_fusion_l025_target_fisher_adaptive_mse": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "rank_fusion_l050_target_fisher_adaptive_mse": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "rank_fusion_l075_target_fisher_adaptive_mse": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "row_mse": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "signed_taylor_next_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "target_directional_fisher_difference_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "uniform_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "largest_materialized_state_bytes": 1048576,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2433024,
+ "resident_compression_ratio": 7.757575757575758
+ },
+ "v02_layer0_static": {
+ "full_precision_equivalent_bytes": 18874368,
+ "largest_materialized_state_bytes": 1048576,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252
+ }
+ },
+ "fp32_reference_recurrent_state_bytes": 18874368
+ }
+ },
+ "schema_version": 1
+}
diff --git a/research/CLAIM_BOUNDARY.md b/research/CLAIM_BOUNDARY.md
index 2e1e9f5..90e65f3 100644
--- a/research/CLAIM_BOUNDARY.md
+++ b/research/CLAIM_BOUNDARY.md
@@ -41,12 +41,17 @@ same-calibration adaptive-MSE postmortem was promising but achieved only a
selector, with a paired 95% interval crossing zero. The ranked `[8, 16)`
holdout remained unopened.
-Experiment 006 currently defines and implements deterministic rank fusion of
-offline target-directional sensitivity and causal per-write reconstruction
-benefit at the same exact byte budget. It has no GPU quality result at this
-checkpoint, and its heldout path remains disabled until a candidate-aligned
-numeric and packing prerequisite passes. It supports an experiment, not an
-improvement, novelty, deployment, or breakthrough claim.
+Experiment 006 implemented deterministic rank fusion of offline
+target-directional sensitivity and causal per-write reconstruction benefit at
+the same exact byte budget. Its authenticated same-calibration GPU diagnostic
+rejected the frozen equal-rank primary: macro excess NLL was `0.514873` versus
+`0.493302` for plain adaptive MSE, and the paired interval crossed zero. Its
+3.90% point improvement over the strongest static method was below the frozen
+20% requirement, again with an interval crossing zero. Better predeclared
+ablations remain exploratory and cannot be relabelled as the primary. The
+candidate stopped before its numerical prerequisite and the ranked `[8, 16)`
+holdout remained unopened. Experiment 006 supports no improvement,
+generalization, novelty, deployment, or breakthrough claim.
## Claims prohibited without new evidence
diff --git a/research/EXPERIMENT_006_RESULT.md b/research/EXPERIMENT_006_RESULT.md
new file mode 100644
index 0000000..d1988d4
--- /dev/null
+++ b/research/EXPERIMENT_006_RESULT.md
@@ -0,0 +1,113 @@
+# Experiment 006 result: equal-rank fusion rejected before holdout
+
+> **Status: stopped on the inspected selector partition; holdout unopened.**
+>
+> The frozen `lambda = 0.5` primary did not beat either of its two strongest
+> component endpoints with a positive paired confidence bound. It was worse
+> than plain adaptive MSE by point estimate, improved on the strongest static
+> method by only 3.90%, and its intervals against both methods crossed zero.
+> The predeclared `0.25` and `0.75` ablations were better, but the protocol
+> forbids promoting an ablation after seeing results. Experiment 006 therefore
+> stops without opening ranked MBPP window `[8, 16)` and without an
+> improvement, generalization, novelty, systems, or breakthrough claim.
+
+Date recorded: 2026-07-23
+
+## Authenticated diagnostic
+
+The quality run used the same eight MBPP calibration tasks that produced the
+selector inputs. It is a candidate-rejection diagnostic, not heldout evidence.
+
+| Field | Value |
+| --- | --- |
+| Artifact | `evidence/experiment006-rank-fusion-same-calibration-8task-c2ad68b.json` |
+| Artifact kind | `recurquant_rank_fusion_same_calibration_quality_diagnostic` |
+| Clean implementation commit | `c2ad68b22433b1b077df5aafaacc667e305b2294` |
+| File SHA-256 | `9824f4db5a3b8eb7de392537768e658ba7d921cc52c1ba7714d8e8433c85dbbf` |
+| Canonical evidence SHA-256 | `94699c298767d5d1f1e9f2ca61f766fe541871b90bb2f054c8b2aef9bd292827` |
+| Created at | `2026-07-22T18:30:13.878345+00:00` |
+| Model | `Qwen/Qwen3.5-0.8B-Base` at `dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68` |
+| Device and dtype | CUDA, bfloat16 |
+| Task IDs | `945`, `794`, `657`, `702`, `651`, `720`, `903`, `918` |
+| Aligned scored tokens | 642 |
+| Bootstrap | 10,000 paired resamples, seed 2339 |
+| Repository clean and stable | true |
+| Evidence verification | valid, with no verifier errors |
+
+Every mixed candidate physically stored 1,976 INT8-promoted rows in exactly
+2,564,096 resident recurrent-state bytes: 2,485,760 payload bytes, 73,728
+scale bytes, and 4,608 mask bytes. This verifies equal storage for the quality
+diagnostic; it is not a latency or whole-model-memory result.
+
+## Frozen-primary result
+
+The primary was fixed before this run as equal ordinal-rank fusion between:
+
+1. offline target-directional-Fisher row sensitivity; and
+2. causal per-write aligned INT4-to-INT8 reconstruction-MSE benefit.
+
+Within each layer, the calibrated exact-byte plan fixed the promotion quota.
+Only the promoted row identities could change.
+
+| Method | Role | Macro excess NLL | Mean KL | CVaR95 KL | Top-1 agreement |
+| --- | --- | ---: | ---: | ---: | ---: |
+| `rank_fusion_l050_target_fisher_adaptive_mse` | frozen primary | `0.5148733034729958` | `0.47354681603610516` | `3.0126770064234734` | `0.7846591621637344` |
+| `adaptive_mse_target_directional_fisher_quota` | dynamic endpoint | `0.4933023080229759` | `0.4791950900107622` | `2.902877390384674` | `0.7851893156766891` |
+| `target_directional_fisher_difference_int4` | strongest static endpoint | `0.5357813686132431` | `0.5205607209354639` | `3.361491322517395` | `0.7908198460936546` |
+| `adaptive_mse_hrr_h1_quota` | H1-quota adaptive control | `0.7794309854507446` | `0.7939629852771759` | `3.3163906931877136` | `0.6900708600878716` |
+
+Comparator-minus-primary paired contrasts were:
+
+| Comparator | Mean improvement | Paired 95% interval | Interpretation |
+| --- | ---: | ---: | --- |
+| Plain adaptive target-Fisher quota | `-0.021570995450019836` | `[-0.09485602006316185, 0.04348200932145117]` | primary point estimate is worse; interval crosses zero |
+| Static target-directional Fisher | `0.020908065140247345` | `[-0.05002020299434662, 0.12526661902666092]` | primary point estimate is better; interval crosses zero |
+| H1-quota adaptive control | `0.26455768197774887` | `[0.09466566145420074, 0.4699110761284828]` | primary is better than this weaker control |
+
+Against the strongest static method, the primary's descriptive excess-NLL
+reduction was only 3.90%, below the frozen 20% threshold. Against plain
+adaptive MSE, excess NLL increased by 4.37%. Conditions requiring a positive
+paired lower bound against the strongest static and strongest individual
+adaptive methods therefore would fail even before the unavailable
+candidate-aligned numerical gate is considered.
+
+## Predeclared ablations
+
+The protocol required both intermediate weights to be reported but prohibited
+either from replacing the primary after results were visible.
+
+| Method | Macro excess NLL | Relative to strongest static | Relative to plain adaptive |
+| --- | ---: | ---: | ---: |
+| `rank_fusion_l025_target_fisher_adaptive_mse` | `0.45971328765153885` | 14.20% lower | 6.81% lower |
+| `rank_fusion_l075_target_fisher_adaptive_mse` | `0.45596349984407425` | 14.90% lower | 7.57% lower |
+
+Both ablations had lower excess NLL than the frozen primary on these same
+eight tasks. In ablation-minus-primary terms, the paired evidence was strongest
+for `lambda = 0.25`: its interval was
+`[-0.1031366042792797, -0.01751011610031128]`, entirely below zero. The
+`lambda = 0.75` interval was `[-0.11918644607067108,
+0.010958641767501831]` and crossed zero.
+
+These results show that equal ordinal rank mixing was not the best point on the
+inspected data. They do not authorize selecting `0.25`, `0.75`, or another
+weight and calling it prespecified. Any weight-based successor would need a new
+protocol and new development data.
+
+## Decision and next hypothesis
+
+Experiment 006 is rejected as a route to the existing holdout:
+
+- the frozen primary did not dominate either strong endpoint;
+- the required candidate-aligned numerical/packing gate was not implemented;
+- the ranked `[8, 16)` window was never tokenized or loaded; and
+- the ablation pattern cannot rescue the primary.
+
+The result also localizes the remaining weakness. Instantaneous reconstruction
+MSE measures which rows are hard to store, while the static score measures
+average calibrated loss sensitivity. Neither directly measures which state
+rows the next recurrent read will use. A successor may test a causal predictor
+of row read energy while retaining the same frozen per-layer quotas and exact
+resident bytes. That is a new experiment, not a repair or relabeling of
+Experiment 006.
+
+Experiment 006 makes no breakthrough claim.
diff --git a/research/STATUS.md b/research/STATUS.md
index cbfeb89..af8190d 100644
--- a/research/STATUS.md
+++ b/research/STATUS.md
@@ -10,15 +10,20 @@ failure, authenticated artifact, and same-calibration postmortem are recorded
in [`EXPERIMENT_005_RESULT.md`](EXPERIMENT_005_RESULT.md). The ranked MBPP
calibration window `[8, 16)` was not opened.
-Experiment 006 freezes one successor hypothesis: within the same exact
-per-layer quotas, combine the offline target-directional sensitivity rank with
-the causal per-write INT4-to-INT8 reconstruction-benefit rank. Equal rank
-fusion (`lambda = 0.5`) is the immutable primary; `0.25` and `0.75` are
-report-only ablations. The implementation and protocol are complete for a
-same-calibration diagnostic, but no rank-fusion GPU result or heldout result
-exists at this checkpoint. The holdout remains fail-closed pending a passing
-candidate-aligned numerical/packing gate. See
-[`EXPERIMENT_006_RANK_FUSION_PROTOCOL_DRAFT.md`](EXPERIMENT_006_RANK_FUSION_PROTOCOL_DRAFT.md).
+Experiment 006 tested deterministic ordinal-rank fusion of offline
+target-directional sensitivity and causal per-write reconstruction benefit at
+the same exact byte budget. On the already inspected eight-task selector
+partition, its frozen `lambda = 0.5` primary had macro excess NLL `0.514873`,
+worse by point estimate than plain adaptive MSE at `0.493302`; the paired 95%
+interval crossed zero. It improved only 3.90% over the strongest static method,
+also with an interval crossing zero. The better `0.25` and `0.75` ablations
+cannot replace the frozen primary. The candidate was therefore stopped before
+its numerical prerequisite or holdout. The ranked `[8, 16)` window remains
+unopened. See [`EXPERIMENT_006_RESULT.md`](EXPERIMENT_006_RESULT.md).
+
+The next candidate will test a causal estimate of recurrent-state row read
+energy rather than another post-result fusion weight. It remains a hypothesis;
+no Experiment 007 quality result exists at this checkpoint.
No v0.3 improvement, novelty, speed, or breakthrough claim is supported.
From d7a055b3a517a64bddf05ec8bc6584e8bb601d9e Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 02:43:31 +0800
Subject: [PATCH 07/22] research: freeze CQER-32 development protocol
---
research/EXPERIMENT_007_CQER_PROTOCOL.md | 304 +++++++++++++++++++++++
1 file changed, 304 insertions(+)
create mode 100644 research/EXPERIMENT_007_CQER_PROTOCOL.md
diff --git a/research/EXPERIMENT_007_CQER_PROTOCOL.md b/research/EXPERIMENT_007_CQER_PROTOCOL.md
new file mode 100644
index 0000000..3cd5032
--- /dev/null
+++ b/research/EXPERIMENT_007_CQER_PROTOCOL.md
@@ -0,0 +1,304 @@
+# Experiment 007: CQER-32 protocol
+
+> **Status: development protocol frozen before the first quality run.**
+>
+> CQER-32 means **Causal Query-weighted Error Reduction with a 32-token
+> half-life**. Its primary formula, normalization, EMA decay, quotas, task
+> partition, metrics, controls, and advancement rule are fixed below. The
+> ranked MBPP window `[8, 16)` remains unopened. This protocol makes no
+> improvement, novelty, speed, or breakthrough claim.
+
+Date opened: 2026-07-23
+
+## Why Experiment 006 stopped
+
+Experiment 006 combined a static loss-sensitivity rank with an instantaneous
+reconstruction-error rank. On the already inspected selector partition, its
+frozen equal-rank primary had macro excess NLL `0.514873`, compared with
+`0.493302` for plain adaptive MSE and `0.535781` for the strongest static
+method. Its paired intervals against both endpoints crossed zero, and its
+3.90% point improvement over the strongest static method was below the frozen
+20% threshold. Better intermediate-weight ablations were visible only after
+the result and cannot replace the primary.
+
+That result suggests a missing variable rather than a missing fusion weight.
+Reconstruction MSE estimates how much a state row is damaged by low-bit
+storage. It does not estimate how strongly the model will read that row.
+
+## Research question
+
+At the same frozen per-layer INT8 promotion quotas, does multiplying each row's
+causal INT4-to-INT8 reconstruction benefit by a causal estimate of normalized
+query energy reduce recurrent-state quantization error at model outputs?
+
+The candidate is motivated by the Gated DeltaNet read. Ignoring cross-row
+error covariance, a row's contribution to expected squared read error scales
+with both:
+
+1. the row's state reconstruction error; and
+2. the squared query coordinate used to read that row.
+
+CQER-32 tests this factorization directly. The ignored covariance and the use
+of past query energy to predict future energy are explicit approximations.
+
+## Frozen primary
+
+The artifact method name is:
+
+```text
+query_ema32_weighted_mse_target_fisher_quota
+```
+
+The short research name is `CQER-32`.
+
+### Query normalization
+
+For query tensor `q` after Qwen3.5's convolution, head reshape, and value-head
+repetition, detach and convert it to FP32, then normalize every token and head
+with the pinned Gated DeltaNet formula:
+
+```text
+q_hat = q / sqrt(sum(q^2, key_row) + 1e-6)
+energy = q_hat^2
+```
+
+The candidate supports only ordinary batch-one prefill, cached multi-token
+continuation, and single-token decode. Packed sequences with `cu_seqlens` fail
+closed in this version.
+
+### Causal query-energy EMA
+
+The half-life is frozen at 32 query tokens:
+
+```text
+rho = 2^(-1 / 32)
+```
+
+For each model layer, value head, and key row:
+
+```text
+EMA_t = rho * EMA_(t-1) + (1 - rho) * energy_t
+```
+
+Before the first token and after cache reset:
+
+```text
+EMA_0 = 1 / key_row_count
+```
+
+For an `n`-token prefill or continuation chunk, the implementation must be
+numerically equivalent to folding tokens in chronological order:
+
+```text
+EMA_new = rho^n * EMA_old
+ + (1 - rho) * sum_j rho^(n-1-j) * energy_j
+```
+
+No future query may contribute. The current call's queries are observed only
+after its Gated DeltaNet kernel succeeds. They select the recurrent state that
+is stored after that call and can affect only later model outputs; they cannot
+change the output already produced by the same kernel call.
+
+### Per-write reconstruction benefit
+
+For incoming recurrent state `S` and each `[head, key_row]`, compute aligned
+INT4 and INT8 endpoints with the same group geometry, scale type, nearest
+rounding, and seed:
+
+```text
+benefit = mean_v((Q4(S) - S)^2) - mean_v((Q8(S) - S)^2)
+```
+
+The primary score is:
+
+```text
+CQER_score = EMA_new * benefit
+```
+
+Within every layer, select the fixed quota with the largest score. Exact score
+ties preserve canonical flattened `[head, key_row]` order. Scores, sorting,
+and selection run without autograd.
+
+### Frozen layer quotas
+
+CQER-32 does not search a new layer allocation. It inherits the authenticated
+target-directional-Fisher per-layer quota vector from the inspected selector
+partition. Across the 18 recurrent layers the quotas sum to exactly 1,976
+INT8 rows. Every other row is INT4.
+
+The quota vector is fixed; only row identities may change at a state write.
+This isolates the within-layer read-importance hypothesis.
+
+## Stage-and-consume causality contract
+
+The observer and cache use one fail-closed record per layer write:
+
+1. the observer identifies the exact cache object passed to the Qwen3.5 layer;
+2. the Gated DeltaNet kernel receives the post-convolution query;
+3. only after that kernel succeeds, the observer stages the query observation;
+4. the immediately following recurrent-state write consumes it once;
+5. packing success commits the new EMA and consumes the record; and
+6. any exception clears an unconsumed record.
+
+Missing, duplicate, stale, wrong-layer, wrong-update, wrong-shape,
+wrong-device, batch-greater-than-one, or non-finite observations raise. A
+reference, static, adaptive-MSE, or other unregistered cache passes through
+without receiving observations. A model path that bypasses the wrapped kernels
+cannot silently fall back to plain MSE.
+
+The observer restores every wrapped model callable on context exit, including
+exceptional exits. Multiple registered CQER caches remain independent and are
+dispatched by object identity, not by class alone.
+
+## Storage contract
+
+The packed recurrent-state representation remains identical in byte budget to
+the other exact-quota mixed methods:
+
+| Component | Bytes |
+| --- | ---: |
+| INT4/INT8 payloads | 2,485,760 |
+| FP16 group scales | 73,728 |
+| precision masks | 4,608 |
+| **packed recurrent-state resident bytes** | **2,564,096** |
+
+CQER-32 also stores one persistent FP32 `[heads, key_rows]` EMA per recurrent
+layer. For the pinned 18-layer, 16-head, 128-row geometry:
+
+```text
+18 * 16 * 128 * 4 = 147,456 bytes
+```
+
+Therefore the selector-aware total is:
+
+```text
+2,564,096 + 147,456 = 2,711,552 bytes
+```
+
+Artifacts and documentation must report all three fields separately:
+
+```text
+packed_recurrent_state_bytes
+selector_auxiliary_bytes
+resident_bytes_including_selector
+```
+
+The temporary query, endpoint, score, and sort workspaces are not resident
+cache bytes and must not be hidden if peak-memory measurements are later made.
+CQER-32 is not equal-total-memory to a method that has no selector state.
+
+## Frozen development diagnostic
+
+The first run may use only the already inspected MBPP selector-task prefix:
+
+```text
+phase: calibration
+ranked offset: 0
+task count: 8
+task IDs: 945, 794, 657, 702, 651, 720, 903, 918
+```
+
+This data already influenced the target-Fisher quotas and prior hypotheses. A
+result on it can reject an implementation or candidate but cannot establish
+generalization.
+
+The primary metric remains task-macro excess next-token NLL relative to FP32
+recurrent state on aligned code transitions after a quantized state has been
+stored. The prompt-to-first-code-token prediction is excluded. Also report
+mean KL, worst-token KL CVaR95, top-1 agreement, task/token counts, all per-task
+rows, and 10,000 paired bootstrap contrasts with seed 2339.
+
+Required controls are:
+
+```text
+adaptive_mse_target_directional_fisher_quota
+target_directional_fisher_difference_int4
+adaptive_mse_hrr_h1_quota
+hrr_h1
+v02_layer0_static
+uniform_int4
+```
+
+The authenticated Experiment 006 rank-fusion methods may be reported for
+context but are not advancement comparators.
+
+### Development advancement rule
+
+CQER-32 advances to construction of its independent numeric/packing gate only
+if all conditions hold on the inspected eight-task diagnostic:
+
+1. every task and layer has the exact fixed promotion count;
+2. packed recurrent-state bytes equal 2,564,096 and selector bytes equal
+ 147,456 after every completed task;
+3. macro excess NLL is lower than both plain adaptive target-Fisher-quota MSE
+ and static target-directional Fisher;
+4. relative excess-NLL reduction versus plain adaptive MSE is at least 5%;
+5. relative excess-NLL reduction versus the strongest static method is at
+ least 20%;
+6. top-1 agreement is no more than `0.01` below the better of those two
+ comparators;
+7. CVaR95 KL is no more than `0.10` above the lower of those two comparators;
+8. every value and model output is finite;
+9. every staged observation is consumed exactly once; and
+10. code, model, dataset, selector, source, and artifact hashes verify from one
+ clean stable commit.
+
+This is a development filter, not a heldout quality pass. A paired confidence
+interval is reported but is not used to tune `rho`, the formula, or quotas.
+Failure stops this frozen candidate. Changing the half-life, adding a static
+term, or changing the quota is a new experiment.
+
+## Candidate-aligned prerequisite before holdout
+
+If the development rule passes, a separately committed verifier must replay
+the selector independently in CPU FP64 from authenticated source tensors. It
+must cover prefill, cached chunk, and recurrent decode and verify:
+
+- exact normalized query energies;
+- exact chronological EMA recurrence and the chunk/step equivalence bound;
+- aligned Q4 and Q8 row errors;
+- CQER scores;
+- stable ranks and masks;
+- promotion counts and per-layer quotas;
+- packed payload, scale, and mask bytes; and
+- selector auxiliary bytes and reset/offload/prefetch behavior.
+
+Every checked primitive must meet a predeclared forward-error bound, and every
+rank, mask, quota, logical-array hash, and physical-byte hash must match
+exactly. There is no aggregate pass percentage. One mismatch fails closed.
+
+The verifier, raw sidecar schema, sampled coordinates, arithmetic bounds, and
+pass conjunction must be frozen in a clean commit before the `[8, 16)` window
+is tokenized or loaded.
+
+## Holdout and claim boundary
+
+The ranked MBPP calibration window `[8, 16)` remains reserved. CQER-32 cannot
+open it unless the development rule and independent candidate-aligned
+prerequisite both pass from committed, authenticated artifacts.
+
+Even a pass on that eight-task window would establish only a scoped signal for
+the pinned model, cache geometry, and teacher-forced code metric. A defensible
+research contribution would still require a larger preregistered development
+and test split, natural text, retrieval, long-context and free-generation
+tasks, multiple checkpoints and recurrent architectures, closest-method
+comparisons, systems kernels and benchmarks, and independent reproduction.
+
+Query-aware mixed precision, EMA predictors, reconstruction-error selection,
+and recurrent-state quantization all have prior art. The narrow candidate under
+test is their exact causal combination for physical Gated DeltaNet recurrent
+state rows under fixed per-layer byte quotas. Novelty is unresolved and cannot
+be inferred from a quality result.
+
+## Decision rule
+
+- **Development rule fails:** authenticate the result, keep `[8, 16)` closed,
+ and stop CQER-32.
+- **Numeric prerequisite fails:** authenticate the failure, keep `[8, 16)`
+ closed, and stop CQER-32.
+- **Both pass:** freeze the one-time heldout evaluator before any protected
+ data access.
+- **Heldout result fails:** publish the complete negative result; do not tune
+ on the protected tasks.
+- **Heldout result passes:** advance to broader preregistered evaluation. Do
+ not use breakthrough or state-of-the-art language.
From 8623daa09f39549937ecb28076ccb8ab239ca1f0 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 03:21:37 +0800
Subject: [PATCH 08/22] research: pin CQER development identities
---
research/EXPERIMENT_007_CQER_PROTOCOL.md | 26 ++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/research/EXPERIMENT_007_CQER_PROTOCOL.md b/research/EXPERIMENT_007_CQER_PROTOCOL.md
index 3cd5032..2f9a8d9 100644
--- a/research/EXPERIMENT_007_CQER_PROTOCOL.md
+++ b/research/EXPERIMENT_007_CQER_PROTOCOL.md
@@ -129,6 +129,18 @@ INT8 rows. Every other row is INT4.
The quota vector is fixed; only row identities may change at a state write.
This isolates the within-layer read-importance hypothesis.
+The exact `(layer_index: promoted_rows)` allocation is:
+
+```text
+0:355, 1:380, 2:269, 4:179, 5:185, 6:105,
+8:80, 9:43, 10:84, 12:30, 13:62, 14:54,
+16:45, 17:27, 18:7, 20:9, 21:7, 22:55
+```
+
+The evaluator must compare against this independent vector. It must not derive
+both the candidate allocation and the expected gate allocation from the same
+selector object.
+
## Stage-and-consume causality contract
The observer and cache use one fail-closed record per layer write:
@@ -198,6 +210,20 @@ task count: 8
task IDs: 945, 794, 657, 702, 651, 720, 903, 918
```
+Before the first quality run, the exact selector evidence identities were also
+pinned to remove an ambiguity found during pre-run audit:
+
+```text
+HRR canonical evidence SHA-256:
+7970961fd88b522998189ad64f26b333aed9c88ff5f653de5449fd9e01d8cbc8
+
+loss-sensitivity canonical evidence SHA-256:
+bff4e33253990b8115e1f35e74516c4975c2fe4aac5066475afe968eb8a64609
+```
+
+This is a protocol-precision amendment, not a response to quality results: no
+Experiment 007 task had been evaluated when these identities were added.
+
This data already influenced the target-Fisher quotas and prior hypotheses. A
result on it can reject an implementation or candidate but cannot establish
generalization.
From 3a06277171684e6e6bf4aec1153c16c968fea0fe Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 03:22:08 +0800
Subject: [PATCH 09/22] feat: add CQER-32 causal query-aware cache
---
.gitignore | 1 +
scripts/pilot_evaluate_hrr.py | 668 +++++++++++++++++++--
src/recurquant/__init__.py | 8 +
src/recurquant/packed_cache.py | 484 +++++++++++++++
src/recurquant/query_energy.py | 290 +++++++++
src/recurquant/qwen35.py | 27 +
tests/test_pilot_evaluate_hrr.py | 299 +++++++++
tests/test_query_ema_mixed_packed_cache.py | 405 +++++++++++++
tests/test_query_energy.py | 365 +++++++++++
9 files changed, 2490 insertions(+), 57 deletions(-)
create mode 100644 src/recurquant/query_energy.py
create mode 100644 tests/test_query_ema_mixed_packed_cache.py
create mode 100644 tests/test_query_energy.py
diff --git a/.gitignore b/.gitignore
index 41c6035..0ef6f73 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,6 +3,7 @@ __pycache__/
*.py[cod]
*.egg-info/
.pytest_cache/
+.pytest-tmp-*/
.ruff_cache/
.coverage
htmlcov/
diff --git a/scripts/pilot_evaluate_hrr.py b/scripts/pilot_evaluate_hrr.py
index fe3379b..2ae5506 100644
--- a/scripts/pilot_evaluate_hrr.py
+++ b/scripts/pilot_evaluate_hrr.py
@@ -18,6 +18,7 @@
import subprocess
import sys
from collections.abc import Mapping, Sequence
+from contextlib import nullcontext
from dataclasses import dataclass
from datetime import UTC, datetime
from pathlib import Path
@@ -39,6 +40,7 @@
AdaptiveMixedPackedRecurrentStateCache,
MixedPackedRecurrentStateCache,
PackedRecurrentStateCache,
+ QueryEmaMixedPackedRecurrentStateCache,
RankFusedMixedPackedRecurrentStateCache,
)
from recurquant.public_data import (
@@ -49,10 +51,12 @@
mbpp_manifest_content_sha256,
mbpp_manifest_sha256,
)
+from recurquant.query_energy import Qwen35QueryEnergyObserver
from recurquant.qwen35 import (
create_qwen35_adaptive_exact_budget_cache,
create_qwen35_exact_budget_cache,
create_qwen35_packed_cache,
+ create_qwen35_query_ema_exact_budget_cache,
create_qwen35_rank_fused_exact_budget_cache,
create_qwen35_v02_mixed_cache,
)
@@ -72,6 +76,8 @@
("rank_fusion_l075_target_fisher_adaptive_mse", 0.75),
)
RANK_FUSION_PRIMARY = "rank_fusion_l050_target_fisher_adaptive_mse"
+QUERY_EMA_PRIMARY = "query_ema32_weighted_mse_target_fisher_quota"
+QUERY_EMA_HALF_LIFE = 32
LOSS_SCORE_NAMES = (
LOSS_SELECTOR_PRIMARY,
"target_directional_fisher_difference_int4",
@@ -91,8 +97,35 @@
FROZEN_HOLDOUT_LIMIT = 8
FROZEN_HRR_HORIZON = 32
FROZEN_BOOTSTRAP_SAMPLES = 10_000
+CQER_DEVELOPMENT_LIMIT = 8
+CQER_DEVELOPMENT_TASK_IDS = (945, 794, 657, 702, 651, 720, 903, 918)
+CQER_FROZEN_SELECTOR_CANONICAL_SHA256S = (
+ "7970961fd88b522998189ad64f26b333aed9c88ff5f653de5449fd9e01d8cbc8",
+ "bff4e33253990b8115e1f35e74516c4975c2fe4aac5066475afe968eb8a64609",
+)
+CQER_FROZEN_LAYER_QUOTAS = (
+ (0, 355),
+ (1, 380),
+ (2, 269),
+ (4, 179),
+ (5, 185),
+ (6, 105),
+ (8, 80),
+ (9, 43),
+ (10, 84),
+ (12, 30),
+ (13, 62),
+ (14, 54),
+ (16, 45),
+ (17, 27),
+ (18, 7),
+ (20, 9),
+ (21, 7),
+ (22, 55),
+)
TARGET_RESIDENT_BYTES = 2_564_096
MIN_RELATIVE_NLL_REDUCTION = 0.20
+CQER_MIN_RELATIVE_NLL_REDUCTION_VS_ADAPTIVE = 0.05
TOP1_DISADVANTAGE_MARGIN = 0.01
CVAR95_DISADVANTAGE_MARGIN = 0.10
MAX_PER_TASK_NLL_DISADVANTAGE = 1.0
@@ -113,6 +146,7 @@
"src/recurquant/mixed_quantization.py",
"src/recurquant/packed_cache.py",
"src/recurquant/public_data.py",
+ "src/recurquant/query_energy.py",
"src/recurquant/quantization.py",
"src/recurquant/qwen35.py",
"src/recurquant/row_policy.py",
@@ -131,20 +165,22 @@ class _TokenAccumulator:
reference_nll: list[torch.Tensor]
candidate_nll: list[torch.Tensor]
top1_agreement: list[torch.Tensor]
+ outputs_finite: list[torch.Tensor]
@classmethod
def empty(cls) -> _TokenAccumulator:
- return cls([], [], [], [])
+ return cls([], [], [], [], [])
- def append(self, values: TokenFidelity) -> None:
+ def append(self, values: TokenFidelity, *, outputs_finite: torch.Tensor) -> None:
cpu = values.to_cpu()
self.kl.append(cpu.kl.reshape(-1))
self.reference_nll.append(cpu.reference_nll.reshape(-1))
self.candidate_nll.append(cpu.candidate_nll.reshape(-1))
self.top1_agreement.append(cpu.top1_agreement.reshape(-1))
+ self.outputs_finite.append(outputs_finite.detach().to("cpu").reshape(()))
def summary(self) -> dict[str, float | int]:
- return fidelity_summary(
+ summary = fidelity_summary(
TokenFidelity(
kl=torch.cat(self.kl),
reference_nll=torch.cat(self.reference_nll),
@@ -152,6 +188,8 @@ def summary(self) -> dict[str, float | int]:
top1_agreement=torch.cat(self.top1_agreement),
)
)
+ summary["all_logits_finite"] = bool(torch.stack(self.outputs_finite).all().item())
+ return summary
def parse_args() -> argparse.Namespace:
@@ -173,6 +211,15 @@ def parse_args() -> argparse.Namespace:
"disabled until the separate Experiment 006 prerequisite is implemented."
),
)
+ parser.add_argument(
+ "--query-ema",
+ action="store_true",
+ help=(
+ "Run the frozen Experiment 007 CQER-32 same-calibration primary. "
+ "Positive offsets remain disabled until the candidate-aligned "
+ "Experiment 007 prerequisite is implemented and passes."
+ ),
+ )
parser.add_argument("--output", type=Path, required=True)
parser.add_argument("--limit", type=int)
parser.add_argument(
@@ -496,6 +543,7 @@ def validate_frozen_holdout_request(
loss_selector_present: bool,
storage_boundary_present: bool,
rank_fusion_enabled: bool = False,
+ query_ema_enabled: bool = False,
) -> None:
"""Refuse any positive-offset run outside Experiment 005's frozen request."""
@@ -506,6 +554,11 @@ def validate_frozen_holdout_request(
"Experiment 006 rank-fusion holdout remains closed until its separate "
"candidate-aligned numeric prerequisite and frozen gate are implemented"
)
+ if query_ema_enabled:
+ raise ValueError(
+ "Experiment 007 CQER-32 holdout remains closed until its development "
+ "rule and candidate-aligned numeric prerequisite pass"
+ )
if offset != FROZEN_HOLDOUT_OFFSET or limit != FROZEN_HOLDOUT_LIMIT:
raise ValueError(
"Experiment 005 heldout-calibration requires the exact ranked window "
@@ -543,6 +596,100 @@ def validate_frozen_holdout_request(
)
+def validate_cqer_development_request(
+ *,
+ enabled: bool,
+ offset: int,
+ limit: int,
+ bootstrap_samples: int,
+) -> None:
+ """Freeze Experiment 007 to the complete inspected selector partition."""
+
+ if not enabled:
+ return
+ if (
+ offset != 0
+ or limit != CQER_DEVELOPMENT_LIMIT
+ or bootstrap_samples != FROZEN_BOOTSTRAP_SAMPLES
+ ):
+ raise ValueError(
+ "Experiment 007 CQER-32 development requires offset 0, exactly 8 tasks, "
+ "and exactly 10000 bootstrap samples"
+ )
+
+
+def validate_cqer_selector_artifacts(
+ *,
+ enabled: bool,
+ selectors: Sequence[Mapping[str, Any]],
+) -> None:
+ """Require CQER selectors to be the exact preregistered evidence pair."""
+
+ if not enabled:
+ return
+ if len(selectors) != 2:
+ raise ValueError(
+ "Experiment 007 CQER-32 requires exactly two authenticated "
+ "eight-task selector artifacts"
+ )
+ kinds = tuple(selector.get("artifact_kind") for selector in selectors)
+ if kinds != (HRR_ARTIFACT_KIND, LOSS_ARTIFACT_KIND):
+ raise ValueError("Experiment 007 CQER-32 requires HRR then loss selectors")
+ token_contracts = tuple(_selector_token_contract(selector) for selector in selectors)
+ if any(len(contract) != CQER_DEVELOPMENT_LIMIT for contract in token_contracts):
+ raise ValueError(
+ "Experiment 007 CQER-32 requires exactly two authenticated "
+ "eight-task selector artifacts"
+ )
+ task_id_orders = tuple(
+ tuple(int(record["task_id"]) for record in contract)
+ for contract in token_contracts
+ )
+ if any(task_ids != CQER_DEVELOPMENT_TASK_IDS for task_ids in task_id_orders):
+ raise ValueError(
+ "Experiment 007 CQER-32 selector task IDs do not match the frozen order"
+ )
+ canonical_hashes = tuple(
+ sha256_bytes(canonical_json_bytes(selector)) for selector in selectors
+ )
+ if canonical_hashes != CQER_FROZEN_SELECTOR_CANONICAL_SHA256S:
+ raise ValueError(
+ "Experiment 007 CQER-32 selector canonical hashes do not match the "
+ "frozen artifacts"
+ )
+
+
+def validate_cqer_development_task_ids(
+ *,
+ enabled: bool,
+ task_ids: Sequence[int],
+) -> None:
+ """Pin the exact ordered development tasks before model execution."""
+
+ if enabled and tuple(int(task_id) for task_id in task_ids) != CQER_DEVELOPMENT_TASK_IDS:
+ raise ValueError(
+ "Experiment 007 CQER-32 task IDs do not match the frozen ordered prefix"
+ )
+
+
+def validate_cqer_layer_quotas(
+ *,
+ enabled: bool,
+ quotas: Mapping[int, int],
+) -> None:
+ """Pin the preregistered target-Fisher layer allocation."""
+
+ if not enabled:
+ return
+ normalized = tuple(sorted((int(layer), int(quota)) for layer, quota in quotas.items()))
+ expected = tuple(sorted(CQER_FROZEN_LAYER_QUOTAS))
+ if normalized != expected or sum(quota for _, quota in normalized) != 1_976:
+ raise ValueError(
+ "Experiment 007 CQER-32 layer quotas do not match the frozen "
+ "target-Fisher allocation"
+ )
+
+
def authenticate_selector_prefix(
selector: Mapping[str, Any],
*,
@@ -885,9 +1032,273 @@ def evaluate_frozen_holdout_gate(
}
+def evaluate_cqer_development_gate(
+ *,
+ aggregates: Mapping[str, Mapping[str, float | int]],
+ per_task: Mapping[str, Sequence[Mapping[str, float | int]]],
+ per_task_full_code: Mapping[str, Sequence[Mapping[str, float | int]]],
+ storage: Mapping[str, Mapping[str, int | float | bool]],
+ query_ema_diagnostics: Mapping[str, Sequence[Mapping[str, object]]],
+ expected_quotas: Mapping[int, int],
+ expected_packed_bytes: int,
+ expected_selector_auxiliary_bytes: int,
+) -> dict[str, Any]:
+ """Evaluate Experiment 007's frozen same-calibration advancement filter."""
+
+ required = (
+ QUERY_EMA_PRIMARY,
+ ADAPTIVE_TARGET_FISHER,
+ "target_directional_fisher_difference_int4",
+ )
+ for name in required:
+ if (
+ name not in aggregates
+ or name not in per_task
+ or name not in per_task_full_code
+ or name not in storage
+ ):
+ raise ValueError(f"CQER development gate lacks required method {name}")
+ diagnostic_tasks = query_ema_diagnostics.get(QUERY_EMA_PRIMARY)
+ if (
+ not isinstance(diagnostic_tasks, Sequence)
+ or len(diagnostic_tasks) != CQER_DEVELOPMENT_LIMIT
+ ):
+ raise ValueError(
+ "CQER development gate requires query-EMA diagnostics for exactly "
+ f"{CQER_DEVELOPMENT_LIMIT} tasks"
+ )
+ for name in required:
+ if (
+ len(per_task[name]) != CQER_DEVELOPMENT_LIMIT
+ or len(per_task_full_code[name]) != CQER_DEVELOPMENT_LIMIT
+ ):
+ raise ValueError(
+ "CQER development gate requires aligned and full-code metrics for "
+ f"exactly {CQER_DEVELOPMENT_LIMIT} tasks per required method"
+ )
+
+ primary = aggregates[QUERY_EMA_PRIMARY]
+ adaptive = aggregates[ADAPTIVE_TARGET_FISHER]
+ static_name = "target_directional_fisher_difference_int4"
+ static = aggregates[static_name]
+ primary_nll = _finite_float(primary["macro_delta_nll"], context="CQER macro_delta_nll")
+ adaptive_nll = _finite_float(
+ adaptive["macro_delta_nll"],
+ context="adaptive target-Fisher macro_delta_nll",
+ )
+ static_nll = _finite_float(
+ static["macro_delta_nll"],
+ context="static target-Fisher macro_delta_nll",
+ )
+ relative_vs_adaptive = (
+ (adaptive_nll - primary_nll) / adaptive_nll if adaptive_nll > 0 else None
+ )
+ relative_vs_static = (
+ (static_nll - primary_nll) / static_nll if static_nll > 0 else None
+ )
+
+ primary_top1 = _finite_float(
+ primary["macro_top1_agreement"],
+ context="CQER macro_top1_agreement",
+ )
+ better_comparator_top1 = max(
+ _finite_float(
+ adaptive["macro_top1_agreement"],
+ context="adaptive target-Fisher macro_top1_agreement",
+ ),
+ _finite_float(
+ static["macro_top1_agreement"],
+ context="static target-Fisher macro_top1_agreement",
+ ),
+ )
+ primary_cvar = _finite_float(
+ primary["macro_cvar95_kl"],
+ context="CQER macro_cvar95_kl",
+ )
+ lower_comparator_cvar = min(
+ _finite_float(
+ adaptive["macro_cvar95_kl"],
+ context="adaptive target-Fisher macro_cvar95_kl",
+ ),
+ _finite_float(
+ static["macro_cvar95_kl"],
+ context="static target-Fisher macro_cvar95_kl",
+ ),
+ )
+
+ expected_layers = dict(sorted(expected_quotas.items()))
+ layer_audit: list[dict[str, object]] = []
+ selector_contract_passed = True
+ finite_diagnostics = True
+ for task_record in diagnostic_tasks:
+ task_id = int(task_record.get("task_id", -1))
+ raw_layers = task_record.get("layers")
+ if not isinstance(raw_layers, list):
+ selector_contract_passed = False
+ layer_audit.append({"task_id": task_id, "error": "layers must be an array"})
+ continue
+ observed_layers: dict[int, Mapping[str, object]] = {}
+ for raw_layer in raw_layers:
+ if not isinstance(raw_layer, Mapping):
+ selector_contract_passed = False
+ continue
+ layer_index = int(raw_layer.get("layer_index", -1))
+ if layer_index in observed_layers:
+ selector_contract_passed = False
+ continue
+ observed_layers[layer_index] = raw_layer
+ task_passed = set(observed_layers) == set(expected_layers)
+ observations = 0
+ state_updates = 0
+ for layer_index, quota in expected_layers.items():
+ record = observed_layers.get(layer_index)
+ if record is None:
+ task_passed = False
+ continue
+ observed_quota = int(record.get("quota", -1))
+ selected = int(record.get("current_selected_count", -1))
+ committed = int(record.get("observations_committed", -1))
+ updates = int(record.get("state_updates", -2))
+ auxiliary = int(record.get("selector_auxiliary_bytes", -1))
+ mask_sha256 = record.get("current_mask_sha256")
+ pending = record.get("pending_observation")
+ cutoff = record.get("last_cutoff_score_margin")
+ if cutoff is not None:
+ try:
+ _finite_float(cutoff, context="CQER cutoff score margin")
+ except ValueError:
+ finite_diagnostics = False
+ observations += max(committed, 0)
+ state_updates += max(updates, 0)
+ task_passed = task_passed and all(
+ (
+ observed_quota == quota,
+ selected == quota,
+ committed == updates,
+ committed > 0,
+ auxiliary > 0,
+ isinstance(mask_sha256, str) and len(mask_sha256) == 64,
+ pending is False,
+ )
+ )
+ selector_contract_passed = selector_contract_passed and task_passed
+ layer_audit.append(
+ {
+ "task_id": task_id,
+ "passed": task_passed,
+ "observations_committed": observations,
+ "state_updates": state_updates,
+ }
+ )
+
+ summary = storage[QUERY_EMA_PRIMARY]
+ observed_packed_bytes = int(summary.get("resident_bytes", -1))
+ observed_auxiliary_bytes = int(summary.get("selector_auxiliary_bytes", -1))
+ observed_total_bytes = int(summary.get("resident_bytes_including_selector", -1))
+ observed_promotions = int(summary.get("high_precision_groups", -1))
+ expected_promotions = sum(expected_layers.values())
+
+ all_metrics_finite = finite_diagnostics
+ for metric_partition in (per_task, per_task_full_code):
+ for method_rows in metric_partition.values():
+ for row in method_rows:
+ logits_finite = row.get("all_logits_finite")
+ if logits_finite is not True:
+ all_metrics_finite = False
+ for key, value in row.items():
+ if key in ("task_id", "all_logits_finite"):
+ continue
+ try:
+ _finite_float(value, context=f"per-task metric {key}")
+ except ValueError:
+ all_metrics_finite = False
+
+ checks: dict[str, dict[str, Any]] = {
+ "exact_per_layer_quotas": {
+ "passed": selector_contract_passed and observed_promotions == expected_promotions,
+ "expected_quotas": {str(key): value for key, value in expected_layers.items()},
+ "expected_total_promotions": expected_promotions,
+ "observed_total_promotions": observed_promotions,
+ "task_audit": layer_audit,
+ },
+ "exact_packed_and_selector_bytes": {
+ "passed": (
+ observed_packed_bytes == expected_packed_bytes
+ and observed_auxiliary_bytes == expected_selector_auxiliary_bytes
+ and observed_total_bytes
+ == expected_packed_bytes + expected_selector_auxiliary_bytes
+ ),
+ "expected_packed_bytes": expected_packed_bytes,
+ "observed_packed_bytes": observed_packed_bytes,
+ "expected_selector_auxiliary_bytes": expected_selector_auxiliary_bytes,
+ "observed_selector_auxiliary_bytes": observed_auxiliary_bytes,
+ "expected_total_bytes": (
+ expected_packed_bytes + expected_selector_auxiliary_bytes
+ ),
+ "observed_total_bytes": observed_total_bytes,
+ },
+ "lower_nll_than_both_components": {
+ "passed": primary_nll < adaptive_nll and primary_nll < static_nll,
+ "primary": primary_nll,
+ "adaptive_component": adaptive_nll,
+ "static_component": static_nll,
+ },
+ "relative_nll_reduction_vs_plain_adaptive": {
+ "passed": (
+ relative_vs_adaptive is not None
+ and relative_vs_adaptive >= CQER_MIN_RELATIVE_NLL_REDUCTION_VS_ADAPTIVE
+ ),
+ "observed": relative_vs_adaptive,
+ "minimum": CQER_MIN_RELATIVE_NLL_REDUCTION_VS_ADAPTIVE,
+ },
+ "relative_nll_reduction_vs_strongest_static": {
+ "passed": (
+ relative_vs_static is not None
+ and relative_vs_static >= MIN_RELATIVE_NLL_REDUCTION
+ ),
+ "observed": relative_vs_static,
+ "minimum": MIN_RELATIVE_NLL_REDUCTION,
+ },
+ "top1_disadvantage_margin": {
+ "passed": primary_top1 >= better_comparator_top1 - TOP1_DISADVANTAGE_MARGIN,
+ "observed_disadvantage": better_comparator_top1 - primary_top1,
+ "maximum": TOP1_DISADVANTAGE_MARGIN,
+ },
+ "cvar95_disadvantage_margin": {
+ "passed": primary_cvar <= lower_comparator_cvar + CVAR95_DISADVANTAGE_MARGIN,
+ "observed_disadvantage": primary_cvar - lower_comparator_cvar,
+ "maximum": CVAR95_DISADVANTAGE_MARGIN,
+ },
+ "all_values_finite": {
+ "passed": all_metrics_finite,
+ },
+ "exact_stage_consume_handshake": {
+ "passed": selector_contract_passed,
+ "task_audit": layer_audit,
+ },
+ }
+ return {
+ "schema": "recurquant.experiment007-cqer32-development-gate.v1",
+ "applicable": True,
+ "passed": all(check["passed"] is True for check in checks.values()),
+ "primary": QUERY_EMA_PRIMARY,
+ "comparators": {
+ "plain_adaptive": ADAPTIVE_TARGET_FISHER,
+ "static": static_name,
+ },
+ "checks": checks,
+ }
+
+
def primary_claim_text(primary_name: str) -> str:
"""Describe the actual primary without implying a missing loss selector."""
+ if primary_name == QUERY_EMA_PRIMARY:
+ return (
+ "The actual primary uses target-directional-Fisher per-layer quotas "
+ "and causally weights each per-write aligned INT4-to-INT8 row-MSE "
+ "reduction by a normalized-query-energy EMA with a 32-token half-life."
+ )
if primary_name == RANK_FUSION_PRIMARY:
return (
"The actual primary uses target-directional-Fisher per-layer quotas "
@@ -989,11 +1400,13 @@ def make_caches(
plans: dict[str, ExactBudgetRowPlan],
adaptive_plans: dict[str, ExactBudgetRowPlan],
rank_fusion_specs: Mapping[str, RankFusionCacheSpec] | None = None,
+ query_ema_plans: Mapping[str, ExactBudgetRowPlan] | None = None,
) -> dict[
str,
PackedRecurrentStateCache
| MixedPackedRecurrentStateCache
| AdaptiveMixedPackedRecurrentStateCache
+ | QueryEmaMixedPackedRecurrentStateCache
| RankFusedMixedPackedRecurrentStateCache,
]:
caches: dict[
@@ -1001,6 +1414,7 @@ def make_caches(
PackedRecurrentStateCache
| MixedPackedRecurrentStateCache
| AdaptiveMixedPackedRecurrentStateCache
+ | QueryEmaMixedPackedRecurrentStateCache
| RankFusedMixedPackedRecurrentStateCache,
] = {
"uniform_int4": create_qwen35_packed_cache(model, bits=4),
@@ -1026,6 +1440,10 @@ def make_caches(
static_scores_by_layer=scores_on_device,
static_rank_weight=static_rank_weight,
)
+ for name, plan in (query_ema_plans or {}).items():
+ if name in caches:
+ raise ValueError(f"query-EMA cache name duplicates another method: {name}")
+ caches[name] = create_qwen35_query_ema_exact_budget_cache(model, plan=plan)
return caches
@@ -1035,8 +1453,12 @@ def _append_metrics(
candidate_logits: dict[str, torch.Tensor],
target: torch.Tensor,
) -> None:
+ reference_finite = torch.isfinite(reference_logits).all()
for name, logits in candidate_logits.items():
- accumulators[name].append(token_fidelity(reference_logits, logits, target))
+ accumulators[name].append(
+ token_fidelity(reference_logits, logits, target),
+ outputs_finite=reference_finite & torch.isfinite(logits).all(),
+ )
def evaluate_task(
@@ -1047,10 +1469,12 @@ def evaluate_task(
plans: dict[str, ExactBudgetRowPlan],
adaptive_plans: dict[str, ExactBudgetRowPlan],
rank_fusion_specs: Mapping[str, RankFusionCacheSpec] | None = None,
+ query_ema_plans: Mapping[str, ExactBudgetRowPlan] | None = None,
) -> tuple[
dict[str, dict[str, float | int]],
dict[str, dict[str, float | int]],
dict[str, dict[str, int | float | bool]],
+ dict[str, object],
int,
]:
reference_cache = DynamicCache(config=model.config)
@@ -1059,63 +1483,75 @@ def evaluate_task(
plans=plans,
adaptive_plans=adaptive_plans,
rank_fusion_specs=rank_fusion_specs,
+ query_ema_plans=query_ema_plans,
)
aligned_accumulators = {name: _TokenAccumulator.empty() for name in caches}
full_code_accumulators = {name: _TokenAccumulator.empty() for name in caches}
- reference_output = model(
- prompt_ids,
- past_key_values=reference_cache,
- use_cache=True,
- logits_to_keep=1,
- )
- candidate_outputs = {
- name: model(
- prompt_ids,
- past_key_values=cache,
- use_cache=True,
- logits_to_keep=1,
- )
+ query_ema_caches = {
+ name: cache
for name, cache in caches.items()
+ if isinstance(cache, QueryEmaMixedPackedRecurrentStateCache)
}
- _append_metrics(
- full_code_accumulators,
- reference_output.logits,
- {name: output.logits for name, output in candidate_outputs.items()},
- code_ids[:, :1],
+ observer_context = (
+ Qwen35QueryEnergyObserver(model, caches=list(query_ema_caches.values()))
+ if query_ema_caches
+ else nullcontext()
)
-
- for token_index in range(code_ids.shape[1] - 1):
- input_token = code_ids[:, token_index : token_index + 1]
- target_token = code_ids[:, token_index + 1 : token_index + 2]
+ with observer_context:
reference_output = model(
- input_token,
+ prompt_ids,
past_key_values=reference_cache,
use_cache=True,
logits_to_keep=1,
)
candidate_outputs = {
name: model(
- input_token,
+ prompt_ids,
past_key_values=cache,
use_cache=True,
logits_to_keep=1,
)
for name, cache in caches.items()
}
- _append_metrics(
- aligned_accumulators,
- reference_output.logits,
- {name: output.logits for name, output in candidate_outputs.items()},
- target_token,
- )
_append_metrics(
full_code_accumulators,
reference_output.logits,
{name: output.logits for name, output in candidate_outputs.items()},
- target_token,
+ code_ids[:, :1],
)
+ for token_index in range(code_ids.shape[1] - 1):
+ input_token = code_ids[:, token_index : token_index + 1]
+ target_token = code_ids[:, token_index + 1 : token_index + 2]
+ reference_output = model(
+ input_token,
+ past_key_values=reference_cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ candidate_outputs = {
+ name: model(
+ input_token,
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ for name, cache in caches.items()
+ }
+ _append_metrics(
+ aligned_accumulators,
+ reference_output.logits,
+ {name: output.logits for name, output in candidate_outputs.items()},
+ target_token,
+ )
+ _append_metrics(
+ full_code_accumulators,
+ reference_output.logits,
+ {name: output.logits for name, output in candidate_outputs.items()},
+ target_token,
+ )
+
reference_bytes = sum(
state.tensor.numel() * state.tensor.element_size()
for state in iter_recurrent_states(reference_cache)
@@ -1124,6 +1560,7 @@ def evaluate_task(
{name: accumulator.summary() for name, accumulator in aligned_accumulators.items()},
{name: accumulator.summary() for name, accumulator in full_code_accumulators.items()},
{name: cache.storage_summary() for name, cache in caches.items()},
+ {name: cache.query_ema_diagnostics() for name, cache in query_ema_caches.items()},
reference_bytes,
)
@@ -1338,6 +1775,8 @@ def main() -> int:
raise ValueError("--calibration-offset must be non-negative")
if args.bootstrap_samples <= 0:
raise ValueError("--bootstrap-samples must be positive")
+ if args.rank_fusion and args.query_ema:
+ raise ValueError("--rank-fusion and --query-ema are mutually exclusive")
heldout_calibration = args.calibration_offset > 0
repository_root = Path(__file__).resolve().parents[1]
repository_start = git_state()
@@ -1358,6 +1797,8 @@ def main() -> int:
validate_compatible_selector(selector, loss_selector)
if args.rank_fusion and loss_selector is None:
raise ValueError("--rank-fusion requires --loss-selector-artifact")
+ if args.query_ema and loss_selector is None:
+ raise ValueError("--query-ema requires --loss-selector-artifact")
storage_boundary: dict[str, Any] | None = None
storage_boundary_sha256: str | None = None
if args.storage_boundary_artifact is not None:
@@ -1368,10 +1809,17 @@ def main() -> int:
selectors: list[dict[str, Any]] = [selector]
if loss_selector is not None:
selectors.append(loss_selector)
+ validate_cqer_selector_artifacts(enabled=args.query_ema, selectors=selectors)
all_selector_task_ids = selector_task_ids(selectors)
task_records = selector["dataset"]["tasks"]
available_tasks = len(task_records)
limit = available_tasks if args.limit is None else args.limit
+ validate_cqer_development_request(
+ enabled=args.query_ema,
+ offset=args.calibration_offset,
+ limit=limit,
+ bootstrap_samples=args.bootstrap_samples,
+ )
validate_frozen_holdout_request(
offset=args.calibration_offset,
limit=limit,
@@ -1380,6 +1828,7 @@ def main() -> int:
loss_selector_present=loss_selector is not None,
storage_boundary_present=storage_boundary is not None,
rank_fusion_enabled=args.rank_fusion,
+ query_ema_enabled=args.query_ema,
)
if heldout_calibration:
validate_heldout_repository_start(repository_start, selectors)
@@ -1402,7 +1851,7 @@ def main() -> int:
)
ranked_rows = load_mbpp_rows("calibration", limit=window_stop)
selector_prefix_rows = tuple(ranked_rows[:FROZEN_HOLDOUT_LIMIT])
- if heldout_calibration:
+ if heldout_calibration or args.query_ema:
selector_prefix_ids = [int(row["task_id"]) for row in selector_prefix_rows]
selector_prefix_manifest = mbpp_manifest(selector_prefix_rows, phase="calibration")
for selector_evidence in selectors:
@@ -1418,6 +1867,7 @@ def main() -> int:
selectors=selectors,
)
actual_ids = [row["task_id"] for row in rows]
+ validate_cqer_development_task_ids(enabled=args.query_ema, task_ids=actual_ids)
if args.calibration_offset == 0:
expected_ids = [int(record["task_id"]) for record in task_records[:limit]]
if actual_ids != expected_ids:
@@ -1446,6 +1896,7 @@ def main() -> int:
}
adaptive_plans = {ADAPTIVE_H1: h1_plan}
rank_fusion_specs: dict[str, RankFusionCacheSpec] = {}
+ query_ema_plans: dict[str, ExactBudgetRowPlan] = {}
primary_name = hrr_primary_name
primary_plan = hrr_primary_plan
if loss_selector is not None:
@@ -1463,6 +1914,14 @@ def main() -> int:
for name, weight in RANK_FUSION_METHODS
}
primary_name = RANK_FUSION_PRIMARY
+ if args.query_ema:
+ query_ema_plans = {QUERY_EMA_PRIMARY: primary_plan}
+ primary_name = QUERY_EMA_PRIMARY
+ cqer_plan_quotas = {
+ layer_index: len(primary_plan.groups_for_layer(layer_index))
+ for layer_index, _, _ in primary_plan.score_shapes
+ }
+ validate_cqer_layer_quotas(enabled=args.query_ema, quotas=cqer_plan_quotas)
torch.manual_seed(SEED)
device = select_device(args.device)
@@ -1495,13 +1954,22 @@ def main() -> int:
)
encoded_tasks, token_manifest = encode_task_rows(tokenizer, rows)
- if heldout_calibration:
+ authenticated_selector_prefix: dict[str, object] | None = None
+ if heldout_calibration or args.query_ema:
_, selector_prefix_token_manifest = encode_task_rows(tokenizer, selector_prefix_rows)
for selector_evidence in selectors:
validate_actual_token_manifest(
selector_evidence,
selector_prefix_token_manifest,
)
+ authenticated_selector_prefix = {
+ "manifest": selector_prefix_manifest,
+ "manifest_sha256": mbpp_manifest_content_sha256(selector_prefix_manifest),
+ "ordered_task_ids": selector_prefix_ids,
+ "token_manifest": selector_prefix_token_manifest,
+ "selector_count": len(selectors),
+ "all_selectors_matched": True,
+ }
else:
validate_actual_token_manifest(selector, token_manifest)
if loss_selector is not None:
@@ -1520,19 +1988,27 @@ def main() -> int:
per_task: dict[str, list[dict[str, float | int]]] = {}
per_task_full_code: dict[str, list[dict[str, float | int]]] = {}
+ per_task_query_ema_diagnostics: dict[str, list[dict[str, object]]] = {}
storage_anchor: dict[str, dict[str, int | float | bool]] | None = None
reference_state_bytes: int | None = None
with torch.inference_mode():
for task_number, (row, prompt_cpu, code_cpu) in enumerate(encoded_tasks, start=1):
prompt_ids = prompt_cpu.to(device)
code_ids = code_cpu.to(device)
- summaries, full_code_summaries, storage, task_reference_bytes = evaluate_task(
+ (
+ summaries,
+ full_code_summaries,
+ storage,
+ query_ema_diagnostics,
+ task_reference_bytes,
+ ) = evaluate_task(
model,
prompt_ids=prompt_ids,
code_ids=code_ids,
plans=plans,
adaptive_plans=adaptive_plans,
rank_fusion_specs=rank_fusion_specs,
+ query_ema_plans=query_ema_plans,
)
if storage_anchor is None:
storage_anchor = storage
@@ -1545,6 +2021,10 @@ def main() -> int:
per_task_full_code.setdefault(name, []).append(
{"task_id": row["task_id"], **summary}
)
+ for name, diagnostics in query_ema_diagnostics.items():
+ per_task_query_ema_diagnostics.setdefault(name, []).append(
+ {"task_id": row["task_id"], "layers": diagnostics}
+ )
print(
f"[{task_number}/{len(rows)}] task={row['task_id']} "
f"code_tokens={code_ids.shape[1]}",
@@ -1565,6 +2045,20 @@ def main() -> int:
summary = storage_anchor[name]
if summary["resident_bytes"] != plan.resident_bytes:
raise RuntimeError(f"{name} did not realize its exact resident-byte plan")
+ expected_selector_auxiliary_bytes = sum(
+ heads * rows * torch.empty((), dtype=torch.float32).element_size()
+ for _, heads, rows in primary_plan.score_shapes
+ )
+ for name, plan in query_ema_plans.items():
+ summary = storage_anchor[name]
+ if summary["resident_bytes"] != plan.resident_bytes:
+ raise RuntimeError(f"{name} did not realize its exact packed-state byte plan")
+ if summary["selector_auxiliary_bytes"] != expected_selector_auxiliary_bytes:
+ raise RuntimeError(f"{name} did not realize the frozen selector auxiliary bytes")
+ if summary["resident_bytes_including_selector"] != (
+ plan.resident_bytes + expected_selector_auxiliary_bytes
+ ):
+ raise RuntimeError(f"{name} selector-aware resident byte total is inconsistent")
if storage_anchor["v02_layer0_static"]["resident_bytes"] != primary_plan.resident_bytes:
raise RuntimeError("v0.2 static and the primary row plan are not equal-byte")
@@ -1584,6 +2078,41 @@ def main() -> int:
}
repository_end = git_state()
source_hashes_end = source_file_hashes(repository_root)
+ development_gate: dict[str, Any] | None = None
+ if args.query_ema:
+ expected_quotas = dict(CQER_FROZEN_LAYER_QUOTAS)
+ development_gate = evaluate_cqer_development_gate(
+ aggregates=aggregates,
+ per_task=per_task,
+ per_task_full_code=per_task_full_code,
+ storage=storage_anchor,
+ query_ema_diagnostics=per_task_query_ema_diagnostics,
+ expected_quotas=expected_quotas,
+ expected_packed_bytes=primary_plan.resident_bytes,
+ expected_selector_auxiliary_bytes=expected_selector_auxiliary_bytes,
+ )
+ development_gate["checks"]["authenticated_repository_sources_and_manifests"] = {
+ "passed": (
+ repository_start["commit"] == repository_end["commit"]
+ and repository_start["worktree_clean"] is True
+ and repository_end["worktree_clean"] is True
+ and source_hashes_start == source_hashes_end
+ ),
+ "repository_commit_stable": (
+ repository_start["commit"] == repository_end["commit"]
+ ),
+ "worktree_clean_at_start_and_end": (
+ repository_start["worktree_clean"] is True
+ and repository_end["worktree_clean"] is True
+ ),
+ "source_hashes_stable": source_hashes_start == source_hashes_end,
+ "selector_artifacts_authenticated": True,
+ "evaluation_manifest_authenticated": True,
+ }
+ development_gate["passed"] = all(
+ check["passed"] is True
+ for check in development_gate["checks"].values()
+ )
if heldout_calibration:
validate_heldout_repository_end(
start_repository=repository_start,
@@ -1613,17 +2142,26 @@ def main() -> int:
else:
heldout_gate = {
"schema": (
- "recurquant.experiment006-heldout-gate.v1"
- if args.rank_fusion
- else "recurquant.experiment005-heldout-gate.v1"
+ "recurquant.experiment007-heldout-gate.v1"
+ if args.query_ema
+ else (
+ "recurquant.experiment006-heldout-gate.v1"
+ if args.rank_fusion
+ else "recurquant.experiment005-heldout-gate.v1"
+ )
),
"applicable": False,
"passed": None,
"reason": (
- "same-calibration diagnostics cannot satisfy the frozen Experiment 006 "
- "holdout gate; rank-fusion positive offsets remain disabled"
- if args.rank_fusion
- else "same-calibration diagnostics cannot satisfy the frozen holdout gate"
+ "same-calibration diagnostics cannot satisfy the frozen Experiment 007 "
+ "holdout gate; CQER-32 positive offsets remain disabled"
+ if args.query_ema
+ else (
+ "same-calibration diagnostics cannot satisfy the frozen Experiment 006 "
+ "holdout gate; rank-fusion positive offsets remain disabled"
+ if args.rank_fusion
+ else "same-calibration diagnostics cannot satisfy the frozen holdout gate"
+ )
),
}
selector_artifacts = {
@@ -1653,6 +2191,8 @@ def main() -> int:
)
if args.rank_fusion:
quality_artifact_kind = "recurquant_rank_fusion_same_calibration_quality_diagnostic"
+ if args.query_ema:
+ quality_artifact_kind = "recurquant_cqer32_same_calibration_quality_diagnostic"
prerequisite_artifacts: dict[str, dict[str, Any]] = {}
if storage_boundary is not None:
assert args.storage_boundary_artifact is not None
@@ -1720,18 +2260,7 @@ def main() -> int:
"selector_task_ids": sorted(all_selector_task_ids),
"selector_task_prefix": not heldout_calibration and limit < available_tasks,
"disjoint_from_all_selector_artifacts": (True if heldout_calibration else None),
- "authenticated_selector_prefix": (
- {
- "manifest": selector_prefix_manifest,
- "manifest_sha256": mbpp_manifest_content_sha256(selector_prefix_manifest),
- "ordered_task_ids": selector_prefix_ids,
- "token_manifest": selector_prefix_token_manifest,
- "selector_count": len(selectors),
- "all_selectors_matched": True,
- }
- if heldout_calibration
- else None
- ),
+ "authenticated_selector_prefix": authenticated_selector_prefix,
},
"metric_contract": {
"primary": "calibration-aligned code transitions after recurrent-state storage",
@@ -1782,6 +2311,28 @@ def main() -> int:
}
for name, (plan, _, weight) in rank_fusion_specs.items()
},
+ **{
+ name: {
+ "selection": (
+ "causal normalized-query-energy EMA multiplied by per-write "
+ "aligned INT4-to-INT8 row-MSE reduction"
+ ),
+ "query_normalization": "q / sqrt(sum(q^2) + 1e-6), computed in FP32",
+ "query_energy_half_life_tokens": QUERY_EMA_HALF_LIFE,
+ "query_energy_decay": 2.0 ** (-1.0 / QUERY_EMA_HALF_LIFE),
+ "initial_query_energy": "uniform 1 / key-row count",
+ "layer_quota_source": (
+ "target_directional_fisher_difference_int4 selector plan"
+ ),
+ "batch_size": 1,
+ "packed_recurrent_state_bytes": plan.resident_bytes,
+ "selector_auxiliary_bytes": expected_selector_auxiliary_bytes,
+ "resident_bytes_including_selector": (
+ plan.resident_bytes + expected_selector_auxiliary_bytes
+ ),
+ }
+ for name, plan in query_ema_plans.items()
+ },
},
"storage": {
"fp32_reference_recurrent_state_bytes": reference_state_bytes,
@@ -1791,8 +2342,10 @@ def main() -> int:
"aggregates_full_code_secondary": aggregates_full_code,
"contrasts_baseline_minus_primary_aligned_delta_nll": contrasts,
"heldout_gate": heldout_gate,
+ "development_gate": development_gate,
"per_task": per_task,
"per_task_full_code_secondary": per_task_full_code,
+ "query_ema_diagnostics": per_task_query_ema_diagnostics,
"environment": {
"python": sys.version,
"platform": platform.platform(),
@@ -1834,6 +2387,7 @@ def main() -> int:
"artifact_sha256": sha256_bytes(payload),
"primary": primary_name,
"heldout_gate": heldout_gate,
+ "development_gate": development_gate,
"aggregates": aggregates,
"contrasts": contrasts,
},
diff --git a/src/recurquant/__init__.py b/src/recurquant/__init__.py
index a702bfb..f9ec07e 100644
--- a/src/recurquant/__init__.py
+++ b/src/recurquant/__init__.py
@@ -47,6 +47,8 @@
AdaptiveMixedPackedRecurrentStateCache,
MixedPackedRecurrentStateCache,
PackedRecurrentStateCache,
+ QueryEmaMixedPackedLinearAttentionLayer,
+ QueryEmaMixedPackedRecurrentStateCache,
RankFusedMixedPackedRecurrentStateCache,
)
from .quantization import (
@@ -56,10 +58,12 @@
quantize_dequantize,
quantize_pack,
)
+from .query_energy import Qwen35QueryEnergyObserver
from .qwen35 import (
create_qwen35_adaptive_exact_budget_cache,
create_qwen35_exact_budget_cache,
create_qwen35_packed_cache,
+ create_qwen35_query_ema_exact_budget_cache,
create_qwen35_rank_fused_exact_budget_cache,
create_qwen35_v02_mixed_cache,
)
@@ -80,6 +84,9 @@
"PackedMixedQuantizedTensor",
"PackedQuantizedTensor",
"PackedRecurrentStateCache",
+ "QueryEmaMixedPackedLinearAttentionLayer",
+ "QueryEmaMixedPackedRecurrentStateCache",
+ "Qwen35QueryEnergyObserver",
"RankFusedMixedPackedRecurrentStateCache",
"PhysicalMetricRun",
"PhysicalRowPromotionOracleResult",
@@ -98,6 +105,7 @@
"create_qwen35_adaptive_exact_budget_cache",
"create_qwen35_exact_budget_cache",
"create_qwen35_packed_cache",
+ "create_qwen35_query_ema_exact_budget_cache",
"create_qwen35_rank_fused_exact_budget_cache",
"create_qwen35_v02_mixed_cache",
"finite_horizon_row_read_risk",
diff --git a/src/recurquant/packed_cache.py b/src/recurquant/packed_cache.py
index 4f1b15c..75c4545 100644
--- a/src/recurquant/packed_cache.py
+++ b/src/recurquant/packed_cache.py
@@ -883,6 +883,410 @@ def _precision_mask(
return mask.reshape(self.expected_heads, self.expected_rows)
+_QUERY_EMA_DECAY = 2.0 ** (-1.0 / 32.0)
+_QUERY_L2NORM_EPS = 1e-6
+_QUERY_EMA_CHUNK_ATOL = 2e-8
+_QUERY_EMA_CHUNK_RTOL = 2e-6
+
+
+@dataclass(slots=True)
+class _PendingQueryObservation:
+ update_index: int
+ token_count: int
+ candidate_ema: torch.Tensor
+ consumed: bool = False
+
+
+class QueryEmaMixedPackedLinearAttentionLayer(AdaptiveMixedPackedLinearAttentionLayer):
+ """Select rows by causal query-read energy times aligned MSE benefit.
+
+ A query observation must be staged immediately before every recurrent-state
+ write. The persistent FP32 EMA is committed only after the corresponding
+ mixed-precision state was packed successfully. The layer deliberately fails
+ closed instead of falling back to the MSE-only adaptive selector.
+ """
+
+ query_ema_decay = _QUERY_EMA_DECAY
+ query_l2norm_eps = _QUERY_L2NORM_EPS
+ query_ema_chunk_atol = _QUERY_EMA_CHUNK_ATOL
+ query_ema_chunk_rtol = _QUERY_EMA_CHUNK_RTOL
+
+ def __init__(self, **kwargs: object) -> None:
+ super().__init__(**kwargs)
+ self.query_energy_ema: torch.Tensor | None = None
+ self._pending_query_observation: _PendingQueryObservation | None = None
+ self.query_observations_committed = 0
+ self.query_tokens_observed = 0
+ self.last_query_token_count: int | None = None
+ self.last_cutoff_score_margin: float | None = None
+ self.last_mask_overlap: int | None = None
+ self.last_mask_churn: int | None = None
+ self._candidate_cutoff_score_margin: float | None = None
+ self._has_query_selection_history = False
+
+ def stage_query_observation(
+ self,
+ query: torch.Tensor,
+ *,
+ l2norm_eps: float = _QUERY_L2NORM_EPS,
+ ) -> None:
+ """Stage one ``[1, tokens, heads, rows]`` causal query observation."""
+
+ if self._pending_query_observation is not None:
+ self.discard_pending_query_observation()
+ raise RuntimeError(
+ f"layer {self.layer_index} received a duplicate query observation; "
+ "the pending observation was discarded"
+ )
+ if isinstance(l2norm_eps, bool) or not isinstance(l2norm_eps, Real):
+ raise TypeError("l2norm_eps must be a real number")
+ epsilon = float(l2norm_eps)
+ if not math.isfinite(epsilon) or epsilon != _QUERY_L2NORM_EPS:
+ raise ValueError("query EMA l2norm_eps is frozen at 1e-6")
+ if not isinstance(query, torch.Tensor):
+ raise TypeError("query observation must be a tensor")
+ expected_shape = f"[1, tokens, {self.expected_heads}, {self.expected_rows}]"
+ if query.ndim != 4:
+ raise ValueError(
+ f"layer {self.layer_index} query observation must have shape "
+ f"{expected_shape}; got {tuple(query.shape)}"
+ )
+ if (
+ query.shape[0] != 1
+ or query.shape[1] <= 0
+ or query.shape[2] != self.expected_heads
+ or query.shape[3] != self.expected_rows
+ ):
+ raise ValueError(
+ f"layer {self.layer_index} query observation must have shape "
+ f"{expected_shape}; got {tuple(query.shape)}"
+ )
+ if not query.is_floating_point():
+ raise TypeError(f"layer {self.layer_index} query observation must be floating point")
+ if query.device.type == "meta":
+ raise ValueError(f"layer {self.layer_index} query observation must be materialized")
+ if not torch.isfinite(query).all().item():
+ raise ValueError(f"layer {self.layer_index} query observation must be finite")
+ if self.query_energy_ema is not None and self.query_energy_ema.device != query.device:
+ raise ValueError(
+ f"layer {self.layer_index} query observation and query EMA must use "
+ "the same device"
+ )
+ if self.device is not None and torch.device(self.device) != query.device:
+ raise ValueError(
+ f"layer {self.layer_index} query observation and recurrent state must use "
+ "the same device"
+ )
+
+ with torch.no_grad():
+ source = query.detach().to(torch.float32)
+ squared = source.square()
+ energy = squared / (squared.sum(dim=-1, keepdim=True) + epsilon)
+ energy = energy.squeeze(0)
+ token_count = energy.shape[0]
+ previous = self.query_energy_ema
+ if previous is None:
+ previous = torch.full(
+ (self.expected_heads, self.expected_rows),
+ 1.0 / self.expected_rows,
+ dtype=torch.float32,
+ device=query.device,
+ )
+
+ # This closed form is the exact mathematical recurrence for applying
+ # the frozen EMA sequentially over the staged token dimension.
+ exponents = torch.arange(
+ token_count - 1,
+ -1,
+ -1,
+ dtype=torch.float32,
+ device=query.device,
+ )
+ weights = torch.pow(
+ torch.tensor(_QUERY_EMA_DECAY, dtype=torch.float32, device=query.device),
+ exponents,
+ )
+ candidate = (
+ (_QUERY_EMA_DECAY**token_count) * previous
+ + (1.0 - _QUERY_EMA_DECAY)
+ * (energy * weights[:, None, None]).sum(dim=0)
+ )
+ if not torch.isfinite(candidate).all().item():
+ raise RuntimeError(
+ f"layer {self.layer_index} query EMA update produced non-finite values"
+ )
+
+ self._pending_query_observation = _PendingQueryObservation(
+ update_index=self._update_count,
+ token_count=token_count,
+ candidate_ema=candidate,
+ )
+
+ def discard_pending_query_observation(self) -> None:
+ """Discard a staged observation; safe to call during exception cleanup."""
+
+ self._pending_query_observation = None
+ self._candidate_cutoff_score_margin = None
+
+ def _precision_mask(
+ self,
+ recurrent_states: torch.Tensor,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ ) -> torch.Tensor:
+ # Use the static base for complete recurrent-state geometry checks while
+ # deliberately bypassing the MSE-only adaptive selector.
+ MixedPackedLinearAttentionLayer._precision_mask(
+ self,
+ recurrent_states,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ if recurrent_states.shape[0] != 1:
+ raise ValueError(
+ "query-EMA mixed cache selection currently requires batch size 1; "
+ f"got {recurrent_states.shape[0]}"
+ )
+
+ pending = self._pending_query_observation
+ if pending is None:
+ raise RuntimeError(
+ f"layer {self.layer_index} has no staged query observation for "
+ f"state update {self._update_count}"
+ )
+ try:
+ if pending.consumed:
+ raise RuntimeError(
+ f"layer {self.layer_index} query observation was consumed more than once"
+ )
+ if pending.update_index != self._update_count:
+ raise RuntimeError(
+ f"layer {self.layer_index} has a stale query observation for update "
+ f"{pending.update_index}; expected {self._update_count}"
+ )
+ if pending.candidate_ema.device != recurrent_states.device:
+ raise ValueError(
+ f"layer {self.layer_index} query observation and recurrent state must use "
+ "the same device"
+ )
+ expected_ema_shape = (self.expected_heads, self.expected_rows)
+ if tuple(pending.candidate_ema.shape) != expected_ema_shape:
+ raise RuntimeError(
+ f"layer {self.layer_index} staged query EMA must have shape "
+ f"{expected_ema_shape}; got {tuple(pending.candidate_ema.shape)}"
+ )
+ if pending.candidate_ema.dtype != torch.float32:
+ raise RuntimeError(
+ f"layer {self.layer_index} staged query EMA must use torch.float32"
+ )
+ if not torch.isfinite(pending.candidate_ema).all().item():
+ raise RuntimeError(
+ f"layer {self.layer_index} staged query EMA must be finite"
+ )
+
+ total_groups = self.expected_heads * self.expected_rows
+ quota = len(self.high_precision_group_indices)
+ mask = torch.zeros(
+ total_groups,
+ dtype=torch.bool,
+ device=recurrent_states.device,
+ )
+ pending.consumed = True
+ self._candidate_cutoff_score_margin = None
+ if quota == 0:
+ return mask.reshape(self.expected_heads, self.expected_rows)
+ if quota == total_groups:
+ return torch.ones_like(mask).reshape(
+ self.expected_heads,
+ self.expected_rows,
+ )
+
+ with torch.no_grad():
+ source = recurrent_states.detach().to(torch.float32)
+ low = quantize_dequantize(recurrent_states, low_spec).tensor.to(torch.float32)
+ high = quantize_dequantize(recurrent_states, high_spec).tensor.to(torch.float32)
+ benefit = (
+ (low - source).square().mean(dim=-1)
+ - (high - source).square().mean(dim=-1)
+ ).reshape(self.expected_heads, self.expected_rows)
+ scores = (pending.candidate_ema * benefit).reshape(-1)
+ if not torch.isfinite(scores).all().item():
+ raise RuntimeError(
+ f"layer {self.layer_index} query-weighted selector scores "
+ "must be finite"
+ )
+ ranked = torch.argsort(scores, descending=True, stable=True)
+ mask[ranked[:quota]] = True
+ self._candidate_cutoff_score_margin = float(
+ (scores[ranked[quota - 1]] - scores[ranked[quota]]).item()
+ )
+ return mask.reshape(self.expected_heads, self.expected_rows)
+ except Exception:
+ self.discard_pending_query_observation()
+ raise
+
+ def _store(self, recurrent_states: torch.Tensor, state_idx: int) -> torch.Tensor:
+ if state_idx not in self.packed_states:
+ self.discard_pending_query_observation()
+ raise IndexError(
+ f"layer {self.layer_index} state_idx {state_idx} is outside "
+ f"[0, {self.number_of_states})"
+ )
+ previous = self.packed_states[state_idx]
+ previous_initialized = self.is_recurrent_states_initialized[state_idx]
+ previous_dtype = self.dtype
+ previous_device = self.device
+ previous_update_count = self._update_count
+ previous_history = self._has_query_selection_history
+ callback = self.on_update
+ try:
+ previous_mask = (
+ previous.high_precision_mask().reshape(-1)
+ if previous is not None and previous_history
+ else None
+ )
+ # Defer the cache-level evidence callback until packing and every
+ # query-specific postcondition have succeeded. This keeps a failed
+ # transaction from appending evidence for a state that is rolled back.
+ self.on_update = None
+ try:
+ materialized = super()._store(recurrent_states, state_idx)
+ finally:
+ self.on_update = callback
+ pending = self._pending_query_observation
+ if pending is None or not pending.consumed:
+ raise RuntimeError(
+ f"layer {self.layer_index} packed a state without consuming exactly "
+ "one query observation"
+ )
+ current = self.packed_states[state_idx]
+ if current is None:
+ raise RuntimeError(f"layer {self.layer_index} packed state disappeared")
+ current_mask = current.high_precision_mask().reshape(-1)
+ overlap = (
+ None
+ if previous_mask is None
+ else int((previous_mask & current_mask).sum().item())
+ )
+ churn = (
+ None
+ if previous_mask is None
+ else int((previous_mask ^ current_mask).sum().item())
+ )
+ if callback is not None:
+ callback(
+ self.layer_index,
+ state_idx,
+ recurrent_states,
+ current,
+ materialized,
+ )
+ except Exception:
+ # Base packing assigns the new representation before materialization.
+ # Roll back every base field if any later operation fails so a caller
+ # can never observe a new packed state paired with an old query EMA or
+ # generation counter.
+ self.on_update = callback
+ self.packed_states[state_idx] = previous
+ self.is_recurrent_states_initialized[state_idx] = previous_initialized
+ self.dtype = previous_dtype
+ self.device = previous_device
+ self._update_count = previous_update_count
+ self._has_query_selection_history = previous_history
+ self.discard_pending_query_observation()
+ raise
+
+ self.query_energy_ema = pending.candidate_ema
+ self.query_observations_committed += 1
+ self.query_tokens_observed += pending.token_count
+ self.last_query_token_count = pending.token_count
+ self.last_cutoff_score_margin = self._candidate_cutoff_score_margin
+ self.last_mask_overlap = overlap
+ self.last_mask_churn = churn
+ self._has_query_selection_history = True
+ self.discard_pending_query_observation()
+ return materialized
+
+ def selector_auxiliary_bytes(self) -> int:
+ if self.query_energy_ema is None:
+ return 0
+ return self.query_energy_ema.numel() * self.query_energy_ema.element_size()
+
+ def query_ema_diagnostics(self) -> dict[str, int | float | bool | str | None]:
+ packed = self.packed_states[0]
+ if packed is None:
+ current_mask_sha256 = None
+ current_selected_count = 0
+ else:
+ current_mask_sha256 = hashlib.sha256(
+ bytes(packed.precision_mask.detach().cpu().contiguous().tolist())
+ ).hexdigest()
+ current_selected_count = packed.high_precision_groups
+ return {
+ "layer_index": self.layer_index,
+ "quota": len(self.high_precision_group_indices),
+ "ema_decay": self.query_ema_decay,
+ "l2norm_eps": self.query_l2norm_eps,
+ "initial_ema_value": 1.0 / self.expected_rows,
+ "chunk_equivalence_atol": self.query_ema_chunk_atol,
+ "chunk_equivalence_rtol": self.query_ema_chunk_rtol,
+ "state_updates": self._update_count,
+ "observations_committed": self.query_observations_committed,
+ "tokens_observed": self.query_tokens_observed,
+ "last_query_token_count": self.last_query_token_count,
+ "last_cutoff_score_margin": self.last_cutoff_score_margin,
+ "last_mask_overlap": self.last_mask_overlap,
+ "last_mask_churn": self.last_mask_churn,
+ "current_selected_count": current_selected_count,
+ "current_mask_sha256": current_mask_sha256,
+ "pending_observation": self._pending_query_observation is not None,
+ "selector_auxiliary_bytes": self.selector_auxiliary_bytes(),
+ }
+
+ def reset(self) -> None:
+ super().reset()
+ self.discard_pending_query_observation()
+ if self.query_energy_ema is not None:
+ self.query_energy_ema.fill_(1.0 / self.expected_rows)
+ self._update_count = 0
+ self._has_query_selection_history = False
+ self.query_observations_committed = 0
+ self.query_tokens_observed = 0
+ self.last_query_token_count = None
+ self.last_cutoff_score_margin = None
+ self.last_mask_overlap = None
+ self.last_mask_churn = None
+
+ def _reject_pending_transfer(self, operation: str) -> None:
+ if self._pending_query_observation is None:
+ return
+ self.discard_pending_query_observation()
+ raise RuntimeError(
+ f"layer {self.layer_index} cannot {operation} with a pending query "
+ "observation; it was discarded"
+ )
+
+ def offload(self) -> None:
+ self._reject_pending_transfer("offload")
+ super().offload()
+ if self.query_energy_ema is not None:
+ self.query_energy_ema = self.query_energy_ema.to("cpu")
+
+ def prefetch(self) -> None:
+ self._reject_pending_transfer("prefetch")
+ super().prefetch()
+ if (
+ self.query_energy_ema is not None
+ and self.device is not None
+ and self.query_energy_ema.device != torch.device(self.device)
+ ):
+ self.query_energy_ema = self.query_energy_ema.to(
+ self.device,
+ non_blocking=True,
+ )
+
+
def _validate_static_rank_weight(value: object) -> float:
if isinstance(value, bool) or not isinstance(value, Real):
raise TypeError("static_rank_weight must be a real number")
@@ -1176,6 +1580,86 @@ class AdaptiveMixedPackedRecurrentStateCache(MixedPackedRecurrentStateCache):
selection_method = "instantaneous_aligned_mse_reduction"
+class QueryEmaMixedPackedRecurrentStateCache(MixedPackedRecurrentStateCache):
+ """Exact-byte packed-state cache with causal query-energy row selection.
+
+ ``resident_bytes`` continues to describe only the physically packed recurrent
+ states fixed by the supplied plan. Persistent FP32 EMA metadata is reported
+ separately as ``selector_auxiliary_bytes`` and included only in
+ ``resident_bytes_including_selector``.
+ """
+
+ _mixed_layer_class = QueryEmaMixedPackedLinearAttentionLayer
+ selection_method = "query_ema32_weighted_aligned_mse_reduction"
+
+ def _query_ema_layer(self, layer_index: int) -> QueryEmaMixedPackedLinearAttentionLayer:
+ if isinstance(layer_index, bool) or not isinstance(layer_index, int):
+ raise TypeError("layer_index must be an integer")
+ if layer_index < 0 or layer_index >= len(self.layers):
+ raise IndexError(f"layer_index {layer_index} is outside this cache")
+ layer = self.layers[layer_index]
+ if not isinstance(layer, QueryEmaMixedPackedLinearAttentionLayer):
+ raise ValueError(
+ f"layer {layer_index} is not a query-EMA linear-attention layer"
+ )
+ return layer
+
+ def stage_query_observation(
+ self,
+ layer_index: int,
+ query: torch.Tensor,
+ *,
+ l2norm_eps: float = _QUERY_L2NORM_EPS,
+ ) -> None:
+ """Stage one causal query tensor for the layer's next state write."""
+
+ self._query_ema_layer(layer_index).stage_query_observation(
+ query,
+ l2norm_eps=l2norm_eps,
+ )
+
+ def discard_pending_query_observation(self, layer_index: int) -> None:
+ """Idempotently discard one layer's pending query observation."""
+
+ self._query_ema_layer(layer_index).discard_pending_query_observation()
+
+ def selector_auxiliary_bytes(self) -> int:
+ return sum(
+ layer.selector_auxiliary_bytes()
+ for _, layer in self.mixed_packed_layers()
+ if isinstance(layer, QueryEmaMixedPackedLinearAttentionLayer)
+ )
+
+ def query_ema_diagnostics(
+ self,
+ ) -> list[dict[str, int | float | bool | str | None]]:
+ return [
+ layer.query_ema_diagnostics()
+ for _, layer in self.mixed_packed_layers()
+ if isinstance(layer, QueryEmaMixedPackedLinearAttentionLayer)
+ ]
+
+ def storage_summary(self) -> dict[str, int | float | bool]:
+ summary = super().storage_summary()
+ auxiliary = self.selector_auxiliary_bytes()
+ resident = int(summary["resident_bytes"])
+ total = resident + auxiliary
+ full_precision_equivalent = int(summary["full_precision_equivalent_bytes"])
+ summary.update(
+ {
+ "selector_auxiliary_bytes": auxiliary,
+ "resident_bytes_including_selector": total,
+ "resident_compression_ratio_including_selector": (
+ full_precision_equivalent / total if total else 0.0
+ ),
+ "physical_reduction_realized_including_selector": (
+ total > 0 and total < full_precision_equivalent
+ ),
+ }
+ )
+ return summary
+
+
class RankFusedMixedPackedRecurrentStateCache(MixedPackedRecurrentStateCache):
"""Exact-byte cache fusing static selector and instantaneous MSE ranks."""
diff --git a/src/recurquant/query_energy.py b/src/recurquant/query_energy.py
new file mode 100644
index 0000000..c3c5c08
--- /dev/null
+++ b/src/recurquant/query_energy.py
@@ -0,0 +1,290 @@
+"""Causal query observation for Qwen3.5 recurrent-state caches.
+
+The Qwen3.5 Gated DeltaNet forward computes and repeats its query heads before
+calling either the chunk or recurrent kernel, then writes the kernel's final
+state to ``cache_params``. This context manager observes that exact kernel
+query and stages it on selected caches after the kernel succeeds but before the
+state write. Caches not supplied at construction are never inspected or
+modified.
+"""
+
+from __future__ import annotations
+
+import math
+from contextvars import ContextVar
+from dataclasses import dataclass
+from types import TracebackType
+from typing import Any
+
+import torch
+
+_OBSERVER_ATTRIBUTE = "_recurquant_query_energy_observer"
+_PACKED_SEQUENCE_ARGUMENTS = ("cu_seq_lens_q", "cu_seq_lens_k", "cu_seqlens")
+
+
+def _argument(
+ args: tuple[object, ...],
+ kwargs: dict[str, object],
+ name: str,
+ position: int,
+) -> object | None:
+ if name in kwargs:
+ return kwargs[name]
+ return args[position] if len(args) > position else None
+
+
+@dataclass(slots=True)
+class _ForwardCall:
+ module: torch.nn.Module
+ cache: object
+ layer_index: int
+ kernel_calls: int = 0
+ stage_attempted: bool = False
+ staged: bool = False
+
+
+class Qwen35QueryEnergyObserver:
+ """Stage post-convolution Qwen3.5 queries on selected recurrent caches.
+
+ Parameters
+ ----------
+ model:
+ A model containing ``Qwen3_5GatedDeltaNet`` modules from the pinned
+ Transformers implementation.
+ caches:
+ Cache objects that implement ``stage_query_observation`` and
+ ``discard_pending_query_observation``. Dispatch is by object identity,
+ never equality, so reference and static caches pass through unchanged.
+ l2norm_eps:
+ Positive finite lower bound forwarded to the cache's query normalizer.
+
+ The observer supports uncached prefill, cached multi-token chunks, and
+ single-token decode. Packed ``cu_seqlens`` forwards are rejected until a
+ segment-aware aggregation rule is defined.
+ """
+
+ def __init__(
+ self,
+ model: torch.nn.Module,
+ *,
+ caches: list[object] | tuple[object, ...],
+ l2norm_eps: float = 1e-6,
+ ) -> None:
+ if not isinstance(model, torch.nn.Module):
+ raise TypeError("model must be a torch.nn.Module")
+ if not isinstance(caches, (list, tuple)):
+ raise TypeError("caches must be a list or tuple of query-aware caches")
+ if not caches:
+ raise ValueError("caches must contain at least one query-aware cache")
+ if isinstance(l2norm_eps, bool) or not isinstance(l2norm_eps, (int, float)):
+ raise TypeError("l2norm_eps must be a positive finite float")
+ if not math.isfinite(float(l2norm_eps)) or float(l2norm_eps) <= 0:
+ raise ValueError("l2norm_eps must be a positive finite float")
+
+ identities = [id(cache) for cache in caches]
+ if len(set(identities)) != len(identities):
+ raise ValueError("caches must not contain the same object more than once")
+ for cache in caches:
+ if not callable(getattr(cache, "stage_query_observation", None)):
+ raise TypeError(
+ "each observed cache must implement stage_query_observation"
+ )
+ if not callable(getattr(cache, "discard_pending_query_observation", None)):
+ raise TypeError(
+ "each observed cache must implement "
+ "discard_pending_query_observation"
+ )
+
+ self.model = model
+ self.caches = tuple(caches)
+ self.l2norm_eps = float(l2norm_eps)
+ self._cache_by_identity = {id(cache): cache for cache in self.caches}
+ self._installed: list[tuple[object, str, object]] = []
+ self._active_calls: ContextVar[tuple[_ForwardCall, ...]] = ContextVar(
+ f"recurquant_query_energy_calls_{id(self)}",
+ default=(),
+ )
+
+ def _gdn_modules(self) -> list[torch.nn.Module]:
+ modules = [
+ module
+ for module in self.model.modules()
+ if module.__class__.__name__ == "Qwen3_5GatedDeltaNet"
+ ]
+ if not modules:
+ raise TypeError("model does not contain Qwen3_5GatedDeltaNet modules")
+ return modules
+
+ def _selected_cache(self, candidate: object | None) -> object | None:
+ if candidate is None:
+ return None
+ selected = self._cache_by_identity.get(id(candidate))
+ return selected if selected is candidate else None
+
+ @staticmethod
+ def _discard(cache: object, layer_index: int) -> None:
+ cache.discard_pending_query_observation(layer_index) # type: ignore[attr-defined]
+
+ def _discard_after_failure(
+ self,
+ call: _ForwardCall,
+ error: BaseException,
+ ) -> None:
+ try:
+ self._discard(call.cache, call.layer_index)
+ except BaseException as cleanup_error:
+ error.add_note(
+ "RecurQuant could not discard the pending query observation after "
+ f"the forward failed: {cleanup_error!r}"
+ )
+
+ def _make_kernel_wrapper(
+ self,
+ module: torch.nn.Module,
+ original: Any,
+ ):
+ def wrapped(*args: object, **kwargs: object):
+ active_calls = self._active_calls.get()
+ call = active_calls[-1] if active_calls else None
+ if call is None or call.module is not module:
+ return original(*args, **kwargs)
+ if call.kernel_calls:
+ raise RuntimeError(
+ "Qwen3.5 Gated DeltaNet called more than one state kernel in one "
+ "forward; refusing ambiguous query attribution"
+ )
+
+ output = original(*args, **kwargs)
+ call.kernel_calls += 1
+ query = _argument(args, kwargs, "query", 0)
+ if not isinstance(query, torch.Tensor):
+ raise TypeError(
+ "Qwen3.5 Gated DeltaNet kernel did not expose its query tensor"
+ )
+
+ call.stage_attempted = True
+ call.cache.stage_query_observation( # type: ignore[attr-defined]
+ call.layer_index,
+ query,
+ l2norm_eps=self.l2norm_eps,
+ )
+ call.staged = True
+ return output
+
+ return wrapped
+
+ def _make_forward_wrapper(
+ self,
+ module: torch.nn.Module,
+ original: Any,
+ ):
+ layer_index = int(module.layer_idx) # type: ignore[attr-defined]
+
+ def wrapped(*args: object, **kwargs: object):
+ cache = self._selected_cache(_argument(args, kwargs, "cache_params", 1))
+ if cache is None:
+ return original(*args, **kwargs)
+
+ packed_arguments = [
+ name
+ for name in _PACKED_SEQUENCE_ARGUMENTS
+ if kwargs.get(name) is not None
+ ]
+ if packed_arguments:
+ rendered = ", ".join(packed_arguments)
+ raise ValueError(
+ "Qwen3.5 query-energy observation does not yet support packed "
+ f"cu_seqlens forwards ({rendered})"
+ )
+
+ call = _ForwardCall(module=module, cache=cache, layer_index=layer_index)
+ token = self._active_calls.set((*self._active_calls.get(), call))
+ try:
+ output = original(*args, **kwargs)
+ if call.kernel_calls != 1 or not call.stage_attempted or not call.staged:
+ raise RuntimeError(
+ "Qwen3.5 Gated DeltaNet did not complete exactly one observed "
+ "state-kernel call; refusing to continue with an ambiguous "
+ "query observation"
+ )
+ return output
+ except BaseException as error:
+ self._discard_after_failure(call, error)
+ raise
+ finally:
+ self._active_calls.reset(token)
+
+ return wrapped
+
+ def install(self) -> None:
+ """Install wrappers atomically, rejecting any observer already on the model."""
+
+ if self._installed:
+ raise RuntimeError("query-energy observer is already installed")
+ modules = self._gdn_modules()
+ observed_objects: list[object] = [self.model, *modules]
+ if any(hasattr(item, _OBSERVER_ATTRIBUTE) for item in observed_objects):
+ raise RuntimeError("a query-energy observer is already installed on this model")
+
+ try:
+ setattr(self.model, _OBSERVER_ATTRIBUTE, self)
+ self._installed.append((self.model, _OBSERVER_ATTRIBUTE, _Missing))
+ for module in modules:
+ setattr(module, _OBSERVER_ATTRIBUTE, self)
+ self._installed.append((module, _OBSERVER_ATTRIBUTE, _Missing))
+ for attribute in (
+ "forward",
+ "chunk_gated_delta_rule",
+ "recurrent_gated_delta_rule",
+ ):
+ original = getattr(module, attribute)
+ if not callable(original):
+ raise TypeError(
+ f"Qwen3_5GatedDeltaNet.{attribute} must be callable"
+ )
+ wrapper = (
+ self._make_forward_wrapper(module, original)
+ if attribute == "forward"
+ else self._make_kernel_wrapper(module, original)
+ )
+ restore_value = (
+ original if attribute in module.__dict__ else _Missing
+ )
+ setattr(module, attribute, wrapper)
+ self._installed.append((module, attribute, restore_value))
+ except BaseException:
+ self.remove()
+ raise
+
+ def remove(self) -> None:
+ """Restore every wrapped callable and remove installation markers."""
+
+ while self._installed:
+ target, attribute, original = self._installed.pop()
+ if original is _Missing:
+ if attribute == _OBSERVER_ATTRIBUTE:
+ if getattr(target, attribute, None) is self:
+ delattr(target, attribute)
+ elif attribute in getattr(target, "__dict__", {}):
+ delattr(target, attribute)
+ else:
+ setattr(target, attribute, original)
+
+ def __enter__(self) -> Qwen35QueryEnergyObserver:
+ self.install()
+ return self
+
+ def __exit__(
+ self,
+ exc_type: type[BaseException] | None,
+ exc_value: BaseException | None,
+ traceback: TracebackType | None,
+ ) -> None:
+ self.remove()
+
+
+class _MissingType:
+ pass
+
+
+_Missing = _MissingType()
diff --git a/src/recurquant/qwen35.py b/src/recurquant/qwen35.py
index c760734..0a3d201 100644
--- a/src/recurquant/qwen35.py
+++ b/src/recurquant/qwen35.py
@@ -14,6 +14,7 @@
AdaptiveMixedPackedRecurrentStateCache,
MixedPackedRecurrentStateCache,
PackedRecurrentStateCache,
+ QueryEmaMixedPackedRecurrentStateCache,
RankFusedMixedPackedRecurrentStateCache,
)
from .quantization import QuantizationSpec, RoundingMode
@@ -316,6 +317,32 @@ def create_qwen35_adaptive_exact_budget_cache(
)
+def create_qwen35_query_ema_exact_budget_cache(
+ model_or_config: Qwen35Source,
+ *,
+ plan: ExactBudgetRowPlan,
+ rounding: RoundingMode = "nearest",
+ seed: int = 2339,
+ record_evidence: bool = False,
+) -> QueryEmaMixedPackedRecurrentStateCache:
+ """Create the frozen half-life-32 query-EMA mixed cache for Qwen3.5.
+
+ The exact plan continues to fix each layer's promotion quota and packed-state
+ bytes. Before every recurrent-state update, a matching post-convolution query
+ must be supplied through ``stage_query_observation`` (normally by the Qwen3.5
+ query observer). Missing or invalid observations fail closed. Persistent FP32
+ EMA metadata is reported separately from packed recurrent-state storage.
+ """
+
+ return QueryEmaMixedPackedRecurrentStateCache(
+ _validated_exact_budget_config(model_or_config, plan=plan),
+ plan=plan,
+ rounding=rounding,
+ seed=seed,
+ record_evidence=record_evidence,
+ )
+
+
def create_qwen35_rank_fused_exact_budget_cache(
model_or_config: Qwen35Source,
*,
diff --git a/tests/test_pilot_evaluate_hrr.py b/tests/test_pilot_evaluate_hrr.py
index 1606aa4..96deadf 100644
--- a/tests/test_pilot_evaluate_hrr.py
+++ b/tests/test_pilot_evaluate_hrr.py
@@ -4,10 +4,12 @@
import pytest
import torch
+from transformers import Qwen3_5ForCausalLM
from scripts import pilot_evaluate_hrr as evaluator
from scripts import pilot_hrr_rows, pilot_loss_sensitivity_rows
from scripts import pilot_validate_storage_boundary as storage_validator
+from tests.test_transformers_cache import tiny_config
def _quantizers() -> dict[str, object]:
@@ -493,6 +495,136 @@ def test_experiment006_rank_fusion_holdout_remains_fail_closed() -> None:
)
+def test_experiment007_query_ema_holdout_remains_fail_closed() -> None:
+ selectors = [
+ _frozen_selector(evaluator.HRR_ARTIFACT_KIND),
+ _frozen_selector(evaluator.LOSS_ARTIFACT_KIND),
+ ]
+
+ with pytest.raises(ValueError, match="CQER-32 holdout remains closed"):
+ evaluator.validate_frozen_holdout_request(
+ offset=8,
+ limit=8,
+ bootstrap_samples=10_000,
+ selectors=selectors,
+ loss_selector_present=True,
+ storage_boundary_present=True,
+ query_ema_enabled=True,
+ )
+
+
+@pytest.mark.parametrize(
+ "changes",
+ [
+ {"offset": 1},
+ {"limit": 7},
+ {"bootstrap_samples": 9999},
+ ],
+)
+def test_experiment007_development_request_refuses_partial_or_drifted_runs(
+ changes: dict[str, int],
+) -> None:
+ arguments = {
+ "enabled": True,
+ "offset": 0,
+ "limit": 8,
+ "bootstrap_samples": 10_000,
+ }
+ arguments.update(changes)
+
+ with pytest.raises(ValueError, match="offset 0, exactly 8 tasks"):
+ evaluator.validate_cqer_development_request(**arguments)
+
+ evaluator.validate_cqer_development_request(
+ enabled=False,
+ offset=99,
+ limit=1,
+ bootstrap_samples=1,
+ )
+
+
+def test_experiment007_requires_exact_eight_task_selector_pair(
+ monkeypatch: pytest.MonkeyPatch,
+) -> None:
+ selectors = [
+ _frozen_selector(evaluator.HRR_ARTIFACT_KIND),
+ _frozen_selector(evaluator.LOSS_ARTIFACT_KIND),
+ ]
+ monkeypatch.setattr(
+ evaluator,
+ "CQER_DEVELOPMENT_TASK_IDS",
+ tuple(range(100, 108)),
+ )
+ monkeypatch.setattr(
+ evaluator,
+ "CQER_FROZEN_SELECTOR_CANONICAL_SHA256S",
+ tuple(
+ evaluator.sha256_bytes(evaluator.canonical_json_bytes(selector))
+ for selector in selectors
+ ),
+ )
+ evaluator.validate_cqer_selector_artifacts(enabled=True, selectors=selectors)
+
+ selectors[1]["dataset"]["tasks"].append(
+ {
+ "task_id": 999,
+ "prompt_tokens": 1,
+ "code_tokens": 2,
+ "scored_transitions": 1,
+ }
+ )
+ with pytest.raises(ValueError, match="eight-task selector artifacts"):
+ evaluator.validate_cqer_selector_artifacts(enabled=True, selectors=selectors)
+
+
+def test_experiment007_rejects_selector_content_with_drifted_canonical_hash(
+ monkeypatch: pytest.MonkeyPatch,
+) -> None:
+ selectors = [
+ _frozen_selector(evaluator.HRR_ARTIFACT_KIND),
+ _frozen_selector(evaluator.LOSS_ARTIFACT_KIND),
+ ]
+ monkeypatch.setattr(
+ evaluator,
+ "CQER_DEVELOPMENT_TASK_IDS",
+ tuple(range(100, 108)),
+ )
+ monkeypatch.setattr(
+ evaluator,
+ "CQER_FROZEN_SELECTOR_CANONICAL_SHA256S",
+ tuple(
+ evaluator.sha256_bytes(evaluator.canonical_json_bytes(selector))
+ for selector in selectors
+ ),
+ )
+ selectors[1]["byte_budget"]["target_resident_bytes"] = 999
+
+ with pytest.raises(ValueError, match="canonical hashes"):
+ evaluator.validate_cqer_selector_artifacts(enabled=True, selectors=selectors)
+
+
+def test_experiment007_pins_ordered_task_ids_and_layer_quotas() -> None:
+ evaluator.validate_cqer_development_task_ids(
+ enabled=True,
+ task_ids=evaluator.CQER_DEVELOPMENT_TASK_IDS,
+ )
+ evaluator.validate_cqer_layer_quotas(
+ enabled=True,
+ quotas=dict(evaluator.CQER_FROZEN_LAYER_QUOTAS),
+ )
+
+ with pytest.raises(ValueError, match="frozen ordered prefix"):
+ evaluator.validate_cqer_development_task_ids(
+ enabled=True,
+ task_ids=tuple(reversed(evaluator.CQER_DEVELOPMENT_TASK_IDS)),
+ )
+ drifted = dict(evaluator.CQER_FROZEN_LAYER_QUOTAS)
+ drifted[0] -= 1
+ drifted[1] += 1
+ with pytest.raises(ValueError, match="frozen target-Fisher allocation"):
+ evaluator.validate_cqer_layer_quotas(enabled=True, quotas=drifted)
+
+
@pytest.mark.parametrize(
("changes", "message"),
[
@@ -781,15 +913,182 @@ def test_frozen_holdout_gate_reports_each_threshold_failure(mutation, failed_che
assert gate["checks"][failed_check]["passed"] is False
+def _passing_cqer_development_inputs() -> dict[str, object]:
+ methods = {
+ evaluator.QUERY_EMA_PRIMARY: {
+ "macro_delta_nll": 0.40,
+ "macro_mean_kl": 0.40,
+ "macro_cvar95_kl": 1.00,
+ "macro_top1_agreement": 0.80,
+ "task_count": 1,
+ "token_count": 10,
+ },
+ evaluator.ADAPTIVE_TARGET_FISHER: {
+ "macro_delta_nll": 0.50,
+ "macro_mean_kl": 0.50,
+ "macro_cvar95_kl": 0.95,
+ "macro_top1_agreement": 0.795,
+ "task_count": 1,
+ "token_count": 10,
+ },
+ "target_directional_fisher_difference_int4": {
+ "macro_delta_nll": 0.60,
+ "macro_mean_kl": 0.60,
+ "macro_cvar95_kl": 1.10,
+ "macro_top1_agreement": 0.805,
+ "task_count": 1,
+ "token_count": 10,
+ },
+ }
+ per_task = {
+ name: [
+ {
+ "task_id": task_id,
+ "delta_nll": values["macro_delta_nll"],
+ "mean_kl": values["macro_mean_kl"],
+ "cvar95_kl": values["macro_cvar95_kl"],
+ "top1_agreement": values["macro_top1_agreement"],
+ "token_count": 10,
+ "candidate_nll": 1.0,
+ "reference_nll": 0.5,
+ "max_kl": 1.5,
+ "all_logits_finite": True,
+ }
+ for task_id in range(8)
+ ]
+ for name, values in methods.items()
+ }
+ storage = {
+ name: {
+ "resident_bytes": 100,
+ "high_precision_groups": 2,
+ }
+ for name in methods
+ }
+ storage[evaluator.QUERY_EMA_PRIMARY].update(
+ selector_auxiliary_bytes=8,
+ resident_bytes_including_selector=108,
+ )
+ diagnostics = {
+ evaluator.QUERY_EMA_PRIMARY: [
+ {
+ "task_id": task_id,
+ "layers": [
+ {
+ "layer_index": 0,
+ "quota": 2,
+ "current_selected_count": 2,
+ "observations_committed": 3,
+ "state_updates": 3,
+ "selector_auxiliary_bytes": 8,
+ "current_mask_sha256": "a" * 64,
+ "pending_observation": False,
+ "last_cutoff_score_margin": 0.01,
+ }
+ ],
+ }
+ for task_id in range(8)
+ ]
+ }
+ return {
+ "aggregates": methods,
+ "per_task": per_task,
+ "per_task_full_code": deepcopy(per_task),
+ "storage": storage,
+ "query_ema_diagnostics": diagnostics,
+ "expected_quotas": {0: 2},
+ "expected_packed_bytes": 100,
+ "expected_selector_auxiliary_bytes": 8,
+ }
+
+
+def test_cqer_development_gate_passes_only_the_frozen_conjunction() -> None:
+ inputs = _passing_cqer_development_inputs()
+
+ gate = evaluator.evaluate_cqer_development_gate(**inputs)
+
+ assert gate["passed"] is True
+ assert all(check["passed"] is True for check in gate["checks"].values())
+
+ inputs = _passing_cqer_development_inputs()
+ inputs["aggregates"][evaluator.QUERY_EMA_PRIMARY]["macro_delta_nll"] = 0.49
+ gate = evaluator.evaluate_cqer_development_gate(**inputs)
+ assert gate["passed"] is False
+ assert gate["checks"]["relative_nll_reduction_vs_plain_adaptive"]["passed"] is False
+ assert gate["checks"]["relative_nll_reduction_vs_strongest_static"]["passed"] is False
+
+
+def test_cqer_development_gate_rejects_stale_stage_consume_state() -> None:
+ inputs = _passing_cqer_development_inputs()
+ layer = inputs["query_ema_diagnostics"][evaluator.QUERY_EMA_PRIMARY][0]["layers"][0]
+ layer["pending_observation"] = True
+
+ gate = evaluator.evaluate_cqer_development_gate(**inputs)
+
+ assert gate["passed"] is False
+ assert gate["checks"]["exact_stage_consume_handshake"]["passed"] is False
+
+ inputs = _passing_cqer_development_inputs()
+ inputs["per_task_full_code"][evaluator.QUERY_EMA_PRIMARY][0][
+ "all_logits_finite"
+ ] = False
+ gate = evaluator.evaluate_cqer_development_gate(**inputs)
+ assert gate["passed"] is False
+ assert gate["checks"]["all_values_finite"]["passed"] is False
+
+
+def test_evaluator_runs_cqer_observer_through_prefill_and_decode() -> None:
+ torch.manual_seed(443)
+ config = tiny_config()
+ model = Qwen3_5ForCausalLM._from_config(
+ config,
+ attn_implementation="eager",
+ ).eval()
+ scores = {0: torch.arange(16, dtype=torch.float32).reshape(2, 8)}
+ plan = evaluator.select_rows_exact_budget(
+ scores,
+ target_resident_bytes=118,
+ group_size=8,
+ )
+ prompt_ids = torch.randint(0, config.vocab_size, (1, 4))
+ code_ids = torch.randint(0, config.vocab_size, (1, 3))
+
+ with torch.inference_mode():
+ summaries, _, storage, diagnostics, reference_bytes = evaluator.evaluate_task(
+ model,
+ prompt_ids=prompt_ids,
+ code_ids=code_ids,
+ plans={},
+ adaptive_plans={},
+ query_ema_plans={evaluator.QUERY_EMA_PRIMARY: plan},
+ )
+
+ query_summary = summaries[evaluator.QUERY_EMA_PRIMARY]
+ query_storage = storage[evaluator.QUERY_EMA_PRIMARY]
+ layer = diagnostics[evaluator.QUERY_EMA_PRIMARY][0]
+ assert query_summary["token_count"] == 2
+ assert query_storage["resident_bytes"] == plan.resident_bytes
+ assert query_storage["selector_auxiliary_bytes"] == 64
+ assert layer["observations_committed"] == 3
+ assert layer["state_updates"] == 3
+ assert layer["tokens_observed"] == 6
+ assert layer["pending_observation"] is False
+ assert reference_bytes > 0
+
+
def test_claim_and_exit_code_follow_actual_primary_and_gate() -> None:
static_claim = evaluator.primary_claim_text("hrr_h32")
adaptive_claim = evaluator.primary_claim_text(evaluator.ADAPTIVE_TARGET_FISHER)
fusion_claim = evaluator.primary_claim_text(evaluator.RANK_FUSION_PRIMARY)
+ query_ema_claim = evaluator.primary_claim_text(evaluator.QUERY_EMA_PRIMARY)
assert "static HRR" in static_claim
assert "no loss-selector" in static_claim
assert "target-directional-Fisher" in adaptive_claim
assert "equal-weight ordinal rank fusion" in fusion_claim
+ assert "normalized-query-energy EMA" in query_ema_claim
+ assert "32-token half-life" in query_ema_claim
+ assert evaluator.QUERY_EMA_HALF_LIFE == 32
assert evaluator.RANK_FUSION_METHODS == (
("rank_fusion_l025_target_fisher_adaptive_mse", 0.25),
("rank_fusion_l050_target_fisher_adaptive_mse", 0.50),
diff --git a/tests/test_query_ema_mixed_packed_cache.py b/tests/test_query_ema_mixed_packed_cache.py
new file mode 100644
index 0000000..b6e5594
--- /dev/null
+++ b/tests/test_query_ema_mixed_packed_cache.py
@@ -0,0 +1,405 @@
+from __future__ import annotations
+
+import math
+
+import pytest
+import torch
+from transformers import Qwen3_5ForCausalLM
+
+from recurquant import (
+ QueryEmaMixedPackedLinearAttentionLayer,
+ QueryEmaMixedPackedRecurrentStateCache,
+ create_qwen35_query_ema_exact_budget_cache,
+)
+from recurquant.mixed_quantization import PackedMixedQuantizedTensor
+from recurquant.query_energy import Qwen35QueryEnergyObserver
+from recurquant.row_policy import ExactBudgetRowPlan, select_rows_exact_budget
+from tests.test_transformers_cache import tiny_config
+
+
+def _target_for_promotions(promotions: int) -> int:
+ total_groups = 16
+ group_size = 8
+ low_group_bytes = math.ceil(4 * group_size / 8) + 2
+ high_increment = math.ceil(8 * group_size / 8) - math.ceil(4 * group_size / 8)
+ return total_groups * low_group_bytes + math.ceil(total_groups / 8) + (
+ promotions * high_increment
+ )
+
+
+def _plan(promotions: int) -> ExactBudgetRowPlan:
+ scores = {0: torch.arange(16, dtype=torch.float32).reshape(2, 8)}
+ return select_rows_exact_budget(
+ scores,
+ target_resident_bytes=_target_for_promotions(promotions),
+ group_size=8,
+ )
+
+
+def _cache(
+ promotions: int = 1,
+ *,
+ record_evidence: bool = False,
+) -> QueryEmaMixedPackedRecurrentStateCache:
+ return create_qwen35_query_ema_exact_budget_cache(
+ tiny_config(),
+ plan=_plan(promotions),
+ record_evidence=record_evidence,
+ )
+
+
+def _layer(
+ cache: QueryEmaMixedPackedRecurrentStateCache,
+) -> QueryEmaMixedPackedLinearAttentionLayer:
+ layer = cache.layers[0]
+ assert isinstance(layer, QueryEmaMixedPackedLinearAttentionLayer)
+ return layer
+
+
+def _query(*active_rows: int, tokens: int = 1, scale: float = 1.0) -> torch.Tensor:
+ query = torch.zeros((1, tokens, 2, 8), dtype=torch.float32)
+ for token in range(tokens):
+ for row in active_rows:
+ query.reshape(1, tokens, 16)[0, token, row] = scale
+ return query
+
+
+def _difficult_state() -> torch.Tensor:
+ pattern = torch.tensor([1.0, 0.51, -0.37, 0.23, 0.14, -0.08, 0.03, -0.01])
+ state = torch.zeros((1, 2, 8, 8), dtype=torch.float32)
+ state.reshape(16, 8)[0] = pattern * 10.0
+ state.reshape(16, 8)[1] = pattern
+ return state
+
+
+def _packed_mask(cache: QueryEmaMixedPackedRecurrentStateCache) -> torch.Tensor:
+ packed = _layer(cache).packed_states[0]
+ assert packed is not None
+ return packed.high_precision_mask().reshape(-1)
+
+
+def test_query_energy_can_override_an_irrelevant_high_mse_row() -> None:
+ cache = _cache(promotions=1)
+ cache.stage_query_observation(0, _query(1, tokens=256))
+
+ cache.update_recurrent_state(_difficult_state(), layer_idx=0)
+
+ assert _packed_mask(cache).nonzero().reshape(-1).tolist() == [1]
+
+
+def test_first_update_starts_from_frozen_uniform_ema() -> None:
+ cache = _cache(promotions=1)
+ cache.stage_query_observation(0, _query(0))
+ cache.update_recurrent_state(_difficult_state(), layer_idx=0)
+ layer = _layer(cache)
+ assert layer.query_energy_ema is not None
+
+ expected = torch.full((2, 8), layer.query_ema_decay / 8, dtype=torch.float32)
+ expected[0, 0] += (1.0 - layer.query_ema_decay) / (1.0 + layer.query_l2norm_eps)
+ assert torch.allclose(layer.query_energy_ema, expected, atol=1e-8, rtol=1e-6)
+
+
+@pytest.mark.parametrize("promotions", [0, 5, 16])
+def test_fixed_quota_packed_bytes_and_selector_auxiliary_bytes(promotions: int) -> None:
+ plan = _plan(promotions)
+ cache = create_qwen35_query_ema_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ record_evidence=True,
+ )
+ cache.stage_query_observation(0, _query(0, 3, tokens=2))
+
+ cache.update_recurrent_state(torch.zeros((1, 2, 8, 8)), layer_idx=0)
+
+ summary = cache.storage_summary()
+ assert _packed_mask(cache).sum().item() == promotions
+ assert summary["resident_bytes"] == plan.resident_bytes
+ assert summary["selector_auxiliary_bytes"] == 2 * 8 * 4
+ assert summary["resident_bytes_including_selector"] == plan.resident_bytes + 64
+ assert cache.update_evidence[0].selection_method == (
+ "query_ema32_weighted_aligned_mse_reduction"
+ )
+
+
+def test_chunk_ema_matches_sequential_one_token_updates() -> None:
+ generator = torch.Generator().manual_seed(401)
+ queries = torch.randn((1, 7, 2, 8), generator=generator)
+ state = torch.randn((1, 2, 8, 8), generator=generator)
+ chunked = _cache(promotions=3)
+ sequential = _cache(promotions=3)
+
+ chunked.stage_query_observation(0, queries)
+ chunked.update_recurrent_state(state, layer_idx=0)
+ for token in range(queries.shape[1]):
+ sequential.stage_query_observation(0, queries[:, token : token + 1])
+ sequential.update_recurrent_state(state, layer_idx=0)
+
+ chunked_ema = _layer(chunked).query_energy_ema
+ sequential_ema = _layer(sequential).query_energy_ema
+ assert chunked_ema is not None
+ assert sequential_ema is not None
+ layer = _layer(chunked)
+ assert torch.allclose(
+ chunked_ema,
+ sequential_ema,
+ atol=layer.query_ema_chunk_atol,
+ rtol=layer.query_ema_chunk_rtol,
+ )
+
+
+def test_query_scaling_preserves_row_selection() -> None:
+ state = torch.randn((1, 2, 8, 8), generator=torch.Generator().manual_seed(409))
+ first = _cache(promotions=4)
+ second = _cache(promotions=4)
+ query = torch.randn((1, 3, 2, 8), generator=torch.Generator().manual_seed(419))
+
+ first.stage_query_observation(0, query)
+ second.stage_query_observation(0, query * 32.0)
+ first.update_recurrent_state(state, layer_idx=0)
+ second.update_recurrent_state(state, layer_idx=0)
+
+ assert torch.equal(_packed_mask(first), _packed_mask(second))
+
+
+def test_missing_and_duplicate_query_observations_fail_closed() -> None:
+ cache = _cache(promotions=2)
+ state = torch.zeros((1, 2, 8, 8))
+
+ with pytest.raises(RuntimeError, match="no staged query observation"):
+ cache.update_recurrent_state(state, layer_idx=0)
+ assert _layer(cache).packed_states[0] is None
+
+ cache.stage_query_observation(0, _query(0))
+ with pytest.raises(RuntimeError, match="duplicate query observation"):
+ cache.stage_query_observation(0, _query(1))
+ with pytest.raises(RuntimeError, match="no staged query observation"):
+ cache.update_recurrent_state(state, layer_idx=0)
+ assert _layer(cache).query_energy_ema is None
+
+
+@pytest.mark.parametrize(
+ ("query", "error_type", "message"),
+ [
+ (torch.zeros((2, 1, 2, 8)), ValueError, "must have shape"),
+ (torch.zeros((1, 0, 2, 8)), ValueError, "must have shape"),
+ (torch.zeros((1, 1, 1, 8)), ValueError, "must have shape"),
+ (torch.zeros((1, 1, 2, 7)), ValueError, "must have shape"),
+ (torch.zeros((1, 1, 2, 8), dtype=torch.int64), TypeError, "floating point"),
+ (torch.full((1, 1, 2, 8), float("nan")), ValueError, "must be finite"),
+ (torch.zeros((1, 1, 2, 8), device="meta"), ValueError, "materialized"),
+ ],
+)
+def test_invalid_query_observations_are_rejected(
+ query: torch.Tensor,
+ error_type: type[Exception],
+ message: str,
+) -> None:
+ cache = _cache()
+
+ with pytest.raises(error_type, match=message):
+ cache.stage_query_observation(0, query)
+
+ assert _layer(cache)._pending_query_observation is None
+
+
+def test_query_observation_must_share_the_persistent_ema_device() -> None:
+ layer = _layer(_cache())
+ layer.query_energy_ema = torch.empty((2, 8), dtype=torch.float32, device="meta")
+
+ with pytest.raises(ValueError, match="query observation and query EMA"):
+ layer.stage_query_observation(_query(0))
+
+ assert layer._pending_query_observation is None
+
+
+@pytest.mark.parametrize("epsilon", [0.0, 1e-5, float("nan"), float("inf")])
+def test_frozen_normalization_epsilon_cannot_be_tuned(epsilon: float) -> None:
+ with pytest.raises(ValueError, match="frozen at 1e-6"):
+ _cache().stage_query_observation(0, _query(0), l2norm_eps=epsilon)
+
+
+def test_stale_observation_and_failed_pack_do_not_commit_ema() -> None:
+ stale = _cache()
+ stale.stage_query_observation(0, _query(0))
+ stale_layer = _layer(stale)
+ stale_layer._update_count += 1
+ with pytest.raises(RuntimeError, match="stale query observation"):
+ stale.update_recurrent_state(torch.zeros((1, 2, 8, 8)), layer_idx=0)
+ assert stale_layer.query_energy_ema is None
+ assert stale_layer._pending_query_observation is None
+
+ tracked = _cache()
+ tracked.stage_query_observation(0, _query(0))
+ with pytest.raises(RuntimeError, match="inference-only"):
+ tracked.update_recurrent_state(
+ torch.zeros((1, 2, 8, 8), requires_grad=True),
+ layer_idx=0,
+ )
+ assert _layer(tracked).query_energy_ema is None
+ assert _layer(tracked)._pending_query_observation is None
+
+
+def test_reset_offload_prefetch_and_diagnostics_handle_fp32_ema() -> None:
+ cache = _cache(promotions=2)
+ cache.stage_query_observation(0, _query(0, 1, tokens=3))
+ cache.update_recurrent_state(_difficult_state(), layer_idx=0)
+ layer = _layer(cache)
+ assert layer.query_energy_ema is not None
+ assert layer.query_energy_ema.dtype == torch.float32
+ diagnostics = cache.query_ema_diagnostics()[0]
+ assert diagnostics["observations_committed"] == 1
+ assert diagnostics["tokens_observed"] == 3
+ assert diagnostics["selector_auxiliary_bytes"] == 64
+
+ layer.offload()
+ assert layer.query_energy_ema.device.type == "cpu"
+ layer.prefetch()
+ assert layer.query_energy_ema.device == torch.device("cpu")
+
+ cache.reset()
+ assert torch.equal(
+ layer.query_energy_ema,
+ torch.full((2, 8), 1.0 / 8, dtype=torch.float32),
+ )
+ assert cache.query_ema_diagnostics()[0]["observations_committed"] == 0
+ assert cache.query_ema_diagnostics()[0]["state_updates"] == 0
+
+ cache.stage_query_observation(0, _query(2))
+ cache.update_recurrent_state(_difficult_state(), layer_idx=0)
+ after_reset = cache.query_ema_diagnostics()[0]
+ assert after_reset["observations_committed"] == 1
+ assert after_reset["state_updates"] == 1
+ assert after_reset["last_mask_overlap"] is None
+ assert after_reset["last_mask_churn"] is None
+
+
+def test_pending_observation_is_discarded_if_transfer_is_attempted() -> None:
+ layer = _layer(_cache())
+ layer.stage_query_observation(_query(0))
+
+ with pytest.raises(RuntimeError, match="cannot offload with a pending"):
+ layer.offload()
+
+ assert layer._pending_query_observation is None
+ layer.discard_pending_query_observation()
+
+
+def test_failed_materialization_rolls_back_packed_state_ema_and_generation(
+ monkeypatch: pytest.MonkeyPatch,
+) -> None:
+ cache = _cache(promotions=2)
+ layer = _layer(cache)
+ cache.stage_query_observation(0, _query(0, 1, tokens=2))
+ cache.update_recurrent_state(_difficult_state(), layer_idx=0)
+ previous_packed = layer.packed_states[0]
+ assert previous_packed is not None
+ assert layer.query_energy_ema is not None
+ previous_ema = layer.query_energy_ema.clone()
+ previous_diagnostics = layer.query_ema_diagnostics()
+
+ cache.stage_query_observation(0, _query(3))
+
+ def fail_dequantize(self: PackedMixedQuantizedTensor) -> torch.Tensor:
+ raise RuntimeError("injected dequantize failure")
+
+ monkeypatch.setattr(PackedMixedQuantizedTensor, "dequantize", fail_dequantize)
+ with pytest.raises(RuntimeError, match="injected dequantize failure"):
+ cache.update_recurrent_state(_difficult_state() * 2, layer_idx=0)
+
+ assert layer.packed_states[0] is previous_packed
+ assert torch.equal(layer.query_energy_ema, previous_ema)
+ assert layer.query_ema_diagnostics() == previous_diagnostics
+ assert layer._pending_query_observation is None
+
+
+def test_failed_postvalidation_rolls_back_without_appending_evidence(
+ monkeypatch: pytest.MonkeyPatch,
+) -> None:
+ cache = _cache(promotions=2, record_evidence=True)
+ layer = _layer(cache)
+ cache.stage_query_observation(0, _query(0, 1, tokens=2))
+ cache.update_recurrent_state(_difficult_state(), layer_idx=0)
+ previous_packed = layer.packed_states[0]
+ assert previous_packed is not None
+ assert layer.query_energy_ema is not None
+ previous_ema = layer.query_energy_ema.clone()
+ previous_diagnostics = layer.query_ema_diagnostics()
+ previous_evidence = list(cache.update_evidence)
+ previous_update_index = cache._update_index
+
+ cache.stage_query_observation(0, _query(3))
+ original_high_precision_mask = PackedMixedQuantizedTensor.high_precision_mask
+ mask_calls = 0
+
+ def fail_postvalidation_mask(
+ self: PackedMixedQuantizedTensor,
+ ) -> torch.Tensor:
+ nonlocal mask_calls
+ mask_calls += 1
+ if mask_calls == 3:
+ raise RuntimeError("injected postvalidation failure")
+ return original_high_precision_mask(self)
+
+ monkeypatch.setattr(
+ PackedMixedQuantizedTensor,
+ "high_precision_mask",
+ fail_postvalidation_mask,
+ )
+ with pytest.raises(RuntimeError, match="injected postvalidation failure"):
+ cache.update_recurrent_state(_difficult_state() * 2, layer_idx=0)
+
+ assert mask_calls == 3
+ assert layer.packed_states[0] is previous_packed
+ assert torch.equal(layer.query_energy_ema, previous_ema)
+ assert layer.query_ema_diagnostics() == previous_diagnostics
+ assert cache.update_evidence == previous_evidence
+ assert cache._update_index == previous_update_index
+ assert layer._pending_query_observation is None
+
+
+def test_invalid_state_index_discards_pending_observation() -> None:
+ layer = _layer(_cache())
+ layer.stage_query_observation(_query(0))
+
+ with pytest.raises(IndexError, match="state_idx 99"):
+ layer.update_recurrent_state(_difficult_state(), state_idx=99)
+
+ assert layer._pending_query_observation is None
+
+
+def test_real_tiny_qwen_observer_runs_prefill_cached_chunk_and_decode() -> None:
+ model = Qwen3_5ForCausalLM._from_config(
+ tiny_config(),
+ attn_implementation="eager",
+ ).eval()
+ cache = create_qwen35_query_ema_exact_budget_cache(
+ model,
+ plan=_plan(5),
+ record_evidence=True,
+ )
+
+ with torch.inference_mode(), Qwen35QueryEnergyObserver(model, caches=[cache]):
+ prefill = model(
+ torch.randint(0, model.config.vocab_size, (1, 5)),
+ past_key_values=cache,
+ )
+ chunk = model(
+ torch.randint(0, model.config.vocab_size, (1, 2)),
+ past_key_values=cache,
+ )
+ decode = model(
+ torch.randint(0, model.config.vocab_size, (1, 1)),
+ past_key_values=cache,
+ )
+
+ assert prefill.logits.shape == (1, 5, model.config.vocab_size)
+ assert chunk.logits.shape == (1, 2, model.config.vocab_size)
+ assert decode.logits.shape == (1, 1, model.config.vocab_size)
+ diagnostics = cache.query_ema_diagnostics()[0]
+ assert diagnostics["observations_committed"] == 3
+ assert diagnostics["state_updates"] == diagnostics["observations_committed"]
+ assert diagnostics["tokens_observed"] == 8
+ assert diagnostics["pending_observation"] is False
+ assert diagnostics["current_selected_count"] == 5
+ assert isinstance(diagnostics["current_mask_sha256"], str)
+ assert len(cache.update_evidence) == 3
diff --git a/tests/test_query_energy.py b/tests/test_query_energy.py
new file mode 100644
index 0000000..482658b
--- /dev/null
+++ b/tests/test_query_energy.py
@@ -0,0 +1,365 @@
+from __future__ import annotations
+
+from typing import Any
+
+import pytest
+import torch
+
+from recurquant.query_energy import Qwen35QueryEnergyObserver
+
+
+class _QueryAwareCache:
+ def __init__(self, *, has_previous_state: bool = False) -> None:
+ self.previous = has_previous_state
+ self.pending: dict[int, torch.Tensor] = {}
+ self.staged: list[tuple[int, torch.Tensor, float]] = []
+ self.updates: list[tuple[int, torch.Tensor]] = []
+ self.discards: list[int] = []
+ self.fail_stage = False
+ self.fail_update = False
+
+ def has_previous_state(self, layer_index: int) -> bool:
+ return self.previous
+
+ def stage_query_observation(
+ self,
+ layer_index: int,
+ query: torch.Tensor,
+ *,
+ l2norm_eps: float,
+ ) -> None:
+ if self.fail_stage:
+ raise RuntimeError("stage failed")
+ snapshot = query.detach().clone()
+ self.pending[layer_index] = snapshot
+ self.staged.append((layer_index, snapshot, l2norm_eps))
+
+ def discard_pending_query_observation(self, layer_index: int) -> None:
+ self.pending.pop(layer_index, None)
+ self.discards.append(layer_index)
+
+ def update_recurrent_state(
+ self,
+ state: torch.Tensor,
+ layer_idx: int,
+ ) -> torch.Tensor:
+ if self.fail_update:
+ raise RuntimeError("update failed")
+ if layer_idx not in self.pending:
+ raise RuntimeError("query was not staged before recurrent update")
+ self.pending.pop(layer_idx)
+ self.updates.append((layer_idx, state.detach().clone()))
+ self.previous = True
+ return state
+
+
+class _ReferenceCache:
+ def __init__(self, *, has_previous_state: bool = False) -> None:
+ self.previous = has_previous_state
+ self.updates = 0
+
+ def has_previous_state(self, layer_index: int) -> bool:
+ return self.previous
+
+ def update_recurrent_state(
+ self,
+ state: torch.Tensor,
+ layer_idx: int,
+ ) -> torch.Tensor:
+ self.previous = True
+ self.updates += 1
+ return state
+
+
+class Qwen3_5GatedDeltaNet(torch.nn.Module):
+ def __init__(self, layer_idx: int) -> None:
+ super().__init__()
+ self.layer_idx = layer_idx
+ self.kernel_calls: list[str] = []
+ self.queries: list[torch.Tensor] = []
+ self.chunk_gated_delta_rule = self._chunk
+ self.recurrent_gated_delta_rule = self._recurrent
+
+ def _chunk(self, query: torch.Tensor, *args: object, **kwargs: object):
+ self.kernel_calls.append("chunk")
+ self.queries.append(query.detach().clone())
+ return query, query.sum(dim=1)
+
+ def _recurrent(self, query: torch.Tensor, *args: object, **kwargs: object):
+ self.kernel_calls.append("recurrent")
+ self.queries.append(query.detach().clone())
+ return query, query.sum(dim=1)
+
+ def forward(
+ self,
+ hidden_states: torch.Tensor,
+ cache_params: object | None = None,
+ attention_mask: torch.Tensor | None = None,
+ **kwargs: object,
+ ) -> torch.Tensor:
+ del attention_mask
+ # Stand in for Qwen3.5's causal convolution, reshape, and key-head repeat.
+ query = (hidden_states + 7.0).repeat_interleave(2, dim=2)
+ previous = cache_params is not None and cache_params.has_previous_state( # type: ignore[attr-defined]
+ self.layer_idx
+ )
+ if previous and query.shape[1] == 1:
+ output, final_state = self.recurrent_gated_delta_rule(query)
+ else:
+ output, final_state = self.chunk_gated_delta_rule(
+ query,
+ cu_seqlens=kwargs.get("cu_seq_lens_q"),
+ )
+ if cache_params is not None:
+ cache_params.update_recurrent_state( # type: ignore[attr-defined]
+ final_state,
+ self.layer_idx,
+ )
+ return output
+
+
+class _TinyModel(torch.nn.Module):
+ def __init__(self, layers: int = 1) -> None:
+ super().__init__()
+ self.layers = torch.nn.ModuleList(
+ [Qwen3_5GatedDeltaNet(index) for index in range(layers)]
+ )
+
+ def forward(
+ self,
+ hidden_states: torch.Tensor,
+ cache_params: object | None = None,
+ **kwargs: object,
+ ) -> torch.Tensor:
+ output = hidden_states
+ for layer in self.layers:
+ output = layer(output, cache_params=cache_params, **kwargs)
+ return output
+
+
+def _input(sequence_length: int) -> torch.Tensor:
+ return torch.arange(sequence_length * 2, dtype=torch.float32).reshape(
+ 1,
+ sequence_length,
+ 1,
+ 2,
+ )
+
+
+def test_observes_post_convolution_repeated_query_for_all_forward_modes() -> None:
+ model = _TinyModel()
+ cache = _QueryAwareCache()
+
+ with Qwen35QueryEnergyObserver(model, caches=[cache], l2norm_eps=2e-5):
+ model(_input(3), cache_params=cache) # uncached prefill
+ model(_input(2), cache_params=cache) # cached multi-token chunk
+ model(_input(1), cache_params=cache) # cached one-token decode
+
+ assert model.layers[0].kernel_calls == ["chunk", "chunk", "recurrent"]
+ assert len(cache.staged) == 3
+ assert len(cache.updates) == 3
+ assert not cache.pending
+ for (layer_index, staged, eps), kernel_query in zip(
+ cache.staged,
+ model.layers[0].queries,
+ strict=True,
+ ):
+ assert layer_index == 0
+ assert torch.equal(staged, kernel_query)
+ assert staged.shape[2] == 2
+ assert eps == 2e-5
+
+
+def test_dispatches_strictly_by_identity_across_two_caches() -> None:
+ model = _TinyModel()
+ first = _QueryAwareCache()
+ second = _QueryAwareCache()
+
+ with Qwen35QueryEnergyObserver(model, caches=[first, second]):
+ model(_input(2), cache_params=first)
+ model(_input(2), cache_params=second)
+
+ assert len(first.staged) == 1
+ assert len(second.staged) == 1
+ assert first.staged[0][1].data_ptr() != second.staged[0][1].data_ptr()
+
+
+def test_reference_cache_and_direct_kernel_calls_pass_through_unchanged() -> None:
+ model = _TinyModel()
+ observed = _QueryAwareCache()
+ reference = _ReferenceCache()
+ kernel = model.layers[0].chunk_gated_delta_rule
+
+ with Qwen35QueryEnergyObserver(model, caches=[observed]):
+ output = model(_input(2), cache_params=reference)
+ direct_output = model.layers[0].chunk_gated_delta_rule(_input(1))
+
+ assert output.shape == (1, 2, 2, 2)
+ assert isinstance(direct_output, tuple)
+ assert reference.updates == 1
+ assert not observed.staged
+ assert not observed.discards
+ assert model.layers[0].chunk_gated_delta_rule is kernel
+
+
+def test_restores_forward_and_both_kernels_after_normal_and_exceptional_exit() -> None:
+ model = _TinyModel()
+ cache = _QueryAwareCache()
+ module = model.layers[0]
+ originals = (
+ module.forward,
+ module.chunk_gated_delta_rule,
+ module.recurrent_gated_delta_rule,
+ )
+
+ with Qwen35QueryEnergyObserver(model, caches=[cache]):
+ assert module.forward is not originals[0]
+ assert module.chunk_gated_delta_rule is not originals[1]
+ assert module.recurrent_gated_delta_rule is not originals[2]
+
+ assert module.forward.__func__ is originals[0].__func__
+ assert "forward" not in module.__dict__
+ assert module.chunk_gated_delta_rule is originals[1]
+ assert module.recurrent_gated_delta_rule is originals[2]
+
+ with (
+ pytest.raises(RuntimeError, match="body failed"),
+ Qwen35QueryEnergyObserver(model, caches=[cache]),
+ ):
+ raise RuntimeError("body failed")
+
+ assert module.forward.__func__ is originals[0].__func__
+ assert "forward" not in module.__dict__
+ assert module.chunk_gated_delta_rule is originals[1]
+ assert module.recurrent_gated_delta_rule is originals[2]
+
+
+@pytest.mark.parametrize("failure", ["stage", "update"])
+def test_forward_failure_discards_unconsumed_observation(failure: str) -> None:
+ model = _TinyModel()
+ cache = _QueryAwareCache()
+ if failure == "stage":
+ cache.fail_stage = True
+ else:
+ cache.fail_update = True
+
+ with (
+ Qwen35QueryEnergyObserver(model, caches=[cache]),
+ pytest.raises(RuntimeError, match=f"{failure} failed"),
+ ):
+ model(_input(2), cache_params=cache)
+
+ assert not cache.pending
+ assert cache.discards == [0]
+
+
+def test_packed_cu_seqlens_is_rejected_before_kernel_or_cache_mutation() -> None:
+ model = _TinyModel()
+ cache = _QueryAwareCache()
+
+ with (
+ Qwen35QueryEnergyObserver(model, caches=[cache]),
+ pytest.raises(ValueError, match="does not yet support packed cu_seqlens"),
+ ):
+ model(
+ _input(2),
+ cache_params=cache,
+ cu_seq_lens_q=torch.tensor([0, 2]),
+ )
+
+ assert not model.layers[0].kernel_calls
+ assert not cache.staged
+ assert not cache.updates
+
+
+def test_duplicate_observers_and_duplicate_cache_entries_are_rejected() -> None:
+ model = _TinyModel()
+ cache = _QueryAwareCache()
+
+ with pytest.raises(ValueError, match="same object"):
+ Qwen35QueryEnergyObserver(model, caches=[cache, cache])
+
+ first = Qwen35QueryEnergyObserver(model, caches=[cache])
+ second = Qwen35QueryEnergyObserver(model, caches=[cache])
+ with first, pytest.raises(RuntimeError, match="already installed"):
+ second.install()
+
+
+@pytest.mark.parametrize("cache_argument", [None, _ReferenceCache()])
+def test_unselected_or_missing_cache_bypasses_observer(cache_argument: object | None) -> None:
+ model = _TinyModel()
+ observed = _QueryAwareCache()
+
+ with Qwen35QueryEnergyObserver(model, caches=[observed]):
+ model(_input(2), cache_params=cache_argument)
+
+ assert not observed.staged
+ assert not observed.discards
+
+
+@pytest.mark.parametrize(
+ ("caches", "error", "message"),
+ [
+ ([], ValueError, "at least one"),
+ ([object()], TypeError, "stage_query_observation"),
+ ],
+)
+def test_constructor_fails_closed_on_invalid_cache_contract(
+ caches: list[object],
+ error: type[Exception],
+ message: str,
+) -> None:
+ with pytest.raises(error, match=message):
+ Qwen35QueryEnergyObserver(_TinyModel(), caches=caches)
+
+
+def test_install_fails_atomically_when_a_kernel_attribute_is_invalid() -> None:
+ model = _TinyModel(layers=2)
+ cache = _QueryAwareCache()
+ first = model.layers[0]
+ first_originals = (
+ first.forward,
+ first.chunk_gated_delta_rule,
+ first.recurrent_gated_delta_rule,
+ )
+ model.layers[1].recurrent_gated_delta_rule = None # type: ignore[assignment]
+
+ observer = Qwen35QueryEnergyObserver(model, caches=[cache])
+ with pytest.raises(TypeError, match="must be callable"):
+ observer.install()
+
+ assert first.forward.__func__ is first_originals[0].__func__
+ assert "forward" not in first.__dict__
+ assert first.chunk_gated_delta_rule is first_originals[1]
+ assert first.recurrent_gated_delta_rule is first_originals[2]
+ assert not hasattr(model, "_recurquant_query_energy_observer")
+ assert all(
+ not hasattr(module, "_recurquant_query_energy_observer")
+ for module in model.layers
+ )
+
+
+def test_selected_cache_with_non_tensor_kernel_query_fails_closed() -> None:
+ model = _TinyModel()
+ cache = _QueryAwareCache()
+ module = model.layers[0]
+
+ def malformed_forward(
+ hidden_states: torch.Tensor,
+ cache_params: object | None = None,
+ **kwargs: Any,
+ ) -> torch.Tensor:
+ del kwargs
+ module.chunk_gated_delta_rule("not-a-tensor")
+ raise AssertionError("unreachable")
+
+ module.forward = malformed_forward # type: ignore[method-assign]
+ module.chunk_gated_delta_rule = lambda query: (query, query)
+ with (
+ Qwen35QueryEnergyObserver(model, caches=[cache]),
+ pytest.raises(TypeError, match="did not expose its query tensor"),
+ ):
+ module(_input(2), cache_params=cache)
+
+ assert not cache.pending
+ assert cache.discards == [0]
From dc01f9a6e6941c61a199156a0ae462175f761645 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 03:40:43 +0800
Subject: [PATCH 10/22] research: record CQER-32 development rejection
---
...qer32-same-calibration-8task-3a062771.json | 6589 +++++++++++++++++
research/CLAIM_BOUNDARY.md | 15 +
research/EXPERIMENT_007_RESULT.md | 104 +
research/STATUS.md | 19 +-
4 files changed, 6724 insertions(+), 3 deletions(-)
create mode 100644 evidence/experiment007-cqer32-same-calibration-8task-3a062771.json
create mode 100644 research/EXPERIMENT_007_RESULT.md
diff --git a/evidence/experiment007-cqer32-same-calibration-8task-3a062771.json b/evidence/experiment007-cqer32-same-calibration-8task-3a062771.json
new file mode 100644
index 0000000..d7982a6
--- /dev/null
+++ b/evidence/experiment007-cqer32-same-calibration-8task-3a062771.json
@@ -0,0 +1,6589 @@
+{
+ "artifact_kind": "recurquant_cqer32_same_calibration_quality_diagnostic",
+ "canonical_evidence_sha256": "2226dcc055fff3ebff4dadb9a9908166d361dfd2f61b32757d2eb9c650d1381a",
+ "evidence": {
+ "adaptive_policy_contracts": {
+ "adaptive_mse_hrr_h1_quota": {
+ "batch_size": 1,
+ "layer_quota_source": "hrr_h1 selector plan",
+ "resident_bytes": 2564096,
+ "selection": "per-update aligned INT4-to-INT8 row MSE reduction"
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "batch_size": 1,
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "resident_bytes": 2564096,
+ "selection": "per-update aligned INT4-to-INT8 row MSE reduction"
+ },
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "batch_size": 1,
+ "initial_query_energy": "uniform 1 / key-row count",
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "packed_recurrent_state_bytes": 2564096,
+ "query_energy_decay": 0.9785720620877001,
+ "query_energy_half_life_tokens": 32,
+ "query_normalization": "q / sqrt(sum(q^2) + 1e-6), computed in FP32",
+ "resident_bytes_including_selector": 2711552,
+ "selection": "causal normalized-query-energy EMA multiplied by per-write aligned INT4-to-INT8 row-MSE reduction",
+ "selector_auxiliary_bytes": 147456
+ }
+ },
+ "aggregates": {
+ "adaptive_mse_hrr_h1_quota": {
+ "macro_cvar95_kl": 3.3163906931877136,
+ "macro_delta_nll": 0.7794309854507446,
+ "macro_mean_kl": 0.7939629852771759,
+ "macro_top1_agreement": 0.6900708600878716,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "macro_cvar95_kl": 2.902877390384674,
+ "macro_delta_nll": 0.4933023080229759,
+ "macro_mean_kl": 0.4791950900107622,
+ "macro_top1_agreement": 0.7851893156766891,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "delta_direction_magnitude_int4": {
+ "macro_cvar95_kl": 3.178670048713684,
+ "macro_delta_nll": 0.5449846908450127,
+ "macro_mean_kl": 0.5180577486753464,
+ "macro_top1_agreement": 0.768309511244297,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "hrr_h1": {
+ "macro_cvar95_kl": 3.399073839187622,
+ "macro_delta_nll": 0.6301188990473747,
+ "macro_mean_kl": 0.6441312469542027,
+ "macro_top1_agreement": 0.725699856877327,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "hrr_h32": {
+ "macro_cvar95_kl": 4.149197727441788,
+ "macro_delta_nll": 0.7533748596906662,
+ "macro_mean_kl": 0.7774462774395943,
+ "macro_top1_agreement": 0.706454798579216,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "macro_cvar95_kl": 2.708078309893608,
+ "macro_delta_nll": 0.46279171854257584,
+ "macro_mean_kl": 0.45252710953354836,
+ "macro_top1_agreement": 0.7639170736074448,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "random_rows_s1101": {
+ "macro_cvar95_kl": 7.6882004737854,
+ "macro_delta_nll": 2.729534089565277,
+ "macro_mean_kl": 2.842472165822983,
+ "macro_top1_agreement": 0.35263895243406296,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "row_mse": {
+ "macro_cvar95_kl": 3.694224625825882,
+ "macro_delta_nll": 0.7946401834487915,
+ "macro_mean_kl": 0.8343886435031891,
+ "macro_top1_agreement": 0.6903071627020836,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "signed_taylor_next_int4": {
+ "macro_cvar95_kl": 4.132046535611153,
+ "macro_delta_nll": 0.8252136260271072,
+ "macro_mean_kl": 0.8870953433215618,
+ "macro_top1_agreement": 0.656972274184227,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.0154180824756622,
+ "macro_delta_nll": 0.5480052754282951,
+ "macro_mean_kl": 0.5127170253545046,
+ "macro_top1_agreement": 0.7730078846216202,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "target_directional_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.361491322517395,
+ "macro_delta_nll": 0.5357813686132431,
+ "macro_mean_kl": 0.5205607209354639,
+ "macro_top1_agreement": 0.7908198460936546,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "uniform_int4": {
+ "macro_cvar95_kl": 7.600260317325592,
+ "macro_delta_nll": 2.6861148476600647,
+ "macro_mean_kl": 2.8513285517692566,
+ "macro_top1_agreement": 0.35369928926229477,
+ "task_count": 8,
+ "token_count": 642
+ },
+ "v02_layer0_static": {
+ "macro_cvar95_kl": 4.46854567527771,
+ "macro_delta_nll": 0.8614744991064072,
+ "macro_mean_kl": 0.9269456639885902,
+ "macro_top1_agreement": 0.6566362977027893,
+ "task_count": 8,
+ "token_count": 642
+ }
+ },
+ "aggregates_full_code_secondary": {
+ "adaptive_mse_hrr_h1_quota": {
+ "macro_cvar95_kl": 3.3028323650360107,
+ "macro_delta_nll": 0.7689840346574783,
+ "macro_mean_kl": 0.7827266603708267,
+ "macro_top1_agreement": 0.6952420696616173,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "macro_cvar95_kl": 2.891676664352417,
+ "macro_delta_nll": 0.4872139096260071,
+ "macro_mean_kl": 0.4728761240839958,
+ "macro_top1_agreement": 0.7883592247962952,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "delta_direction_magnitude_int4": {
+ "macro_cvar95_kl": 3.161902904510498,
+ "macro_delta_nll": 0.5367827117443085,
+ "macro_mean_kl": 0.5108812358230352,
+ "macro_top1_agreement": 0.7720952108502388,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "hrr_h1": {
+ "macro_cvar95_kl": 3.388882279396057,
+ "macro_delta_nll": 0.6218181103467941,
+ "macro_mean_kl": 0.635199373587966,
+ "macro_top1_agreement": 0.7301077470183372,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "hrr_h32": {
+ "macro_cvar95_kl": 4.135775178670883,
+ "macro_delta_nll": 0.7428321987390518,
+ "macro_mean_kl": 0.7663818132132292,
+ "macro_top1_agreement": 0.7108453139662743,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "macro_cvar95_kl": 2.681752786040306,
+ "macro_delta_nll": 0.4564073532819748,
+ "macro_mean_kl": 0.446219926699996,
+ "macro_top1_agreement": 0.7679305151104927,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "random_rows_s1101": {
+ "macro_cvar95_kl": 7.672792077064514,
+ "macro_delta_nll": 2.683250844478607,
+ "macro_mean_kl": 2.791328117251396,
+ "macro_top1_agreement": 0.36465270072221756,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "row_mse": {
+ "macro_cvar95_kl": 3.675527900457382,
+ "macro_delta_nll": 0.7827504575252533,
+ "macro_mean_kl": 0.8211609497666359,
+ "macro_top1_agreement": 0.6954880431294441,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "signed_taylor_next_int4": {
+ "macro_cvar95_kl": 4.1143283396959305,
+ "macro_delta_nll": 0.8136574774980545,
+ "macro_mean_kl": 0.8736393377184868,
+ "macro_top1_agreement": 0.6626181676983833,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.002905994653702,
+ "macro_delta_nll": 0.54025799036026,
+ "macro_mean_kl": 0.5057258978486061,
+ "macro_top1_agreement": 0.7763535603880882,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "target_directional_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.3521416783332825,
+ "macro_delta_nll": 0.5284674167633057,
+ "macro_mean_kl": 0.5135181862860918,
+ "macro_top1_agreement": 0.7937816083431244,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "uniform_int4": {
+ "macro_cvar95_kl": 7.581509709358215,
+ "macro_delta_nll": 2.6367427557706833,
+ "macro_mean_kl": 2.796179473400116,
+ "macro_top1_agreement": 0.3663086034357548,
+ "task_count": 8,
+ "token_count": 650
+ },
+ "v02_layer0_static": {
+ "macro_cvar95_kl": 4.451788902282715,
+ "macro_delta_nll": 0.8490711152553558,
+ "macro_mean_kl": 0.9121971130371094,
+ "macro_top1_agreement": 0.6625703647732735,
+ "task_count": 8,
+ "token_count": 650
+ }
+ },
+ "artifact_kind": "recurquant_cqer32_same_calibration_quality_diagnostic",
+ "claim_boundary": "The selector and quality diagnostic use the same MBPP calibration tasks. This can catch implementation failures but cannot establish held-out generalization, novelty, speed, or a breakthrough. The actual primary uses target-directional-Fisher per-layer quotas and causally weights each per-write aligned INT4-to-INT8 row-MSE reduction by a normalized-query-energy EMA with a 32-token half-life. The primary metric excludes the prompt-to-first-code-token prediction because no stored quantized recurrent state can affect that output.",
+ "command": [
+ "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant\\.venv\\Scripts\\python.exe",
+ "scripts\\pilot_evaluate_hrr.py",
+ "--selector-artifact",
+ "artifacts\\experiment006-hrr-selector-8task-c2ad68b.json",
+ "--loss-selector-artifact",
+ "artifacts\\experiment006-loss-selector-8task-c2ad68b.json",
+ "--query-ema",
+ "--output",
+ "artifacts\\experiment007-cqer32-same-calibration-8task-3a062771.json",
+ "--limit",
+ "8",
+ "--calibration-offset",
+ "0",
+ "--device",
+ "cuda",
+ "--local-files-only",
+ "--bootstrap-samples",
+ "10000"
+ ],
+ "contrasts_baseline_minus_primary_aligned_delta_nll": {
+ "adaptive_mse_hrr_h1_quota": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.16793456599116327,
+ 0.5078095067292451
+ ],
+ "mean_improvement": 0.3166392669081688,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.031252953782677645,
+ 0.08302061259746552
+ ],
+ "mean_improvement": 0.030510589480400085,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "delta_direction_magnitude_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.011315245553851097,
+ 0.16727566719055176
+ ],
+ "mean_improvement": 0.08219297230243683,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "hrr_h1": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.09086816310882569,
+ 0.24467463791370392
+ ],
+ "mean_improvement": 0.1673271805047989,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "hrr_h32": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.1666088104248047,
+ 0.43261557072401047
+ ],
+ "mean_improvement": 0.29058314114809036,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "random_rows_s1101": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 1.933269940316677,
+ 2.6098271643742916
+ ],
+ "mean_improvement": 2.2667423710227013,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "row_mse": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.23186782300472264,
+ 0.43641836252063504
+ ],
+ "mean_improvement": 0.33184846490621567,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "signed_taylor_next_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.2551506295800209,
+ 0.45714859068393704
+ ],
+ "mean_improvement": 0.3624219074845314,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.0006170421838760376,
+ 0.18248579874634738
+ ],
+ "mean_improvement": 0.0852135568857193,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "target_directional_fisher_difference_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.0110369473695755,
+ 0.1781795248389244
+ ],
+ "mean_improvement": 0.07298965007066727,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "uniform_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 1.8237787764519455,
+ 2.5917449709028006
+ ],
+ "mean_improvement": 2.223323129117489,
+ "paired_examples": 8,
+ "seed": 2339
+ },
+ "v02_layer0_static": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.24708613678812985,
+ 0.556098498404026
+ ],
+ "mean_improvement": 0.39868278056383133,
+ "paired_examples": 8,
+ "seed": 2339
+ }
+ },
+ "created_at_utc": "2026-07-22T19:37:50.097105+00:00",
+ "dataset": {
+ "authenticated_selector_prefix": {
+ "all_selectors_matched": true,
+ "manifest": {
+ "config": "full",
+ "dataset_id": "google-research-datasets/mbpp",
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "phase": "calibration",
+ "revision": "4bb6404fdc6cacfda99d4ac4205087b89d32030c",
+ "row_count": 8,
+ "rows": [
+ {
+ "sha256": "df3782543fe3ef4a8443a7737e1f3d7678c974984d7960d19a53c0a94ff8c046",
+ "task_id": 651
+ },
+ {
+ "sha256": "807f4d8170d4920740bd290f081110e02695892d741647dd9c06eddcde0a659d",
+ "task_id": 657
+ },
+ {
+ "sha256": "54dc13e4c5b064b80966b9f315eed560502e37213bd74a5b712fcfc01cb605f3",
+ "task_id": 702
+ },
+ {
+ "sha256": "3efcea05b02d799e12cb49c5d26bbbf2c00972fd466bc30add66ad09a754fc14",
+ "task_id": 720
+ },
+ {
+ "sha256": "18b5d375c0d8a97b8a071d73e606ae091afe52f218959ae7e262ef7e2b155d50",
+ "task_id": 794
+ },
+ {
+ "sha256": "a58f7ba4c00be27de2a85b091d06e2bd8ad57f4f7a3859501b027350a2731307",
+ "task_id": 903
+ },
+ {
+ "sha256": "6d3c59ac8dba827b2c8d4ba8307892558d3832c1e622e12f9c8d3ae7371cc4d4",
+ "task_id": 918
+ },
+ {
+ "sha256": "3208a23529c654eb5f21fcab152e38a4d46e193c11bfba5e3efe6a614339e6f3",
+ "task_id": 945
+ }
+ ],
+ "schema": "recurquant.mbpp-manifest.v1",
+ "selection_namespace": "rq-v0.2",
+ "source_split": "train"
+ },
+ "manifest_sha256": "97d691a6d45ee29668f5b0151c1a0885629539ac9e7967e9baa30cfb5c97ae8b",
+ "ordered_task_ids": [
+ 945,
+ 794,
+ 657,
+ 702,
+ 651,
+ 720,
+ 903,
+ 918
+ ],
+ "selector_count": 2,
+ "token_manifest": [
+ {
+ "aligned_scored_tokens": 19,
+ "code_tokens": 20,
+ "full_code_scored_tokens": 20,
+ "prompt_tokens": 112,
+ "task_id": 945
+ },
+ {
+ "aligned_scored_tokens": 52,
+ "code_tokens": 53,
+ "full_code_scored_tokens": 53,
+ "prompt_tokens": 101,
+ "task_id": 794
+ },
+ {
+ "aligned_scored_tokens": 94,
+ "code_tokens": 95,
+ "full_code_scored_tokens": 95,
+ "prompt_tokens": 76,
+ "task_id": 657
+ },
+ {
+ "aligned_scored_tokens": 180,
+ "code_tokens": 181,
+ "full_code_scored_tokens": 181,
+ "prompt_tokens": 151,
+ "task_id": 702
+ },
+ {
+ "aligned_scored_tokens": 37,
+ "code_tokens": 38,
+ "full_code_scored_tokens": 38,
+ "prompt_tokens": 117,
+ "task_id": 651
+ },
+ {
+ "aligned_scored_tokens": 51,
+ "code_tokens": 52,
+ "full_code_scored_tokens": 52,
+ "prompt_tokens": 240,
+ "task_id": 720
+ },
+ {
+ "aligned_scored_tokens": 77,
+ "code_tokens": 78,
+ "full_code_scored_tokens": 78,
+ "prompt_tokens": 83,
+ "task_id": 903
+ },
+ {
+ "aligned_scored_tokens": 132,
+ "code_tokens": 133,
+ "full_code_scored_tokens": 133,
+ "prompt_tokens": 96,
+ "task_id": 918
+ }
+ ]
+ },
+ "content_manifest_sha256": "97d691a6d45ee29668f5b0151c1a0885629539ac9e7967e9baa30cfb5c97ae8b",
+ "disjoint_from_all_selector_artifacts": null,
+ "evaluation_task_ids": [
+ 945,
+ 794,
+ 657,
+ 702,
+ 651,
+ 720,
+ 903,
+ 918
+ ],
+ "manifest": {
+ "config": "full",
+ "dataset_id": "google-research-datasets/mbpp",
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "phase": "calibration",
+ "revision": "4bb6404fdc6cacfda99d4ac4205087b89d32030c",
+ "row_count": 8,
+ "rows": [
+ {
+ "sha256": "df3782543fe3ef4a8443a7737e1f3d7678c974984d7960d19a53c0a94ff8c046",
+ "task_id": 651
+ },
+ {
+ "sha256": "807f4d8170d4920740bd290f081110e02695892d741647dd9c06eddcde0a659d",
+ "task_id": 657
+ },
+ {
+ "sha256": "54dc13e4c5b064b80966b9f315eed560502e37213bd74a5b712fcfc01cb605f3",
+ "task_id": 702
+ },
+ {
+ "sha256": "3efcea05b02d799e12cb49c5d26bbbf2c00972fd466bc30add66ad09a754fc14",
+ "task_id": 720
+ },
+ {
+ "sha256": "18b5d375c0d8a97b8a071d73e606ae091afe52f218959ae7e262ef7e2b155d50",
+ "task_id": 794
+ },
+ {
+ "sha256": "a58f7ba4c00be27de2a85b091d06e2bd8ad57f4f7a3859501b027350a2731307",
+ "task_id": 903
+ },
+ {
+ "sha256": "6d3c59ac8dba827b2c8d4ba8307892558d3832c1e622e12f9c8d3ae7371cc4d4",
+ "task_id": 918
+ },
+ {
+ "sha256": "3208a23529c654eb5f21fcab152e38a4d46e193c11bfba5e3efe6a614339e6f3",
+ "task_id": 945
+ }
+ ],
+ "schema": "recurquant.mbpp-manifest.v1",
+ "selection_namespace": "rq-v0.2",
+ "source_split": "train"
+ },
+ "manifest_sha256": "97d691a6d45ee29668f5b0151c1a0885629539ac9e7967e9baa30cfb5c97ae8b",
+ "phase": "calibration",
+ "selection_mode": "selector_task_prefix",
+ "selection_window": {
+ "calibration_offset": 0,
+ "limit": 8,
+ "resolved_before_tokenization_and_model_load": true,
+ "stop_exclusive": 8
+ },
+ "selector_task_ids": [
+ 651,
+ 657,
+ 702,
+ 720,
+ 794,
+ 903,
+ 918,
+ 945
+ ],
+ "selector_task_prefix": false,
+ "task_count": 8,
+ "tasks": [
+ {
+ "aligned_scored_tokens": 19,
+ "code_tokens": 20,
+ "full_code_scored_tokens": 20,
+ "prompt_tokens": 112,
+ "task_id": 945
+ },
+ {
+ "aligned_scored_tokens": 52,
+ "code_tokens": 53,
+ "full_code_scored_tokens": 53,
+ "prompt_tokens": 101,
+ "task_id": 794
+ },
+ {
+ "aligned_scored_tokens": 94,
+ "code_tokens": 95,
+ "full_code_scored_tokens": 95,
+ "prompt_tokens": 76,
+ "task_id": 657
+ },
+ {
+ "aligned_scored_tokens": 180,
+ "code_tokens": 181,
+ "full_code_scored_tokens": 181,
+ "prompt_tokens": 151,
+ "task_id": 702
+ },
+ {
+ "aligned_scored_tokens": 37,
+ "code_tokens": 38,
+ "full_code_scored_tokens": 38,
+ "prompt_tokens": 117,
+ "task_id": 651
+ },
+ {
+ "aligned_scored_tokens": 51,
+ "code_tokens": 52,
+ "full_code_scored_tokens": 52,
+ "prompt_tokens": 240,
+ "task_id": 720
+ },
+ {
+ "aligned_scored_tokens": 77,
+ "code_tokens": 78,
+ "full_code_scored_tokens": 78,
+ "prompt_tokens": 83,
+ "task_id": 903
+ },
+ {
+ "aligned_scored_tokens": 132,
+ "code_tokens": 133,
+ "full_code_scored_tokens": 133,
+ "prompt_tokens": 96,
+ "task_id": 918
+ }
+ ]
+ },
+ "development_gate": {
+ "applicable": true,
+ "checks": {
+ "all_values_finite": {
+ "passed": true
+ },
+ "authenticated_repository_sources_and_manifests": {
+ "evaluation_manifest_authenticated": true,
+ "passed": true,
+ "repository_commit_stable": true,
+ "selector_artifacts_authenticated": true,
+ "source_hashes_stable": true,
+ "worktree_clean_at_start_and_end": true
+ },
+ "cvar95_disadvantage_margin": {
+ "maximum": 0.1,
+ "observed_disadvantage": -0.19479908049106598,
+ "passed": true
+ },
+ "exact_packed_and_selector_bytes": {
+ "expected_packed_bytes": 2564096,
+ "expected_selector_auxiliary_bytes": 147456,
+ "expected_total_bytes": 2711552,
+ "observed_packed_bytes": 2564096,
+ "observed_selector_auxiliary_bytes": 147456,
+ "observed_total_bytes": 2711552,
+ "passed": true
+ },
+ "exact_per_layer_quotas": {
+ "expected_quotas": {
+ "0": 355,
+ "1": 380,
+ "10": 84,
+ "12": 30,
+ "13": 62,
+ "14": 54,
+ "16": 45,
+ "17": 27,
+ "18": 7,
+ "2": 269,
+ "20": 9,
+ "21": 7,
+ "22": 55,
+ "4": 179,
+ "5": 185,
+ "6": 105,
+ "8": 80,
+ "9": 43
+ },
+ "expected_total_promotions": 1976,
+ "observed_total_promotions": 1976,
+ "passed": true,
+ "task_audit": [
+ {
+ "observations_committed": 360,
+ "passed": true,
+ "state_updates": 360,
+ "task_id": 945
+ },
+ {
+ "observations_committed": 954,
+ "passed": true,
+ "state_updates": 954,
+ "task_id": 794
+ },
+ {
+ "observations_committed": 1710,
+ "passed": true,
+ "state_updates": 1710,
+ "task_id": 657
+ },
+ {
+ "observations_committed": 3258,
+ "passed": true,
+ "state_updates": 3258,
+ "task_id": 702
+ },
+ {
+ "observations_committed": 684,
+ "passed": true,
+ "state_updates": 684,
+ "task_id": 651
+ },
+ {
+ "observations_committed": 936,
+ "passed": true,
+ "state_updates": 936,
+ "task_id": 720
+ },
+ {
+ "observations_committed": 1404,
+ "passed": true,
+ "state_updates": 1404,
+ "task_id": 903
+ },
+ {
+ "observations_committed": 2394,
+ "passed": true,
+ "state_updates": 2394,
+ "task_id": 918
+ }
+ ]
+ },
+ "exact_stage_consume_handshake": {
+ "passed": true,
+ "task_audit": [
+ {
+ "observations_committed": 360,
+ "passed": true,
+ "state_updates": 360,
+ "task_id": 945
+ },
+ {
+ "observations_committed": 954,
+ "passed": true,
+ "state_updates": 954,
+ "task_id": 794
+ },
+ {
+ "observations_committed": 1710,
+ "passed": true,
+ "state_updates": 1710,
+ "task_id": 657
+ },
+ {
+ "observations_committed": 3258,
+ "passed": true,
+ "state_updates": 3258,
+ "task_id": 702
+ },
+ {
+ "observations_committed": 684,
+ "passed": true,
+ "state_updates": 684,
+ "task_id": 651
+ },
+ {
+ "observations_committed": 936,
+ "passed": true,
+ "state_updates": 936,
+ "task_id": 720
+ },
+ {
+ "observations_committed": 1404,
+ "passed": true,
+ "state_updates": 1404,
+ "task_id": 903
+ },
+ {
+ "observations_committed": 2394,
+ "passed": true,
+ "state_updates": 2394,
+ "task_id": 918
+ }
+ ]
+ },
+ "lower_nll_than_both_components": {
+ "adaptive_component": 0.4933023080229759,
+ "passed": true,
+ "primary": 0.46279171854257584,
+ "static_component": 0.5357813686132431
+ },
+ "relative_nll_reduction_vs_plain_adaptive": {
+ "minimum": 0.05,
+ "observed": 0.061849679160590976,
+ "passed": true
+ },
+ "relative_nll_reduction_vs_strongest_static": {
+ "minimum": 0.2,
+ "observed": 0.13623028784966068,
+ "passed": false
+ },
+ "top1_disadvantage_margin": {
+ "maximum": 0.01,
+ "observed_disadvantage": 0.02690277248620987,
+ "passed": false
+ }
+ },
+ "comparators": {
+ "plain_adaptive": "adaptive_mse_target_directional_fisher_quota",
+ "static": "target_directional_fisher_difference_int4"
+ },
+ "passed": false,
+ "primary": "query_ema32_weighted_mse_target_fisher_quota",
+ "schema": "recurquant.experiment007-cqer32-development-gate.v1"
+ },
+ "diagnostic_only": true,
+ "environment": {
+ "cuda_available": true,
+ "cuda_runtime": "12.8",
+ "gpu": "NVIDIA GeForce RTX 5070 Laptop GPU",
+ "packages": {
+ "datasets": "4.8.5",
+ "numpy": "2.4.6",
+ "safetensors": "0.8.0",
+ "torch": "2.11.0+cu128",
+ "transformers": "5.14.1"
+ },
+ "platform": "Windows-10-10.0.26200-SP0",
+ "python": "3.11.15 (main, Jun 2 2026, 22:29:49) [MSC v.1944 64 bit (AMD64)]"
+ },
+ "heldout_gate": {
+ "applicable": false,
+ "passed": null,
+ "reason": "same-calibration diagnostics cannot satisfy the frozen Experiment 007 holdout gate; CQER-32 positive offsets remain disabled",
+ "schema": "recurquant.experiment007-heldout-gate.v1"
+ },
+ "methods": [
+ "uniform_int4",
+ "v02_layer0_static",
+ "hrr_h1",
+ "hrr_h32",
+ "row_mse",
+ "random_rows_s1101",
+ "signed_taylor_next_int4",
+ "target_directional_fisher_difference_int4",
+ "target_diagonal_fisher_difference_int4",
+ "delta_direction_magnitude_int4",
+ "adaptive_mse_hrr_h1_quota",
+ "adaptive_mse_target_directional_fisher_quota",
+ "query_ema32_weighted_mse_target_fisher_quota"
+ ],
+ "metric_contract": {
+ "contrasts": "paired task-macro baseline delta NLL minus primary delta NLL",
+ "excluded_from_primary": "prompt-to-first-code-token prediction",
+ "primary": "calibration-aligned code transitions after recurrent-state storage",
+ "primary_tokens_per_task": "code_tokens - 1",
+ "secondary": "full reference-code tokens, including the unaffected first token"
+ },
+ "model": {
+ "device": "cuda",
+ "dtype": "torch.bfloat16",
+ "id": "Qwen/Qwen3.5-0.8B-Base",
+ "revision": "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68"
+ },
+ "per_task": {
+ "adaptive_mse_hrr_h1_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.521657109260559,
+ "cvar95_kl": 1.3505640029907227,
+ "delta_nll": 0.2858901023864746,
+ "max_kl": 1.3505640029907227,
+ "mean_kl": 0.3595314025878906,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5042493343353271,
+ "cvar95_kl": 3.1122920513153076,
+ "delta_nll": 0.4978659152984619,
+ "max_kl": 4.499517440795898,
+ "mean_kl": 0.5165233016014099,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5017389059066772,
+ "cvar95_kl": 3.9232306480407715,
+ "delta_nll": 0.7005172371864319,
+ "max_kl": 4.5721306800842285,
+ "mean_kl": 0.7471798062324524,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7234042286872864
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.3410258293151855,
+ "cvar95_kl": 4.804558277130127,
+ "delta_nll": 1.3640484809875488,
+ "max_kl": 7.769333839416504,
+ "mean_kl": 1.2250819206237793,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5833333134651184
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.7362922430038452,
+ "cvar95_kl": 2.3318424224853516,
+ "delta_nll": 0.5664210319519043,
+ "max_kl": 2.3942956924438477,
+ "mean_kl": 0.5648953318595886,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7027027010917664
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1313115358352661,
+ "cvar95_kl": 2.403932809829712,
+ "delta_nll": 0.29355210065841675,
+ "max_kl": 2.9691216945648193,
+ "mean_kl": 0.4569181799888611,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8039215803146362
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8575284481048584,
+ "cvar95_kl": 3.819864273071289,
+ "delta_nll": 1.023275375366211,
+ "max_kl": 4.455229759216309,
+ "mean_kl": 0.985339879989624,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.5974025726318359
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.3759725093841553,
+ "cvar95_kl": 4.784841060638428,
+ "delta_nll": 1.5038776397705078,
+ "max_kl": 5.305493354797363,
+ "mean_kl": 1.4962340593338013,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5075757503509521
+ }
+ ],
+ "adaptive_mse_target_directional_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3034541606903076,
+ "cvar95_kl": 0.8177868127822876,
+ "delta_nll": 0.06768715381622314,
+ "max_kl": 0.8177868127822876,
+ "mean_kl": 0.1112782210111618,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8947368264198303
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3124535083770752,
+ "cvar95_kl": 1.9170337915420532,
+ "delta_nll": 0.30607008934020996,
+ "max_kl": 2.5172431468963623,
+ "mean_kl": 0.325796902179718,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1538501977920532,
+ "cvar95_kl": 2.4800684452056885,
+ "delta_nll": 0.35262852907180786,
+ "max_kl": 4.00590181350708,
+ "mean_kl": 0.4227640628814697,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8085106611251831
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0987746715545654,
+ "cvar95_kl": 4.060663223266602,
+ "delta_nll": 1.1217973232269287,
+ "max_kl": 6.843515872955322,
+ "mean_kl": 0.8984136581420898,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6499999761581421
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5053826570510864,
+ "cvar95_kl": 2.8130877017974854,
+ "delta_nll": 0.3355114459991455,
+ "max_kl": 3.174671173095703,
+ "mean_kl": 0.2967134416103363,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.837837815284729
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1743980646133423,
+ "cvar95_kl": 3.2352826595306396,
+ "delta_nll": 0.3366386294364929,
+ "max_kl": 3.91865611076355,
+ "mean_kl": 0.39808011054992676,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8235294222831726
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5157321691513062,
+ "cvar95_kl": 4.825870037078857,
+ "delta_nll": 0.6814790964126587,
+ "max_kl": 5.618816375732422,
+ "mean_kl": 0.6759239435195923,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7272727489471436
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6167010068893433,
+ "cvar95_kl": 3.0732264518737793,
+ "delta_nll": 0.7446061968803406,
+ "max_kl": 3.4257588386535645,
+ "mean_kl": 0.704590380191803,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6742424368858337
+ }
+ ],
+ "delta_direction_magnitude_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5311850309371948,
+ "cvar95_kl": 1.0018543004989624,
+ "delta_nll": 0.29541802406311035,
+ "max_kl": 1.0018543004989624,
+ "mean_kl": 0.14444810152053833,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4897710084915161,
+ "cvar95_kl": 5.851797103881836,
+ "delta_nll": 0.4833875894546509,
+ "max_kl": 12.883463859558105,
+ "mean_kl": 0.6974834203720093,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1799800395965576,
+ "cvar95_kl": 2.4215567111968994,
+ "delta_nll": 0.37875837087631226,
+ "max_kl": 2.8704397678375244,
+ "mean_kl": 0.3736823797225952,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8510638475418091
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.046947956085205,
+ "cvar95_kl": 4.560434341430664,
+ "delta_nll": 1.0699706077575684,
+ "max_kl": 7.306674957275391,
+ "mean_kl": 0.9352683424949646,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6111111044883728
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.724503755569458,
+ "cvar95_kl": 3.309788227081299,
+ "delta_nll": 0.5546325445175171,
+ "max_kl": 4.023754596710205,
+ "mean_kl": 0.39229220151901245,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7567567825317383
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0724178552627563,
+ "cvar95_kl": 1.6982628107070923,
+ "delta_nll": 0.23465842008590698,
+ "max_kl": 2.735661029815674,
+ "mean_kl": 0.2690630257129669,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8627451062202454
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3286190032958984,
+ "cvar95_kl": 3.076843023300171,
+ "delta_nll": 0.494365930557251,
+ "max_kl": 4.380039215087891,
+ "mean_kl": 0.45540544390678406,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7792207598686218
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.720780849456787,
+ "cvar95_kl": 3.508823871612549,
+ "delta_nll": 0.8486860394477844,
+ "max_kl": 3.912299633026123,
+ "mean_kl": 0.8768190741539001,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6742424368858337
+ }
+ ],
+ "hrr_h1": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4150276184082031,
+ "cvar95_kl": 0.7921264171600342,
+ "delta_nll": 0.17926061153411865,
+ "max_kl": 0.7921264171600342,
+ "mean_kl": 0.23300278186798096,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3561232089996338,
+ "cvar95_kl": 3.2065913677215576,
+ "delta_nll": 0.34973978996276855,
+ "max_kl": 3.997688055038452,
+ "mean_kl": 0.47810739278793335,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8846153616905212
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2239927053451538,
+ "cvar95_kl": 3.225297451019287,
+ "delta_nll": 0.42277103662490845,
+ "max_kl": 4.80308198928833,
+ "mean_kl": 0.528471052646637,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7553191781044006
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.3196535110473633,
+ "cvar95_kl": 5.10039758682251,
+ "delta_nll": 1.3426761627197266,
+ "max_kl": 6.1808671951293945,
+ "mean_kl": 1.2563951015472412,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5222222208976746
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6552441120147705,
+ "cvar95_kl": 3.9683706760406494,
+ "delta_nll": 0.4853729009628296,
+ "max_kl": 4.7960028648376465,
+ "mean_kl": 0.46324843168258667,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7567567825317383
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2251418828964233,
+ "cvar95_kl": 2.4804813861846924,
+ "delta_nll": 0.387382447719574,
+ "max_kl": 3.1602442264556885,
+ "mean_kl": 0.47150465846061707,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8039215803146362
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.7142348289489746,
+ "cvar95_kl": 3.9350757598876953,
+ "delta_nll": 0.8799817562103271,
+ "max_kl": 5.582791805267334,
+ "mean_kl": 0.7679694890975952,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.649350643157959
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8658612966537476,
+ "cvar95_kl": 4.484250068664551,
+ "delta_nll": 0.9937664866447449,
+ "max_kl": 6.055515766143799,
+ "mean_kl": 0.9543510675430298,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6439393758773804
+ }
+ ],
+ "hrr_h32": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.47858464717865,
+ "cvar95_kl": 0.8985419273376465,
+ "delta_nll": 0.24281764030456543,
+ "max_kl": 0.8985419273376465,
+ "mean_kl": 0.2616751194000244,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4424853324890137,
+ "cvar95_kl": 3.2515528202056885,
+ "delta_nll": 0.43610191345214844,
+ "max_kl": 4.571720600128174,
+ "mean_kl": 0.5696570873260498,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.348232626914978,
+ "cvar95_kl": 3.736093521118164,
+ "delta_nll": 0.5470109581947327,
+ "max_kl": 5.296608924865723,
+ "mean_kl": 0.6284127831459045,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7446808218955994
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.40244722366333,
+ "cvar95_kl": 5.3171000480651855,
+ "delta_nll": 1.4254698753356934,
+ "max_kl": 6.360416889190674,
+ "mean_kl": 1.341440200805664,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5277777910232544
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0135583877563477,
+ "cvar95_kl": 6.502284049987793,
+ "delta_nll": 0.8436871767044067,
+ "max_kl": 8.4575777053833,
+ "mean_kl": 0.7446560859680176,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7567567825317383
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2332037687301636,
+ "cvar95_kl": 3.346160888671875,
+ "delta_nll": 0.3954443335533142,
+ "max_kl": 3.942091941833496,
+ "mean_kl": 0.5599767565727234,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7843137383460999
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.67708420753479,
+ "cvar95_kl": 4.948601245880127,
+ "delta_nll": 0.8428311347961426,
+ "max_kl": 6.279153823852539,
+ "mean_kl": 0.8298649191856384,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6883116960525513
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.1657307147979736,
+ "cvar95_kl": 5.193247318267822,
+ "delta_nll": 1.2936358451843262,
+ "max_kl": 6.915596008300781,
+ "mean_kl": 1.283887267112732,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5
+ }
+ ],
+ "query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4526199102401733,
+ "cvar95_kl": 1.556406021118164,
+ "delta_nll": 0.21685290336608887,
+ "max_kl": 1.556406021118164,
+ "mean_kl": 0.2396208643913269,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2904548645019531,
+ "cvar95_kl": 1.627397894859314,
+ "delta_nll": 0.2840714454650879,
+ "max_kl": 1.9932399988174438,
+ "mean_kl": 0.3109889030456543,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0460394620895386,
+ "cvar95_kl": 1.8434892892837524,
+ "delta_nll": 0.2448177933692932,
+ "max_kl": 2.1381585597991943,
+ "mean_kl": 0.3023097813129425,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8617021441459656
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.110065460205078,
+ "cvar95_kl": 5.4222025871276855,
+ "delta_nll": 1.1330881118774414,
+ "max_kl": 7.807358741760254,
+ "mean_kl": 1.0219584703445435,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.605555534362793
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5064246654510498,
+ "cvar95_kl": 1.8312337398529053,
+ "delta_nll": 0.3365534543991089,
+ "max_kl": 2.4443414211273193,
+ "mean_kl": 0.21862754225730896,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7837837934494019
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0591646432876587,
+ "cvar95_kl": 1.9032338857650757,
+ "delta_nll": 0.22140520811080933,
+ "max_kl": 2.2659804821014404,
+ "mean_kl": 0.3127140700817108,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.8039215803146362
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.47654128074646,
+ "cvar95_kl": 3.72835636138916,
+ "delta_nll": 0.6422882080078125,
+ "max_kl": 4.5848708152771,
+ "mean_kl": 0.544224739074707,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7272727489471436
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4953514337539673,
+ "cvar95_kl": 3.7523066997528076,
+ "delta_nll": 0.6232566237449646,
+ "max_kl": 4.824880123138428,
+ "mean_kl": 0.6697725057601929,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6742424368858337
+ }
+ ],
+ "random_rows_s1101": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.441673755645752,
+ "cvar95_kl": 6.688381195068359,
+ "delta_nll": 2.205906867980957,
+ "max_kl": 6.688381195068359,
+ "mean_kl": 2.756582260131836,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.31578946113586426
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.6150243282318115,
+ "cvar95_kl": 6.7014384269714355,
+ "delta_nll": 2.6086409091949463,
+ "max_kl": 6.983257293701172,
+ "mean_kl": 2.655632495880127,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.4423076808452606
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.518528461456299,
+ "cvar95_kl": 7.542943477630615,
+ "delta_nll": 2.7173068523406982,
+ "max_kl": 8.907737731933594,
+ "mean_kl": 2.757606267929077,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.3404255211353302
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 4.852642059326172,
+ "cvar95_kl": 9.85618782043457,
+ "delta_nll": 3.875664710998535,
+ "max_kl": 11.590734481811523,
+ "mean_kl": 3.701547145843506,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.21666666865348816
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.6465272903442383,
+ "cvar95_kl": 10.18855094909668,
+ "delta_nll": 2.476655960083008,
+ "max_kl": 12.039348602294922,
+ "mean_kl": 2.7627503871917725,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.3513513505458832
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.9387261867523193,
+ "cvar95_kl": 6.689493179321289,
+ "delta_nll": 2.100966691970825,
+ "max_kl": 7.234011173248291,
+ "mean_kl": 2.3478646278381348,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.47058823704719543
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.9399731159210205,
+ "cvar95_kl": 5.610705375671387,
+ "delta_nll": 2.105720043182373,
+ "max_kl": 6.914088249206543,
+ "mean_kl": 1.9979133605957031,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.44155845046043396
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 4.6175055503845215,
+ "cvar95_kl": 8.227903366088867,
+ "delta_nll": 3.745410680770874,
+ "max_kl": 8.815784454345703,
+ "mean_kl": 3.759880781173706,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.24242424964904785
+ }
+ ],
+ "row_mse": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6338046789169312,
+ "cvar95_kl": 2.1311771869659424,
+ "delta_nll": 0.3980376720428467,
+ "max_kl": 2.1311771869659424,
+ "mean_kl": 0.5359232425689697,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.541896939277649,
+ "cvar95_kl": 2.8863818645477295,
+ "delta_nll": 0.5355135202407837,
+ "max_kl": 4.380407333374023,
+ "mean_kl": 0.5883387327194214,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5910316705703735,
+ "cvar95_kl": 5.046751976013184,
+ "delta_nll": 0.7898100018501282,
+ "max_kl": 5.6158576011657715,
+ "mean_kl": 0.9469754099845886,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.6808510422706604
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.3459646701812744,
+ "cvar95_kl": 4.837377548217773,
+ "delta_nll": 1.3689873218536377,
+ "max_kl": 7.450765132904053,
+ "mean_kl": 1.2247120141983032,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5777778029441833
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.9892563819885254,
+ "cvar95_kl": 3.6711325645446777,
+ "delta_nll": 0.8193851709365845,
+ "max_kl": 3.788031578063965,
+ "mean_kl": 0.7982465028762817,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7297297120094299
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1800658702850342,
+ "cvar95_kl": 2.32446026802063,
+ "delta_nll": 0.3423064351081848,
+ "max_kl": 2.606278896331787,
+ "mean_kl": 0.5047054886817932,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7647058963775635
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8294388055801392,
+ "cvar95_kl": 4.329058647155762,
+ "delta_nll": 0.9951857328414917,
+ "max_kl": 6.58737850189209,
+ "mean_kl": 0.9180334806442261,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6753246784210205
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.9799903631210327,
+ "cvar95_kl": 4.327456951141357,
+ "delta_nll": 1.1078956127166748,
+ "max_kl": 5.218027591705322,
+ "mean_kl": 1.1581742763519287,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5303030014038086
+ }
+ ],
+ "signed_taylor_next_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5024064779281616,
+ "cvar95_kl": 1.8164697885513306,
+ "delta_nll": 0.26663947105407715,
+ "max_kl": 1.8164697885513306,
+ "mean_kl": 0.4156881272792816,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.7318750619888306,
+ "cvar95_kl": 4.868865966796875,
+ "delta_nll": 0.7254916429519653,
+ "max_kl": 8.179862976074219,
+ "mean_kl": 0.7837780714035034,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.75
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.45570969581604,
+ "cvar95_kl": 3.475843906402588,
+ "delta_nll": 0.6544880270957947,
+ "max_kl": 4.466429710388184,
+ "mean_kl": 0.7511340379714966,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.7127659320831299
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.465879201889038,
+ "cvar95_kl": 5.389158248901367,
+ "delta_nll": 1.4889018535614014,
+ "max_kl": 6.654348850250244,
+ "mean_kl": 1.4111559391021729,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5055555701255798
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.828425645828247,
+ "cvar95_kl": 4.301302909851074,
+ "delta_nll": 0.6585544347763062,
+ "max_kl": 4.708497047424316,
+ "mean_kl": 0.7511183023452759,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7027027010917664
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3813329935073853,
+ "cvar95_kl": 4.675906658172607,
+ "delta_nll": 0.5435735583305359,
+ "max_kl": 5.054469585418701,
+ "mean_kl": 0.7468767166137695,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7450980544090271
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8729636669158936,
+ "cvar95_kl": 4.453776836395264,
+ "delta_nll": 1.038710594177246,
+ "max_kl": 6.199273586273193,
+ "mean_kl": 1.0229319334030151,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6103895902633667
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0974442958831787,
+ "cvar95_kl": 4.075047969818115,
+ "delta_nll": 1.2253494262695312,
+ "max_kl": 5.456568717956543,
+ "mean_kl": 1.2140796184539795,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.49242424964904785
+ }
+ ],
+ "target_diagonal_fisher_difference_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5209951400756836,
+ "cvar95_kl": 1.2558786869049072,
+ "delta_nll": 0.2852281332015991,
+ "max_kl": 1.2558786869049072,
+ "mean_kl": 0.1572151482105255,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.8947368264198303
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4543321132659912,
+ "cvar95_kl": 5.37181282043457,
+ "delta_nll": 0.447948694229126,
+ "max_kl": 11.827005386352539,
+ "mean_kl": 0.6362177729606628,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1983875036239624,
+ "cvar95_kl": 2.0302774906158447,
+ "delta_nll": 0.39716583490371704,
+ "max_kl": 3.6801576614379883,
+ "mean_kl": 0.3306601643562317,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8191489577293396
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0335803031921387,
+ "cvar95_kl": 3.785457134246826,
+ "delta_nll": 1.056602954864502,
+ "max_kl": 5.025235176086426,
+ "mean_kl": 0.8664608597755432,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.6222222447395325
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4882766008377075,
+ "cvar95_kl": 1.346226453781128,
+ "delta_nll": 0.3184053897857666,
+ "max_kl": 1.4148379564285278,
+ "mean_kl": 0.23320914804935455,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.8108108043670654
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1482648849487305,
+ "cvar95_kl": 2.5143041610717773,
+ "delta_nll": 0.3105054497718811,
+ "max_kl": 3.022414445877075,
+ "mean_kl": 0.4038626253604889,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7843137383460999
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4200193881988525,
+ "cvar95_kl": 3.506941795349121,
+ "delta_nll": 0.5857663154602051,
+ "max_kl": 6.059634685516357,
+ "mean_kl": 0.5298561453819275,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7662337422370911
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.854514241218567,
+ "cvar95_kl": 4.312446117401123,
+ "delta_nll": 0.9824194312095642,
+ "max_kl": 5.261858940124512,
+ "mean_kl": 0.9442543387413025,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6212121248245239
+ }
+ ],
+ "target_directional_fisher_difference_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.445572853088379,
+ "cvar95_kl": 1.2641404867172241,
+ "delta_nll": 0.20980584621429443,
+ "max_kl": 1.2641404867172241,
+ "mean_kl": 0.13470770418643951,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.9473684430122375
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3638256788253784,
+ "cvar95_kl": 5.890485763549805,
+ "delta_nll": 0.3574422597885132,
+ "max_kl": 12.8174409866333,
+ "mean_kl": 0.5905574560165405,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1582412719726562,
+ "cvar95_kl": 2.3940727710723877,
+ "delta_nll": 0.3570196032524109,
+ "max_kl": 4.519840240478516,
+ "mean_kl": 0.36104124784469604,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.8404255509376526
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.9988359212875366,
+ "cvar95_kl": 4.336951732635498,
+ "delta_nll": 1.0218586921691895,
+ "max_kl": 5.376936435699463,
+ "mean_kl": 0.9023396968841553,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.644444465637207
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5535638332366943,
+ "cvar95_kl": 2.9711849689483643,
+ "delta_nll": 0.3836926221847534,
+ "max_kl": 3.4203357696533203,
+ "mean_kl": 0.3690139353275299,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.7837837934494019
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1590352058410645,
+ "cvar95_kl": 1.7222825288772583,
+ "delta_nll": 0.3212757706642151,
+ "max_kl": 2.289232015609741,
+ "mean_kl": 0.3079473078250885,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.843137264251709
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4574382305145264,
+ "cvar95_kl": 3.34493350982666,
+ "delta_nll": 0.6231851577758789,
+ "max_kl": 3.576073169708252,
+ "mean_kl": 0.523201048374176,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.7662337422370911
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.884065866470337,
+ "cvar95_kl": 4.967878818511963,
+ "delta_nll": 1.0119709968566895,
+ "max_kl": 5.710936069488525,
+ "mean_kl": 0.9756773710250854,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.6742424368858337
+ }
+ ],
+ "uniform_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.8646814823150635,
+ "cvar95_kl": 6.306801795959473,
+ "delta_nll": 2.6289143562316895,
+ "max_kl": 6.306801795959473,
+ "mean_kl": 3.1720287799835205,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.21052631735801697
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.9083590507507324,
+ "cvar95_kl": 7.112916469573975,
+ "delta_nll": 2.901975631713867,
+ "max_kl": 7.502933979034424,
+ "mean_kl": 2.9117941856384277,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.4038461446762085
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.974540948867798,
+ "cvar95_kl": 8.55384635925293,
+ "delta_nll": 3.1733193397521973,
+ "max_kl": 10.474206924438477,
+ "mean_kl": 3.2451982498168945,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.3404255211353302
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.892319679260254,
+ "cvar95_kl": 7.774782180786133,
+ "delta_nll": 2.915342330932617,
+ "max_kl": 9.205711364746094,
+ "mean_kl": 2.783794403076172,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.32777777314186096
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 4.135063171386719,
+ "cvar95_kl": 10.680988311767578,
+ "delta_nll": 2.9651918411254883,
+ "max_kl": 12.127657890319824,
+ "mean_kl": 3.2829434871673584,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.37837839126586914
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.3367018699645996,
+ "cvar95_kl": 6.4115424156188965,
+ "delta_nll": 1.4989423751831055,
+ "max_kl": 7.608405113220215,
+ "mean_kl": 2.047372341156006,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.47058823704719543
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.0540404319763184,
+ "cvar95_kl": 6.830252647399902,
+ "delta_nll": 2.219787359237671,
+ "max_kl": 8.387694358825684,
+ "mean_kl": 2.2611472606658936,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.4025973975658417
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 4.057540416717529,
+ "cvar95_kl": 7.13095235824585,
+ "delta_nll": 3.185445547103882,
+ "max_kl": 8.500591278076172,
+ "mean_kl": 3.1063497066497803,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.2954545319080353
+ }
+ ],
+ "v02_layer0_static": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5403542518615723,
+ "cvar95_kl": 3.368896484375,
+ "delta_nll": 0.3045872449874878,
+ "max_kl": 3.368896484375,
+ "mean_kl": 0.5823673605918884,
+ "reference_nll": 1.2357670068740845,
+ "task_id": 945,
+ "token_count": 19,
+ "top1_agreement": 0.6842105388641357
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5990421772003174,
+ "cvar95_kl": 3.445737600326538,
+ "delta_nll": 0.5926587581634521,
+ "max_kl": 4.194878101348877,
+ "mean_kl": 0.6758943200111389,
+ "reference_nll": 1.0063834190368652,
+ "task_id": 794,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4461653232574463,
+ "cvar95_kl": 3.6765236854553223,
+ "delta_nll": 0.6449436545372009,
+ "max_kl": 5.483456134796143,
+ "mean_kl": 0.8215219378471375,
+ "reference_nll": 0.8012216687202454,
+ "task_id": 657,
+ "token_count": 94,
+ "top1_agreement": 0.6276595592498779
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.4067187309265137,
+ "cvar95_kl": 5.471136569976807,
+ "delta_nll": 1.429741382598877,
+ "max_kl": 7.964560508728027,
+ "mean_kl": 1.2766573429107666,
+ "reference_nll": 0.9769772887229919,
+ "task_id": 702,
+ "token_count": 180,
+ "top1_agreement": 0.5388888716697693
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.1247687339782715,
+ "cvar95_kl": 5.125461578369141,
+ "delta_nll": 0.9548975229263306,
+ "max_kl": 5.5240960121154785,
+ "mean_kl": 0.864471971988678,
+ "reference_nll": 1.169871211051941,
+ "task_id": 651,
+ "token_count": 37,
+ "top1_agreement": 0.6756756901741028
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1851874589920044,
+ "cvar95_kl": 3.251368761062622,
+ "delta_nll": 0.34742802381515503,
+ "max_kl": 3.956939935684204,
+ "mean_kl": 0.6366665959358215,
+ "reference_nll": 0.8377594351768494,
+ "task_id": 720,
+ "token_count": 51,
+ "top1_agreement": 0.7254902124404907
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0860273838043213,
+ "cvar95_kl": 6.265845775604248,
+ "delta_nll": 1.2517743110656738,
+ "max_kl": 7.339381694793701,
+ "mean_kl": 1.1677201986312866,
+ "reference_nll": 0.8342530727386475,
+ "task_id": 903,
+ "token_count": 77,
+ "top1_agreement": 0.6363636255264282
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.2378599643707275,
+ "cvar95_kl": 5.143394947052002,
+ "delta_nll": 1.36576509475708,
+ "max_kl": 5.984044075012207,
+ "mean_kl": 1.3902655839920044,
+ "reference_nll": 0.8720948100090027,
+ "task_id": 918,
+ "token_count": 132,
+ "top1_agreement": 0.5378788113594055
+ }
+ ]
+ },
+ "per_task_full_code_secondary": {
+ "adaptive_mse_hrr_h1_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4839556217193604,
+ "cvar95_kl": 1.3505640029907227,
+ "delta_nll": 0.2715955972671509,
+ "max_kl": 1.3505640029907227,
+ "mean_kl": 0.3415548503398895,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.75
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5277574062347412,
+ "cvar95_kl": 3.1122920513153076,
+ "delta_nll": 0.4884723424911499,
+ "max_kl": 4.499517440795898,
+ "mean_kl": 0.5067775845527649,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.518835425376892,
+ "cvar95_kl": 3.9232306480407715,
+ "delta_nll": 0.6931431293487549,
+ "max_kl": 4.5721306800842285,
+ "mean_kl": 0.7393147349357605,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.7263157963752747
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.3327126502990723,
+ "cvar95_kl": 4.696091651916504,
+ "delta_nll": 1.356512427330017,
+ "max_kl": 7.769333839416504,
+ "mean_kl": 1.2183135747909546,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.5856353640556335
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.7083547115325928,
+ "cvar95_kl": 2.3318424224853516,
+ "delta_nll": 0.5515149831771851,
+ "max_kl": 2.3942956924438477,
+ "mean_kl": 0.5500296354293823,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7105262875556946
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1213890314102173,
+ "cvar95_kl": 2.403932809829712,
+ "delta_nll": 0.2879068851470947,
+ "max_kl": 2.9691216945648193,
+ "mean_kl": 0.4481312930583954,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8414400815963745,
+ "cvar95_kl": 3.819864273071289,
+ "delta_nll": 1.0101566314697266,
+ "max_kl": 4.455229759216309,
+ "mean_kl": 0.9727073311805725,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6025640964508057
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.362440347671509,
+ "cvar95_kl": 4.784841060638428,
+ "delta_nll": 1.4925702810287476,
+ "max_kl": 5.305493354797363,
+ "mean_kl": 1.484984278678894,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5112782120704651
+ }
+ ],
+ "adaptive_mse_target_directional_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2766627073287964,
+ "cvar95_kl": 0.8177868127822876,
+ "delta_nll": 0.06430268287658691,
+ "max_kl": 0.8177868127822876,
+ "mean_kl": 0.10571432113647461,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8999999761581421
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3395802974700928,
+ "cvar95_kl": 1.9170337915420532,
+ "delta_nll": 0.30029523372650146,
+ "max_kl": 2.5172431468963623,
+ "mean_kl": 0.3196497857570648,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1746087074279785,
+ "cvar95_kl": 2.4800684452056885,
+ "delta_nll": 0.3489164113998413,
+ "max_kl": 4.00590181350708,
+ "mean_kl": 0.4183139204978943,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8105263113975525
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0917999744415283,
+ "cvar95_kl": 3.971057415008545,
+ "delta_nll": 1.1155997514724731,
+ "max_kl": 6.843515872955322,
+ "mean_kl": 0.893450140953064,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6519337296485901
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4835220575332642,
+ "cvar95_kl": 2.8130877017974854,
+ "delta_nll": 0.32668232917785645,
+ "max_kl": 3.174671173095703,
+ "mean_kl": 0.28890517354011536,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.163646936416626,
+ "cvar95_kl": 3.2352826595306396,
+ "delta_nll": 0.3301647901535034,
+ "max_kl": 3.91865611076355,
+ "mean_kl": 0.3904247283935547,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.8269230723381042
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5040258169174194,
+ "cvar95_kl": 4.825870037078857,
+ "delta_nll": 0.6727423667907715,
+ "max_kl": 5.618816375732422,
+ "mean_kl": 0.6672582030296326,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7307692170143127
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6088777780532837,
+ "cvar95_kl": 3.0732264518737793,
+ "delta_nll": 0.7390077114105225,
+ "max_kl": 3.4257588386535645,
+ "mean_kl": 0.6992927193641663,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6766917109489441
+ }
+ ],
+ "delta_direction_magnitude_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4930073022842407,
+ "cvar95_kl": 1.0018543004989624,
+ "delta_nll": 0.28064727783203125,
+ "max_kl": 1.0018543004989624,
+ "mean_kl": 0.1372257024049759,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8500000238418579
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5135524272918701,
+ "cvar95_kl": 5.851797103881836,
+ "delta_nll": 0.4742673635482788,
+ "max_kl": 12.883463859558105,
+ "mean_kl": 0.6843233704566956,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.7735849022865295
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2004636526107788,
+ "cvar95_kl": 2.4215567111968994,
+ "delta_nll": 0.3747713565826416,
+ "max_kl": 2.8704397678375244,
+ "mean_kl": 0.36974889039993286,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8526315689086914
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.040259838104248,
+ "cvar95_kl": 4.426297187805176,
+ "delta_nll": 1.0640596151351929,
+ "max_kl": 7.306674957275391,
+ "mean_kl": 0.9301011562347412,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6132596731185913
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6968767642974854,
+ "cvar95_kl": 3.309788227081299,
+ "delta_nll": 0.5400370359420776,
+ "max_kl": 4.023754596710205,
+ "mean_kl": 0.3819687068462372,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7631579041481018
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.063628077507019,
+ "cvar95_kl": 1.6982628107070923,
+ "delta_nll": 0.23014593124389648,
+ "max_kl": 2.735661029815674,
+ "mean_kl": 0.26388871669769287,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.8653846383094788
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3193116188049316,
+ "cvar95_kl": 3.076843023300171,
+ "delta_nll": 0.4880281686782837,
+ "max_kl": 4.380039215087891,
+ "mean_kl": 0.44956690073013306,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7820512652397156
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.7121750116348267,
+ "cvar95_kl": 3.508823871612549,
+ "delta_nll": 0.8423049449920654,
+ "max_kl": 3.912299633026123,
+ "mean_kl": 0.8702264428138733,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6766917109489441
+ }
+ ],
+ "hrr_h1": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.382657766342163,
+ "cvar95_kl": 0.7921264171600342,
+ "delta_nll": 0.1702977418899536,
+ "max_kl": 0.7921264171600342,
+ "mean_kl": 0.22135265171527863,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.800000011920929
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3824260234832764,
+ "cvar95_kl": 3.2065913677215576,
+ "delta_nll": 0.34314095973968506,
+ "max_kl": 3.997688055038452,
+ "mean_kl": 0.46908649802207947,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8867924809455872
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2440130710601807,
+ "cvar95_kl": 3.225297451019287,
+ "delta_nll": 0.41832077503204346,
+ "max_kl": 4.80308198928833,
+ "mean_kl": 0.5229081511497498,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.75789475440979
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.3114583492279053,
+ "cvar95_kl": 5.01886510848999,
+ "delta_nll": 1.33525812625885,
+ "max_kl": 6.1808671951293945,
+ "mean_kl": 1.2494535446166992,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.5248618721961975
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6294397115707397,
+ "cvar95_kl": 3.9683706760406494,
+ "delta_nll": 0.47259998321533203,
+ "max_kl": 4.7960028648376465,
+ "mean_kl": 0.45105767250061035,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7631579041481018
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2134149074554443,
+ "cvar95_kl": 2.4804813861846924,
+ "delta_nll": 0.3799327611923218,
+ "max_kl": 3.1602442264556885,
+ "mean_kl": 0.4624372720718384,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6999834775924683,
+ "cvar95_kl": 3.9350757598876953,
+ "delta_nll": 0.8687000274658203,
+ "max_kl": 5.582791805267334,
+ "mean_kl": 0.7581237554550171,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6538461446762085
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.856164574623108,
+ "cvar95_kl": 4.484250068664551,
+ "delta_nll": 0.9862945079803467,
+ "max_kl": 6.055515766143799,
+ "mean_kl": 0.9471754431724548,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.646616518497467
+ }
+ ],
+ "hrr_h32": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4430367946624756,
+ "cvar95_kl": 0.8985419273376465,
+ "delta_nll": 0.2306767702102661,
+ "max_kl": 0.8985419273376465,
+ "mean_kl": 0.248591348528862,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8500000238418579
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4671587944030762,
+ "cvar95_kl": 3.2515528202056885,
+ "delta_nll": 0.42787373065948486,
+ "max_kl": 4.571720600128174,
+ "mean_kl": 0.5589088797569275,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8113207817077637
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3669452667236328,
+ "cvar95_kl": 3.736093521118164,
+ "delta_nll": 0.5412529706954956,
+ "max_kl": 5.296608924865723,
+ "mean_kl": 0.6217979192733765,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.7473683953285217
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.393794536590576,
+ "cvar95_kl": 5.209719657897949,
+ "delta_nll": 1.417594313621521,
+ "max_kl": 6.360416889190674,
+ "mean_kl": 1.3340288400650024,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.530386745929718
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.9783248901367188,
+ "cvar95_kl": 6.502284049987793,
+ "delta_nll": 0.821485161781311,
+ "max_kl": 8.4575777053833,
+ "mean_kl": 0.7250598669052124,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7631579041481018
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.221321702003479,
+ "cvar95_kl": 3.346160888671875,
+ "delta_nll": 0.38783955574035645,
+ "max_kl": 3.942091941833496,
+ "mean_kl": 0.5492079854011536,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7884615659713745
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.663309097290039,
+ "cvar95_kl": 4.948601245880127,
+ "delta_nll": 0.8320256471633911,
+ "max_kl": 6.279153823852539,
+ "mean_kl": 0.8192257285118103,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.692307710647583
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.1537795066833496,
+ "cvar95_kl": 5.193247318267822,
+ "delta_nll": 1.2839094400405884,
+ "max_kl": 6.915596008300781,
+ "mean_kl": 1.2742339372634888,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5037593841552734
+ }
+ ],
+ "query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.418370246887207,
+ "cvar95_kl": 1.556406021118164,
+ "delta_nll": 0.20601022243499756,
+ "max_kl": 1.556406021118164,
+ "mean_kl": 0.2276397943496704,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.800000011920929
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3179967403411865,
+ "cvar95_kl": 1.627397894859314,
+ "delta_nll": 0.2787116765975952,
+ "max_kl": 1.9932399988174438,
+ "mean_kl": 0.30512118339538574,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0679329633712769,
+ "cvar95_kl": 1.8434892892837524,
+ "delta_nll": 0.24224066734313965,
+ "max_kl": 2.1381585597991943,
+ "mean_kl": 0.2991275489330292,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8631578683853149
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.1030280590057373,
+ "cvar95_kl": 5.2115983963012695,
+ "delta_nll": 1.1268278360366821,
+ "max_kl": 7.807358741760254,
+ "mean_kl": 1.0163122415542603,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6077347993850708
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4845366477966309,
+ "cvar95_kl": 1.8312337398529053,
+ "delta_nll": 0.32769691944122314,
+ "max_kl": 2.4443414211273193,
+ "mean_kl": 0.21287418901920319,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0506296157836914,
+ "cvar95_kl": 1.9032338857650757,
+ "delta_nll": 0.21714746952056885,
+ "max_kl": 2.2659804821014404,
+ "mean_kl": 0.30670034885406494,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4653371572494507,
+ "cvar95_kl": 3.72835636138916,
+ "delta_nll": 0.6340537071228027,
+ "max_kl": 4.5848708152771,
+ "mean_kl": 0.5372474789619446,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7307692170143127
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4884403944015503,
+ "cvar95_kl": 3.7523066997528076,
+ "delta_nll": 0.6185703277587891,
+ "max_kl": 4.824880123138428,
+ "mean_kl": 0.6647366285324097,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6766917109489441
+ }
+ ],
+ "random_rows_s1101": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.307971239089966,
+ "cvar95_kl": 6.688381195068359,
+ "delta_nll": 2.095611095428467,
+ "max_kl": 6.688381195068359,
+ "mean_kl": 2.618752956390381,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.3499999940395355
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.5987062454223633,
+ "cvar95_kl": 6.7014384269714355,
+ "delta_nll": 2.5594210624694824,
+ "max_kl": 6.983257293701172,
+ "mean_kl": 2.6055264472961426,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.4528301954269409
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.5143957138061523,
+ "cvar95_kl": 7.542943477630615,
+ "delta_nll": 2.6887035369873047,
+ "max_kl": 8.907737731933594,
+ "mean_kl": 2.72857928276062,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.34736841917037964
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 4.830452919006348,
+ "cvar95_kl": 9.73292064666748,
+ "delta_nll": 3.854252815246582,
+ "max_kl": 11.590734481811523,
+ "mean_kl": 3.6810967922210693,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.2209944725036621
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.5683207511901855,
+ "cvar95_kl": 10.18855094909668,
+ "delta_nll": 2.4114809036254883,
+ "max_kl": 12.039348602294922,
+ "mean_kl": 2.6900463104248047,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.3684210479259491
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.89404559135437,
+ "cvar95_kl": 6.689493179321289,
+ "delta_nll": 2.060563564300537,
+ "max_kl": 7.234011173248291,
+ "mean_kl": 2.30271315574646,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.48076921701431274
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.9100074768066406,
+ "cvar95_kl": 5.610705375671387,
+ "delta_nll": 2.078723907470703,
+ "max_kl": 6.914088249206543,
+ "mean_kl": 1.9722992181777954,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.44871795177459717
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 4.587120056152344,
+ "cvar95_kl": 8.227903366088867,
+ "delta_nll": 3.717249870300293,
+ "max_kl": 8.815784454345703,
+ "mean_kl": 3.7316107749938965,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.24812030792236328
+ }
+ ],
+ "row_mse": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5904957056045532,
+ "cvar95_kl": 2.1311771869659424,
+ "delta_nll": 0.37813568115234375,
+ "max_kl": 2.1311771869659424,
+ "mean_kl": 0.509127140045166,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.75
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5646946430206299,
+ "cvar95_kl": 2.8863818645477295,
+ "delta_nll": 0.5254095792770386,
+ "max_kl": 4.380407333374023,
+ "mean_kl": 0.5772380232810974,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8301886916160583
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6071884632110596,
+ "cvar95_kl": 5.046751976013184,
+ "delta_nll": 0.7814961671829224,
+ "max_kl": 5.6158576011657715,
+ "mean_kl": 0.9370073676109314,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.6842105388641357
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.3376240730285645,
+ "cvar95_kl": 4.687803745269775,
+ "delta_nll": 1.3614238500595093,
+ "max_kl": 7.450765132904053,
+ "mean_kl": 1.2179455757141113,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.580110490322113
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.9546620845794678,
+ "cvar95_kl": 3.6711325645446777,
+ "delta_nll": 0.7978223562240601,
+ "max_kl": 3.788031578063965,
+ "mean_kl": 0.777239978313446,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7368420958518982
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1692057847976685,
+ "cvar95_kl": 2.32446026802063,
+ "delta_nll": 0.3357236385345459,
+ "max_kl": 2.606278896331787,
+ "mean_kl": 0.49499958753585815,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8137105703353882,
+ "cvar95_kl": 4.329058647155762,
+ "delta_nll": 0.9824271202087402,
+ "max_kl": 6.58737850189209,
+ "mean_kl": 0.9062637686729431,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6794871687889099
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.9694353342056274,
+ "cvar95_kl": 4.327456951141357,
+ "delta_nll": 1.0995652675628662,
+ "max_kl": 5.218027591705322,
+ "mean_kl": 1.1494661569595337,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5338345766067505
+ }
+ ],
+ "signed_taylor_next_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4656673669815063,
+ "cvar95_kl": 1.8164697885513306,
+ "delta_nll": 0.2533073425292969,
+ "max_kl": 1.8164697885513306,
+ "mean_kl": 0.3949037194252014,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.75
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.751088261604309,
+ "cvar95_kl": 4.868865966796875,
+ "delta_nll": 0.7118031978607178,
+ "max_kl": 8.179862976074219,
+ "mean_kl": 0.7689898014068604,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.7547169923782349
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4732908010482788,
+ "cvar95_kl": 3.475843906402588,
+ "delta_nll": 0.6475985050201416,
+ "max_kl": 4.466429710388184,
+ "mean_kl": 0.7432272434234619,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.7157894968986511
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.456876516342163,
+ "cvar95_kl": 5.24741268157959,
+ "delta_nll": 1.480676293373108,
+ "max_kl": 6.654348850250244,
+ "mean_kl": 1.4033595323562622,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.5082873106002808
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.7980637550354004,
+ "cvar95_kl": 4.301302909851074,
+ "delta_nll": 0.6412240266799927,
+ "max_kl": 4.708497047424316,
+ "mean_kl": 0.7313520312309265,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7105262875556946
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3666024208068848,
+ "cvar95_kl": 4.675906658172607,
+ "delta_nll": 0.5331202745437622,
+ "max_kl": 5.054469585418701,
+ "mean_kl": 0.7325137257575989,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.75
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8566772937774658,
+ "cvar95_kl": 4.453776836395264,
+ "delta_nll": 1.0253938436508179,
+ "max_kl": 6.199273586273193,
+ "mean_kl": 1.0098174810409546,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6153846383094788
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0860064029693604,
+ "cvar95_kl": 4.075047969818115,
+ "delta_nll": 1.2161363363265991,
+ "max_kl": 5.456568717956543,
+ "mean_kl": 1.2049511671066284,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.49624061584472656
+ }
+ ],
+ "target_diagonal_fisher_difference_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.48332679271698,
+ "cvar95_kl": 1.2558786869049072,
+ "delta_nll": 0.2709667682647705,
+ "max_kl": 1.2558786869049072,
+ "mean_kl": 0.14935438334941864,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.8999999761581421
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.478781819343567,
+ "cvar95_kl": 5.37181282043457,
+ "delta_nll": 0.4394967555999756,
+ "max_kl": 11.827005386352539,
+ "mean_kl": 0.624213695526123,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8679245114326477
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.218677282333374,
+ "cvar95_kl": 2.0302774906158447,
+ "delta_nll": 0.3929849863052368,
+ "max_kl": 3.6801576614379883,
+ "mean_kl": 0.32717952132225037,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.821052610874176
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.026965618133545,
+ "cvar95_kl": 3.6853604316711426,
+ "delta_nll": 1.0507653951644897,
+ "max_kl": 5.025235176086426,
+ "mean_kl": 0.8616735935211182,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6243094205856323
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.466866135597229,
+ "cvar95_kl": 1.346226453781128,
+ "delta_nll": 0.3100264072418213,
+ "max_kl": 1.4148379564285278,
+ "mean_kl": 0.22707204520702362,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.8157894611358643
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1380162239074707,
+ "cvar95_kl": 2.5143041610717773,
+ "delta_nll": 0.30453407764434814,
+ "max_kl": 3.022414445877075,
+ "mean_kl": 0.39609605073928833,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7884615659713745
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4095401763916016,
+ "cvar95_kl": 3.506941795349121,
+ "delta_nll": 0.5782567262649536,
+ "max_kl": 6.059634685516357,
+ "mean_kl": 0.5230631232261658,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8449028730392456,
+ "cvar95_kl": 4.312446117401123,
+ "delta_nll": 0.9750328063964844,
+ "max_kl": 5.261858940124512,
+ "mean_kl": 0.9371547698974609,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6240601539611816
+ }
+ ],
+ "target_directional_fisher_difference_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4116756916046143,
+ "cvar95_kl": 1.2641404867172241,
+ "delta_nll": 0.19931566715240479,
+ "max_kl": 1.2641404867172241,
+ "mean_kl": 0.1279723197221756,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.949999988079071
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3899832963943481,
+ "cvar95_kl": 5.890485763549805,
+ "delta_nll": 0.35069823265075684,
+ "max_kl": 12.8174409866333,
+ "mean_kl": 0.5794148445129395,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8301886916160583
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.178953766822815,
+ "cvar95_kl": 2.3940727710723877,
+ "delta_nll": 0.35326147079467773,
+ "max_kl": 4.519840240478516,
+ "mean_kl": 0.35724082589149475,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.9924132823944092,
+ "cvar95_kl": 4.262154579162598,
+ "delta_nll": 1.016213059425354,
+ "max_kl": 5.376936435699463,
+ "mean_kl": 0.8973543643951416,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.6464088559150696
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5304352045059204,
+ "cvar95_kl": 2.9711849689483643,
+ "delta_nll": 0.3735954761505127,
+ "max_kl": 3.4203357696533203,
+ "mean_kl": 0.3593030869960785,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.148579478263855,
+ "cvar95_kl": 1.7222825288772583,
+ "delta_nll": 0.3150973320007324,
+ "max_kl": 2.289232015609741,
+ "mean_kl": 0.3020252585411072,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.8461538553237915
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4464792013168335,
+ "cvar95_kl": 3.34493350982666,
+ "delta_nll": 0.6151957511901855,
+ "max_kl": 3.576073169708252,
+ "mean_kl": 0.5164933204650879,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.7692307829856873
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8742324113845825,
+ "cvar95_kl": 4.967878818511963,
+ "delta_nll": 1.0043623447418213,
+ "max_kl": 5.710936069488525,
+ "mean_kl": 0.9683414697647095,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.6766917109489441
+ }
+ ],
+ "uniform_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.7098286151885986,
+ "cvar95_kl": 6.306801795959473,
+ "delta_nll": 2.4974684715270996,
+ "max_kl": 6.306801795959473,
+ "mean_kl": 3.013427257537842,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.25
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.8865065574645996,
+ "cvar95_kl": 7.112916469573975,
+ "delta_nll": 2.8472213745117188,
+ "max_kl": 7.502933979034424,
+ "mean_kl": 2.8568546772003174,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.4150943458080292
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.9656083583831787,
+ "cvar95_kl": 8.55384635925293,
+ "delta_nll": 3.139915943145752,
+ "max_kl": 10.474206924438477,
+ "mean_kl": 3.21103835105896,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.34736841917037964
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.8754353523254395,
+ "cvar95_kl": 7.624777317047119,
+ "delta_nll": 2.899235248565674,
+ "max_kl": 9.205711364746094,
+ "mean_kl": 2.7684144973754883,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.33149170875549316
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 4.044000625610352,
+ "cvar95_kl": 10.680988311767578,
+ "delta_nll": 2.8871607780456543,
+ "max_kl": 12.127657890319824,
+ "mean_kl": 3.1965503692626953,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.3947368562221527
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.303598642349243,
+ "cvar95_kl": 6.4115424156188965,
+ "delta_nll": 1.4701164960861206,
+ "max_kl": 7.608405113220215,
+ "mean_kl": 2.0079994201660156,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.48076921701431274
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 3.0226120948791504,
+ "cvar95_kl": 6.830252647399902,
+ "delta_nll": 2.191328525543213,
+ "max_kl": 8.387694358825684,
+ "mean_kl": 2.2321579456329346,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.41025641560554504
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 4.031365394592285,
+ "cvar95_kl": 7.13095235824585,
+ "delta_nll": 3.1614952087402344,
+ "max_kl": 8.500591278076172,
+ "mean_kl": 3.082993268966675,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.30075186491012573
+ }
+ ],
+ "v02_layer0_static": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5017179250717163,
+ "cvar95_kl": 3.368896484375,
+ "delta_nll": 0.28935790061950684,
+ "max_kl": 3.368896484375,
+ "mean_kl": 0.5532490015029907,
+ "reference_nll": 1.2123600244522095,
+ "task_id": 945,
+ "token_count": 20,
+ "top1_agreement": 0.699999988079071
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6207616329193115,
+ "cvar95_kl": 3.445737600326538,
+ "delta_nll": 0.5814765691757202,
+ "max_kl": 4.194878101348877,
+ "mean_kl": 0.663141667842865,
+ "reference_nll": 1.0392850637435913,
+ "task_id": 794,
+ "token_count": 53,
+ "top1_agreement": 0.8301886916160583
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4638469219207764,
+ "cvar95_kl": 3.6765236854553223,
+ "delta_nll": 0.6381546258926392,
+ "max_kl": 5.483456134796143,
+ "mean_kl": 0.8128743171691895,
+ "reference_nll": 0.8256922960281372,
+ "task_id": 657,
+ "token_count": 95,
+ "top1_agreement": 0.6315789222717285
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.3980424404144287,
+ "cvar95_kl": 5.337082386016846,
+ "delta_nll": 1.4218422174453735,
+ "max_kl": 7.964560508728027,
+ "mean_kl": 1.2696040868759155,
+ "reference_nll": 0.9762002229690552,
+ "task_id": 702,
+ "token_count": 181,
+ "top1_agreement": 0.541436493396759
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.086608409881592,
+ "cvar95_kl": 5.125461578369141,
+ "delta_nll": 0.9297686815261841,
+ "max_kl": 5.5240960121154785,
+ "mean_kl": 0.8417227268218994,
+ "reference_nll": 1.1568397283554077,
+ "task_id": 651,
+ "token_count": 38,
+ "top1_agreement": 0.6842105388641357
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1742287874221802,
+ "cvar95_kl": 3.251368761062622,
+ "delta_nll": 0.3407466411590576,
+ "max_kl": 3.956939935684204,
+ "mean_kl": 0.624423086643219,
+ "reference_nll": 0.8334821462631226,
+ "task_id": 720,
+ "token_count": 52,
+ "top1_agreement": 0.7307692170143127
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.067009449005127,
+ "cvar95_kl": 6.265845775604248,
+ "delta_nll": 1.235725998878479,
+ "max_kl": 7.339381694793701,
+ "mean_kl": 1.1527493000030518,
+ "reference_nll": 0.831283450126648,
+ "task_id": 903,
+ "token_count": 78,
+ "top1_agreement": 0.6410256624221802
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.2253663539886475,
+ "cvar95_kl": 5.143394947052002,
+ "delta_nll": 1.3554962873458862,
+ "max_kl": 5.984044075012207,
+ "mean_kl": 1.3798127174377441,
+ "reference_nll": 0.8698700666427612,
+ "task_id": 918,
+ "token_count": 133,
+ "top1_agreement": 0.5413534045219421
+ }
+ ]
+ },
+ "prerequisite_artifacts": {},
+ "primary": "query_ema32_weighted_mse_target_fisher_quota",
+ "query_ema_diagnostics": {
+ "query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "layers": [
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "f187d8206059f64a900be8ef80f776b325f73c0c5e7096b77a266ff349c7076e",
+ "current_selected_count": 355,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.2697540796580142e-09,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 349,
+ "last_query_token_count": 1,
+ "layer_index": 0,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 355,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "141156aa63247ea75323dd428e6ab70929db7961a2eb5f283f631db2b7010e9c",
+ "current_selected_count": 380,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.3217872069380974e-11,
+ "last_mask_churn": 98,
+ "last_mask_overlap": 331,
+ "last_query_token_count": 1,
+ "layer_index": 1,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 380,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "b868195693ba6d600e575697aa0ea3b9ec0a029c4f257d4fa1c46d55ff1ea201",
+ "current_selected_count": 269,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.0506795433684601e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 267,
+ "last_query_token_count": 1,
+ "layer_index": 2,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 269,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "faa2360c07f1f552a624bb81ffb01377652a8047422314bd08a1a8d9382d28d4",
+ "current_selected_count": 179,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.731312124775286e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "layer_index": 4,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 179,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "0efb51386da3c7dcb18de7e18845237ad07eca08a6411ff8f45ecbd9807bd68e",
+ "current_selected_count": 185,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.2960271905958507e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "layer_index": 5,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 185,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "0cf6588cc45dede95115c11ce40f80abc8265637f6fd74a5f8246346f8c1d423",
+ "current_selected_count": 105,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 6.684146569568838e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "layer_index": 6,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 105,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "e2e10ed9585bc2e241e1c2b45f8e093086caafff4fe02630488e104c287773ec",
+ "current_selected_count": 80,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.8645565091901517e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "layer_index": 8,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 80,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "a3bde0816c400c750f4fc24d179d6b29fcbf4023d02aa479ef8a6efd7e38a821",
+ "current_selected_count": 43,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.5367383809916646e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "layer_index": 9,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 43,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "b7c92812a018e02c9deea5eb56e47e376ce6acec15fe856f023d3b4f1cfa3790",
+ "current_selected_count": 84,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.1025050851194464e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "layer_index": 10,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 84,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "00589a62e23755f20d2923a7e0ffb4c9f068e4e100794c56641dea71d166043e",
+ "current_selected_count": 30,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.443446747856797e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "layer_index": 12,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 30,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "69542ad833a09de0e76b3226e143ea62560e7bde928dd5e02d6928777cf7c637",
+ "current_selected_count": 62,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.5016204925095735e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 60,
+ "last_query_token_count": 1,
+ "layer_index": 13,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 62,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "d92fc3093dee3741b795f2f14d86ce95f2a8b4459a42bbf9fe4b695876dd8f8f",
+ "current_selected_count": 54,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.4108259206486764e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "layer_index": 14,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 54,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "a4e7c9047f5407123bad220960fb7c1c821dcf3d63e91da50c44f89ca2d81706",
+ "current_selected_count": 45,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.953208190272562e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "layer_index": 16,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 45,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "9b093a44b7bca85cf058836adcc09caa8c6be1866ef68ee7d405cab74dab320d",
+ "current_selected_count": 27,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.3191988728067372e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "layer_index": 17,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 27,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 6.429338827729225e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 18,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "c99ff900307cd42fd1992741fd875fb6669c6dbe7ae519635746e9c65b9c34c7",
+ "current_selected_count": 9,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 9.907135790854227e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "layer_index": 20,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 9,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "a3f1628928c09186b16e6d72cf93f9cf6a3d0bd646f053438c3fcc96cd9ab3f4",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 9.98738414637046e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 21,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "ffe69f07606e334f8a4c370cc6ebfc6d3d17be0197f47d4074f53324d086ded2",
+ "current_selected_count": 55,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.214976433378979e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "layer_index": 22,
+ "observations_committed": 20,
+ "pending_observation": false,
+ "quota": 55,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 20,
+ "tokens_observed": 131
+ }
+ ],
+ "task_id": 945
+ },
+ {
+ "layers": [
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "0f7e81d3f6f6d9fed3e67328f88d307012a3b6b2663f4308ab78a4b9e6f5e739",
+ "current_selected_count": 355,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.3045549347198175e-09,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 351,
+ "last_query_token_count": 1,
+ "layer_index": 0,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 355,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "37d9e229bab5e1dbc919a371d6ce0011a5e546286fa1cc235ae9010e90416e0f",
+ "current_selected_count": 380,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 6.895595205946847e-12,
+ "last_mask_churn": 128,
+ "last_mask_overlap": 316,
+ "last_query_token_count": 1,
+ "layer_index": 1,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 380,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "285446886f9c4a2ca5c4d6e63952483175a313d3105378837d55a90ff2d04333",
+ "current_selected_count": 269,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 3.723776842434745e-11,
+ "last_mask_churn": 16,
+ "last_mask_overlap": 261,
+ "last_query_token_count": 1,
+ "layer_index": 2,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 269,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "6dd57bcb804f6a8c43c16f6c5433dabca652741c849e2160c0f0161281e66657",
+ "current_selected_count": 179,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.9781607818458724e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "layer_index": 4,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 179,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "b415c98b0f77393dc2bd5e98e3489f18a3311fe04c92279bcf911062b019f4b9",
+ "current_selected_count": 185,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 6.379107730936084e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "layer_index": 5,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 185,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "8b34d4c4e8f252e64674a8c3ab8a32e0dfbf4148844d3630f4c88cd630b26ffd",
+ "current_selected_count": 105,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.258701835624379e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "layer_index": 6,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 105,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "32f3af6a71c2148e6736843e312bbbc078704835040ed9ed59dd2a8835f1b5ed",
+ "current_selected_count": 80,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.01873023747612e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "layer_index": 8,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 80,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "fca1a72b3b2442bc43394750fa0f890c0117f7463b3a6e1993049c7895d7c741",
+ "current_selected_count": 43,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 3.258816505535833e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "layer_index": 9,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 43,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "b4b6eb25d969ea39b626614805c1d56533995646e71b02bce350ae2c33f4c9a3",
+ "current_selected_count": 84,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.023556599008771e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "layer_index": 10,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 84,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "f84926194edcf5534d44ec5fa481736d2d3238db1aed7a2ffce6de461e9eb98b",
+ "current_selected_count": 30,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.4686438488715794e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "layer_index": 12,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 30,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "536f4e5da872fe88b5808a96c14ee199a3e6f2bbad4d0a4f25c131917054cfe1",
+ "current_selected_count": 62,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.813342365153403e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "layer_index": 13,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 62,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "1768bc1425088a5a6cef4e9a13246387e91bae3574e49bb4ea7eed8c0290cf97",
+ "current_selected_count": 54,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.286528122397158e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "layer_index": 14,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 54,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "6bab939eed87fa54e157076fc9404b33b90f7fd69f825f657d56d7dea5acee90",
+ "current_selected_count": 45,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.476383258454007e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "layer_index": 16,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 45,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "54279a6c3fc043cb6c7411a879538627e85e5e074e2b3a33a58d1ca53dfa2ab4",
+ "current_selected_count": 27,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.1359041991454433e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "layer_index": 17,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 27,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "a6ddba4a4156509bf79e1bdf4d80e2242e04b93da0275689472fd6415428a5dd",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.116472261259332e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 18,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "f855609c9ec9748a5c16379406b1003fb4bd43b38877cd2064db6e25813b176f",
+ "current_selected_count": 9,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.4022208233654965e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "layer_index": 20,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 9,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "ba01869a5a5794a4bcd17b3bea6e1b6c0ab2598a6fa988f378d0effa60b1d078",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.593422141217161e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 21,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "467a9f8a98af94a50db153118fa60868aaf5db41b31bff17a23dc764f281dd82",
+ "current_selected_count": 55,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.6492961069379817e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "layer_index": 22,
+ "observations_committed": 53,
+ "pending_observation": false,
+ "quota": 55,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 53,
+ "tokens_observed": 153
+ }
+ ],
+ "task_id": 794
+ },
+ {
+ "layers": [
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "4fc279e7937f41f11fda119ef72274b6b1bf0d42019f3311b848d8cd86d90cda",
+ "current_selected_count": 355,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.488587114157781e-11,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 346,
+ "last_query_token_count": 1,
+ "layer_index": 0,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 355,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "2396d3f726a29354b4c837891b07e681bfb6706bd0e12a51d51931ea2cc740ef",
+ "current_selected_count": 380,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.406375016443917e-12,
+ "last_mask_churn": 78,
+ "last_mask_overlap": 341,
+ "last_query_token_count": 1,
+ "layer_index": 1,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 380,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "efc4860809fb5e5999c4478a820c39860631b4f3c84f08661258b3a02ebdaf51",
+ "current_selected_count": 269,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.286016069305788e-11,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 263,
+ "last_query_token_count": 1,
+ "layer_index": 2,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 269,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "42f056f3cd4797250293b5a09784c370c614ae3cd0b473e76f50b632f79dad12",
+ "current_selected_count": 179,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.411030936537827e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "layer_index": 4,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 179,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "10bf55fc836c190b76bad99134c01c5484d240685fdd689f24812a13074286d6",
+ "current_selected_count": 185,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.5174191620180864e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 182,
+ "last_query_token_count": 1,
+ "layer_index": 5,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 185,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "27b4991c2d23a28be45cb3cf2c7b9b5726c86e7c99d545b38351c528fcbb53e8",
+ "current_selected_count": 105,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.893223852306619e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "layer_index": 6,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 105,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "2e7950b0a776bdb28739dd7036b3dfb9bb1c4993d62259cd7d1dda979cad43b5",
+ "current_selected_count": 80,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.0801869620991056e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "layer_index": 8,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 80,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "71bf1d9a2f2d61b86732f2e35486f6da2f88ed2b8633c256ac56fa12f3659ae5",
+ "current_selected_count": 43,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.1748830170718065e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "layer_index": 9,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 43,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "e9a3911287d281cce3eeeca5ef7e8d98f725b5d4a8732e1701459b590da09fc8",
+ "current_selected_count": 84,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 6.419043074856745e-11,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "layer_index": 10,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 84,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "e39af33ede505ad1d3bf7f295c3334fe3344b37d3213290a9e4e286dbd69bb20",
+ "current_selected_count": 30,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.055507017459604e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "layer_index": 12,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 30,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "4b7efd61823246030fe59b707d0bea89efa9c48e156b7c43492fc5a3041520d5",
+ "current_selected_count": 62,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 6.04317129671017e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "layer_index": 13,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 62,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "c7f678d351ffe3a127e87610182b923beda2eb1392992c72fa7b921b28c509e7",
+ "current_selected_count": 54,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 3.776405321787024e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "layer_index": 14,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 54,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "ced2c58ecc310f13831b03bd1be3d780c6d6b257398d14ea72140efcbcb43f2a",
+ "current_selected_count": 45,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.441269644914428e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 44,
+ "last_query_token_count": 1,
+ "layer_index": 16,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 45,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "4ee9a3de38d839d59e696fa4ac64e178d8e2f0c337f8392071c90ef1631d69e2",
+ "current_selected_count": 27,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.707228633080376e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "layer_index": 17,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 27,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 9.57815154833952e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 18,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "current_selected_count": 9,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.0691680472518783e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "layer_index": 20,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 9,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "d2dc29e7a8d9ad71ab1fd9500dac2ebbbb58e686c19a348b85e273b6094fac9f",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.246344466693699e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 21,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "e8bf0a7686710a9c20175b5b2b210c794da63437b359b749b770638c683153d1",
+ "current_selected_count": 55,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.697300149317016e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "layer_index": 22,
+ "observations_committed": 95,
+ "pending_observation": false,
+ "quota": 55,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 95,
+ "tokens_observed": 170
+ }
+ ],
+ "task_id": 657
+ },
+ {
+ "layers": [
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "93dca9e4f71943682b1b47754ab88244eb111c9a60b8b95fe9f3572a415bbeb6",
+ "current_selected_count": 355,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.3145236838217897e-09,
+ "last_mask_churn": 24,
+ "last_mask_overlap": 343,
+ "last_query_token_count": 1,
+ "layer_index": 0,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 355,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "562318aa9318dfaeac5e124cc14ea186fac2dac8eb0edb8b9e04a06121ffe043",
+ "current_selected_count": 380,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.4927173920304995e-12,
+ "last_mask_churn": 114,
+ "last_mask_overlap": 323,
+ "last_query_token_count": 1,
+ "layer_index": 1,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 380,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "1c7df5276f847c0b69d32ea970732e6845449a9f562b1280824aabbfe03be747",
+ "current_selected_count": 269,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.3188786708346925e-11,
+ "last_mask_churn": 54,
+ "last_mask_overlap": 242,
+ "last_query_token_count": 1,
+ "layer_index": 2,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 269,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "22b463e6dae35daad03a68f6fa3e5bb7a486cc60abda04b9dd4ccd95d7565f5c",
+ "current_selected_count": 179,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.719558895274531e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "layer_index": 4,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 179,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "c2398098a3bf13b98735b5ceece3c9e159784a1fb5a855f759cbcfb1c1b54ffb",
+ "current_selected_count": 185,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.9899903946907216e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "layer_index": 5,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 185,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "13748e3b2d0e3d0c1711ac8c9a74146b40932e09280874ebb084b4ee9ddd9e0f",
+ "current_selected_count": 105,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.686384696446112e-11,
+ "last_mask_churn": 16,
+ "last_mask_overlap": 97,
+ "last_query_token_count": 1,
+ "layer_index": 6,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 105,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "4af8d3fb18ad47af90b659dc7fafb9ceeff48ba5e29818f4bc52cb6a684e33dd",
+ "current_selected_count": 80,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 3.4554901162664464e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "layer_index": 8,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 80,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "0e95055c163ae4401adbec61f69582a9a02aac031251426c649eb1615da20aa9",
+ "current_selected_count": 43,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.559549182658884e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 40,
+ "last_query_token_count": 1,
+ "layer_index": 9,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 43,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "3cb1de54be0e227749070fadbb0fe42fd854bd82a503e4df6754f4e5ee26c9ed",
+ "current_selected_count": 84,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.062550936126172e-09,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "layer_index": 10,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 84,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "f53dd4c584e0d3cbaa913b77f1305e988dd9121b92b5b9211bbdaae53c0811bb",
+ "current_selected_count": 30,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.9269723351462744e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "layer_index": 12,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 30,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "315d19a922fc4dac393185ba05f06d3e58572cb0692514ca29e7fd47a46ec722",
+ "current_selected_count": 62,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.0220913528373785e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "layer_index": 13,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 62,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "d053a5652937156280d536b2c518c20d9bbdeb90b9a38b30632d7d4aa60960c6",
+ "current_selected_count": 54,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.2383694897598616e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 50,
+ "last_query_token_count": 1,
+ "layer_index": 14,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 54,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "8171ca4bb430a2d15b978831b2e2a00a0b65dd8bdf552190d752e4c94db1017e",
+ "current_selected_count": 45,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.478744593441661e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 44,
+ "last_query_token_count": 1,
+ "layer_index": 16,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 45,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "a6f9b35493c031be716fccee6eb22455933521090035cfe327cb0d0b4feecfb1",
+ "current_selected_count": 27,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.7380784811393823e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "layer_index": 17,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 27,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "3f711df15f61afed37a41a87389d12a98f092eb576a6258d9ef03676b3b2c64a",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 6.197275797603652e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 18,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "current_selected_count": 9,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.0011774065787904e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "layer_index": 20,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 9,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.542148417385761e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 21,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "2b6475dc97b50551d3dde2886c97f01542554528c5e23bfc50f2cdfdedb1dbe4",
+ "current_selected_count": 55,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.2613226374469377e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "layer_index": 22,
+ "observations_committed": 181,
+ "pending_observation": false,
+ "quota": 55,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 181,
+ "tokens_observed": 331
+ }
+ ],
+ "task_id": 702
+ },
+ {
+ "layers": [
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "00e3caf052075fe7669d65deb291d729c017b099413b9e7e74452622a8fd8c69",
+ "current_selected_count": 355,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.6744934328016825e-09,
+ "last_mask_churn": 16,
+ "last_mask_overlap": 347,
+ "last_query_token_count": 1,
+ "layer_index": 0,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 355,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "bceab77023ca0b04773bb07c3afccaa78288bde94eb9ae190cae91707073eda8",
+ "current_selected_count": 380,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.8053119523247e-12,
+ "last_mask_churn": 170,
+ "last_mask_overlap": 295,
+ "last_query_token_count": 1,
+ "layer_index": 1,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 380,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "1a0acaf874c6dfd060f8abb9c4bc2bddf23b0b4c3eade2ffadd5eda9e77b6023",
+ "current_selected_count": 269,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 6.794653728547928e-11,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 262,
+ "last_query_token_count": 1,
+ "layer_index": 2,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 269,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "f17797580928848a1d0394da577abc58535f379e4661d53ce82b0db3e4305a24",
+ "current_selected_count": 179,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.813357179500599e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "layer_index": 4,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 179,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "21991aa535c13361ef3f0fb3b323efef49baee35cfb342c5c090e48f85d917d9",
+ "current_selected_count": 185,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 3.205077803158929e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "layer_index": 5,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 185,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "bcb7b3ab269c6873044f0b256519569cb8d081253af59da3096e0082949c2363",
+ "current_selected_count": 105,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.954259225087299e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "layer_index": 6,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 105,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "8828d32b72a1b2f7642cda07a1d886d6540517e833f58e0fd0a92326dc828369",
+ "current_selected_count": 80,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 3.693417482963923e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "layer_index": 8,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 80,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "46a3c880cc877dc7f0373f01a49748b333e176e535c35f1fd15ac682c95f02d4",
+ "current_selected_count": 43,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.502237978456833e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "layer_index": 9,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 43,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "e3fdfec6389e741d7f0bc29d15de1b5f9254a5b965e2ba7ff7a6648573096601",
+ "current_selected_count": 84,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.1334329030887602e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "layer_index": 10,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 84,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "24da45cf3f33ad07403b50e36a4f2a93cc7a123d8629b1f31782b888442ac387",
+ "current_selected_count": 30,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.266993407029076e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "layer_index": 12,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 30,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "1056bfa47c60b58ac97a638896e3677d1114ec776b725649fb20b05d273fec50",
+ "current_selected_count": 62,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.060016323137461e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "layer_index": 13,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 62,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "c1e22721f081f3ffcfb03ab2e2accc7d57208718f35302be0daac6b8baf91dfa",
+ "current_selected_count": 54,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.5137253228658665e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "layer_index": 14,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 54,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "874d966660651f7ffb738717bdd4ac1c3244a7e68d37f47df54978ab3a26e97f",
+ "current_selected_count": 45,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 9.399790315001155e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "layer_index": 16,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 45,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "d4a2a009e348f32ae590988059c15fbb527085b500c418f04c2fecad960a5e44",
+ "current_selected_count": 27,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.0971315279894043e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "layer_index": 17,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 27,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "61c5b9206b965a387b02406fc389021a2e47e22f40b764f791c59bb36dc083eb",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.633843829855323e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 18,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "0f1c8ae7c3773978051bec524e5ea816090f59d004597bfc65a533f3a193cadc",
+ "current_selected_count": 9,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.3787129319098312e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "layer_index": 20,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 9,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.1300915502943099e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 21,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "c8bcaf5d43d58f0e178e42a1bfa71ffa1eed704a3bd67345de8b1e1c897bd7e7",
+ "current_selected_count": 55,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.864461402576126e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "layer_index": 22,
+ "observations_committed": 38,
+ "pending_observation": false,
+ "quota": 55,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 154
+ }
+ ],
+ "task_id": 651
+ },
+ {
+ "layers": [
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "73981ef2a397798095190fd5f68b729ab37acb34e4ca19f0447fdc5be8815285",
+ "current_selected_count": 355,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.8196467383168056e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 351,
+ "last_query_token_count": 1,
+ "layer_index": 0,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 355,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "80b4178004c945eda0dd49a26226a72504b3f3e4e90d99d1a2f7da3b29c1b659",
+ "current_selected_count": 380,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.3353541322990168e-12,
+ "last_mask_churn": 94,
+ "last_mask_overlap": 333,
+ "last_query_token_count": 1,
+ "layer_index": 1,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 380,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "88a38d40666c422d8093909df710724a4c1c2d4377cbd5e4d27d86e6dedba8da",
+ "current_selected_count": 269,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.10263043140435e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 268,
+ "last_query_token_count": 1,
+ "layer_index": 2,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 269,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "35f366a2a1dc92529ac8a3b68f1a1a1bfb551274c6de657767725f9e10629266",
+ "current_selected_count": 179,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 8.929780648259111e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "layer_index": 4,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 179,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "2364f75d74e40194593bcc9394a12c13853c1fc5dd2fb2acdb05952f306a9156",
+ "current_selected_count": 185,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 6.616382108859398e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "layer_index": 5,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 185,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "93ae16da566ad2bd53785da15c33aa723c7839371488de0028e184bd8c237e05",
+ "current_selected_count": 105,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.7378028732982784e-09,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 101,
+ "last_query_token_count": 1,
+ "layer_index": 6,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 105,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "134097f28482ac8225ceb0558ed4e30c02f57435c8cb313fefb31312b418018c",
+ "current_selected_count": 80,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.154590023588753e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "layer_index": 8,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 80,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "a42696a18c2d808bfe13ddc76d056c8d6dd51b87f3b82eee9a016675c0d65d71",
+ "current_selected_count": 43,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.0190114469187392e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "layer_index": 9,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 43,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "6d5329381b128f2e7e09e4316e864a0bae5f7f80ce6aaad6451522231ab9a1c8",
+ "current_selected_count": 84,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.2125930481943215e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "layer_index": 10,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 84,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "e5030f15688ec021d8ea78d25204a1623ffa73554b812ebf95fbad0a54844a7c",
+ "current_selected_count": 30,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 9.523736821392959e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "layer_index": 12,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 30,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "657072b71b22c1d53468d12db9954fc4e15315d514ce223f3051c8f9bc4a3525",
+ "current_selected_count": 62,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.4764569122860394e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "layer_index": 13,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 62,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "606179a292b14be4365ef35eafc3c2fca0002be66ad611cc96ea7b39c20bbd89",
+ "current_selected_count": 54,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.103065691183019e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "layer_index": 14,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 54,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "42b7dc624a708e0d956c37ac5684cd05238f041da678600cb13bfea3bf3a3d68",
+ "current_selected_count": 45,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.158222850492166e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "layer_index": 16,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 45,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "df4110772db7c8c89faa29973e17115325c8f8c01979fee6d8c82466de889364",
+ "current_selected_count": 27,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.3796955045108916e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "layer_index": 17,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 27,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.354327681241557e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 18,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "current_selected_count": 9,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.2323225493892096e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "layer_index": 20,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 9,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "98b6fb30216cba14d9a626c5f841da7a9b0aefc7e49b1c99b0bb5006bc32ef96",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 8.012109901756048e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 21,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "f0fcfbc94cf42068c089dfcedefcfb784709a75cbe151cf3a12e02ff524e3f05",
+ "current_selected_count": 55,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.953464732196153e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "layer_index": 22,
+ "observations_committed": 52,
+ "pending_observation": false,
+ "quota": 55,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 52,
+ "tokens_observed": 291
+ }
+ ],
+ "task_id": 720
+ },
+ {
+ "layers": [
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "f4d78d7eaa2424c7e7e7f83d0eef5ae4004c1a2aab3092f6c48f9262105f5293",
+ "current_selected_count": 355,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.2130465520954203e-09,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 350,
+ "last_query_token_count": 1,
+ "layer_index": 0,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 355,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "ad85da5a9c36217628e77e8f31dc60b1d8515e974ab1d861cb09d452e5dc1d10",
+ "current_selected_count": 380,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 6.575850974854802e-13,
+ "last_mask_churn": 68,
+ "last_mask_overlap": 346,
+ "last_query_token_count": 1,
+ "layer_index": 1,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 380,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "635901f0cf3debda1108c304cdd838e8207651edb327f3d23cc0c5d69a79fca6",
+ "current_selected_count": 269,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.9039436693901735e-10,
+ "last_mask_churn": 20,
+ "last_mask_overlap": 259,
+ "last_query_token_count": 1,
+ "layer_index": 2,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 269,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "e6b7e079c3db8a817acf55016557369a6d9e213d6ae0ec9a90a68e8d760250b3",
+ "current_selected_count": 179,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.0194602850788215e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "layer_index": 4,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 179,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "33e935875f4317cda3f60f22cb83dff3bda424bf0a7012027b3f84a6c2c09f0c",
+ "current_selected_count": 185,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.1824443646446525e-09,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 181,
+ "last_query_token_count": 1,
+ "layer_index": 5,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 185,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "685f16ac79b4ad3842cb976f761dcd4b0e7e739845ed36123b51b6f3b312a80a",
+ "current_selected_count": 105,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.609210625337255e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "layer_index": 6,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 105,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "08dbb8e90fa92327a65de494b6bdfa31c46b9cc80fc2cbea305d5870363d2889",
+ "current_selected_count": 80,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 8.098194115291335e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "layer_index": 8,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 80,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "91608f023222f7a3fbfc4de9b8b8a8358bd5e7d2fcfa58d5b85b2f18033f5bc4",
+ "current_selected_count": 43,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.215378730989869e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "layer_index": 9,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 43,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "eb1b77ec04b3d8b494834bbdd2d18bcdbcf5543987ce83aeb356ea35aac2498b",
+ "current_selected_count": 84,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 8.426237485537058e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 81,
+ "last_query_token_count": 1,
+ "layer_index": 10,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 84,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "2a12251b3ff00acf3f7e001d791548d3cf4e38837be8df257ff98e18ac937024",
+ "current_selected_count": 30,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.1073009293104406e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "layer_index": 12,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 30,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "38bb415f7286aa86db5f11ef1942968dde3b1558cb91f49cd01fd7051181d387",
+ "current_selected_count": 62,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 7.404228341556518e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 59,
+ "last_query_token_count": 1,
+ "layer_index": 13,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 62,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "fc4ba0032e13817e25044207cc5a1a5ce3a4e949242115c16bdfb4ee5b74f1e5",
+ "current_selected_count": 54,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 5.381590284514459e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "layer_index": 14,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 54,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "7cd6337cf29277236af76c95ac2ad2c220ca908b370cec1f9ee2ecf7e17c1430",
+ "current_selected_count": 45,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 3.8698578919138527e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "layer_index": 16,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 45,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "5699974034f2c6db9dc989b5d603972f3b7b3de12a9140babb5d3ca1d12a1edd",
+ "current_selected_count": 27,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 9.695355629446567e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "layer_index": 17,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 27,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "e0689f7ce28ad65ff4d7b3ef2e24c64f27ae1b6e6b6ee39cfd40ce5312975862",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.2597613022080623e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 18,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "d6494e5f5e3c7e83c0ccbb510c7c53d21484c8e6d3f1955be2f3c57d5e99e0c0",
+ "current_selected_count": 9,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.0131512681255117e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "layer_index": 20,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 9,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "73ea9615e9d8ca73dca4e5cf48f305230a5b7041f0111789ac9c60649f303df6",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 8.553008228773251e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 21,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "2d5c154cfe2a5c401e6e09e426114bdf8d7a6ea508da80a7e0e73173217fb3c0",
+ "current_selected_count": 55,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 6.271531560742005e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "layer_index": 22,
+ "observations_committed": 78,
+ "pending_observation": false,
+ "quota": 55,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 78,
+ "tokens_observed": 160
+ }
+ ],
+ "task_id": 903
+ },
+ {
+ "layers": [
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "f5e62e0c2ae7df5331560eb67252afb45b8f4c6fb3da1289f45dd7ef6e8319b1",
+ "current_selected_count": 355,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.099120877119276e-11,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 346,
+ "last_query_token_count": 1,
+ "layer_index": 0,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 355,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "55e65a5ea35167d89d57a166c2bfe3b1be3f2a66c37720aaee35c2a1681f3d32",
+ "current_selected_count": 380,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.8266278206956486e-12,
+ "last_mask_churn": 76,
+ "last_mask_overlap": 342,
+ "last_query_token_count": 1,
+ "layer_index": 1,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 380,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "ff05450288585779e32d32e1f5c2030f932b4fb04c29944f1262864b6cdb3d7a",
+ "current_selected_count": 269,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.910327451781768e-11,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 267,
+ "last_query_token_count": 1,
+ "layer_index": 2,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 269,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "01edbcc0a4eed12aeca3316dc2aef2be4fb0e1e0e5d2f5a3c17f1f37205084c6",
+ "current_selected_count": 179,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.647057530362872e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "layer_index": 4,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 179,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "9cc539c8e5ee5298b99c27409ee2cef218007590a7b5bc238118563a6abbc7b4",
+ "current_selected_count": 185,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.4313564495059836e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 183,
+ "last_query_token_count": 1,
+ "layer_index": 5,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 185,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "85e67d602367a9d5d9e82f8a58f3b5b6ebb71937027505c01969f3d1f2d30c34",
+ "current_selected_count": 105,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.5054981967496133e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "layer_index": 6,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 105,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "3ed42fd13172ee4319364f17523288c362e2e07ffee0ff02eff0f14289bc32d6",
+ "current_selected_count": 80,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.746068071881382e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "layer_index": 8,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 80,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "048afbcb909b84151d6c72f25520b71efa36da1010527e41e86b04adcc2e0f0c",
+ "current_selected_count": 43,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.1930392673775714e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "layer_index": 9,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 43,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "d1782ef75080d54d9795b510a956330c46e8acee5dd0f9fd10622ad1edc0000b",
+ "current_selected_count": 84,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.6431744853662167e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "layer_index": 10,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 84,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "cf562526ca48b9e31efffbe841d0bff9305a9d51367b9c552f0f6c825a02a087",
+ "current_selected_count": 30,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 8.07261017143901e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "layer_index": 12,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 30,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "0b8b0a0a68035c930dd765b46e31e31f704ccc4218d09354aac297bff3c023fc",
+ "current_selected_count": 62,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.4257903302450359e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "layer_index": 13,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 62,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "9ca13909889a600b54f80760bc5d1f0bdda48f4353d7e59249a6b97165cfa894",
+ "current_selected_count": 54,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 2.2861176063315725e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "layer_index": 14,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 54,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "634861ee98dde01a084caeb59ab61d997d6fbfdf1075dc5e0cb7a15c5e5cfbbb",
+ "current_selected_count": 45,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.1119915654944634e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 44,
+ "last_query_token_count": 1,
+ "layer_index": 16,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 45,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "c8f383ecd317fd50e7086a596c8d3eec3a6a6a89bb2200eff31a0d2dff951331",
+ "current_selected_count": 27,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 4.2021355284305173e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "layer_index": 17,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 27,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "eb9f49b5868df1a70a6244f9a91931ec23445d8ae1daac3971af5bd1bf4eb681",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 3.207062036381103e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 18,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "current_selected_count": 9,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 9.746541763888672e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "layer_index": 20,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 9,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "4264162bf5bf13d7ad6738d6952489ba215ffd2b91ccb4e2ded5e53f6c955abe",
+ "current_selected_count": 7,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.1686443031067029e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "layer_index": 21,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 7,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ },
+ {
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "current_mask_sha256": "ccee6d1d7733f5da7af1aadc0eabd2cf329b83b93aea756266e6249c3b6fcf55",
+ "current_selected_count": 55,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_cutoff_score_margin": 1.3456281067192322e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "layer_index": 22,
+ "observations_committed": 133,
+ "pending_observation": false,
+ "quota": 55,
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 133,
+ "tokens_observed": 228
+ }
+ ],
+ "task_id": 918
+ }
+ ]
+ },
+ "repository": {
+ "commit": "3a06277171684e6e6bf4aec1153c16c968fea0fe",
+ "end": {
+ "commit": "3a06277171684e6e6bf4aec1153c16c968fea0fe",
+ "status": [],
+ "worktree_clean": true
+ },
+ "stable_commit": true,
+ "start": {
+ "commit": "3a06277171684e6e6bf4aec1153c16c968fea0fe",
+ "status": [],
+ "worktree_clean": true
+ },
+ "status": [],
+ "worktree_clean": true
+ },
+ "schema_version": 1,
+ "selector_artifacts": {
+ "hrr": {
+ "canonical_evidence_sha256": "7970961fd88b522998189ad64f26b333aed9c88ff5f653de5449fd9e01d8cbc8",
+ "path": "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant-adoption\\artifacts\\experiment006-hrr-selector-8task-c2ad68b.json",
+ "sha256": "d0c4267095ee3f5068627b189a1fd9f58cb02f6e25672d9b89dd0990e5b09330"
+ },
+ "loss_sensitivity": {
+ "canonical_evidence_sha256": "bff4e33253990b8115e1f35e74516c4975c2fe4aac5066475afe968eb8a64609",
+ "path": "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant-adoption\\artifacts\\experiment006-loss-selector-8task-c2ad68b.json",
+ "sha256": "95c16656edb32efbc985f2fea59e229634dd558f4f4bf04819b8efc37783a1d6"
+ }
+ },
+ "source_files": {
+ "paths": [
+ "scripts/pilot_evaluate_hrr.py",
+ "src/recurquant/cache.py",
+ "src/recurquant/evaluation.py",
+ "src/recurquant/evidence.py",
+ "src/recurquant/metrics.py",
+ "src/recurquant/mixed_quantization.py",
+ "src/recurquant/packed_cache.py",
+ "src/recurquant/public_data.py",
+ "src/recurquant/query_energy.py",
+ "src/recurquant/quantization.py",
+ "src/recurquant/qwen35.py",
+ "src/recurquant/row_policy.py"
+ ],
+ "sha256_end": {
+ "scripts/pilot_evaluate_hrr.py": "51e1d5de1678dc3a5f39438207a9f4f0b73134caf58253488a9bca307b1a51b8",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "1c4bd0d45fe7f07ba6c842e07e4733e69c3e2abe52c3e8a129cba3299c08f9da",
+ "src/recurquant/packed_cache.py": "234711ee2402b86be4e7bc7a567ed88c7d4c1df0ebcf0666dbe898fbe273249b",
+ "src/recurquant/public_data.py": "82cb2970900204d7278d656709ded3f80a3b1ff8fd3ffeb270816b5f9ddc3feb",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/query_energy.py": "4484ee2f2f2e64c8d30810012c646a186b4635cf617244e42c7bfeac01493d63",
+ "src/recurquant/qwen35.py": "20b8ff55886d8e8c7ba9176ce9dcb3dbbf2bfaf3b48570fe262f2f3f84d6ed92",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708"
+ },
+ "sha256_start": {
+ "scripts/pilot_evaluate_hrr.py": "51e1d5de1678dc3a5f39438207a9f4f0b73134caf58253488a9bca307b1a51b8",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "1c4bd0d45fe7f07ba6c842e07e4733e69c3e2abe52c3e8a129cba3299c08f9da",
+ "src/recurquant/packed_cache.py": "234711ee2402b86be4e7bc7a567ed88c7d4c1df0ebcf0666dbe898fbe273249b",
+ "src/recurquant/public_data.py": "82cb2970900204d7278d656709ded3f80a3b1ff8fd3ffeb270816b5f9ddc3feb",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/query_energy.py": "4484ee2f2f2e64c8d30810012c646a186b4635cf617244e42c7bfeac01493d63",
+ "src/recurquant/qwen35.py": "20b8ff55886d8e8c7ba9176ce9dcb3dbbf2bfaf3b48570fe262f2f3f84d6ed92",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708"
+ },
+ "stable": true
+ },
+ "storage": {
+ "candidates": {
+ "adaptive_mse_hrr_h1_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "adaptive_mse_target_directional_fisher_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "delta_direction_magnitude_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "hrr_h1": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "hrr_h32": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "physical_reduction_realized_including_selector": true,
+ "resident_bytes": 2564096,
+ "resident_bytes_including_selector": 2711552,
+ "resident_compression_ratio": 7.361022364217252,
+ "resident_compression_ratio_including_selector": 6.960725075528701,
+ "scale_bytes": 73728,
+ "selector_auxiliary_bytes": 147456
+ },
+ "random_rows_s1101": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "row_mse": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "signed_taylor_next_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "target_diagonal_fisher_difference_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "target_directional_fisher_difference_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "uniform_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "largest_materialized_state_bytes": 1048576,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2433024,
+ "resident_compression_ratio": 7.757575757575758
+ },
+ "v02_layer0_static": {
+ "full_precision_equivalent_bytes": 18874368,
+ "largest_materialized_state_bytes": 1048576,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252
+ }
+ },
+ "fp32_reference_recurrent_state_bytes": 18874368
+ }
+ },
+ "schema_version": 1
+}
diff --git a/research/CLAIM_BOUNDARY.md b/research/CLAIM_BOUNDARY.md
index 90e65f3..1514a35 100644
--- a/research/CLAIM_BOUNDARY.md
+++ b/research/CLAIM_BOUNDARY.md
@@ -13,6 +13,9 @@ Last reviewed: 2026-07-23
fewer persistent-state writes exist in current recurrent-model systems work.
- Update residuals have been used as importance signals for bounded auxiliary
memory in Gated DeltaNet.
+- Query magnitude combined with quantization difficulty has already been used
+ for mixed-precision KV-cache channel selection in
+ [MixKVQ](https://arxiv.org/abs/2512.19206).
- Mixed precision and memory-budget allocation are broad existing ideas.
## Scoped v0.2 confirmation finding
@@ -53,6 +56,18 @@ candidate stopped before its numerical prerequisite and the ranked `[8, 16)`
holdout remained unopened. Experiment 006 supports no improvement,
generalization, novelty, deployment, or breakthrough claim.
+Experiment 007 implemented CQER-32, a causal normalized-query-energy EMA times
+exact INT4-to-INT8 reconstruction benefit for physically packed Gated DeltaNet
+recurrent-state rows. Its authenticated same-calibration diagnostic improved
+macro excess NLL by 6.18% over plain adaptive MSE and 13.62% over static
+target-Fisher, but both paired intervals crossed zero. It failed the frozen
+20% static-reduction requirement and the top-1 non-inferiority margin. The
+packed state used exactly `2,564,096` bytes, while persistent selector EMA
+state increased the resident total to `2,711,552` bytes. The FP64 prerequisite
+was not reached and ranked `[8, 16)` remained unopened. Experiment 007 supports
+no generalization, novelty, latency, deployment, state-of-the-art, or
+breakthrough claim.
+
## Claims prohibited without new evidence
- "First recurrent-state quantization method."
diff --git a/research/EXPERIMENT_007_RESULT.md b/research/EXPERIMENT_007_RESULT.md
new file mode 100644
index 0000000..35b4f2f
--- /dev/null
+++ b/research/EXPERIMENT_007_RESULT.md
@@ -0,0 +1,104 @@
+# Experiment 007 result: CQER-32 rejected before holdout
+
+> **Status: development gate failed; holdout unopened.**
+>
+> CQER-32 lowered macro excess NLL relative to both frozen components on the
+> already inspected eight-task partition, but it failed two preregistered
+> requirements. Its reduction against the static target-Fisher comparator was
+> `13.62%`, below the required `20%`, and its top-1 agreement disadvantage was
+> `0.02690`, above the allowed `0.01`. The complete gate therefore failed.
+> Ranked MBPP window `[8, 16)` remains unopened, and Experiment 007 supports no
+> generalization, novelty, systems, state-of-the-art, or breakthrough claim.
+
+Date recorded: 2026-07-23
+
+## Authenticated diagnostic
+
+This run used the same eight MBPP calibration tasks that informed the frozen
+target-Fisher layer quotas. It can reject the candidate, but it cannot establish
+generalization.
+
+| Field | Value |
+| --- | --- |
+| Artifact | `evidence/experiment007-cqer32-same-calibration-8task-3a062771.json` |
+| Artifact kind | `recurquant_cqer32_same_calibration_quality_diagnostic` |
+| Clean implementation commit | `3a06277171684e6e6bf4aec1153c16c968fea0fe` |
+| File SHA-256 | `6f1e6d22eafde9be7c231cc81dc04e7a127c8b14f47ec2865de9326a61040f32` |
+| Canonical evidence SHA-256 | `2226dcc055fff3ebff4dadb9a9908166d361dfd2f61b32757d2eb9c650d1381a` |
+| Created at | `2026-07-22T19:37:50.097105+00:00` |
+| Model | `Qwen/Qwen3.5-0.8B-Base` at `dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68` |
+| Device and dtype | CUDA, bfloat16 |
+| Task IDs | `945`, `794`, `657`, `702`, `651`, `720`, `903`, `918` |
+| Aligned scored tokens | 642 |
+| Bootstrap | 10,000 paired resamples, seed 2339 |
+| Repository and source files | clean and stable at start and end |
+| Evidence verification | valid, with no verifier errors |
+
+Every CQER write consumed exactly one causal query observation. Across all
+tasks and layers, the state-update and observation counts matched. All metrics
+and logits were finite, every layer realized its exact frozen quota, and the
+implementation stored exactly 1,976 promoted rows.
+
+## Frozen-primary result
+
+CQER-32 scores each recurrent-state row with:
+
+```text
+32-token EMA(normalized query energy) * (INT4 row MSE - INT8 row MSE)
+```
+
+The per-layer target-Fisher quotas were frozen before the run. Only the row
+identities selected inside each layer could change at a state write.
+
+| Method | Role | Macro excess NLL | Mean KL | CVaR95 KL | Top-1 agreement |
+| --- | --- | ---: | ---: | ---: | ---: |
+| `query_ema32_weighted_mse_target_fisher_quota` | frozen primary | `0.4627917185` | `0.4525271095` | `2.7080783099` | `0.7639170736` |
+| `adaptive_mse_target_directional_fisher_quota` | error-only dynamic component | `0.4933023080` | `0.4791950900` | `2.9028773904` | `0.7851893157` |
+| `target_directional_fisher_difference_int4` | frozen static component | `0.5357813686` | `0.5205607209` | `3.3614913225` | `0.7908198461` |
+
+Comparator-minus-CQER paired NLL contrasts were:
+
+| Comparator | Mean improvement | Paired 95% interval | Interpretation |
+| --- | ---: | ---: | --- |
+| Plain adaptive target-Fisher quota | `0.0305105895` | `[-0.0312529538, 0.0830206126]` | 6.18% descriptive reduction; interval crosses zero |
+| Static target-directional Fisher | `0.0729896501` | `[-0.0110369474, 0.1781795248]` | 13.62% descriptive reduction; interval crosses zero |
+
+CQER had the lowest mean KL and CVaR95 KL of the three methods, but its top-1
+agreement was lower than both. The preregistered gate was conjunctive, so the
+two failures cannot be offset by the passing metrics.
+
+## Gate decision
+
+| Frozen check | Required | Observed | Result |
+| --- | ---: | ---: | --- |
+| Lower NLL than both components | yes | `0.46279 < 0.49330 < 0.53578` | pass |
+| NLL reduction vs plain adaptive | at least 5% | 6.18% | pass |
+| NLL reduction vs static Fisher | at least 20% | 13.62% | **fail** |
+| Top-1 disadvantage vs better comparator | at most 0.01 | 0.02690 | **fail** |
+| CVaR95 disadvantage | at most 0.10 | `-0.19480` | pass |
+| Exact packed and selector bytes | exact | exact | pass |
+| Exact quotas and stage/consume handshake | exact | exact | pass |
+| Finite values and authenticated run | required | satisfied | pass |
+
+The packed recurrent-state representation used `2,564,096` bytes. CQER's
+persistent FP32 query-energy EMA used another `147,456` bytes, for
+`2,711,552` resident bytes including selector state. This is not an equal-total-
+memory result against selectors with no persistent auxiliary state, and it is
+not a latency or peak-memory measurement.
+
+## Decision
+
+Experiment 007 stops here:
+
+- the frozen development gate failed;
+- the candidate-aligned FP64 prerequisite is not reached;
+- ranked MBPP window `[8, 16)` remains unopened; and
+- the 32-token half-life, formula, quotas, or thresholds will not be tuned and
+ relabelled as Experiment 007.
+
+The positive point estimates are useful engineering evidence, but they are not
+statistically decisive on eight reused tasks and do not meet the frozen bar. A
+successor must be a new preregistered experiment with a new development split
+and explicit comparison to the nearest query-aware quantization prior art.
+
+Experiment 007 makes no breakthrough claim.
diff --git a/research/STATUS.md b/research/STATUS.md
index af8190d..922091e 100644
--- a/research/STATUS.md
+++ b/research/STATUS.md
@@ -21,9 +21,22 @@ cannot replace the frozen primary. The candidate was therefore stopped before
its numerical prerequisite or holdout. The ranked `[8, 16)` window remains
unopened. See [`EXPERIMENT_006_RESULT.md`](EXPERIMENT_006_RESULT.md).
-The next candidate will test a causal estimate of recurrent-state row read
-energy rather than another post-result fusion weight. It remains a hypothesis;
-no Experiment 007 quality result exists at this checkpoint.
+Experiment 007 tested CQER-32: a causal 32-token EMA of normalized query energy
+times exact per-write INT4-to-INT8 row reconstruction benefit, with the same
+frozen target-Fisher layer quotas. On the already inspected eight-task
+partition it lowered macro excess NLL to `0.462792`, a 6.18% descriptive
+reduction from plain adaptive MSE and 13.62% from static target-Fisher. Both
+paired 95% intervals crossed zero. The frozen gate failed because the static
+reduction was below 20% and top-1 agreement trailed the better comparator by
+`0.02690`, above the `0.01` margin. All exact-byte, causal-handshake, finiteness,
+and integrity checks passed. Experiment 007 therefore stopped before its FP64
+prerequisite or holdout; ranked `[8, 16)` remains unopened. See
+[`EXPERIMENT_007_RESULT.md`](EXPERIMENT_007_RESULT.md).
+
+Any successor must use a new protocol and development split. The nearest known
+mechanism-level comparison is MixKVQ's query-magnitude and quantization-
+difficulty channel scoring for KV caches; CQER-32 cannot be described as the
+first query-aware mixed-precision method.
No v0.3 improvement, novelty, speed, or breakthrough claim is supported.
From 1a7c34a63be73ffa2d209a42d3097de6c8002cf4 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 03:56:49 +0800
Subject: [PATCH 11/22] research: freeze CORA-C2 development protocol
---
research/EXPERIMENT_008_CORA_C2_PROTOCOL.md | 304 ++++++++++++++++++++
1 file changed, 304 insertions(+)
create mode 100644 research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
diff --git a/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md b/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
new file mode 100644
index 0000000..e969f04
--- /dev/null
+++ b/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
@@ -0,0 +1,304 @@
+# Experiment 008: CORA-C2 protocol
+
+> **Status: frozen before any quality evaluation on ranked window `[16, 32)`.**
+>
+> CORA-C2 means **Causal Observability Row Allocation with Confirmation-2**.
+> The state-transition formula, diagonal approximation, normalization,
+> confirmation rule, quotas, storage accounting, development window,
+> comparators, metrics, and advancement rule are fixed below. Ranked MBPP
+> window `[8, 16)` remains protected and unopened.
+
+Protocol frozen: 2026-07-23
+
+## Question
+
+Can a causal approximation to recurrent-state observability allocate a fixed
+INT8 row budget more faithfully than static Fisher sensitivity, per-write
+reconstruction MSE, and CQER-32, while a parameter-free two-hit admission rule
+prevents unstable precision-mask switching?
+
+The frozen artifact method name is:
+
+```text
+causal_observability_confirm2_mse_target_fisher_quota
+```
+
+Experiment 007 showed a useful but insufficient CQER-32 point estimate. Its
+macro excess NLL improved by 6.18% over adaptive MSE and 13.62% over static
+target-Fisher, but the static reduction missed the frozen 20% gate, both paired
+intervals crossed zero, and top-1 agreement missed the allowed margin. A
+read-only postmortem also found that final-transition mask churn correlated
+negatively with CQER NLL gain, although only the last transition was recorded.
+Those observations motivate this experiment; they are not confirmation data.
+
+## Verified transition orientation
+
+For one Qwen3.5 Gated DeltaNet head, the recurrent state has shape
+`[key_row, value]`. With normalized key `k`, scalar write gate `beta`, and
+scalar decay `a = exp(g)`, the state update is:
+
+```text
+S_t = a_t (I - beta_t k_t k_t^T) S_(t-1) + beta_t k_t v_t^T
+```
+
+Define the state-error transition:
+
+```text
+T_t = a_t (I - beta_t k_t k_t^T)
+```
+
+This follows the pinned Transformers 5.14.1 torch recurrence and the Gated
+DeltaNet update. It does not assume that gates alone predict end-to-end loss.
+
+## Causal diagonal observability filter
+
+The exact finite-horizon observability Gramian depends on future transitions
+and queries, so it is unavailable to a causal inference-time selector.
+CORA uses a normalized, locally stationary Lyapunov filter instead:
+
+```text
+P_bar_t = q*_t q*_t^T + T_t^T P_bar_(t-1) T_t
+```
+
+This is explicitly a predictor, not the true future Gramian. CORA stores only
+the diagonal `p = diag(P_bar)`. Query and key vectors are L2-normalized with
+`eps = 1e-6`, exactly matching the pinned kernel contract. If key-row width is
+`d`, the read query is `q* = q_hat / sqrt(d)`.
+
+For one head and token, let:
+
+```text
+u = k_hat^2
+c = sum_j(p_j * u_j)
+```
+
+The frozen `O(d)` diagonal recurrence is:
+
+```text
+r_j = q*_j^2 + a^2 * (
+ p_j * (1 - beta * u_j)^2
+ + beta^2 * u_j * max(c - p_j * u_j, 0)
+)
+```
+
+The `max` only suppresses negative roundoff in a mathematically non-negative
+sum. After every token, trace-normalize across every head and key row in the
+layer:
+
+```text
+p = r / sum(r)
+```
+
+Frozen numerical and causal details:
+
+- initialize and reset `p` to `1 / (heads * key_rows)`;
+- process multi-token chunks strictly in chronological order;
+- compute normalized query, key, decay, beta, recurrence, and normalization in
+ FP64 workspace, then commit persistent `p` in FP32;
+- use the post-convolution, repeated-head query and key passed to the Gated
+ DeltaNet kernel;
+- stage the candidate only after the kernel succeeds and before its state write;
+- commit `p` only after packing and every postcondition succeed;
+- reject missing, duplicate, stale, wrong-shape, wrong-device, batch-greater-
+ than-one, non-finite, or non-positive-trace observations; and
+- reject packed-sequence `cu_seqlens` in this experiment.
+
+## Row error and raw allocation
+
+For incoming state row `S_i`, use the exact aligned physical quantizers from
+the packed cache:
+
+```text
+benefit_i = ||S_i - Q4(S_i)||_2^2 - ||S_i - Q8(S_i)||_2^2
+score_i = p_i * benefit_i
+```
+
+`Q4` and `Q8` use one group per `[head, key_row]`, FP16 scales, nearest
+rounding, seed 2339, epsilon `1e-12`, and the existing physical packer. The raw
+mask `R_t` is the stable top quota by `score`; exact ties preserve flattened
+`[head, key_row]` order.
+
+The per-layer quotas remain the authenticated target-directional-Fisher vector:
+
+```text
+0:355, 1:380, 2:269, 4:179, 5:185, 6:105,
+8:80, 9:43, 10:84, 12:30, 13:62, 14:54,
+16:45, 17:27, 18:7, 20:9, 21:7, 22:55
+```
+
+They sum to exactly 1,976 promoted INT8 rows. CORA does not search a new layer
+allocation.
+
+## Confirmation-2 switching
+
+Let `R_t` be the raw CORA top-quota mask and `M_t` the committed precision
+mask. The first write uses:
+
+```text
+M_1 = R_1
+```
+
+For every later state write:
+
+```text
+eligible_t = M_(t-1) OR (R_(t-1) AND R_t)
+M_t = stable_top_quota(score_t restricted to eligible_t)
+```
+
+Incumbents remain eligible. A new row must appear in the raw top quota on two
+consecutive writes before it can replace one. Because `M_(t-1)` already
+contains the full quota, the eligible set always contains at least that many
+rows and the committed mask always has the exact quota. Stable score order and
+then canonical flattened order resolve ties.
+
+Persistent `p`, the bit-packed previous raw mask, the packed state, counters,
+and evidence form one transaction. Any failure rolls all of them back and
+clears the staged observation.
+
+## Storage contract
+
+| Component | Bytes |
+| --- | ---: |
+| Packed INT4/INT8 recurrent state, scales, and committed masks | 2,564,096 |
+| FP32 observability diagonal | 147,456 |
+| Bit-packed previous raw masks | 4,608 |
+| **Selector auxiliary tensors** | **152,064** |
+| **Resident bytes including selector** | **2,716,160** |
+
+Temporary query, key, gate, recurrence, endpoint, score, and sort workspaces
+are not resident cache bytes. This experiment makes no equal-total-memory,
+peak-memory, latency, throughput, or fused-kernel claim.
+
+## Frozen development partition
+
+The new development diagnostic uses the frozen MBPP calibration ranking but a
+window not used for E005-E007 quality evaluation:
+
+```text
+dataset: google-research-datasets/mbpp, full
+revision: 4bb6404fdc6cacfda99d4ac4205087b89d32030c
+phase/source: calibration/train
+selection namespace: rq-v0.2
+ranked offset: 16
+task count: 16
+window: [16, 32)
+```
+
+The exact ordered task IDs, content manifest, and tokenizer manifest may be
+resolved after this protocol commit, but they must be committed in a
+pre-quality identity amendment before model loading. No quality metric from
+`[16, 32)` may be observed before that amendment.
+
+Ranked window `[8, 16)` remains protected. It cannot be loaded, tokenized, or
+evaluated unless every development and independent numerical prerequisite in
+this protocol passes from committed artifacts.
+
+## Frozen methods and ablations
+
+All methods use the same model revision, quantizers, per-layer quotas, packed-
+state byte contract, tasks, and teacher-forced transition alignment:
+
+1. static target-directional Fisher;
+2. adaptive target-Fisher per-write MSE;
+3. CQER-32;
+4. CORA without Confirmation-2;
+5. CQER-32 with Confirmation-2; and
+6. **CORA-C2**, the frozen primary.
+
+Ablations must be reported but cannot replace the primary after results are
+visible.
+
+## Metrics and instrumentation
+
+Primary metric: task-macro excess next-token NLL relative to FP32 recurrent
+state on code transitions after a packed state has been stored. Exclude the
+prompt-to-first-code-token transition exactly as in Experiments 005-007.
+
+Also record:
+
+- mean KL, token CVaR95 KL, maximum KL, and top-1 agreement;
+- reference and candidate NLL, task/token counts, and all per-task rows;
+- full-code secondary metrics;
+- 10,000 paired task bootstrap contrasts with seed 2339;
+- all-logit and all-metric finiteness;
+- exact packed, selector, and combined resident bytes;
+- per-layer raw and committed mask hashes and quotas;
+- cumulative raw and committed XOR churn after the first write;
+- normalized churn `total_xor / (2 * quota * transition_count)`;
+- mask overlap, dwell/admission counts, cutoff score and normalized gap;
+- transition observations staged/consumed and tokens processed; and
+- repository commit, clean state, source hashes, artifact hashes, dataset
+ manifest, tokenizer manifest, model revision, and command.
+
+## Frozen development gate
+
+CORA-C2 advances only if every condition holds:
+
+1. exact quotas, packed bytes, selector bytes, stage/consume counts, stable
+ commit/source hashes, authenticated manifests, finite logits, and finite
+ metrics;
+2. primary macro excess NLL is lower than static Fisher, adaptive MSE, and
+ CQER-32;
+3. NLL reduction is at least 20% versus static Fisher;
+4. NLL reduction is at least 5% versus adaptive MSE;
+5. NLL reduction is at least 5% versus CQER-32;
+6. the paired 95% improvement lower bound is above zero versus both static
+ Fisher and CQER-32;
+7. primary top-1 agreement is at least the better of static Fisher and adaptive
+ MSE minus `0.01`;
+8. primary top-1 agreement is not lower than CQER-32;
+9. primary CVaR95 is no more than `0.10` above the better static/adaptive value;
+10. raw CORA improves NLL by at least 3% versus CQER-32, isolating the
+ transition-aware signal;
+11. C2 reduces normalized committed churn by at least 50% versus raw CORA;
+12. C2 does not lower top-1 agreement versus raw CORA; and
+13. C2 worsens raw-CORA NLL by no more than 1%.
+
+If any condition fails, authenticate the result, keep `[8, 16)` closed, and
+stop Experiment 008. Thresholds and ablations cannot be changed and relabelled
+after observing `[16, 32)`.
+
+## Independent numerical prerequisite
+
+Only after the development gate passes, build a verifier that does not import
+the production recurrence, ranking, quantization, or packing helpers. It must:
+
+- replay the diagonal recurrence in CPU FP64;
+- compare every step with explicit `T^T diag(p) T` on adversarial and captured
+ fixtures;
+- verify chronological chunk/step equivalence;
+- replay aligned Q4/Q8 endpoints, scores, stable ranks, raw masks, C2 masks,
+ quota counts, and physical bytes;
+- cover zero/constant rows, half-step rounding boundaries, extreme finite
+ values, ties, reset, transfer, and exception rollback; and
+- require exact mask/byte hashes and derived numerical error bounds rather than
+ an aggregate pass percentage.
+
+Any ambiguity or mismatch stops the experiment before holdout.
+
+## Prior-art and claim boundary
+
+The mathematical ingredients are established, and novelty is unresolved:
+
+- [Gated DeltaNet](https://arxiv.org/abs/2412.06464) defines the host recurrent
+ update;
+- [WriteSAE](https://arxiv.org/abs/2605.12770) derives the same state transition
+ for later-logit cache interventions, while CORA applies a diagonal online
+ filter to physical row-precision allocation;
+- [MixKVQ](https://arxiv.org/abs/2512.19206) combines query magnitude and
+ quantization difficulty for KV-cache channels and is the nearest query-aware
+ mixed-precision mechanism;
+- [TQS-PTQ](https://arxiv.org/abs/2606.13300) uses trajectory sensitivity for
+ offline time-series weight allocation; and
+- Q-Mamba, Quamba2, OuroMamba, and RateQuant already cover adjacent state-cache,
+ SSM, dynamic-channel, and rate-distortion quantization ideas.
+
+CORA-C2 differs by combining the actual Gated DeltaNet error transition, an
+online diagonal observability approximation, physical Q4/Q8 recurrent-state
+row error, and exact-quota two-hit admission. That distinction is a research
+hypothesis, not proof of novelty.
+
+Experiment 008 cannot support “breakthrough,” “first,” “novel,” or
+“state-of-the-art” language without passing the frozen development and
+numerical gates, one-time holdout, broader models/tasks, closest-method
+comparisons, fused-system measurements, and independent reproduction.
From 6ed5271f85973627b1c0784535c23633876fe570 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 03:58:33 +0800
Subject: [PATCH 12/22] research: pin CORA-C2 development identities
---
research/EXPERIMENT_008_CORA_C2_PROTOCOL.md | 15 ++++
.../EXPERIMENT_008_DEVELOPMENT_IDENTITY.md | 70 +++++++++++++++++++
2 files changed, 85 insertions(+)
create mode 100644 research/EXPERIMENT_008_DEVELOPMENT_IDENTITY.md
diff --git a/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md b/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
index e969f04..8b88a64 100644
--- a/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
+++ b/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
@@ -189,6 +189,21 @@ resolved after this protocol commit, but they must be committed in a
pre-quality identity amendment before model loading. No quality metric from
`[16, 32)` may be observed before that amendment.
+That identity amendment is now frozen in
+[`EXPERIMENT_008_DEVELOPMENT_IDENTITY.md`](EXPERIMENT_008_DEVELOPMENT_IDENTITY.md):
+
+```text
+ordered task IDs:
+666, 795, 944, 653, 857, 884, 878, 822,
+687, 820, 920, 771, 869, 851, 728, 704
+
+content-manifest SHA-256:
+21dcc6e1955918a9f6baae3d02e7ba2781600405f91fe42bbe18eac8ca6dde5e
+
+token-manifest SHA-256:
+5a8e7b56528e3ccecc95ff83b2e59749d81dab27d0233fefafc510622a973f87
+```
+
Ranked window `[8, 16)` remains protected. It cannot be loaded, tokenized, or
evaluated unless every development and independent numerical prerequisite in
this protocol passes from committed artifacts.
diff --git a/research/EXPERIMENT_008_DEVELOPMENT_IDENTITY.md b/research/EXPERIMENT_008_DEVELOPMENT_IDENTITY.md
new file mode 100644
index 0000000..78d721c
--- /dev/null
+++ b/research/EXPERIMENT_008_DEVELOPMENT_IDENTITY.md
@@ -0,0 +1,70 @@
+# Experiment 008 development identity
+
+> **Status: exact `[16, 32)` identities pinned before model loading or quality
+> evaluation.**
+
+Identity resolved: 2026-07-23
+
+The CORA-C2 protocol was already committed at `1a7c34a` before this window was
+resolved. This step loaded the pinned public MBPP rows and local tokenizer only.
+It did not load model weights, run a forward pass, compute logits, or observe a
+quality metric.
+
+## Frozen provenance
+
+| Field | Value |
+| --- | --- |
+| Dataset | `google-research-datasets/mbpp`, config `full` |
+| Dataset revision | `4bb6404fdc6cacfda99d4ac4205087b89d32030c` |
+| Source split | `train` |
+| Selection namespace | `rq-v0.2` |
+| Ranked window | `[16, 32)` |
+| Ordered task IDs | `666, 795, 944, 653, 857, 884, 878, 822, 687, 820, 920, 771, 869, 851, 728, 704` |
+| Content-manifest SHA-256 | `21dcc6e1955918a9f6baae3d02e7ba2781600405f91fe42bbe18eac8ca6dde5e` |
+| Prompt formatter | `recurquant.mbpp-prompt-code.v1` |
+| Tokenizer | `Qwen2Tokenizer`, Transformers 5.14.1 |
+| Tokenizer source | `Qwen/Qwen3.5-0.8B-Base` at `dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68` |
+| Token-manifest SHA-256 | `5a8e7b56528e3ccecc95ff83b2e59749d81dab27d0233fefafc510622a973f87` |
+| Total aligned scored tokens | 798 |
+| Total full-code scored tokens | 814 |
+
+The selector inputs remain the exact frozen pair:
+
+```text
+HRR canonical evidence SHA-256:
+7970961fd88b522998189ad64f26b333aed9c88ff5f653de5449fd9e01d8cbc8
+
+loss-sensitivity canonical evidence SHA-256:
+bff4e33253990b8115e1f35e74516c4975c2fe4aac5066475afe968eb8a64609
+```
+
+## Ordered row and token identity
+
+The rank column is zero-based in the complete frozen calibration ordering.
+Row hashes come from canonical MBPP content. `Aligned scored` excludes the
+prompt-to-first-code-token transition.
+
+| Rank | Task ID | Row SHA-256 | Prompt tokens | Code tokens | Aligned scored |
+| ---: | ---: | --- | ---: | ---: | ---: |
+| 16 | 666 | `b4f5989005c921c3ab94ab52c8115e79f99a22390bc1d6e6235d36fd02687fb9` | 69 | 39 | 38 |
+| 17 | 795 | `0da1480294ac295b6ceebf822dd2b512863c26b314e43f95ca6e5945e6ecfd82` | 290 | 35 | 34 |
+| 18 | 944 | `9a7fbac2ccd13b8940f81ef75d20a4521cad8d39ccfe78714d85c49f712597d0` | 91 | 26 | 25 |
+| 19 | 653 | `346aee9efc80955f531c1574db8b5c2eb25b48876c76a0aba1a35f15138800db` | 249 | 38 | 37 |
+| 20 | 857 | `e9ac9acf8ca396274eef0b4479cfe2c0126ab6656222828b6198a497fa46f913` | 271 | 22 | 21 |
+| 21 | 884 | `947efb4b2967163d5a5e7816e091b8b4a2a58c73e479c66ccc1b65fd7ea79cbb` | 112 | 68 | 67 |
+| 22 | 878 | `88b2f4e5c166757c111f0baff74c20fa4d8f13a4fa13d8403c7cacc4f0558e9c` | 139 | 29 | 28 |
+| 23 | 822 | `ba6eaa8bdd27506a5372e9e6beeb080d23bbbdc6996661d75ab26290d05fb3a4` | 71 | 132 | 131 |
+| 24 | 687 | `350e5f813e96ccbba22a8db978e72840806c6e6fe4be28a06905c3eae5cb68ef` | 89 | 64 | 63 |
+| 25 | 820 | `9ba789ae1cb3f3e21ec124ab7bd3447665019e54aa77fdb409c6d5a871994809` | 74 | 31 | 30 |
+| 26 | 920 | `1539ae14cc92af940de077b6700a7a17ca2649aa26e165e15f6761cabde1363a` | 215 | 36 | 35 |
+| 27 | 771 | `7470507a8c6c27b54bb1a56ef07e012d75c78bacbf8570aff8d0bb5f9919ac67` | 75 | 135 | 134 |
+| 28 | 869 | `be0c42f832fb5afeb271845eee64ce97f919537ea266e41c881b798c9d15cabc` | 305 | 47 | 46 |
+| 29 | 851 | `b1761ef5396f9ba11c5047b5cb0ff0955f3c8ad67f1c8449a4d7b394f8009076` | 95 | 36 | 35 |
+| 30 | 728 | `1c0a375e35a7a918b8caaaf3314b75c36dd75e95f4ce01fa24ac80bb7c5af8cc` | 128 | 37 | 36 |
+| 31 | 704 | `dfedafc5ad5c0985fcb5f3451f9434628f9d43077fe643ca1d5026106b5caccc` | 114 | 39 | 38 |
+
+Any task order, row hash, prompt/code token count, manifest hash, tokenizer,
+formatter, selector identity, or model revision mismatch must fail before model
+execution.
+
+Ranked window `[8, 16)` was not loaded or tokenized by this identity step.
From 69eec866b90f2ae5386da23a8f34fba4c428d9e1 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Thu, 23 Jul 2026 04:34:41 +0800
Subject: [PATCH 13/22] feat: implement frozen CORA-C2 development path
---
research/CLAIM_BOUNDARY.md | 8 +
research/EXPERIMENT_008_CORA_C2_PROTOCOL.md | 5 +
...XPERIMENT_008_DATA_ACCESS_CLARIFICATION.md | 33 +
research/STATUS.md | 9 +
scripts/pilot_evaluate_hrr.py | 1369 ++++++++++++++++-
src/recurquant/__init__.py | 8 +
src/recurquant/packed_cache.py | 1117 +++++++++++++-
src/recurquant/public_data.py | 55 +
src/recurquant/qwen35.py | 30 +
src/recurquant/transition_observer.py | 302 ++++
tests/test_cora_mixed_packed_cache.py | 456 ++++++
tests/test_pilot_evaluate_hrr.py | 661 +++++++-
tests/test_public_data.py | 48 +
tests/test_query_ema_mixed_packed_cache.py | 40 +-
tests/test_transition_observer.py | 581 +++++++
15 files changed, 4634 insertions(+), 88 deletions(-)
create mode 100644 research/EXPERIMENT_008_DATA_ACCESS_CLARIFICATION.md
create mode 100644 src/recurquant/transition_observer.py
create mode 100644 tests/test_cora_mixed_packed_cache.py
create mode 100644 tests/test_transition_observer.py
diff --git a/research/CLAIM_BOUNDARY.md b/research/CLAIM_BOUNDARY.md
index 1514a35..fdec839 100644
--- a/research/CLAIM_BOUNDARY.md
+++ b/research/CLAIM_BOUNDARY.md
@@ -68,6 +68,14 @@ was not reached and ranked `[8, 16)` remained unopened. Experiment 007 supports
no generalization, novelty, latency, deployment, state-of-the-art, or
breakthrough claim.
+Experiment 008 preregisters CORA-C2 on a separate `[16, 32)` development
+window. Its implementation combines a causal diagonal approximation to the
+Gated DeltaNet error-transition observability recurrence, exact Q4-to-Q8 row
+squared-error benefit, fixed target-Fisher layer quotas, and Confirmation-2.
+That combination is a testable mechanism hypothesis, not an established novel
+method. No Experiment 008 quality result has yet been observed, and ranked
+`[8, 16)` remains protected.
+
## Claims prohibited without new evidence
- "First recurrent-state quantization method."
diff --git a/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md b/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
index 8b88a64..2174a0b 100644
--- a/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
+++ b/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
@@ -208,6 +208,11 @@ Ranked window `[8, 16)` remains protected. It cannot be loaded, tokenized, or
evaluated unless every development and independent numerical prerequisite in
this protocol passes from committed artifacts.
+The pre-quality implementation meaning of dataset-loader access versus retained
+evaluation rows is recorded in
+[`EXPERIMENT_008_DATA_ACCESS_CLARIFICATION.md`](EXPERIMENT_008_DATA_ACCESS_CLARIFICATION.md).
+No protected row is retained, canonicalized, formatted, tokenized, or evaluated.
+
## Frozen methods and ablations
All methods use the same model revision, quantizers, per-layer quotas, packed-
diff --git a/research/EXPERIMENT_008_DATA_ACCESS_CLARIFICATION.md b/research/EXPERIMENT_008_DATA_ACCESS_CLARIFICATION.md
new file mode 100644
index 0000000..13a6923
--- /dev/null
+++ b/research/EXPERIMENT_008_DATA_ACCESS_CLARIFICATION.md
@@ -0,0 +1,33 @@
+# Experiment 008 data-access clarification
+
+> **Status: committed before any Experiment 008 model load, forward pass, or
+> quality metric.**
+
+The MBPP source is a streaming public split rather than a server-side keyed
+database. Locating already-pinned task IDs therefore requires the dataset
+loader to stream source records. A non-target record can transiently pass
+through the loader even when its content is never retained or used.
+
+For Experiment 008, "protected and unopened" has this enforceable meaning:
+
+- ranked window `[8, 16)` is never selected, retained, canonicalized, hashed,
+ formatted, tokenized, passed to the model, or evaluated;
+- the evaluator loads only the exact pinned selector-prefix IDs and `[16, 32)`
+ development IDs into application state;
+- non-target stream records are inspected only for `task_id` and discarded;
+- the legacy Experiment 005 route to `[8, 16)` is locked; and
+- any task-ID, row-content, token-manifest, ordering, repository, or source-file
+ mismatch fails before model loading.
+
+This clarification fixes an implementation ambiguity in the frozen wording. It
+does not reveal a protected prompt, token, logit, loss, or quality result and
+does not change the method, tasks, thresholds, or advancement rule.
+
+## Metric aggregation clarification
+
+The protocol's `token CVaR95 KL` is computed within each task over that task's
+scored tokens, then averaged with equal task weight. This is the
+`macro_cvar95_kl` contract already used by Experiments 005-007 and prevents long
+reference programs from dominating the task-macro evaluation. The artifact
+also records the maximum KL over all task maxima as `maximum_kl`. The frozen
+`0.10` CVaR margin applies to `macro_cvar95_kl`.
diff --git a/research/STATUS.md b/research/STATUS.md
index 922091e..400abf3 100644
--- a/research/STATUS.md
+++ b/research/STATUS.md
@@ -33,6 +33,15 @@ and integrity checks passed. Experiment 007 therefore stopped before its FP64
prerequisite or holdout; ranked `[8, 16)` remains unopened. See
[`EXPERIMENT_007_RESULT.md`](EXPERIMENT_007_RESULT.md).
+Experiment 008 is preregistered as CORA-C2: a causal diagonal observability
+predictor derived from the actual Gated DeltaNet error transition, multiplied
+by physical Q4-to-Q8 row squared-error benefit, with a two-consecutive-hit
+admission rule. Its exact `[16, 32)` development identity, six methods, storage
+contract, and 13-condition advancement rule were frozen before model loading.
+The implementation and fail-closed evaluator are ready, but no Experiment 008
+quality result has been observed yet. Ranked `[8, 16)` remains protected. See
+[`EXPERIMENT_008_CORA_C2_PROTOCOL.md`](EXPERIMENT_008_CORA_C2_PROTOCOL.md).
+
Any successor must use a new protocol and development split. The nearest known
mechanism-level comparison is MixKVQ's query-magnitude and quantization-
difficulty channel scoring for KV caches; CQER-32 cannot be described as the
diff --git a/scripts/pilot_evaluate_hrr.py b/scripts/pilot_evaluate_hrr.py
index 2ae5506..81c5d95 100644
--- a/scripts/pilot_evaluate_hrr.py
+++ b/scripts/pilot_evaluate_hrr.py
@@ -1,10 +1,9 @@
#!/usr/bin/env python3
"""Evaluate frozen row-selector plans on calibration rows as a diagnostic.
-The script deliberately refuses development and confirmation data. Offset zero
-checks the selector-task prefix; a positive offset checks a ranked calibration
-holdout that must be disjoint from every selector artifact. Neither mode is
-confirmation evidence.
+Offset zero checks the selector-task prefix. Experiment 008 has one separately
+frozen development window at offset 16. Other positive offsets are reserved for
+the Experiment 005 holdout contract. No mode is confirmation evidence.
"""
from __future__ import annotations
@@ -38,6 +37,7 @@
from recurquant.evidence import canonical_json_bytes, verify_evidence_artifact
from recurquant.packed_cache import (
AdaptiveMixedPackedRecurrentStateCache,
+ CoraMixedPackedRecurrentStateCache,
MixedPackedRecurrentStateCache,
PackedRecurrentStateCache,
QueryEmaMixedPackedRecurrentStateCache,
@@ -47,6 +47,7 @@
MBPP_CALIBRATION_SIZE,
format_mbpp_example,
load_mbpp_rows,
+ load_mbpp_rows_by_task_ids,
mbpp_manifest,
mbpp_manifest_content_sha256,
mbpp_manifest_sha256,
@@ -54,6 +55,7 @@
from recurquant.query_energy import Qwen35QueryEnergyObserver
from recurquant.qwen35 import (
create_qwen35_adaptive_exact_budget_cache,
+ create_qwen35_cora_exact_budget_cache,
create_qwen35_exact_budget_cache,
create_qwen35_packed_cache,
create_qwen35_query_ema_exact_budget_cache,
@@ -61,6 +63,7 @@
create_qwen35_v02_mixed_cache,
)
from recurquant.row_policy import ExactBudgetRowPlan, select_rows_exact_budget
+from recurquant.transition_observer import Qwen35TransitionObserver
SEED = 2339
RANDOM_ROW_SEED = 1101
@@ -78,6 +81,9 @@
RANK_FUSION_PRIMARY = "rank_fusion_l050_target_fisher_adaptive_mse"
QUERY_EMA_PRIMARY = "query_ema32_weighted_mse_target_fisher_quota"
QUERY_EMA_HALF_LIFE = 32
+CORA_C2_PRIMARY = "causal_observability_confirm2_mse_target_fisher_quota"
+CORA_RAW = "causal_observability_mse_target_fisher_quota"
+QUERY_EMA_C2 = "query_ema32_confirm2_mse_target_fisher_quota"
LOSS_SCORE_NAMES = (
LOSS_SELECTOR_PRIMARY,
"target_directional_fisher_difference_int4",
@@ -123,9 +129,43 @@
(21, 7),
(22, 55),
)
+E008_DEVELOPMENT_OFFSET = 16
+E008_DEVELOPMENT_LIMIT = 16
+E008_DEVELOPMENT_TASK_IDS = (
+ 666,
+ 795,
+ 944,
+ 653,
+ 857,
+ 884,
+ 878,
+ 822,
+ 687,
+ 820,
+ 920,
+ 771,
+ 869,
+ 851,
+ 728,
+ 704,
+)
+E008_DEVELOPMENT_CONTENT_MANIFEST_SHA256 = (
+ "21dcc6e1955918a9f6baae3d02e7ba2781600405f91fe42bbe18eac8ca6dde5e"
+)
+E008_DEVELOPMENT_TOKEN_MANIFEST_SHA256 = (
+ "5a8e7b56528e3ccecc95ff83b2e59749d81dab27d0233fefafc510622a973f87"
+)
TARGET_RESIDENT_BYTES = 2_564_096
+QUERY_SELECTOR_AUXILIARY_BYTES = 147_456
+C2_PREVIOUS_RAW_MASK_BYTES = 4_608
+CORA_SELECTOR_AUXILIARY_BYTES = 152_064
MIN_RELATIVE_NLL_REDUCTION = 0.20
CQER_MIN_RELATIVE_NLL_REDUCTION_VS_ADAPTIVE = 0.05
+CORA_MIN_RELATIVE_NLL_REDUCTION_VS_ADAPTIVE = 0.05
+CORA_MIN_RELATIVE_NLL_REDUCTION_VS_CQER = 0.05
+CORA_RAW_MIN_RELATIVE_NLL_REDUCTION_VS_CQER = 0.03
+CORA_C2_MIN_NORMALIZED_CHURN_REDUCTION = 0.50
+CORA_C2_MAX_RELATIVE_NLL_WORSENING_VS_RAW = 0.01
TOP1_DISADVANTAGE_MARGIN = 0.01
CVAR95_DISADVANTAGE_MARGIN = 0.10
MAX_PER_TASK_NLL_DISADVANTAGE = 1.0
@@ -147,6 +187,7 @@
"src/recurquant/packed_cache.py",
"src/recurquant/public_data.py",
"src/recurquant/query_energy.py",
+ "src/recurquant/transition_observer.py",
"src/recurquant/quantization.py",
"src/recurquant/qwen35.py",
"src/recurquant/row_policy.py",
@@ -157,6 +198,7 @@
Mapping[int, torch.Tensor],
float,
]
+CoraCacheSpec = tuple[ExactBudgetRowPlan, bool]
@dataclass(slots=True)
@@ -220,6 +262,15 @@ def parse_args() -> argparse.Namespace:
"Experiment 007 prerequisite is implemented and passes."
),
)
+ parser.add_argument(
+ "--cora-c2",
+ action="store_true",
+ help=(
+ "Run the frozen Experiment 008 CORA-C2 development diagnostic on "
+ "the exact ranked calibration window [16, 32). The protected "
+ "window [8, 16) remains disabled unless every prerequisite passes."
+ ),
+ )
parser.add_argument("--output", type=Path, required=True)
parser.add_argument("--limit", type=int)
parser.add_argument(
@@ -544,11 +595,23 @@ def validate_frozen_holdout_request(
storage_boundary_present: bool,
rank_fusion_enabled: bool = False,
query_ema_enabled: bool = False,
+ cora_c2_enabled: bool = False,
) -> None:
- """Refuse any positive-offset run outside Experiment 005's frozen request."""
+ """Refuse unauthorized positive offsets, including E008's protected window."""
if offset == 0:
return
+ if cora_c2_enabled:
+ if (
+ offset == E008_DEVELOPMENT_OFFSET
+ and limit == E008_DEVELOPMENT_LIMIT
+ and bootstrap_samples == FROZEN_BOOTSTRAP_SAMPLES
+ ):
+ return
+ raise ValueError(
+ "Experiment 008 CORA-C2 may bypass the heldout contract only for its "
+ "exact development window [16, 32); protected window [8, 16) remains closed"
+ )
if rank_fusion_enabled:
raise ValueError(
"Experiment 006 rank-fusion holdout remains closed until its separate "
@@ -594,6 +657,10 @@ def validate_frozen_holdout_request(
"each Experiment 005 selector must contain exactly "
f"{FROZEN_HOLDOUT_LIMIT} tasks; found {task_count}"
)
+ raise ValueError(
+ "ranked window [8, 16) is now protected by Experiment 008 and cannot be "
+ "loaded or evaluated through the legacy Experiment 005 path"
+ )
def validate_cqer_development_request(
@@ -690,6 +757,115 @@ def validate_cqer_layer_quotas(
)
+def validate_cora_development_request(
+ *,
+ enabled: bool,
+ offset: int,
+ limit: int,
+ bootstrap_samples: int,
+) -> None:
+ """Freeze Experiment 008 to its predeclared development window."""
+
+ if not enabled:
+ return
+ if (
+ offset != E008_DEVELOPMENT_OFFSET
+ or limit != E008_DEVELOPMENT_LIMIT
+ or bootstrap_samples != FROZEN_BOOTSTRAP_SAMPLES
+ ):
+ raise ValueError(
+ "Experiment 008 CORA-C2 development requires ranked window [16, 32), "
+ "exactly 16 tasks, and exactly 10000 bootstrap samples; protected "
+ "window [8, 16) remains closed"
+ )
+
+
+def validate_cora_selector_artifacts(
+ *,
+ enabled: bool,
+ selectors: Sequence[Mapping[str, Any]],
+) -> None:
+ """Authenticate the exact selector pair frozen before Experiment 008."""
+
+ if not enabled:
+ return
+ if len(selectors) != 2:
+ raise ValueError(
+ "Experiment 008 CORA-C2 requires exactly two authenticated selector artifacts"
+ )
+ kinds = tuple(selector.get("artifact_kind") for selector in selectors)
+ if kinds != (HRR_ARTIFACT_KIND, LOSS_ARTIFACT_KIND):
+ raise ValueError("Experiment 008 CORA-C2 requires HRR then loss selectors")
+ token_contracts = tuple(_selector_token_contract(selector) for selector in selectors)
+ if any(len(contract) != CQER_DEVELOPMENT_LIMIT for contract in token_contracts):
+ raise ValueError(
+ "Experiment 008 CORA-C2 requires the exact authenticated eight-task "
+ "selector pair"
+ )
+ task_id_orders = tuple(
+ tuple(int(record["task_id"]) for record in contract)
+ for contract in token_contracts
+ )
+ if any(task_ids != CQER_DEVELOPMENT_TASK_IDS for task_ids in task_id_orders):
+ raise ValueError(
+ "Experiment 008 CORA-C2 selector task IDs do not match the frozen order"
+ )
+ canonical_hashes = tuple(
+ sha256_bytes(canonical_json_bytes(selector)) for selector in selectors
+ )
+ if canonical_hashes != CQER_FROZEN_SELECTOR_CANONICAL_SHA256S:
+ raise ValueError(
+ "Experiment 008 CORA-C2 selector canonical hashes do not match the "
+ "frozen artifacts"
+ )
+
+
+def validate_cora_development_identity(
+ *,
+ enabled: bool,
+ task_ids: Sequence[int],
+ content_manifest_sha256: str,
+ token_manifest_sha256: str | None = None,
+) -> None:
+ """Fail closed on any change to Experiment 008's pinned data identity."""
+
+ if not enabled:
+ return
+ if tuple(int(task_id) for task_id in task_ids) != E008_DEVELOPMENT_TASK_IDS:
+ raise ValueError(
+ "Experiment 008 CORA-C2 task IDs do not match the frozen [16, 32) order"
+ )
+ if content_manifest_sha256 != E008_DEVELOPMENT_CONTENT_MANIFEST_SHA256:
+ raise ValueError(
+ "Experiment 008 CORA-C2 content manifest does not match the frozen identity"
+ )
+ if (
+ token_manifest_sha256 is not None
+ and token_manifest_sha256 != E008_DEVELOPMENT_TOKEN_MANIFEST_SHA256
+ ):
+ raise ValueError(
+ "Experiment 008 CORA-C2 token manifest does not match the frozen identity"
+ )
+
+
+def validate_cora_layer_quotas(
+ *,
+ enabled: bool,
+ quotas: Mapping[int, int],
+) -> None:
+ """Pin CORA to the authenticated target-Fisher layer allocation."""
+
+ if not enabled:
+ return
+ normalized = tuple(sorted((int(layer), int(quota)) for layer, quota in quotas.items()))
+ expected = tuple(sorted(CQER_FROZEN_LAYER_QUOTAS))
+ if normalized != expected or sum(quota for _, quota in normalized) != 1_976:
+ raise ValueError(
+ "Experiment 008 CORA-C2 layer quotas do not match the frozen "
+ "target-Fisher allocation"
+ )
+
+
def authenticate_selector_prefix(
selector: Mapping[str, Any],
*,
@@ -814,6 +990,7 @@ def aggregate_task_rows(
"macro_delta_nll": fmean(float(row["delta_nll"]) for row in task_rows),
"macro_mean_kl": fmean(float(row["mean_kl"]) for row in task_rows),
"macro_cvar95_kl": fmean(float(row["cvar95_kl"]) for row in task_rows),
+ "maximum_kl": max(float(row["max_kl"]) for row in task_rows),
"macro_top1_agreement": fmean(float(row["top1_agreement"]) for row in task_rows),
"token_count": sum(int(row["token_count"]) for row in task_rows),
}
@@ -1290,9 +1467,718 @@ def evaluate_cqer_development_gate(
}
+def _diagnostic_int(
+ record: Mapping[str, object],
+ *names: str,
+ default: int = -1,
+) -> int:
+ """Read one non-boolean diagnostic integer using compatible field aliases."""
+
+ for name in names:
+ value = record.get(name)
+ if isinstance(value, int) and not isinstance(value, bool):
+ return value
+ return default
+
+
+def _mask_hash_is_valid(value: object) -> bool:
+ return (
+ isinstance(value, str)
+ and len(value) == 64
+ and all(character in "0123456789abcdef" for character in value)
+ )
+
+
+def _audit_e008_selector_diagnostics(
+ *,
+ selector_diagnostics: Mapping[str, Sequence[Mapping[str, object]]],
+ expected_quotas: Mapping[int, int],
+ token_manifest: Sequence[Mapping[str, int]],
+) -> dict[str, Any]:
+ """Audit exact-quota handshakes and aggregate frozen churn diagnostics."""
+
+ selector_methods = (
+ QUERY_EMA_PRIMARY,
+ CORA_RAW,
+ QUERY_EMA_C2,
+ CORA_C2_PRIMARY,
+ )
+ expected_layers = dict(sorted((int(k), int(v)) for k, v in expected_quotas.items()))
+ if len(token_manifest) != E008_DEVELOPMENT_LIMIT:
+ raise ValueError(
+ "CORA-C2 diagnostic audit requires the exact 16-task token manifest"
+ )
+ expected_task_contract: dict[int, tuple[int, int]] = {}
+ for index, record in enumerate(token_manifest):
+ task_id = int(record["task_id"])
+ prompt_tokens = int(record["prompt_tokens"])
+ code_tokens = int(record["code_tokens"])
+ aligned_tokens = int(record["aligned_scored_tokens"])
+ if (
+ task_id != E008_DEVELOPMENT_TASK_IDS[index]
+ or prompt_tokens < 1
+ or code_tokens < 2
+ or aligned_tokens != code_tokens - 1
+ or task_id in expected_task_contract
+ ):
+ raise ValueError("CORA-C2 token manifest does not match the frozen task contract")
+ expected_task_contract[task_id] = (
+ code_tokens,
+ prompt_tokens + aligned_tokens,
+ )
+ quota_contract = True
+ handshake_contract = True
+ finite_diagnostics = True
+ method_audits: dict[str, list[dict[str, object]]] = {}
+ churn: dict[str, dict[str, float | int | None]] = {}
+
+ for method in selector_methods:
+ tasks = selector_diagnostics.get(method)
+ if not isinstance(tasks, Sequence) or len(tasks) != E008_DEVELOPMENT_LIMIT:
+ quota_contract = False
+ handshake_contract = False
+ method_audits[method] = [
+ {
+ "error": (
+ "diagnostics must contain exactly "
+ f"{E008_DEVELOPMENT_LIMIT} task records"
+ )
+ }
+ ]
+ continue
+
+ task_audits: list[dict[str, object]] = []
+ churn_numerator = 0
+ churn_denominator = 0
+ for task_index, task_record in enumerate(tasks):
+ task_id = _diagnostic_int(task_record, "task_id")
+ task_identity_passed = task_id == E008_DEVELOPMENT_TASK_IDS[task_index]
+ expected_updates, expected_tokens = expected_task_contract.get(task_id, (-1, -1))
+ quota_contract = quota_contract and task_identity_passed
+ handshake_contract = handshake_contract and task_identity_passed
+ raw_layers = task_record.get("layers")
+ if not isinstance(raw_layers, list):
+ quota_contract = False
+ handshake_contract = False
+ task_audits.append({"task_id": task_id, "error": "layers must be an array"})
+ continue
+ observed_layers: dict[int, Mapping[str, object]] = {}
+ for raw_layer in raw_layers:
+ if not isinstance(raw_layer, Mapping):
+ quota_contract = False
+ handshake_contract = False
+ continue
+ layer_index = _diagnostic_int(raw_layer, "layer_index")
+ if layer_index in observed_layers:
+ quota_contract = False
+ handshake_contract = False
+ continue
+ observed_layers[layer_index] = raw_layer
+
+ task_quota_passed = (
+ task_identity_passed and set(observed_layers) == set(expected_layers)
+ )
+ task_handshake_passed = task_quota_passed
+ task_updates = 0
+ task_tokens = 0
+ task_committed_churn = 0
+ task_transition_count = 0
+ for layer_index, quota in expected_layers.items():
+ record = observed_layers.get(layer_index)
+ if record is None:
+ task_quota_passed = False
+ task_handshake_passed = False
+ continue
+ observed_quota = _diagnostic_int(record, "quota")
+ selected = _diagnostic_int(record, "current_selected_count")
+ updates = _diagnostic_int(record, "state_updates")
+ committed = _diagnostic_int(
+ record,
+ "observations_committed",
+ "transition_observations_committed",
+ )
+ staged = _diagnostic_int(
+ record,
+ "observations_staged",
+ "transition_observations_staged",
+ )
+ tokens = _diagnostic_int(
+ record,
+ "tokens_observed",
+ "transition_tokens_observed",
+ )
+ pending = record.get("pending_observation")
+ current_hash = record.get(
+ "committed_mask_sha256",
+ record.get("current_mask_sha256"),
+ )
+ expected_confirmation_two = method in (QUERY_EMA_C2, CORA_C2_PRIMARY)
+ task_quota_passed = task_quota_passed and all(
+ (
+ observed_quota == quota,
+ selected == quota,
+ _mask_hash_is_valid(current_hash),
+ record.get("confirmation_two") is expected_confirmation_two,
+ )
+ )
+ if method in (CORA_RAW, CORA_C2_PRIMARY):
+ task_quota_passed = task_quota_passed and (
+ record.get("selection_method") == method
+ )
+ task_handshake_passed = task_handshake_passed and all(
+ (
+ staged == committed,
+ committed == updates,
+ committed == expected_updates,
+ tokens == expected_tokens,
+ pending is False,
+ )
+ )
+ task_updates += max(updates, 0)
+ task_tokens += max(tokens, 0)
+
+ for key, value in record.items():
+ if (
+ isinstance(value, (int, float))
+ and not isinstance(value, bool)
+ and not math.isfinite(float(value))
+ ):
+ finite_diagnostics = False
+ if key in {
+ "last_raw_cutoff_score",
+ "last_raw_score_gap",
+ "last_raw_normalized_gap",
+ "last_committed_cutoff_score",
+ "last_committed_score_gap",
+ "last_committed_normalized_gap",
+ "last_cutoff_score_margin",
+ "raw_normalized_churn",
+ "committed_normalized_churn",
+ "observability_trace",
+ "observability_min",
+ "observability_max",
+ } and value is not None:
+ try:
+ _finite_float(value, context=f"{method} {key}")
+ except ValueError:
+ finite_diagnostics = False
+
+ try:
+ l2norm_eps = _finite_float(
+ record.get("l2norm_eps"),
+ context=f"{method} l2norm_eps",
+ )
+ except ValueError:
+ l2norm_eps = -1.0
+ finite_diagnostics = False
+ if l2norm_eps != 1e-6:
+ task_handshake_passed = False
+ if method in (QUERY_EMA_PRIMARY, QUERY_EMA_C2):
+ try:
+ ema_decay = _finite_float(
+ record.get("ema_decay"),
+ context=f"{method} EMA decay",
+ )
+ except ValueError:
+ ema_decay = -1.0
+ finite_diagnostics = False
+ if not math.isclose(
+ ema_decay,
+ 2.0 ** (-1.0 / QUERY_EMA_HALF_LIFE),
+ rel_tol=0.0,
+ abs_tol=1e-15,
+ ):
+ task_handshake_passed = False
+
+ if method in (CORA_RAW, QUERY_EMA_C2, CORA_C2_PRIMARY):
+ raw_hash = record.get("raw_mask_sha256")
+ if not _mask_hash_is_valid(raw_hash):
+ task_quota_passed = False
+ if method in (CORA_RAW, CORA_C2_PRIMARY):
+ try:
+ observability_trace = _finite_float(
+ record.get("observability_trace"),
+ context=f"{method} observability trace",
+ )
+ observability_min = _finite_float(
+ record.get("observability_min"),
+ context=f"{method} observability minimum",
+ )
+ observability_max = _finite_float(
+ record.get("observability_max"),
+ context=f"{method} observability maximum",
+ )
+ except ValueError:
+ observability_trace = -1.0
+ observability_min = -1.0
+ observability_max = -1.0
+ finite_diagnostics = False
+ if not all(
+ (
+ math.isclose(
+ observability_trace,
+ 1.0,
+ rel_tol=0.0,
+ abs_tol=5e-6,
+ ),
+ 0.0 <= observability_min <= observability_max <= 1.0,
+ record.get("observability_dtype") == "torch.float32",
+ _diagnostic_int(record, "observability_diagonal_bytes") > 0,
+ _diagnostic_int(record, "previous_raw_mask_bytes") > 0,
+ _diagnostic_int(record, "selector_auxiliary_bytes") > 0,
+ )
+ ):
+ task_handshake_passed = False
+ transitions = _diagnostic_int(
+ record,
+ "mask_transition_count",
+ "selection_transitions",
+ "transition_count",
+ )
+ raw_churn = _diagnostic_int(
+ record,
+ "raw_xor_churn_total",
+ "cumulative_raw_xor_churn",
+ "total_raw_mask_churn",
+ )
+ committed_churn = _diagnostic_int(
+ record,
+ "committed_xor_churn_total",
+ "cumulative_committed_xor_churn",
+ "total_committed_mask_churn",
+ )
+ admissions = _diagnostic_int(record, "admissions_total")
+ dwell = _diagnostic_int(record, "dwell_total")
+ denominator = 2 * quota * max(transitions, 0)
+ expected_raw_normalized = (
+ raw_churn / denominator if denominator > 0 else None
+ )
+ expected_committed_normalized = (
+ committed_churn / denominator if denominator > 0 else None
+ )
+ try:
+ observed_raw_normalized = _finite_float(
+ record.get("raw_normalized_churn"),
+ context=f"{method} raw normalized churn",
+ )
+ observed_committed_normalized = _finite_float(
+ record.get("committed_normalized_churn"),
+ context=f"{method} committed normalized churn",
+ )
+ except ValueError:
+ observed_raw_normalized = None
+ observed_committed_normalized = None
+ finite_diagnostics = False
+ if (
+ transitions != max(updates - 1, 0)
+ or raw_churn < 0
+ or committed_churn < 0
+ or raw_churn > 2 * quota * transitions
+ or committed_churn > 2 * quota * transitions
+ or admissions < 0
+ or dwell < 0
+ or admissions * 2 != committed_churn
+ or dwell + admissions != quota * transitions
+ or expected_raw_normalized is None
+ or expected_committed_normalized is None
+ or observed_raw_normalized is None
+ or observed_committed_normalized is None
+ or not math.isclose(
+ observed_raw_normalized,
+ expected_raw_normalized,
+ rel_tol=0.0,
+ abs_tol=1e-12,
+ )
+ or not math.isclose(
+ observed_committed_normalized,
+ expected_committed_normalized,
+ rel_tol=0.0,
+ abs_tol=1e-12,
+ )
+ or (method == CORA_RAW and raw_churn != committed_churn)
+ ):
+ task_handshake_passed = False
+ task_committed_churn += max(committed_churn, 0)
+ task_transition_count += max(transitions, 0)
+ churn_denominator += 2 * quota * max(transitions, 0)
+
+ quota_contract = quota_contract and task_quota_passed
+ handshake_contract = handshake_contract and task_handshake_passed
+ churn_numerator += task_committed_churn
+ task_audits.append(
+ {
+ "task_id": task_id,
+ "quota_passed": task_quota_passed,
+ "handshake_passed": task_handshake_passed,
+ "state_updates": task_updates,
+ "tokens_observed": task_tokens,
+ "committed_xor_churn": task_committed_churn,
+ "mask_transition_count": task_transition_count,
+ }
+ )
+ method_audits[method] = task_audits
+ if method in (CORA_RAW, CORA_C2_PRIMARY):
+ normalized = (
+ churn_numerator / churn_denominator if churn_denominator > 0 else None
+ )
+ churn[method] = {
+ "committed_xor_churn_total": churn_numerator,
+ "normalization_denominator": churn_denominator,
+ "normalized_committed_churn": normalized,
+ }
+
+ return {
+ "quota_contract_passed": quota_contract,
+ "handshake_contract_passed": handshake_contract,
+ "finite_diagnostics": finite_diagnostics,
+ "method_audits": method_audits,
+ "churn": churn,
+ }
+
+
+def evaluate_cora_c2_development_gate(
+ *,
+ aggregates: Mapping[str, Mapping[str, float | int]],
+ aggregates_full_code: Mapping[str, Mapping[str, float | int]],
+ per_task: Mapping[str, Sequence[Mapping[str, float | int]]],
+ per_task_full_code: Mapping[str, Sequence[Mapping[str, float | int]]],
+ storage: Mapping[str, Mapping[str, int | float | bool]],
+ selector_diagnostics: Mapping[str, Sequence[Mapping[str, object]]],
+ contrasts: Mapping[str, Mapping[str, Any]],
+ token_manifest: Sequence[Mapping[str, int]],
+ expected_quotas: Mapping[int, int],
+ expected_packed_bytes: int,
+ expected_query_auxiliary_bytes: int,
+ expected_cora_auxiliary_bytes: int,
+) -> dict[str, Any]:
+ """Evaluate the complete frozen Experiment 008 development conjunction."""
+
+ static_name = "target_directional_fisher_difference_int4"
+ required = (
+ static_name,
+ ADAPTIVE_TARGET_FISHER,
+ QUERY_EMA_PRIMARY,
+ CORA_RAW,
+ QUERY_EMA_C2,
+ CORA_C2_PRIMARY,
+ )
+ expected_method_set = set(required)
+ for partition_name, partition in (
+ ("aggregates", aggregates),
+ ("aggregates_full_code", aggregates_full_code),
+ ("per_task", per_task),
+ ("per_task_full_code", per_task_full_code),
+ ("storage", storage),
+ ):
+ if set(partition) != expected_method_set:
+ raise ValueError(
+ "CORA-C2 development "
+ f"{partition_name} methods do not match the frozen six-method set"
+ )
+ expected_selector_methods = {
+ QUERY_EMA_PRIMARY,
+ CORA_RAW,
+ QUERY_EMA_C2,
+ CORA_C2_PRIMARY,
+ }
+ if set(selector_diagnostics) != expected_selector_methods:
+ raise ValueError(
+ "CORA-C2 selector diagnostics do not match the frozen four dynamic methods"
+ )
+ for name in required:
+ if any(
+ name not in partition
+ for partition in (aggregates, per_task, per_task_full_code, storage)
+ ):
+ raise ValueError(f"CORA-C2 development gate lacks required method {name}")
+ if (
+ len(per_task[name]) != E008_DEVELOPMENT_LIMIT
+ or len(per_task_full_code[name]) != E008_DEVELOPMENT_LIMIT
+ ):
+ raise ValueError(
+ "CORA-C2 development gate requires exactly "
+ f"{E008_DEVELOPMENT_LIMIT} aligned tasks per required method"
+ )
+
+ expected_ids = tuple(int(record["task_id"]) for record in token_manifest)
+ aligned_tokens_by_id = {
+ int(record["task_id"]): int(record["aligned_scored_tokens"])
+ for record in token_manifest
+ }
+ full_tokens_by_id = {
+ int(record["task_id"]): int(record["full_code_scored_tokens"])
+ for record in token_manifest
+ }
+ expected_aligned_total = sum(aligned_tokens_by_id.values())
+ expected_full_total = sum(full_tokens_by_id.values())
+ for name in required:
+ aligned_rows = per_task[name]
+ full_rows = per_task_full_code[name]
+ if tuple(int(row["task_id"]) for row in aligned_rows) != expected_ids:
+ raise ValueError(f"{name} aligned task IDs do not match the token manifest")
+ if tuple(int(row["task_id"]) for row in full_rows) != expected_ids:
+ raise ValueError(f"{name} full-code task IDs do not match the token manifest")
+ if any(
+ int(row["token_count"]) != aligned_tokens_by_id[int(row["task_id"])]
+ for row in aligned_rows
+ ):
+ raise ValueError(f"{name} aligned token counts do not match the token manifest")
+ if any(
+ int(row["token_count"]) != full_tokens_by_id[int(row["task_id"])]
+ for row in full_rows
+ ):
+ raise ValueError(f"{name} full-code token counts do not match the token manifest")
+ if (
+ int(aggregates[name].get("task_count", -1)) != E008_DEVELOPMENT_LIMIT
+ or int(aggregates[name].get("token_count", -1)) != expected_aligned_total
+ or int(aggregates_full_code[name].get("task_count", -1))
+ != E008_DEVELOPMENT_LIMIT
+ or int(aggregates_full_code[name].get("token_count", -1))
+ != expected_full_total
+ ):
+ raise ValueError(f"{name} aggregate task/token counts do not match the manifest")
+
+ audit = _audit_e008_selector_diagnostics(
+ selector_diagnostics=selector_diagnostics,
+ expected_quotas=expected_quotas,
+ token_manifest=token_manifest,
+ )
+ expected_promotions = sum(int(value) for value in expected_quotas.values())
+ expected_auxiliary = {
+ QUERY_EMA_PRIMARY: expected_query_auxiliary_bytes,
+ CORA_RAW: expected_cora_auxiliary_bytes,
+ QUERY_EMA_C2: expected_cora_auxiliary_bytes,
+ CORA_C2_PRIMARY: expected_cora_auxiliary_bytes,
+ }
+ storage_audit: dict[str, dict[str, int]] = {}
+ exact_storage = True
+ exact_promotions = True
+ for method, auxiliary_bytes in expected_auxiliary.items():
+ summary = storage[method]
+ observed_packed = int(summary.get("resident_bytes", -1))
+ observed_auxiliary = int(summary.get("selector_auxiliary_bytes", -1))
+ observed_total = int(summary.get("resident_bytes_including_selector", -1))
+ observed_promotions = int(summary.get("high_precision_groups", -1))
+ exact_storage = exact_storage and all(
+ (
+ observed_packed == expected_packed_bytes,
+ observed_auxiliary == auxiliary_bytes,
+ observed_total == expected_packed_bytes + auxiliary_bytes,
+ )
+ )
+ exact_promotions = exact_promotions and observed_promotions == expected_promotions
+ storage_audit[method] = {
+ "packed_bytes": observed_packed,
+ "selector_auxiliary_bytes": observed_auxiliary,
+ "resident_bytes_including_selector": observed_total,
+ "high_precision_groups": observed_promotions,
+ }
+
+ all_values_finite = bool(audit["finite_diagnostics"])
+ for name in required:
+ for aggregate_partition in (aggregates, aggregates_full_code):
+ for key, value in aggregate_partition[name].items():
+ try:
+ _finite_float(value, context=f"{name} aggregate {key}")
+ except ValueError:
+ all_values_finite = False
+ for partition in (per_task, per_task_full_code):
+ for row in partition[name]:
+ if row.get("all_logits_finite") is not True:
+ all_values_finite = False
+ for key, value in row.items():
+ if key in ("task_id", "all_logits_finite"):
+ continue
+ try:
+ _finite_float(value, context=f"{name} per-task {key}")
+ except ValueError:
+ all_values_finite = False
+
+ primary = aggregates[CORA_C2_PRIMARY]
+ static = aggregates[static_name]
+ adaptive = aggregates[ADAPTIVE_TARGET_FISHER]
+ cqer = aggregates[QUERY_EMA_PRIMARY]
+ raw = aggregates[CORA_RAW]
+ primary_nll = _finite_float(primary["macro_delta_nll"], context="CORA-C2 NLL")
+ static_nll = _finite_float(static["macro_delta_nll"], context="static NLL")
+ adaptive_nll = _finite_float(adaptive["macro_delta_nll"], context="adaptive NLL")
+ cqer_nll = _finite_float(cqer["macro_delta_nll"], context="CQER-32 NLL")
+ raw_nll = _finite_float(raw["macro_delta_nll"], context="raw CORA NLL")
+
+ def reduction(baseline: float, candidate: float) -> float | None:
+ return (baseline - candidate) / baseline if baseline > 0 else None
+
+ relative_static = reduction(static_nll, primary_nll)
+ relative_adaptive = reduction(adaptive_nll, primary_nll)
+ relative_cqer = reduction(cqer_nll, primary_nll)
+ raw_relative_cqer = reduction(cqer_nll, raw_nll)
+ c2_worsening_raw = (
+ (primary_nll - raw_nll) / raw_nll if raw_nll > 0 else None
+ )
+
+ primary_top1 = _finite_float(
+ primary["macro_top1_agreement"], context="CORA-C2 top1"
+ )
+ static_top1 = _finite_float(static["macro_top1_agreement"], context="static top1")
+ adaptive_top1 = _finite_float(
+ adaptive["macro_top1_agreement"], context="adaptive top1"
+ )
+ cqer_top1 = _finite_float(cqer["macro_top1_agreement"], context="CQER-32 top1")
+ raw_top1 = _finite_float(raw["macro_top1_agreement"], context="raw CORA top1")
+ primary_cvar = _finite_float(primary["macro_cvar95_kl"], context="CORA-C2 CVaR95")
+ static_cvar = _finite_float(static["macro_cvar95_kl"], context="static CVaR95")
+ adaptive_cvar = _finite_float(
+ adaptive["macro_cvar95_kl"], context="adaptive CVaR95"
+ )
+ static_lower = _paired_lower_bound(contrasts, static_name)
+ cqer_lower = _paired_lower_bound(contrasts, QUERY_EMA_PRIMARY)
+
+ churn = audit["churn"]
+ raw_churn_record = churn.get(CORA_RAW, {})
+ c2_churn_record = churn.get(CORA_C2_PRIMARY, {})
+ raw_normalized_churn = raw_churn_record.get("normalized_committed_churn")
+ c2_normalized_churn = c2_churn_record.get("normalized_committed_churn")
+ churn_reduction = (
+ (float(raw_normalized_churn) - float(c2_normalized_churn))
+ / float(raw_normalized_churn)
+ if isinstance(raw_normalized_churn, (int, float))
+ and not isinstance(raw_normalized_churn, bool)
+ and isinstance(c2_normalized_churn, (int, float))
+ and not isinstance(c2_normalized_churn, bool)
+ and float(raw_normalized_churn) > 0
+ else None
+ )
+
+ checks: dict[str, dict[str, Any]] = {
+ "exact_per_layer_quotas": {
+ "passed": bool(audit["quota_contract_passed"]) and exact_promotions,
+ "expected_quotas": {str(key): value for key, value in sorted(expected_quotas.items())},
+ "expected_total_promotions": expected_promotions,
+ "method_audits": audit["method_audits"],
+ },
+ "exact_packed_and_selector_bytes": {
+ "passed": exact_storage,
+ "expected_packed_bytes": expected_packed_bytes,
+ "expected_query_auxiliary_bytes": expected_query_auxiliary_bytes,
+ "expected_cora_auxiliary_bytes": expected_cora_auxiliary_bytes,
+ "observed": storage_audit,
+ },
+ "exact_stage_consume_handshake": {
+ "passed": bool(audit["handshake_contract_passed"]),
+ "method_audits": audit["method_audits"],
+ },
+ "all_values_finite": {"passed": all_values_finite},
+ "lower_nll_than_primary_comparators": {
+ "passed": primary_nll < min(static_nll, adaptive_nll, cqer_nll),
+ "primary": primary_nll,
+ "static": static_nll,
+ "adaptive": adaptive_nll,
+ "cqer": cqer_nll,
+ },
+ "relative_nll_reduction_vs_static": {
+ "passed": relative_static is not None and relative_static >= MIN_RELATIVE_NLL_REDUCTION,
+ "observed": relative_static,
+ "minimum": MIN_RELATIVE_NLL_REDUCTION,
+ },
+ "relative_nll_reduction_vs_adaptive": {
+ "passed": relative_adaptive is not None
+ and relative_adaptive >= CORA_MIN_RELATIVE_NLL_REDUCTION_VS_ADAPTIVE,
+ "observed": relative_adaptive,
+ "minimum": CORA_MIN_RELATIVE_NLL_REDUCTION_VS_ADAPTIVE,
+ },
+ "relative_nll_reduction_vs_cqer": {
+ "passed": relative_cqer is not None
+ and relative_cqer >= CORA_MIN_RELATIVE_NLL_REDUCTION_VS_CQER,
+ "observed": relative_cqer,
+ "minimum": CORA_MIN_RELATIVE_NLL_REDUCTION_VS_CQER,
+ },
+ "paired_lower_ci_vs_static": {
+ "passed": static_lower is not None and static_lower > 0,
+ "observed_lower_bound": static_lower,
+ "required": "strictly greater than zero",
+ },
+ "paired_lower_ci_vs_cqer": {
+ "passed": cqer_lower is not None and cqer_lower > 0,
+ "observed_lower_bound": cqer_lower,
+ "required": "strictly greater than zero",
+ },
+ "top1_margin_vs_static_adaptive": {
+ "passed": primary_top1 >= max(static_top1, adaptive_top1) - TOP1_DISADVANTAGE_MARGIN,
+ "observed_disadvantage": max(static_top1, adaptive_top1) - primary_top1,
+ "maximum": TOP1_DISADVANTAGE_MARGIN,
+ },
+ "top1_not_lower_than_cqer": {
+ "passed": primary_top1 >= cqer_top1,
+ "primary": primary_top1,
+ "cqer": cqer_top1,
+ },
+ "cvar95_margin_vs_static_adaptive": {
+ "passed": primary_cvar <= min(static_cvar, adaptive_cvar) + CVAR95_DISADVANTAGE_MARGIN,
+ "observed_disadvantage": primary_cvar - min(static_cvar, adaptive_cvar),
+ "maximum": CVAR95_DISADVANTAGE_MARGIN,
+ },
+ "raw_cora_relative_nll_reduction_vs_cqer": {
+ "passed": raw_relative_cqer is not None
+ and raw_relative_cqer >= CORA_RAW_MIN_RELATIVE_NLL_REDUCTION_VS_CQER,
+ "observed": raw_relative_cqer,
+ "minimum": CORA_RAW_MIN_RELATIVE_NLL_REDUCTION_VS_CQER,
+ },
+ "c2_churn_reduction_vs_raw": {
+ "passed": churn_reduction is not None
+ and churn_reduction >= CORA_C2_MIN_NORMALIZED_CHURN_REDUCTION,
+ "observed": churn_reduction,
+ "minimum": CORA_C2_MIN_NORMALIZED_CHURN_REDUCTION,
+ "raw": raw_churn_record,
+ "c2": c2_churn_record,
+ },
+ "c2_top1_not_lower_than_raw": {
+ "passed": primary_top1 >= raw_top1,
+ "primary": primary_top1,
+ "raw": raw_top1,
+ },
+ "c2_nll_worsening_vs_raw": {
+ "passed": c2_worsening_raw is not None
+ and c2_worsening_raw <= CORA_C2_MAX_RELATIVE_NLL_WORSENING_VS_RAW,
+ "observed": c2_worsening_raw,
+ "maximum": CORA_C2_MAX_RELATIVE_NLL_WORSENING_VS_RAW,
+ },
+ }
+ return {
+ "schema": "recurquant.experiment008-cora-c2-development-gate.v1",
+ "applicable": True,
+ "passed": all(check["passed"] is True for check in checks.values()),
+ "primary": CORA_C2_PRIMARY,
+ "comparators": {
+ "static": static_name,
+ "adaptive": ADAPTIVE_TARGET_FISHER,
+ "cqer": QUERY_EMA_PRIMARY,
+ "raw_cora": CORA_RAW,
+ "cqer_c2_ablation": QUERY_EMA_C2,
+ },
+ "checks": checks,
+ }
+
+
def primary_claim_text(primary_name: str) -> str:
"""Describe the actual primary without implying a missing loss selector."""
+ if primary_name == CORA_C2_PRIMARY:
+ return (
+ "The actual primary uses a causal diagonal observability predictor "
+ "derived from the Gated DeltaNet state transition, multiplies it by "
+ "aligned INT4-to-INT8 row squared-error reduction, and applies the frozen "
+ "Confirmation-2 admission rule under target-Fisher layer quotas."
+ )
+ if primary_name == CORA_RAW:
+ return (
+ "This ablation uses the same causal diagonal observability predictor "
+ "and row squared-error benefit as CORA-C2 without Confirmation-2."
+ )
+ if primary_name == QUERY_EMA_C2:
+ return (
+ "This ablation applies Confirmation-2 to the CQER-32 normalized-query-"
+ "energy EMA selector under the same fixed layer quotas."
+ )
if primary_name == QUERY_EMA_PRIMARY:
return (
"The actual primary uses target-directional-Fisher per-layer quotas "
@@ -1401,11 +2287,15 @@ def make_caches(
adaptive_plans: dict[str, ExactBudgetRowPlan],
rank_fusion_specs: Mapping[str, RankFusionCacheSpec] | None = None,
query_ema_plans: Mapping[str, ExactBudgetRowPlan] | None = None,
+ query_ema_c2_plans: Mapping[str, ExactBudgetRowPlan] | None = None,
+ cora_specs: Mapping[str, CoraCacheSpec] | None = None,
+ include_default_baselines: bool = True,
) -> dict[
str,
PackedRecurrentStateCache
| MixedPackedRecurrentStateCache
| AdaptiveMixedPackedRecurrentStateCache
+ | CoraMixedPackedRecurrentStateCache
| QueryEmaMixedPackedRecurrentStateCache
| RankFusedMixedPackedRecurrentStateCache,
]:
@@ -1414,12 +2304,17 @@ def make_caches(
PackedRecurrentStateCache
| MixedPackedRecurrentStateCache
| AdaptiveMixedPackedRecurrentStateCache
+ | CoraMixedPackedRecurrentStateCache
| QueryEmaMixedPackedRecurrentStateCache
| RankFusedMixedPackedRecurrentStateCache,
- ] = {
- "uniform_int4": create_qwen35_packed_cache(model, bits=4),
- "v02_layer0_static": create_qwen35_v02_mixed_cache(model),
- }
+ ] = (
+ {
+ "uniform_int4": create_qwen35_packed_cache(model, bits=4),
+ "v02_layer0_static": create_qwen35_v02_mixed_cache(model),
+ }
+ if include_default_baselines
+ else {}
+ )
for name, plan in plans.items():
caches[name] = create_qwen35_exact_budget_cache(model, plan=plan)
for name, plan in adaptive_plans.items():
@@ -1444,6 +2339,22 @@ def make_caches(
if name in caches:
raise ValueError(f"query-EMA cache name duplicates another method: {name}")
caches[name] = create_qwen35_query_ema_exact_budget_cache(model, plan=plan)
+ for name, plan in (query_ema_c2_plans or {}).items():
+ if name in caches:
+ raise ValueError(f"query-EMA C2 cache name duplicates another method: {name}")
+ caches[name] = create_qwen35_query_ema_exact_budget_cache(
+ model,
+ plan=plan,
+ confirmation_two=True,
+ )
+ for name, (plan, confirmation_two) in (cora_specs or {}).items():
+ if name in caches:
+ raise ValueError(f"CORA cache name duplicates another method: {name}")
+ caches[name] = create_qwen35_cora_exact_budget_cache(
+ model,
+ plan=plan,
+ confirmation_two=confirmation_two,
+ )
return caches
@@ -1470,6 +2381,9 @@ def evaluate_task(
adaptive_plans: dict[str, ExactBudgetRowPlan],
rank_fusion_specs: Mapping[str, RankFusionCacheSpec] | None = None,
query_ema_plans: Mapping[str, ExactBudgetRowPlan] | None = None,
+ query_ema_c2_plans: Mapping[str, ExactBudgetRowPlan] | None = None,
+ cora_specs: Mapping[str, CoraCacheSpec] | None = None,
+ include_default_baselines: bool = True,
) -> tuple[
dict[str, dict[str, float | int]],
dict[str, dict[str, float | int]],
@@ -1484,6 +2398,9 @@ def evaluate_task(
adaptive_plans=adaptive_plans,
rank_fusion_specs=rank_fusion_specs,
query_ema_plans=query_ema_plans,
+ query_ema_c2_plans=query_ema_c2_plans,
+ cora_specs=cora_specs,
+ include_default_baselines=include_default_baselines,
)
aligned_accumulators = {name: _TokenAccumulator.empty() for name in caches}
full_code_accumulators = {name: _TokenAccumulator.empty() for name in caches}
@@ -1493,12 +2410,22 @@ def evaluate_task(
for name, cache in caches.items()
if isinstance(cache, QueryEmaMixedPackedRecurrentStateCache)
}
- observer_context = (
+ cora_caches = {
+ name: cache
+ for name, cache in caches.items()
+ if isinstance(cache, CoraMixedPackedRecurrentStateCache)
+ }
+ query_observer_context = (
Qwen35QueryEnergyObserver(model, caches=list(query_ema_caches.values()))
if query_ema_caches
else nullcontext()
)
- with observer_context:
+ transition_observer_context = (
+ Qwen35TransitionObserver(model, caches=list(cora_caches.values()))
+ if cora_caches
+ else nullcontext()
+ )
+ with query_observer_context, transition_observer_context:
reference_output = model(
prompt_ids,
past_key_values=reference_cache,
@@ -1560,7 +2487,16 @@ def evaluate_task(
{name: accumulator.summary() for name, accumulator in aligned_accumulators.items()},
{name: accumulator.summary() for name, accumulator in full_code_accumulators.items()},
{name: cache.storage_summary() for name, cache in caches.items()},
- {name: cache.query_ema_diagnostics() for name, cache in query_ema_caches.items()},
+ {
+ **{
+ name: cache.query_ema_diagnostics()
+ for name, cache in query_ema_caches.items()
+ },
+ **{
+ name: cache.observability_diagnostics()
+ for name, cache in cora_caches.items()
+ },
+ },
reference_bytes,
)
@@ -1629,6 +2565,21 @@ def validate_heldout_repository_start(
raise ValueError("selector artifact was not generated from a clean worktree")
+def validate_cora_development_repository_start(
+ repository: Mapping[str, object],
+) -> None:
+ """Require committed, clean E008 code before spending its frozen window."""
+
+ commit = repository.get("commit")
+ if not isinstance(commit, str) or len(commit) != 40:
+ raise ValueError("Experiment 008 requires a resolved 40-character Git commit")
+ if repository.get("worktree_clean") is not True or repository.get("status") != []:
+ raise ValueError(
+ "Experiment 008 development requires a clean committed worktree before "
+ "dataset loading, tokenization, or model execution"
+ )
+
+
def validate_heldout_output_path(output: Path, repository_root: Path) -> None:
"""Require heldout output to stay outside Git state or under an ignore rule."""
@@ -1666,6 +2617,23 @@ def validate_heldout_repository_end(
raise RuntimeError("evaluator source files changed during heldout-calibration")
+def validate_cora_development_repository_end(
+ *,
+ start_repository: Mapping[str, object],
+ end_repository: Mapping[str, object],
+ start_source_hashes: Mapping[str, str],
+ end_source_hashes: Mapping[str, str],
+) -> None:
+ """Abort E008 evidence if its committed implementation changes mid-run."""
+
+ if end_repository.get("commit") != start_repository.get("commit"):
+ raise RuntimeError("Experiment 008 repository commit changed during evaluation")
+ if end_repository.get("worktree_clean") is not True or end_repository.get("status") != []:
+ raise RuntimeError("Experiment 008 worktree changed during evaluation")
+ if dict(end_source_hashes) != dict(start_source_hashes):
+ raise RuntimeError("Experiment 008 evaluator sources changed during evaluation")
+
+
def validate_storage_boundary_prerequisite(
evidence: Mapping[str, Any],
*,
@@ -1775,9 +2743,10 @@ def main() -> int:
raise ValueError("--calibration-offset must be non-negative")
if args.bootstrap_samples <= 0:
raise ValueError("--bootstrap-samples must be positive")
- if args.rank_fusion and args.query_ema:
- raise ValueError("--rank-fusion and --query-ema are mutually exclusive")
- heldout_calibration = args.calibration_offset > 0
+ if sum(bool(value) for value in (args.rank_fusion, args.query_ema, args.cora_c2)) > 1:
+ raise ValueError("--rank-fusion, --query-ema, and --cora-c2 are mutually exclusive")
+ cora_development = bool(args.cora_c2)
+ heldout_calibration = args.calibration_offset > 0 and not cora_development
repository_root = Path(__file__).resolve().parents[1]
repository_start = git_state()
source_hashes_start = source_file_hashes(repository_root)
@@ -1797,8 +2766,8 @@ def main() -> int:
validate_compatible_selector(selector, loss_selector)
if args.rank_fusion and loss_selector is None:
raise ValueError("--rank-fusion requires --loss-selector-artifact")
- if args.query_ema and loss_selector is None:
- raise ValueError("--query-ema requires --loss-selector-artifact")
+ if (args.query_ema or args.cora_c2) and loss_selector is None:
+ raise ValueError("--query-ema and --cora-c2 require --loss-selector-artifact")
storage_boundary: dict[str, Any] | None = None
storage_boundary_sha256: str | None = None
if args.storage_boundary_artifact is not None:
@@ -1810,16 +2779,27 @@ def main() -> int:
if loss_selector is not None:
selectors.append(loss_selector)
validate_cqer_selector_artifacts(enabled=args.query_ema, selectors=selectors)
+ validate_cora_selector_artifacts(enabled=args.cora_c2, selectors=selectors)
all_selector_task_ids = selector_task_ids(selectors)
task_records = selector["dataset"]["tasks"]
available_tasks = len(task_records)
- limit = available_tasks if args.limit is None else args.limit
+ limit = (
+ E008_DEVELOPMENT_LIMIT
+ if args.cora_c2 and args.limit is None
+ else available_tasks if args.limit is None else args.limit
+ )
validate_cqer_development_request(
enabled=args.query_ema,
offset=args.calibration_offset,
limit=limit,
bootstrap_samples=args.bootstrap_samples,
)
+ validate_cora_development_request(
+ enabled=args.cora_c2,
+ offset=args.calibration_offset,
+ limit=limit,
+ bootstrap_samples=args.bootstrap_samples,
+ )
validate_frozen_holdout_request(
offset=args.calibration_offset,
limit=limit,
@@ -1829,6 +2809,7 @@ def main() -> int:
storage_boundary_present=storage_boundary is not None,
rank_fusion_enabled=args.rank_fusion,
query_ema_enabled=args.query_ema,
+ cora_c2_enabled=args.cora_c2,
)
if heldout_calibration:
validate_heldout_repository_start(repository_start, selectors)
@@ -1839,6 +2820,9 @@ def main() -> int:
expected_commit=str(repository_start["commit"]),
expected_model=selector["model"],
)
+ if cora_development:
+ validate_cora_development_repository_start(repository_start)
+ validate_heldout_output_path(args.output, repository_root)
if args.calibration_offset == 0 and limit > available_tasks:
raise ValueError(
f"--limit={limit} exceeds the selector's {available_tasks} calibration tasks"
@@ -1849,9 +2833,23 @@ def main() -> int:
"calibration window exceeds the frozen ranked calibration population: "
f"{window_stop} > {MBPP_CALIBRATION_SIZE}"
)
- ranked_rows = load_mbpp_rows("calibration", limit=window_stop)
- selector_prefix_rows = tuple(ranked_rows[:FROZEN_HOLDOUT_LIMIT])
- if heldout_calibration or args.query_ema:
+ if cora_development:
+ targeted_rows = load_mbpp_rows_by_task_ids(
+ "calibration",
+ task_ids=(*CQER_DEVELOPMENT_TASK_IDS, *E008_DEVELOPMENT_TASK_IDS),
+ )
+ selector_prefix_rows = tuple(targeted_rows[:FROZEN_HOLDOUT_LIMIT])
+ rows = tuple(targeted_rows[FROZEN_HOLDOUT_LIMIT:])
+ else:
+ ranked_rows = load_mbpp_rows("calibration", limit=window_stop)
+ selector_prefix_rows = tuple(ranked_rows[:FROZEN_HOLDOUT_LIMIT])
+ rows = select_calibration_window(
+ ranked_rows,
+ offset=args.calibration_offset,
+ limit=limit,
+ selectors=selectors,
+ )
+ if heldout_calibration or args.query_ema or args.cora_c2:
selector_prefix_ids = [int(row["task_id"]) for row in selector_prefix_rows]
selector_prefix_manifest = mbpp_manifest(selector_prefix_rows, phase="calibration")
for selector_evidence in selectors:
@@ -1860,12 +2858,6 @@ def main() -> int:
ranked_prefix_manifest=selector_prefix_manifest,
ranked_prefix_task_ids=selector_prefix_ids,
)
- rows = select_calibration_window(
- ranked_rows,
- offset=args.calibration_offset,
- limit=limit,
- selectors=selectors,
- )
actual_ids = [row["task_id"] for row in rows]
validate_cqer_development_task_ids(enabled=args.query_ema, task_ids=actual_ids)
if args.calibration_offset == 0:
@@ -1882,6 +2874,11 @@ def main() -> int:
actual_manifest_sha256 = mbpp_manifest_sha256(rows, phase="calibration")
if actual_manifest_sha256 != mbpp_manifest_content_sha256(actual_manifest):
raise RuntimeError("calibration manifest helpers produced inconsistent hashes")
+ validate_cora_development_identity(
+ enabled=args.cora_c2,
+ task_ids=actual_ids,
+ content_manifest_sha256=actual_manifest_sha256,
+ )
horizon = int(selector["method"]["horizon"])
hrr_primary_name = f"hrr_h{horizon}"
@@ -1897,6 +2894,8 @@ def main() -> int:
adaptive_plans = {ADAPTIVE_H1: h1_plan}
rank_fusion_specs: dict[str, RankFusionCacheSpec] = {}
query_ema_plans: dict[str, ExactBudgetRowPlan] = {}
+ query_ema_c2_plans: dict[str, ExactBudgetRowPlan] = {}
+ cora_specs: dict[str, CoraCacheSpec] = {}
primary_name = hrr_primary_name
primary_plan = hrr_primary_plan
if loss_selector is not None:
@@ -1917,11 +2916,26 @@ def main() -> int:
if args.query_ema:
query_ema_plans = {QUERY_EMA_PRIMARY: primary_plan}
primary_name = QUERY_EMA_PRIMARY
+ if args.cora_c2:
+ # Experiment 008 freezes exactly six methods. Do not spend its
+ # preregistered window on inherited exploratory baselines.
+ plans = {
+ "target_directional_fisher_difference_int4": primary_plan,
+ }
+ adaptive_plans = {ADAPTIVE_TARGET_FISHER: primary_plan}
+ query_ema_plans = {QUERY_EMA_PRIMARY: primary_plan}
+ query_ema_c2_plans = {QUERY_EMA_C2: primary_plan}
+ cora_specs = {
+ CORA_RAW: (primary_plan, False),
+ CORA_C2_PRIMARY: (primary_plan, True),
+ }
+ primary_name = CORA_C2_PRIMARY
cqer_plan_quotas = {
layer_index: len(primary_plan.groups_for_layer(layer_index))
for layer_index, _, _ in primary_plan.score_shapes
}
validate_cqer_layer_quotas(enabled=args.query_ema, quotas=cqer_plan_quotas)
+ validate_cora_layer_quotas(enabled=args.cora_c2, quotas=cqer_plan_quotas)
torch.manual_seed(SEED)
device = select_device(args.device)
@@ -1954,8 +2968,15 @@ def main() -> int:
)
encoded_tasks, token_manifest = encode_task_rows(tokenizer, rows)
+ token_manifest_sha256 = sha256_bytes(canonical_json_bytes(token_manifest))
+ validate_cora_development_identity(
+ enabled=args.cora_c2,
+ task_ids=actual_ids,
+ content_manifest_sha256=actual_manifest_sha256,
+ token_manifest_sha256=token_manifest_sha256,
+ )
authenticated_selector_prefix: dict[str, object] | None = None
- if heldout_calibration or args.query_ema:
+ if heldout_calibration or args.query_ema or args.cora_c2:
_, selector_prefix_token_manifest = encode_task_rows(tokenizer, selector_prefix_rows)
for selector_evidence in selectors:
validate_actual_token_manifest(
@@ -1988,7 +3009,7 @@ def main() -> int:
per_task: dict[str, list[dict[str, float | int]]] = {}
per_task_full_code: dict[str, list[dict[str, float | int]]] = {}
- per_task_query_ema_diagnostics: dict[str, list[dict[str, object]]] = {}
+ per_task_selector_diagnostics: dict[str, list[dict[str, object]]] = {}
storage_anchor: dict[str, dict[str, int | float | bool]] | None = None
reference_state_bytes: int | None = None
with torch.inference_mode():
@@ -1999,7 +3020,7 @@ def main() -> int:
summaries,
full_code_summaries,
storage,
- query_ema_diagnostics,
+ selector_diagnostics,
task_reference_bytes,
) = evaluate_task(
model,
@@ -2009,6 +3030,9 @@ def main() -> int:
adaptive_plans=adaptive_plans,
rank_fusion_specs=rank_fusion_specs,
query_ema_plans=query_ema_plans,
+ query_ema_c2_plans=query_ema_c2_plans,
+ cora_specs=cora_specs,
+ include_default_baselines=not args.cora_c2,
)
if storage_anchor is None:
storage_anchor = storage
@@ -2021,8 +3045,8 @@ def main() -> int:
per_task_full_code.setdefault(name, []).append(
{"task_id": row["task_id"], **summary}
)
- for name, diagnostics in query_ema_diagnostics.items():
- per_task_query_ema_diagnostics.setdefault(name, []).append(
+ for name, diagnostics in selector_diagnostics.items():
+ per_task_selector_diagnostics.setdefault(name, []).append(
{"task_id": row["task_id"], "layers": diagnostics}
)
print(
@@ -2059,7 +3083,51 @@ def main() -> int:
plan.resident_bytes + expected_selector_auxiliary_bytes
):
raise RuntimeError(f"{name} selector-aware resident byte total is inconsistent")
- if storage_anchor["v02_layer0_static"]["resident_bytes"] != primary_plan.resident_bytes:
+ expected_previous_raw_mask_bytes = sum(
+ (heads * rows + 7) // 8 for _, heads, rows in primary_plan.score_shapes
+ )
+ if expected_selector_auxiliary_bytes != QUERY_SELECTOR_AUXILIARY_BYTES:
+ raise RuntimeError("query selector auxiliary bytes drifted from the frozen contract")
+ if expected_previous_raw_mask_bytes != C2_PREVIOUS_RAW_MASK_BYTES:
+ raise RuntimeError("Confirmation-2 mask bytes drifted from the frozen contract")
+ if (
+ expected_selector_auxiliary_bytes + expected_previous_raw_mask_bytes
+ != CORA_SELECTOR_AUXILIARY_BYTES
+ ):
+ raise RuntimeError("CORA-C2 selector bytes drifted from the frozen contract")
+ for name, plan in query_ema_c2_plans.items():
+ summary = storage_anchor[name]
+ expected_total_auxiliary = (
+ expected_selector_auxiliary_bytes + expected_previous_raw_mask_bytes
+ )
+ if summary["resident_bytes"] != plan.resident_bytes:
+ raise RuntimeError(f"{name} did not realize its exact packed-state byte plan")
+ if summary["selector_auxiliary_bytes"] != expected_total_auxiliary:
+ raise RuntimeError(f"{name} did not realize its frozen selector bytes")
+ if summary["resident_bytes_including_selector"] != (
+ plan.resident_bytes + expected_total_auxiliary
+ ):
+ raise RuntimeError(f"{name} selector-aware resident byte total is inconsistent")
+ for name, (plan, _confirmation_two) in cora_specs.items():
+ summary = storage_anchor[name]
+ # Raw CORA also retains its previous raw mask to report the frozen
+ # cumulative raw/committed churn ablation honestly.
+ expected_total_auxiliary = (
+ expected_selector_auxiliary_bytes + expected_previous_raw_mask_bytes
+ )
+ if summary["resident_bytes"] != plan.resident_bytes:
+ raise RuntimeError(f"{name} did not realize its exact packed-state byte plan")
+ if summary["selector_auxiliary_bytes"] != expected_total_auxiliary:
+ raise RuntimeError(f"{name} did not realize its frozen selector bytes")
+ if summary["resident_bytes_including_selector"] != (
+ plan.resident_bytes + expected_total_auxiliary
+ ):
+ raise RuntimeError(f"{name} selector-aware resident byte total is inconsistent")
+ if (
+ "v02_layer0_static" in storage_anchor
+ and storage_anchor["v02_layer0_static"]["resident_bytes"]
+ != primary_plan.resident_bytes
+ ):
raise RuntimeError("v0.2 static and the primary row plan are not equal-byte")
aggregates = aggregate_task_rows(per_task)
@@ -2078,6 +3146,13 @@ def main() -> int:
}
repository_end = git_state()
source_hashes_end = source_file_hashes(repository_root)
+ if cora_development:
+ validate_cora_development_repository_end(
+ start_repository=repository_start,
+ end_repository=repository_end,
+ start_source_hashes=source_hashes_start,
+ end_source_hashes=source_hashes_end,
+ )
development_gate: dict[str, Any] | None = None
if args.query_ema:
expected_quotas = dict(CQER_FROZEN_LAYER_QUOTAS)
@@ -2086,7 +3161,7 @@ def main() -> int:
per_task=per_task,
per_task_full_code=per_task_full_code,
storage=storage_anchor,
- query_ema_diagnostics=per_task_query_ema_diagnostics,
+ query_ema_diagnostics=per_task_selector_diagnostics,
expected_quotas=expected_quotas,
expected_packed_bytes=primary_plan.resident_bytes,
expected_selector_auxiliary_bytes=expected_selector_auxiliary_bytes,
@@ -2113,6 +3188,54 @@ def main() -> int:
check["passed"] is True
for check in development_gate["checks"].values()
)
+ if args.cora_c2:
+ development_gate = evaluate_cora_c2_development_gate(
+ aggregates=aggregates,
+ aggregates_full_code=aggregates_full_code,
+ per_task=per_task,
+ per_task_full_code=per_task_full_code,
+ storage=storage_anchor,
+ selector_diagnostics=per_task_selector_diagnostics,
+ contrasts=contrasts,
+ token_manifest=token_manifest,
+ expected_quotas=dict(CQER_FROZEN_LAYER_QUOTAS),
+ expected_packed_bytes=primary_plan.resident_bytes,
+ expected_query_auxiliary_bytes=expected_selector_auxiliary_bytes,
+ expected_cora_auxiliary_bytes=(
+ expected_selector_auxiliary_bytes + expected_previous_raw_mask_bytes
+ ),
+ )
+ development_gate["checks"]["authenticated_repository_sources_and_manifests"] = {
+ "passed": (
+ repository_start["commit"] == repository_end["commit"]
+ and repository_start["worktree_clean"] is True
+ and repository_end["worktree_clean"] is True
+ and source_hashes_start == source_hashes_end
+ and actual_ids == list(E008_DEVELOPMENT_TASK_IDS)
+ and actual_manifest_sha256
+ == E008_DEVELOPMENT_CONTENT_MANIFEST_SHA256
+ and token_manifest_sha256 == E008_DEVELOPMENT_TOKEN_MANIFEST_SHA256
+ ),
+ "repository_commit_stable": (
+ repository_start["commit"] == repository_end["commit"]
+ ),
+ "worktree_clean_at_start_and_end": (
+ repository_start["worktree_clean"] is True
+ and repository_end["worktree_clean"] is True
+ ),
+ "source_hashes_stable": source_hashes_start == source_hashes_end,
+ "selector_artifacts_authenticated": True,
+ "development_content_manifest_authenticated": (
+ actual_manifest_sha256 == E008_DEVELOPMENT_CONTENT_MANIFEST_SHA256
+ ),
+ "development_token_manifest_authenticated": (
+ token_manifest_sha256 == E008_DEVELOPMENT_TOKEN_MANIFEST_SHA256
+ ),
+ "protected_window_8_16_evaluated": False,
+ }
+ development_gate["passed"] = all(
+ check["passed"] is True for check in development_gate["checks"].values()
+ )
if heldout_calibration:
validate_heldout_repository_end(
start_repository=repository_start,
@@ -2142,25 +3265,37 @@ def main() -> int:
else:
heldout_gate = {
"schema": (
- "recurquant.experiment007-heldout-gate.v1"
- if args.query_ema
+ "recurquant.experiment008-heldout-gate.v1"
+ if args.cora_c2
else (
- "recurquant.experiment006-heldout-gate.v1"
- if args.rank_fusion
- else "recurquant.experiment005-heldout-gate.v1"
+ "recurquant.experiment007-heldout-gate.v1"
+ if args.query_ema
+ else (
+ "recurquant.experiment006-heldout-gate.v1"
+ if args.rank_fusion
+ else "recurquant.experiment005-heldout-gate.v1"
+ )
)
),
"applicable": False,
"passed": None,
"reason": (
- "same-calibration diagnostics cannot satisfy the frozen Experiment 007 "
- "holdout gate; CQER-32 positive offsets remain disabled"
- if args.query_ema
+ "the frozen Experiment 008 development diagnostic cannot satisfy its "
+ "independent numerical or protected holdout prerequisites; ranked "
+ "window [8, 16) remains closed"
+ if args.cora_c2
else (
- "same-calibration diagnostics cannot satisfy the frozen Experiment 006 "
- "holdout gate; rank-fusion positive offsets remain disabled"
- if args.rank_fusion
- else "same-calibration diagnostics cannot satisfy the frozen holdout gate"
+ "same-calibration diagnostics cannot satisfy the frozen Experiment 007 "
+ "holdout gate; CQER-32 positive offsets remain disabled"
+ if args.query_ema
+ else (
+ "same-calibration diagnostics cannot satisfy the frozen Experiment 006 "
+ "holdout gate; rank-fusion positive offsets remain disabled"
+ if args.rank_fusion
+ else (
+ "same-calibration diagnostics cannot satisfy the frozen holdout gate"
+ )
+ )
)
),
}
@@ -2193,6 +3328,8 @@ def main() -> int:
quality_artifact_kind = "recurquant_rank_fusion_same_calibration_quality_diagnostic"
if args.query_ema:
quality_artifact_kind = "recurquant_cqer32_same_calibration_quality_diagnostic"
+ if args.cora_c2:
+ quality_artifact_kind = "recurquant_cora_c2_development_quality_diagnostic"
prerequisite_artifacts: dict[str, dict[str, Any]] = {}
if storage_boundary is not None:
assert args.storage_boundary_artifact is not None
@@ -2217,6 +3354,17 @@ def main() -> int:
"excludes the prompt-to-first-code-token prediction because no stored "
"quantized recurrent state can affect that output."
)
+ elif args.cora_c2:
+ claim_boundary = (
+ "This is the frozen Experiment 008 development diagnostic on ranked "
+ "calibration window [16, 32), disjoint from the authenticated selector "
+ "prefix and from prior quality windows. Ranked window [8, 16) remains "
+ "protected and was not tokenized or evaluated. This result cannot establish "
+ "confirmation generalization, novelty, speed, state of the art, or a "
+ f"breakthrough. {primary_claim} The primary metric excludes the "
+ "prompt-to-first-code-token prediction because no stored quantized "
+ "recurrent state can affect that output."
+ )
else:
claim_boundary = (
"The selector and quality diagnostic use the same MBPP calibration tasks. "
@@ -2244,11 +3392,14 @@ def main() -> int:
"phase": "calibration",
"manifest_sha256": actual_manifest_sha256,
"content_manifest_sha256": actual_manifest_sha256,
+ "token_manifest_sha256": token_manifest_sha256,
"manifest": actual_manifest,
"task_count": len(rows),
"tasks": token_manifest,
"selection_mode": (
- "heldout_calibration" if heldout_calibration else "selector_task_prefix"
+ "experiment008_development"
+ if args.cora_c2
+ else "heldout_calibration" if heldout_calibration else "selector_task_prefix"
),
"selection_window": {
"calibration_offset": args.calibration_offset,
@@ -2258,8 +3409,27 @@ def main() -> int:
},
"evaluation_task_ids": actual_ids,
"selector_task_ids": sorted(all_selector_task_ids),
- "selector_task_prefix": not heldout_calibration and limit < available_tasks,
- "disjoint_from_all_selector_artifacts": (True if heldout_calibration else None),
+ "selector_task_prefix": (
+ False
+ if args.cora_c2
+ else not heldout_calibration and limit < available_tasks
+ ),
+ "disjoint_from_all_selector_artifacts": (
+ True if heldout_calibration or args.cora_c2 else None
+ ),
+ "development_identity": (
+ {
+ "ordered_task_ids": list(E008_DEVELOPMENT_TASK_IDS),
+ "content_manifest_sha256": E008_DEVELOPMENT_CONTENT_MANIFEST_SHA256,
+ "token_manifest_sha256": E008_DEVELOPMENT_TOKEN_MANIFEST_SHA256,
+ "actual_token_manifest_sha256": token_manifest_sha256,
+ "identity_authenticated_before_model_load": True,
+ "protected_window": [8, 16],
+ "protected_window_tokenized_or_evaluated": False,
+ }
+ if args.cora_c2
+ else None
+ ),
"authenticated_selector_prefix": authenticated_selector_prefix,
},
"metric_contract": {
@@ -2268,16 +3438,26 @@ def main() -> int:
"excluded_from_primary": "prompt-to-first-code-token prediction",
"secondary": "full reference-code tokens, including the unaffected first token",
"contrasts": "paired task-macro baseline delta NLL minus primary delta NLL",
+ "cvar95_kl": (
+ "per-task token CVaR95 KL, followed by an equal-weight task macro mean"
+ ),
+ "maximum_kl": "maximum token KL across every evaluated task",
},
"methods": list(per_task),
"primary": primary_name,
"adaptive_policy_contracts": {
- ADAPTIVE_H1: {
- "selection": "per-update aligned INT4-to-INT8 row MSE reduction",
- "layer_quota_source": "hrr_h1 selector plan",
- "batch_size": 1,
- "resident_bytes": adaptive_plans[ADAPTIVE_H1].resident_bytes,
- },
+ **(
+ {
+ ADAPTIVE_H1: {
+ "selection": "per-update aligned INT4-to-INT8 row MSE reduction",
+ "layer_quota_source": "hrr_h1 selector plan",
+ "batch_size": 1,
+ "resident_bytes": adaptive_plans[ADAPTIVE_H1].resident_bytes,
+ }
+ }
+ if ADAPTIVE_H1 in adaptive_plans
+ else {}
+ ),
**(
{
ADAPTIVE_TARGET_FISHER: {
@@ -2333,6 +3513,73 @@ def main() -> int:
}
for name, plan in query_ema_plans.items()
},
+ **{
+ name: {
+ "selection": (
+ "causal normalized-query-energy EMA multiplied by per-write "
+ "aligned INT4-to-INT8 row-MSE reduction with Confirmation-2"
+ ),
+ "query_normalization": "q / sqrt(sum(q^2) + 1e-6), computed in FP32",
+ "query_energy_half_life_tokens": QUERY_EMA_HALF_LIFE,
+ "confirmation_two": True,
+ "confirmation_rule": (
+ "incumbents remain eligible; new rows require consecutive raw "
+ "top-quota membership on two state writes"
+ ),
+ "layer_quota_source": (
+ "target_directional_fisher_difference_int4 selector plan"
+ ),
+ "batch_size": 1,
+ "packed_recurrent_state_bytes": plan.resident_bytes,
+ "selector_auxiliary_bytes": (
+ expected_selector_auxiliary_bytes
+ + expected_previous_raw_mask_bytes
+ ),
+ "resident_bytes_including_selector": (
+ plan.resident_bytes
+ + expected_selector_auxiliary_bytes
+ + expected_previous_raw_mask_bytes
+ ),
+ }
+ for name, plan in query_ema_c2_plans.items()
+ },
+ **{
+ name: {
+ "selection": (
+ "causal trace-normalized diagonal Gated DeltaNet observability "
+ "predictor multiplied by aligned per-write INT4-to-INT8 row "
+ "squared-error reduction"
+ ),
+ "observability_recurrence": (
+ "diag(q*q^T + T^T diag(p) T), T=exp(g)(I-beta kk^T)"
+ ),
+ "query_key_l2norm_epsilon": 1e-6,
+ "read_query_scale": "1 / sqrt(key_row_width)",
+ "workspace_dtype": "torch.float64",
+ "persistent_observability_dtype": "torch.float32",
+ "trace_normalization": "across all heads and key rows per layer/token",
+ "confirmation_two": confirmation_two,
+ "layer_quota_source": (
+ "target_directional_fisher_difference_int4 selector plan"
+ ),
+ "batch_size": 1,
+ "packed_recurrent_state_bytes": plan.resident_bytes,
+ "observability_diagonal_bytes": expected_selector_auxiliary_bytes,
+ "previous_raw_mask_bytes": (
+ expected_previous_raw_mask_bytes
+ ),
+ "selector_auxiliary_bytes": (
+ expected_selector_auxiliary_bytes
+ + expected_previous_raw_mask_bytes
+ ),
+ "resident_bytes_including_selector": (
+ plan.resident_bytes
+ + expected_selector_auxiliary_bytes
+ + expected_previous_raw_mask_bytes
+ ),
+ }
+ for name, (plan, confirmation_two) in cora_specs.items()
+ },
},
"storage": {
"fp32_reference_recurrent_state_bytes": reference_state_bytes,
@@ -2345,7 +3592,17 @@ def main() -> int:
"development_gate": development_gate,
"per_task": per_task,
"per_task_full_code_secondary": per_task_full_code,
- "query_ema_diagnostics": per_task_query_ema_diagnostics,
+ "selector_diagnostics": per_task_selector_diagnostics,
+ "query_ema_diagnostics": {
+ name: records
+ for name, records in per_task_selector_diagnostics.items()
+ if name in {QUERY_EMA_PRIMARY, QUERY_EMA_C2}
+ },
+ "observability_diagnostics": {
+ name: records
+ for name, records in per_task_selector_diagnostics.items()
+ if name in {CORA_RAW, CORA_C2_PRIMARY}
+ },
"environment": {
"python": sys.version,
"platform": platform.platform(),
diff --git a/src/recurquant/__init__.py b/src/recurquant/__init__.py
index f9ec07e..9683976 100644
--- a/src/recurquant/__init__.py
+++ b/src/recurquant/__init__.py
@@ -45,6 +45,8 @@
)
from .packed_cache import (
AdaptiveMixedPackedRecurrentStateCache,
+ CoraMixedPackedLinearAttentionLayer,
+ CoraMixedPackedRecurrentStateCache,
MixedPackedRecurrentStateCache,
PackedRecurrentStateCache,
QueryEmaMixedPackedLinearAttentionLayer,
@@ -61,6 +63,7 @@
from .query_energy import Qwen35QueryEnergyObserver
from .qwen35 import (
create_qwen35_adaptive_exact_budget_cache,
+ create_qwen35_cora_exact_budget_cache,
create_qwen35_exact_budget_cache,
create_qwen35_packed_cache,
create_qwen35_query_ema_exact_budget_cache,
@@ -68,10 +71,13 @@
create_qwen35_v02_mixed_cache,
)
from .row_policy import ExactBudgetRowPlan, RowLocation, select_rows_exact_budget
+from .transition_observer import Qwen35TransitionObserver
__all__ = [
"AdaptiveMixedPackedRecurrentStateCache",
"BitwidthHorizonReadRisk",
+ "CoraMixedPackedLinearAttentionLayer",
+ "CoraMixedPackedRecurrentStateCache",
"DirectionalDerivativeCheck",
"ExactBudgetRowPlan",
"FiniteDifferencePoint",
@@ -87,6 +93,7 @@
"QueryEmaMixedPackedLinearAttentionLayer",
"QueryEmaMixedPackedRecurrentStateCache",
"Qwen35QueryEnergyObserver",
+ "Qwen35TransitionObserver",
"RankFusedMixedPackedRecurrentStateCache",
"PhysicalMetricRun",
"PhysicalRowPromotionOracleResult",
@@ -103,6 +110,7 @@
"TaskMacroSensitivitySummary",
"check_directional_derivative",
"create_qwen35_adaptive_exact_budget_cache",
+ "create_qwen35_cora_exact_budget_cache",
"create_qwen35_exact_budget_cache",
"create_qwen35_packed_cache",
"create_qwen35_query_ema_exact_budget_cache",
diff --git a/src/recurquant/packed_cache.py b/src/recurquant/packed_cache.py
index 75c4545..3428601 100644
--- a/src/recurquant/packed_cache.py
+++ b/src/recurquant/packed_cache.py
@@ -888,6 +888,106 @@ def _precision_mask(
_QUERY_EMA_CHUNK_ATOL = 2e-8
_QUERY_EMA_CHUNK_RTOL = 2e-6
+_CORA_L2NORM_EPS = 1e-6
+
+
+def _pack_row_mask(mask: torch.Tensor) -> torch.Tensor:
+ """Pack a canonical flattened boolean row mask, least-significant bit first."""
+
+ flat = mask.detach().reshape(-1).to(torch.uint8)
+ padding = (-flat.numel()) % 8
+ if padding:
+ flat = torch.nn.functional.pad(flat, (0, padding))
+ chunks = flat.reshape(-1, 8).to(torch.int16)
+ shifts = torch.arange(8, dtype=torch.int16, device=flat.device)
+ weights = torch.bitwise_left_shift(torch.ones_like(shifts), shifts)
+ return (chunks * weights).sum(dim=1).to(torch.uint8).contiguous()
+
+
+def _unpack_row_mask(packed: torch.Tensor, total_rows: int) -> torch.Tensor:
+ """Inverse of :func:`_pack_row_mask` for a known logical row count."""
+
+ shifts = torch.arange(8, dtype=torch.int16, device=packed.device)
+ expanded = torch.bitwise_right_shift(packed.to(torch.int16).unsqueeze(1), shifts)
+ return torch.bitwise_and(expanded, 1).reshape(-1)[:total_rows].to(torch.bool)
+
+
+def _stable_top_mask(
+ scores: torch.Tensor,
+ quota: int,
+ *,
+ eligible: torch.Tensor | None = None,
+) -> torch.Tensor:
+ """Return a stable exact-quota mask, optionally restricted to eligible rows."""
+
+ flat_scores = scores.reshape(-1)
+ total = flat_scores.numel()
+ mask = torch.zeros(total, dtype=torch.bool, device=flat_scores.device)
+ if quota == 0:
+ return mask
+ if quota == total and eligible is None:
+ return torch.ones_like(mask)
+ ranked_scores = flat_scores
+ if eligible is not None:
+ flat_eligible = eligible.reshape(-1)
+ if flat_eligible.dtype != torch.bool or flat_eligible.numel() != total:
+ raise RuntimeError("confirmation eligibility mask has invalid shape or dtype")
+ if int(flat_eligible.sum().item()) < quota:
+ raise RuntimeError("confirmation eligibility contains fewer rows than the quota")
+ ranked_scores = torch.where(
+ flat_eligible,
+ flat_scores,
+ torch.full_like(flat_scores, -torch.inf),
+ )
+ ranked = torch.argsort(ranked_scores, descending=True, stable=True)
+ mask[ranked[:quota]] = True
+ return mask
+
+
+def _score_boundary(
+ scores: torch.Tensor,
+ selected: torch.Tensor,
+) -> tuple[float | None, float | None, float | None]:
+ """Return cutoff, absolute gap, and scale-normalized gap for one mask.
+
+ The normalized gap is ``(cutoff - best_unselected) / max(abs(cutoff),
+ abs(best_unselected), 1e-12)``. This diagnostic definition is deterministic;
+ it does not participate in row selection.
+ """
+
+ flat_scores = scores.reshape(-1)
+ flat_selected = selected.reshape(-1)
+ if not flat_selected.any().item():
+ return None, None, None
+ cutoff = flat_scores[flat_selected].min()
+ if flat_selected.all().item():
+ return float(cutoff.item()), None, None
+ best_unselected = flat_scores[~flat_selected].max()
+ gap = cutoff - best_unselected
+ scale = torch.maximum(cutoff.abs(), best_unselected.abs()).clamp_min(1e-12)
+ return float(cutoff.item()), float(gap.item()), float((gap / scale).item())
+
+
+def _confirmation_two_mask(
+ *,
+ raw_mask: torch.Tensor,
+ scores: torch.Tensor,
+ quota: int,
+ enabled: bool,
+ has_history: bool,
+ previous_committed_mask: torch.Tensor | None,
+ previous_raw_mask_packed: torch.Tensor | None,
+) -> torch.Tensor:
+ """Apply the frozen two-consecutive-hit admission rule."""
+
+ if not enabled or not has_history:
+ return raw_mask.clone()
+ if previous_committed_mask is None or previous_raw_mask_packed is None:
+ raise RuntimeError("confirmation-2 history is incomplete")
+ previous_raw = _unpack_row_mask(previous_raw_mask_packed, raw_mask.numel())
+ eligible = previous_committed_mask.reshape(-1) | (previous_raw & raw_mask.reshape(-1))
+ return _stable_top_mask(scores, quota, eligible=eligible)
+
@dataclass(slots=True)
class _PendingQueryObservation:
@@ -895,6 +995,14 @@ class _PendingQueryObservation:
token_count: int
candidate_ema: torch.Tensor
consumed: bool = False
+ raw_mask: torch.Tensor | None = None
+ committed_mask: torch.Tensor | None = None
+ raw_cutoff_score: float | None = None
+ raw_score_gap: float | None = None
+ raw_normalized_gap: float | None = None
+ committed_cutoff_score: float | None = None
+ committed_score_gap: float | None = None
+ committed_normalized_gap: float | None = None
class QueryEmaMixedPackedLinearAttentionLayer(AdaptiveMixedPackedLinearAttentionLayer):
@@ -913,9 +1021,12 @@ class QueryEmaMixedPackedLinearAttentionLayer(AdaptiveMixedPackedLinearAttention
def __init__(self, **kwargs: object) -> None:
super().__init__(**kwargs)
+ self.confirmation_two = False
self.query_energy_ema: torch.Tensor | None = None
+ self.previous_raw_mask_packed: torch.Tensor | None = None
self._pending_query_observation: _PendingQueryObservation | None = None
self.query_observations_committed = 0
+ self.query_observations_staged = 0
self.query_tokens_observed = 0
self.last_query_token_count: int | None = None
self.last_cutoff_score_margin: float | None = None
@@ -923,6 +1034,26 @@ def __init__(self, **kwargs: object) -> None:
self.last_mask_churn: int | None = None
self._candidate_cutoff_score_margin: float | None = None
self._has_query_selection_history = False
+ self.mask_transition_count = 0
+ self.raw_xor_churn_total = 0
+ self.committed_xor_churn_total = 0
+ self.admissions_total = 0
+ self.dwell_total = 0
+ self.last_raw_cutoff_score: float | None = None
+ self.last_raw_score_gap: float | None = None
+ self.last_raw_normalized_gap: float | None = None
+ self.last_committed_cutoff_score: float | None = None
+ self.last_committed_score_gap: float | None = None
+ self.last_committed_normalized_gap: float | None = None
+
+ def configure_confirmation_two(self, enabled: bool) -> None:
+ """Enable the frozen two-hit admission ablation before the first write."""
+
+ if not isinstance(enabled, bool):
+ raise TypeError("confirmation_two must be a bool")
+ if self._update_count or self._pending_query_observation is not None:
+ raise RuntimeError("confirmation_two must be configured before staging or writing")
+ self.confirmation_two = enabled
def stage_query_observation(
self,
@@ -1087,21 +1218,8 @@ def _precision_mask(
total_groups = self.expected_heads * self.expected_rows
quota = len(self.high_precision_group_indices)
- mask = torch.zeros(
- total_groups,
- dtype=torch.bool,
- device=recurrent_states.device,
- )
pending.consumed = True
self._candidate_cutoff_score_margin = None
- if quota == 0:
- return mask.reshape(self.expected_heads, self.expected_rows)
- if quota == total_groups:
- return torch.ones_like(mask).reshape(
- self.expected_heads,
- self.expected_rows,
- )
-
with torch.no_grad():
source = recurrent_states.detach().to(torch.float32)
low = quantize_dequantize(recurrent_states, low_spec).tensor.to(torch.float32)
@@ -1116,12 +1234,44 @@ def _precision_mask(
f"layer {self.layer_index} query-weighted selector scores "
"must be finite"
)
- ranked = torch.argsort(scores, descending=True, stable=True)
- mask[ranked[:quota]] = True
- self._candidate_cutoff_score_margin = float(
- (scores[ranked[quota - 1]] - scores[ranked[quota]]).item()
+ raw_mask = _stable_top_mask(scores, quota)
+ previous = self.packed_states[0]
+ previous_committed = (
+ previous.high_precision_mask().reshape(-1)
+ if (
+ self.confirmation_two
+ and previous is not None
+ and self._has_query_selection_history
+ )
+ else None
)
- return mask.reshape(self.expected_heads, self.expected_rows)
+ committed_mask = _confirmation_two_mask(
+ raw_mask=raw_mask,
+ scores=scores,
+ quota=quota,
+ enabled=self.confirmation_two,
+ has_history=self._has_query_selection_history,
+ previous_committed_mask=previous_committed,
+ previous_raw_mask_packed=self.previous_raw_mask_packed,
+ )
+ pending.raw_mask = raw_mask
+ pending.committed_mask = committed_mask
+ (
+ pending.raw_cutoff_score,
+ pending.raw_score_gap,
+ pending.raw_normalized_gap,
+ ) = _score_boundary(scores, raw_mask)
+ (
+ pending.committed_cutoff_score,
+ pending.committed_score_gap,
+ pending.committed_normalized_gap,
+ ) = _score_boundary(scores, committed_mask)
+ if 0 < quota < total_groups:
+ ranked = torch.argsort(scores, descending=True, stable=True)
+ self._candidate_cutoff_score_margin = float(
+ (scores[ranked[quota - 1]] - scores[ranked[quota]]).item()
+ )
+ return committed_mask.reshape(self.expected_heads, self.expected_rows)
except Exception:
self.discard_pending_query_observation()
raise
@@ -1139,8 +1289,30 @@ def _store(self, recurrent_states: torch.Tensor, state_idx: int) -> torch.Tensor
previous_device = self.device
previous_update_count = self._update_count
previous_history = self._has_query_selection_history
+ previous_raw_mask_packed = self.previous_raw_mask_packed
callback = self.on_update
+ callback_owner = getattr(callback, "__self__", None)
+ callback_evidence = getattr(callback_owner, "update_evidence", None)
+ callback_update_index = getattr(callback_owner, "_update_index", None)
+ evidence_checkpoint = (
+ (len(callback_evidence), callback_update_index)
+ if isinstance(callback_evidence, list) and isinstance(callback_update_index, int)
+ else None
+ )
+ previous_raw: torch.Tensor | None = None
+ candidate_raw_packed: torch.Tensor | None = None
+ raw_xor = committed_xor = admissions = dwell = None
try:
+ previous_raw = (
+ _unpack_row_mask(
+ previous_raw_mask_packed,
+ self.expected_heads * self.expected_rows,
+ )
+ if self.confirmation_two
+ and previous_history
+ and previous_raw_mask_packed is not None
+ else None
+ )
previous_mask = (
previous.high_precision_mask().reshape(-1)
if previous is not None and previous_history
@@ -1155,7 +1327,12 @@ def _store(self, recurrent_states: torch.Tensor, state_idx: int) -> torch.Tensor
finally:
self.on_update = callback
pending = self._pending_query_observation
- if pending is None or not pending.consumed:
+ if (
+ pending is None
+ or not pending.consumed
+ or pending.raw_mask is None
+ or pending.committed_mask is None
+ ):
raise RuntimeError(
f"layer {self.layer_index} packed a state without consuming exactly "
"one query observation"
@@ -1164,6 +1341,8 @@ def _store(self, recurrent_states: torch.Tensor, state_idx: int) -> torch.Tensor
if current is None:
raise RuntimeError(f"layer {self.layer_index} packed state disappeared")
current_mask = current.high_precision_mask().reshape(-1)
+ if not torch.equal(current_mask, pending.committed_mask):
+ raise RuntimeError("packed precision mask differs from query committed mask")
overlap = (
None
if previous_mask is None
@@ -1174,6 +1353,17 @@ def _store(self, recurrent_states: torch.Tensor, state_idx: int) -> torch.Tensor
if previous_mask is None
else int((previous_mask ^ current_mask).sum().item())
)
+ if self.confirmation_two:
+ if pending.raw_mask is None:
+ raise RuntimeError("query C2 selector did not produce a raw mask")
+ candidate_raw_packed = _pack_row_mask(pending.raw_mask)
+ if previous_history:
+ if previous_raw is None or previous_mask is None:
+ raise RuntimeError("query C2 transition history is incomplete")
+ raw_xor = int((previous_raw ^ pending.raw_mask).sum().item())
+ committed_xor = int((previous_mask ^ current_mask).sum().item())
+ dwell = int((previous_mask & current_mask).sum().item())
+ admissions = int((~previous_mask & current_mask).sum().item())
if callback is not None:
callback(
self.layer_index,
@@ -1194,24 +1384,58 @@ def _store(self, recurrent_states: torch.Tensor, state_idx: int) -> torch.Tensor
self.device = previous_device
self._update_count = previous_update_count
self._has_query_selection_history = previous_history
+ self.previous_raw_mask_packed = previous_raw_mask_packed
+ if evidence_checkpoint is not None:
+ evidence_length, update_index = evidence_checkpoint
+ del callback_evidence[evidence_length:]
+ callback_owner._update_index = update_index
self.discard_pending_query_observation()
raise
self.query_energy_ema = pending.candidate_ema
+ self.previous_raw_mask_packed = (
+ candidate_raw_packed if self.confirmation_two else None
+ )
+ self.query_observations_staged += 1
self.query_observations_committed += 1
self.query_tokens_observed += pending.token_count
self.last_query_token_count = pending.token_count
self.last_cutoff_score_margin = self._candidate_cutoff_score_margin
self.last_mask_overlap = overlap
self.last_mask_churn = churn
+ self.last_raw_cutoff_score = pending.raw_cutoff_score
+ self.last_raw_score_gap = pending.raw_score_gap
+ self.last_raw_normalized_gap = pending.raw_normalized_gap
+ self.last_committed_cutoff_score = pending.committed_cutoff_score
+ self.last_committed_score_gap = pending.committed_score_gap
+ self.last_committed_normalized_gap = pending.committed_normalized_gap
+ if self.confirmation_two and previous_history:
+ assert raw_xor is not None
+ assert committed_xor is not None
+ assert admissions is not None
+ assert dwell is not None
+ self.mask_transition_count += 1
+ self.raw_xor_churn_total += raw_xor
+ self.committed_xor_churn_total += committed_xor
+ self.admissions_total += admissions
+ self.dwell_total += dwell
self._has_query_selection_history = True
self.discard_pending_query_observation()
return materialized
def selector_auxiliary_bytes(self) -> int:
- if self.query_energy_ema is None:
- return 0
- return self.query_energy_ema.numel() * self.query_energy_ema.element_size()
+ ema_bytes = (
+ 0
+ if self.query_energy_ema is None
+ else self.query_energy_ema.numel() * self.query_energy_ema.element_size()
+ )
+ raw_mask_bytes = (
+ 0
+ if not self.confirmation_two or self.previous_raw_mask_packed is None
+ else self.previous_raw_mask_packed.numel()
+ * self.previous_raw_mask_packed.element_size()
+ )
+ return ema_bytes + raw_mask_bytes
def query_ema_diagnostics(self) -> dict[str, int | float | bool | str | None]:
packed = self.packed_states[0]
@@ -1223,15 +1447,24 @@ def query_ema_diagnostics(self) -> dict[str, int | float | bool | str | None]:
bytes(packed.precision_mask.detach().cpu().contiguous().tolist())
).hexdigest()
current_selected_count = packed.high_precision_groups
+ quota = len(self.high_precision_group_indices)
+ churn_denominator = 2 * quota * self.mask_transition_count
return {
"layer_index": self.layer_index,
"quota": len(self.high_precision_group_indices),
+ "confirmation_two": self.confirmation_two,
+ "selection_method": (
+ "query_ema32_confirm2_mse_target_fisher_quota"
+ if self.confirmation_two
+ else "query_ema32_weighted_aligned_mse_reduction"
+ ),
"ema_decay": self.query_ema_decay,
"l2norm_eps": self.query_l2norm_eps,
"initial_ema_value": 1.0 / self.expected_rows,
"chunk_equivalence_atol": self.query_ema_chunk_atol,
"chunk_equivalence_rtol": self.query_ema_chunk_rtol,
"state_updates": self._update_count,
+ "observations_staged": self.query_observations_staged,
"observations_committed": self.query_observations_committed,
"tokens_observed": self.query_tokens_observed,
"last_query_token_count": self.last_query_token_count,
@@ -1240,6 +1473,46 @@ def query_ema_diagnostics(self) -> dict[str, int | float | bool | str | None]:
"last_mask_churn": self.last_mask_churn,
"current_selected_count": current_selected_count,
"current_mask_sha256": current_mask_sha256,
+ "raw_mask_sha256": (
+ current_mask_sha256
+ if self.previous_raw_mask_packed is None
+ else hashlib.sha256(
+ bytes(
+ self.previous_raw_mask_packed.detach()
+ .cpu()
+ .contiguous()
+ .tolist()
+ )
+ ).hexdigest()
+ ),
+ "committed_mask_sha256": current_mask_sha256,
+ "mask_transition_count": self.mask_transition_count,
+ "raw_xor_churn_total": self.raw_xor_churn_total,
+ "committed_xor_churn_total": self.committed_xor_churn_total,
+ "admissions_total": self.admissions_total,
+ "dwell_total": self.dwell_total,
+ "raw_normalized_churn": (
+ self.raw_xor_churn_total / churn_denominator
+ if churn_denominator
+ else None
+ ),
+ "committed_normalized_churn": (
+ self.committed_xor_churn_total / churn_denominator
+ if churn_denominator
+ else None
+ ),
+ "last_raw_cutoff_score": self.last_raw_cutoff_score,
+ "last_raw_score_gap": self.last_raw_score_gap,
+ "last_raw_normalized_gap": self.last_raw_normalized_gap,
+ "last_committed_cutoff_score": self.last_committed_cutoff_score,
+ "last_committed_score_gap": self.last_committed_score_gap,
+ "last_committed_normalized_gap": self.last_committed_normalized_gap,
+ "previous_raw_mask_bytes": (
+ 0
+ if self.previous_raw_mask_packed is None
+ else self.previous_raw_mask_packed.numel()
+ * self.previous_raw_mask_packed.element_size()
+ ),
"pending_observation": self._pending_query_observation is not None,
"selector_auxiliary_bytes": self.selector_auxiliary_bytes(),
}
@@ -1251,12 +1524,25 @@ def reset(self) -> None:
self.query_energy_ema.fill_(1.0 / self.expected_rows)
self._update_count = 0
self._has_query_selection_history = False
+ self.previous_raw_mask_packed = None
self.query_observations_committed = 0
+ self.query_observations_staged = 0
self.query_tokens_observed = 0
self.last_query_token_count = None
self.last_cutoff_score_margin = None
self.last_mask_overlap = None
self.last_mask_churn = None
+ self.mask_transition_count = 0
+ self.raw_xor_churn_total = 0
+ self.committed_xor_churn_total = 0
+ self.admissions_total = 0
+ self.dwell_total = 0
+ self.last_raw_cutoff_score = None
+ self.last_raw_score_gap = None
+ self.last_raw_normalized_gap = None
+ self.last_committed_cutoff_score = None
+ self.last_committed_score_gap = None
+ self.last_committed_normalized_gap = None
def _reject_pending_transfer(self, operation: str) -> None:
if self._pending_query_observation is None:
@@ -1272,6 +1558,8 @@ def offload(self) -> None:
super().offload()
if self.query_energy_ema is not None:
self.query_energy_ema = self.query_energy_ema.to("cpu")
+ if self.previous_raw_mask_packed is not None:
+ self.previous_raw_mask_packed = self.previous_raw_mask_packed.to("cpu")
def prefetch(self) -> None:
self._reject_pending_transfer("prefetch")
@@ -1285,6 +1573,632 @@ def prefetch(self) -> None:
self.device,
non_blocking=True,
)
+ if (
+ self.previous_raw_mask_packed is not None
+ and self.device is not None
+ and self.previous_raw_mask_packed.device != torch.device(self.device)
+ ):
+ self.previous_raw_mask_packed = self.previous_raw_mask_packed.to(
+ self.device,
+ non_blocking=True,
+ )
+
+
+@dataclass(slots=True)
+class _PendingTransitionObservation:
+ update_index: int
+ token_count: int
+ candidate_diagonal: torch.Tensor
+ consumed: bool = False
+ raw_mask: torch.Tensor | None = None
+ committed_mask: torch.Tensor | None = None
+ scores: torch.Tensor | None = None
+ raw_cutoff_score: float | None = None
+ raw_score_gap: float | None = None
+ raw_normalized_gap: float | None = None
+ committed_cutoff_score: float | None = None
+ committed_score_gap: float | None = None
+ committed_normalized_gap: float | None = None
+
+
+class CoraMixedPackedLinearAttentionLayer(MixedPackedLinearAttentionLayer):
+ """Causal observability row selector with optional two-hit confirmation.
+
+ The persistent selector state is a trace-normalized FP32 diagonal over all
+ ``[head, key_row]`` entries. Every candidate transition is computed in an
+ FP64 workspace and forms one transaction with the packed recurrent state,
+ previous raw mask, diagnostics, and cache-level update evidence.
+ """
+
+ l2norm_eps = _CORA_L2NORM_EPS
+
+ def __init__(self, **kwargs: object) -> None:
+ super().__init__(**kwargs)
+ if self.number_of_states != 1:
+ raise ValueError("CORA currently requires exactly one recurrent state per layer")
+ self.confirmation_two = True
+ self.observability_diagonal: torch.Tensor | None = None
+ self.previous_raw_mask_packed: torch.Tensor | None = None
+ self._pending_transition_observation: _PendingTransitionObservation | None = None
+ self._has_observability_history = False
+ self.transition_observations_staged = 0
+ self.transition_observations_consumed = 0
+ self.transition_tokens_processed = 0
+ self.mask_transition_count = 0
+ self.cumulative_raw_xor_churn = 0
+ self.cumulative_committed_xor_churn = 0
+ self.cumulative_dwell_count = 0
+ self.cumulative_admission_count = 0
+ self.last_raw_mask_overlap: int | None = None
+ self.last_committed_mask_overlap: int | None = None
+ self.last_dwell_count: int | None = None
+ self.last_admission_count: int | None = None
+ self.last_raw_cutoff_score: float | None = None
+ self.last_raw_score_gap: float | None = None
+ self.last_raw_normalized_gap: float | None = None
+ self.last_committed_cutoff_score: float | None = None
+ self.last_committed_score_gap: float | None = None
+ self.last_committed_normalized_gap: float | None = None
+ self.last_token_count: int | None = None
+
+ def configure_confirmation_two(self, enabled: bool) -> None:
+ """Configure raw CORA or CORA-C2 before the first observation."""
+
+ if not isinstance(enabled, bool):
+ raise TypeError("confirmation_two must be a bool")
+ if self._update_count or self._pending_transition_observation is not None:
+ raise RuntimeError("confirmation_two must be configured before staging or writing")
+ self.confirmation_two = enabled
+
+ def _initial_diagonal(self, device: torch.device) -> torch.Tensor:
+ return torch.full(
+ (self.expected_heads, self.expected_rows),
+ 1.0 / (self.expected_heads * self.expected_rows),
+ dtype=torch.float32,
+ device=device,
+ )
+
+ @staticmethod
+ def _validate_transition_tensor(
+ value: object,
+ *,
+ name: str,
+ shape: tuple[int, ...],
+ ) -> torch.Tensor:
+ if not isinstance(value, torch.Tensor):
+ raise TypeError(f"{name} observation must be a tensor")
+ if tuple(value.shape) != shape:
+ raise ValueError(
+ f"{name} observation must have shape {shape}; got {tuple(value.shape)}"
+ )
+ if not value.is_floating_point():
+ raise TypeError(f"{name} observation must be floating point")
+ if value.device.type == "meta":
+ raise ValueError(f"{name} observation must be materialized")
+ if not torch.isfinite(value).all().item():
+ raise ValueError(f"{name} observation must be finite")
+ return value
+
+ def stage_transition_observation(
+ self,
+ query: torch.Tensor,
+ key: torch.Tensor,
+ log_decay: torch.Tensor,
+ beta: torch.Tensor,
+ *,
+ l2norm_eps: float = _CORA_L2NORM_EPS,
+ ) -> None:
+ """Stage one chronological Qwen kernel transition sequence.
+
+ ``query`` and ``key`` are ``[1, tokens, heads, key_rows]``;
+ ``log_decay`` and ``beta`` are ``[1, tokens, heads]``. The observer calls
+ this only after the corresponding state kernel succeeds.
+ """
+
+ if self._pending_transition_observation is not None:
+ self.discard_pending_transition_observation()
+ raise RuntimeError(
+ f"layer {self.layer_index} received a duplicate transition observation; "
+ "the pending observation was discarded"
+ )
+ if isinstance(l2norm_eps, bool) or not isinstance(l2norm_eps, Real):
+ raise TypeError("l2norm_eps must be a real number")
+ epsilon = float(l2norm_eps)
+ if not math.isfinite(epsilon) or epsilon != _CORA_L2NORM_EPS:
+ raise ValueError("CORA l2norm_eps is frozen at 1e-6")
+ if not isinstance(query, torch.Tensor) or query.ndim != 4:
+ actual = tuple(query.shape) if isinstance(query, torch.Tensor) else type(query).__name__
+ raise ValueError(f"query observation must have rank 4; got {actual}")
+ token_count = query.shape[1]
+ vector_shape = (1, token_count, self.expected_heads, self.expected_rows)
+ gate_shape = (1, token_count, self.expected_heads)
+ if token_count <= 0:
+ raise ValueError("transition observation must contain at least one token")
+ query = self._validate_transition_tensor(query, name="query", shape=vector_shape)
+ key = self._validate_transition_tensor(key, name="key", shape=vector_shape)
+ log_decay = self._validate_transition_tensor(
+ log_decay,
+ name="log_decay",
+ shape=gate_shape,
+ )
+ beta = self._validate_transition_tensor(beta, name="beta", shape=gate_shape)
+ devices = {query.device, key.device, log_decay.device, beta.device}
+ if len(devices) != 1:
+ raise ValueError("all transition observations must use the same device")
+ if (
+ self.observability_diagonal is not None
+ and self.observability_diagonal.device != query.device
+ ):
+ raise ValueError(
+ "transition observation and observability diagonal must share a device"
+ )
+ if self.device is not None and torch.device(self.device) != query.device:
+ raise ValueError("transition observation and recurrent state must share a device")
+
+ with torch.no_grad():
+ previous = self.observability_diagonal
+ if previous is None:
+ previous = self._initial_diagonal(query.device)
+ p = previous.detach().to(torch.float64)
+ q64 = query.detach().squeeze(0).to(torch.float64)
+ k64 = key.detach().squeeze(0).to(torch.float64)
+ g64 = log_decay.detach().squeeze(0).to(torch.float64)
+ beta64 = beta.detach().squeeze(0).to(torch.float64)
+ for token_index in range(token_count):
+ q_token = q64[token_index]
+ k_token = k64[token_index]
+ q_hat = q_token / torch.sqrt(
+ q_token.square().sum(dim=-1, keepdim=True) + epsilon
+ )
+ k_hat = k_token / torch.sqrt(
+ k_token.square().sum(dim=-1, keepdim=True) + epsilon
+ )
+ q_star_squared = q_hat.square() / self.expected_rows
+ u = k_hat.square()
+ c = (p * u).sum(dim=-1, keepdim=True)
+ beta_token = beta64[token_index].unsqueeze(-1)
+ decay_squared = torch.exp(2.0 * g64[token_index]).unsqueeze(-1)
+ cross = torch.clamp(c - p * u, min=0.0)
+ candidate = q_star_squared + decay_squared * (
+ p * (1.0 - beta_token * u).square()
+ + beta_token.square() * u * cross
+ )
+ trace = candidate.sum()
+ if not torch.isfinite(candidate).all().item() or not torch.isfinite(trace).item():
+ raise RuntimeError(
+ f"layer {self.layer_index} CORA recurrence produced non-finite values"
+ )
+ if trace.item() <= 0.0:
+ raise RuntimeError(
+ f"layer {self.layer_index} CORA recurrence produced non-positive trace"
+ )
+ p = candidate / trace
+ candidate_diagonal = p.to(torch.float32)
+ if not torch.isfinite(candidate_diagonal).all().item():
+ raise RuntimeError(
+ f"layer {self.layer_index} CORA FP32 diagonal is non-finite"
+ )
+ if candidate_diagonal.sum().item() <= 0.0:
+ raise RuntimeError(
+ f"layer {self.layer_index} CORA FP32 diagonal has non-positive trace"
+ )
+
+ self._pending_transition_observation = _PendingTransitionObservation(
+ update_index=self._update_count,
+ token_count=token_count,
+ candidate_diagonal=candidate_diagonal,
+ )
+
+ def discard_pending_transition_observation(self) -> None:
+ """Idempotently discard the current uncommitted transition candidate."""
+
+ self._pending_transition_observation = None
+
+ def _precision_mask(
+ self,
+ recurrent_states: torch.Tensor,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ ) -> torch.Tensor:
+ MixedPackedLinearAttentionLayer._precision_mask(
+ self,
+ recurrent_states,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ if recurrent_states.shape[0] != 1:
+ raise ValueError(
+ "CORA mixed cache selection requires batch size 1; "
+ f"got {recurrent_states.shape[0]}"
+ )
+ pending = self._pending_transition_observation
+ if pending is None:
+ raise RuntimeError(
+ f"layer {self.layer_index} has no staged transition observation for "
+ f"state update {self._update_count}"
+ )
+ try:
+ if pending.consumed:
+ raise RuntimeError("transition observation was consumed more than once")
+ if pending.update_index != self._update_count:
+ raise RuntimeError(
+ f"layer {self.layer_index} has stale transition observation for update "
+ f"{pending.update_index}; expected {self._update_count}"
+ )
+ expected_shape = (self.expected_heads, self.expected_rows)
+ diagonal = pending.candidate_diagonal
+ if tuple(diagonal.shape) != expected_shape or diagonal.dtype != torch.float32:
+ raise RuntimeError(
+ f"staged observability diagonal must be FP32 with shape {expected_shape}"
+ )
+ if diagonal.device != recurrent_states.device:
+ raise ValueError("observability diagonal and recurrent state must share a device")
+ if not torch.isfinite(diagonal).all().item() or diagonal.sum().item() <= 0.0:
+ raise RuntimeError(
+ "staged observability diagonal must be finite with positive trace"
+ )
+
+ with torch.no_grad():
+ source = recurrent_states.detach().to(torch.float32)
+ low = quantize_dequantize(recurrent_states, low_spec).tensor.to(torch.float32)
+ high = quantize_dequantize(recurrent_states, high_spec).tensor.to(torch.float32)
+ # The protocol freezes physical row SSE, not an averaged row MSE.
+ benefit = (
+ (low - source).square().sum(dim=-1)
+ - (high - source).square().sum(dim=-1)
+ ).reshape(self.expected_heads, self.expected_rows)
+ scores = (diagonal * benefit).reshape(-1)
+ if not torch.isfinite(scores).all().item():
+ raise RuntimeError("CORA row scores must be finite")
+ quota = len(self.high_precision_group_indices)
+ raw_mask = _stable_top_mask(scores, quota)
+ previous = self.packed_states[0]
+ previous_committed = (
+ previous.high_precision_mask().reshape(-1)
+ if previous is not None and self._has_observability_history
+ else None
+ )
+ committed_mask = _confirmation_two_mask(
+ raw_mask=raw_mask,
+ scores=scores,
+ quota=quota,
+ enabled=self.confirmation_two,
+ has_history=self._has_observability_history,
+ previous_committed_mask=previous_committed,
+ previous_raw_mask_packed=self.previous_raw_mask_packed,
+ )
+ (
+ pending.raw_cutoff_score,
+ pending.raw_score_gap,
+ pending.raw_normalized_gap,
+ ) = _score_boundary(scores, raw_mask)
+ (
+ pending.committed_cutoff_score,
+ pending.committed_score_gap,
+ pending.committed_normalized_gap,
+ ) = _score_boundary(scores, committed_mask)
+ pending.scores = scores
+ pending.raw_mask = raw_mask
+ pending.committed_mask = committed_mask
+ pending.consumed = True
+ return committed_mask.reshape(self.expected_heads, self.expected_rows)
+ except Exception:
+ self.discard_pending_transition_observation()
+ raise
+
+ @staticmethod
+ def _evidence_checkpoint(
+ callback: MixedUpdateCallback | None,
+ ) -> tuple[object, int, int] | None:
+ owner = getattr(callback, "__self__", None)
+ evidence = getattr(owner, "update_evidence", None)
+ update_index = getattr(owner, "_update_index", None)
+ if isinstance(evidence, list) and isinstance(update_index, int):
+ return owner, len(evidence), update_index
+ return None
+
+ @staticmethod
+ def _restore_evidence(checkpoint: tuple[object, int, int] | None) -> None:
+ if checkpoint is None:
+ return
+ owner, length, update_index = checkpoint
+ evidence = owner.update_evidence
+ del evidence[length:]
+ owner._update_index = update_index
+
+ def _store(self, recurrent_states: torch.Tensor, state_idx: int) -> torch.Tensor:
+ if state_idx not in self.packed_states:
+ self.discard_pending_transition_observation()
+ raise IndexError(
+ f"layer {self.layer_index} state_idx {state_idx} is outside "
+ f"[0, {self.number_of_states})"
+ )
+ previous_packed = self.packed_states[state_idx]
+ previous_initialized = self.is_recurrent_states_initialized[state_idx]
+ previous_dtype = self.dtype
+ previous_device = self.device
+ previous_update_count = self._update_count
+ previous_history = self._has_observability_history
+ previous_diagonal = self.observability_diagonal
+ previous_raw_packed = self.previous_raw_mask_packed
+ previous_committed: torch.Tensor | None = None
+ previous_raw: torch.Tensor | None = None
+ try:
+ previous_committed = (
+ previous_packed.high_precision_mask().reshape(-1)
+ if previous_packed is not None and previous_history
+ else None
+ )
+ previous_raw = (
+ _unpack_row_mask(
+ previous_raw_packed,
+ self.expected_heads * self.expected_rows,
+ )
+ if previous_raw_packed is not None and previous_history
+ else None
+ )
+ except Exception:
+ self.discard_pending_transition_observation()
+ raise
+ callback = self.on_update
+ evidence_checkpoint = self._evidence_checkpoint(callback)
+ candidate_raw_packed: torch.Tensor | None = None
+ raw_xor = committed_xor = raw_overlap = committed_overlap = admissions = None
+ try:
+ if previous_history and (previous_raw is None or previous_committed is None):
+ raise RuntimeError("CORA transition history is incomplete")
+ self.on_update = None
+ try:
+ materialized = super()._store(recurrent_states, state_idx)
+ finally:
+ self.on_update = callback
+ pending = self._pending_transition_observation
+ if (
+ pending is None
+ or not pending.consumed
+ or pending.raw_mask is None
+ or pending.committed_mask is None
+ or pending.scores is None
+ ):
+ raise RuntimeError(
+ f"layer {self.layer_index} packed a state without consuming exactly "
+ "one complete CORA transition observation"
+ )
+ current = self.packed_states[state_idx]
+ if current is None:
+ raise RuntimeError("CORA packed state disappeared")
+ current_mask = current.high_precision_mask().reshape(-1)
+ quota = len(self.high_precision_group_indices)
+ if not torch.equal(current_mask, pending.committed_mask):
+ raise RuntimeError("packed precision mask differs from CORA committed mask")
+ if (
+ int(pending.raw_mask.sum().item()) != quota
+ or int(current_mask.sum().item()) != quota
+ ):
+ raise RuntimeError("CORA raw or committed mask violates the exact quota")
+ candidate_raw_packed = _pack_row_mask(pending.raw_mask)
+ if previous_history:
+ assert previous_raw is not None
+ assert previous_committed is not None
+ raw_xor = int((previous_raw ^ pending.raw_mask).sum().item())
+ committed_xor = int(
+ (previous_committed ^ pending.committed_mask).sum().item()
+ )
+ raw_overlap = int((previous_raw & pending.raw_mask).sum().item())
+ committed_overlap = int(
+ (previous_committed & pending.committed_mask).sum().item()
+ )
+ admissions = int(
+ (~previous_committed & pending.committed_mask).sum().item()
+ )
+ if callback is not None:
+ callback(
+ self.layer_index,
+ state_idx,
+ recurrent_states,
+ current,
+ materialized,
+ )
+ except Exception:
+ self.on_update = callback
+ self.packed_states[state_idx] = previous_packed
+ self.is_recurrent_states_initialized[state_idx] = previous_initialized
+ self.dtype = previous_dtype
+ self.device = previous_device
+ self._update_count = previous_update_count
+ self._has_observability_history = previous_history
+ self.observability_diagonal = previous_diagonal
+ self.previous_raw_mask_packed = previous_raw_packed
+ self._restore_evidence(evidence_checkpoint)
+ self.discard_pending_transition_observation()
+ raise
+
+ # No mutation of selector state or counters occurs before every packing,
+ # mask, materialization, and evidence postcondition above has succeeded.
+ assert candidate_raw_packed is not None
+ self.observability_diagonal = pending.candidate_diagonal
+ self.previous_raw_mask_packed = candidate_raw_packed
+ self.transition_observations_staged += 1
+ self.transition_observations_consumed += 1
+ self.transition_tokens_processed += pending.token_count
+ self.last_token_count = pending.token_count
+ if previous_history:
+ assert raw_xor is not None
+ assert committed_xor is not None
+ assert raw_overlap is not None
+ assert committed_overlap is not None
+ assert admissions is not None
+ self.mask_transition_count += 1
+ self.cumulative_raw_xor_churn += raw_xor
+ self.cumulative_committed_xor_churn += committed_xor
+ self.cumulative_dwell_count += committed_overlap
+ self.cumulative_admission_count += admissions
+ self.last_raw_mask_overlap = raw_overlap
+ self.last_committed_mask_overlap = committed_overlap
+ self.last_dwell_count = committed_overlap
+ self.last_admission_count = admissions
+ else:
+ self.last_raw_mask_overlap = None
+ self.last_committed_mask_overlap = None
+ self.last_dwell_count = None
+ self.last_admission_count = None
+ self.last_raw_cutoff_score = pending.raw_cutoff_score
+ self.last_raw_score_gap = pending.raw_score_gap
+ self.last_raw_normalized_gap = pending.raw_normalized_gap
+ self.last_committed_cutoff_score = pending.committed_cutoff_score
+ self.last_committed_score_gap = pending.committed_score_gap
+ self.last_committed_normalized_gap = pending.committed_normalized_gap
+ self._has_observability_history = True
+ self.discard_pending_transition_observation()
+ return materialized
+
+ def observability_diagonal_bytes(self) -> int:
+ if self.observability_diagonal is None:
+ return 0
+ return self.observability_diagonal.numel() * self.observability_diagonal.element_size()
+
+ def previous_raw_mask_bytes(self) -> int:
+ if self.previous_raw_mask_packed is None:
+ return 0
+ return (
+ self.previous_raw_mask_packed.numel()
+ * self.previous_raw_mask_packed.element_size()
+ )
+
+ def selector_auxiliary_bytes(self) -> int:
+ return self.observability_diagonal_bytes() + self.previous_raw_mask_bytes()
+
+ @staticmethod
+ def _mask_sha256(packed_mask: torch.Tensor | None) -> str | None:
+ if packed_mask is None:
+ return None
+ return hashlib.sha256(
+ bytes(packed_mask.detach().cpu().contiguous().tolist())
+ ).hexdigest()
+
+ def observability_diagnostics(self) -> dict[str, int | float | bool | str | None]:
+ packed = self.packed_states[0]
+ committed_packed = None if packed is None else packed.precision_mask
+ quota = len(self.high_precision_group_indices)
+ transitions = self.mask_transition_count
+ denominator = 2 * quota * transitions
+ diagonal = self.observability_diagonal
+ return {
+ "layer_index": self.layer_index,
+ "selection_method": (
+ "causal_observability_confirm2_mse_target_fisher_quota"
+ if self.confirmation_two
+ else "causal_observability_mse_target_fisher_quota"
+ ),
+ "confirmation_two": self.confirmation_two,
+ "quota": quota,
+ "current_selected_count": 0 if packed is None else packed.high_precision_groups,
+ "raw_mask_sha256": self._mask_sha256(self.previous_raw_mask_packed),
+ "committed_mask_sha256": self._mask_sha256(committed_packed),
+ "observations_staged": self.transition_observations_staged,
+ "observations_committed": self.transition_observations_consumed,
+ "tokens_observed": self.transition_tokens_processed,
+ "last_token_count": self.last_token_count,
+ "mask_transition_count": transitions,
+ "raw_xor_churn_total": self.cumulative_raw_xor_churn,
+ "committed_xor_churn_total": self.cumulative_committed_xor_churn,
+ "raw_normalized_churn": (
+ self.cumulative_raw_xor_churn / denominator if denominator else None
+ ),
+ "committed_normalized_churn": (
+ self.cumulative_committed_xor_churn / denominator if denominator else None
+ ),
+ "last_raw_mask_overlap": self.last_raw_mask_overlap,
+ "last_committed_mask_overlap": self.last_committed_mask_overlap,
+ "last_dwell_count": self.last_dwell_count,
+ "last_admission_count": self.last_admission_count,
+ "dwell_total": self.cumulative_dwell_count,
+ "admissions_total": self.cumulative_admission_count,
+ "last_raw_cutoff_score": self.last_raw_cutoff_score,
+ "last_raw_score_gap": self.last_raw_score_gap,
+ "last_raw_normalized_gap": self.last_raw_normalized_gap,
+ "last_committed_cutoff_score": self.last_committed_cutoff_score,
+ "last_committed_score_gap": self.last_committed_score_gap,
+ "last_committed_normalized_gap": self.last_committed_normalized_gap,
+ "observability_trace": None if diagonal is None else float(diagonal.sum().item()),
+ "observability_min": None if diagonal is None else float(diagonal.min().item()),
+ "observability_max": None if diagonal is None else float(diagonal.max().item()),
+ "observability_dtype": None if diagonal is None else str(diagonal.dtype),
+ "l2norm_eps": self.l2norm_eps,
+ "state_updates": self._update_count,
+ "pending_observation": self._pending_transition_observation is not None,
+ "observability_diagonal_bytes": self.observability_diagonal_bytes(),
+ "previous_raw_mask_bytes": self.previous_raw_mask_bytes(),
+ "selector_auxiliary_bytes": self.selector_auxiliary_bytes(),
+ }
+
+ def reset(self) -> None:
+ super().reset()
+ self.discard_pending_transition_observation()
+ if self.observability_diagonal is not None:
+ self.observability_diagonal.fill_(
+ 1.0 / (self.expected_heads * self.expected_rows)
+ )
+ self.previous_raw_mask_packed = None
+ self._update_count = 0
+ self._has_observability_history = False
+ self.transition_observations_staged = 0
+ self.transition_observations_consumed = 0
+ self.transition_tokens_processed = 0
+ self.mask_transition_count = 0
+ self.cumulative_raw_xor_churn = 0
+ self.cumulative_committed_xor_churn = 0
+ self.cumulative_dwell_count = 0
+ self.cumulative_admission_count = 0
+ self.last_raw_mask_overlap = None
+ self.last_committed_mask_overlap = None
+ self.last_dwell_count = None
+ self.last_admission_count = None
+ self.last_raw_cutoff_score = None
+ self.last_raw_score_gap = None
+ self.last_raw_normalized_gap = None
+ self.last_committed_cutoff_score = None
+ self.last_committed_score_gap = None
+ self.last_committed_normalized_gap = None
+ self.last_token_count = None
+
+ def _reject_pending_transfer(self, operation: str) -> None:
+ if self._pending_transition_observation is None:
+ return
+ self.discard_pending_transition_observation()
+ raise RuntimeError(
+ f"layer {self.layer_index} cannot {operation} with a pending transition "
+ "observation; it was discarded"
+ )
+
+ def offload(self) -> None:
+ self._reject_pending_transfer("offload")
+ super().offload()
+ if self.observability_diagonal is not None:
+ self.observability_diagonal = self.observability_diagonal.to("cpu")
+ if self.previous_raw_mask_packed is not None:
+ self.previous_raw_mask_packed = self.previous_raw_mask_packed.to("cpu")
+
+ def prefetch(self) -> None:
+ self._reject_pending_transfer("prefetch")
+ super().prefetch()
+ if self.device is None:
+ return
+ device = torch.device(self.device)
+ if self.observability_diagonal is not None and self.observability_diagonal.device != device:
+ self.observability_diagonal = self.observability_diagonal.to(
+ device,
+ non_blocking=True,
+ )
+ if (
+ self.previous_raw_mask_packed is not None
+ and self.previous_raw_mask_packed.device != device
+ ):
+ self.previous_raw_mask_packed = self.previous_raw_mask_packed.to(
+ device,
+ non_blocking=True,
+ )
def _validate_static_rank_weight(value: object) -> float:
@@ -1592,6 +2506,36 @@ class QueryEmaMixedPackedRecurrentStateCache(MixedPackedRecurrentStateCache):
_mixed_layer_class = QueryEmaMixedPackedLinearAttentionLayer
selection_method = "query_ema32_weighted_aligned_mse_reduction"
+ def __init__(
+ self,
+ config: object,
+ *,
+ plan: ExactBudgetRowPlan,
+ rounding: RoundingMode = "nearest",
+ seed: int = 2339,
+ record_evidence: bool = False,
+ confirmation_two: bool = False,
+ ) -> None:
+ if not isinstance(confirmation_two, bool):
+ raise TypeError("confirmation_two must be a bool")
+ super().__init__(
+ config,
+ plan=plan,
+ rounding=rounding,
+ seed=seed,
+ record_evidence=record_evidence,
+ )
+ self.confirmation_two = confirmation_two
+ self.selection_method = (
+ "query_ema32_confirm2_mse_target_fisher_quota"
+ if confirmation_two
+ else "query_ema32_weighted_aligned_mse_reduction"
+ )
+ for _, layer in self.mixed_packed_layers():
+ if not isinstance(layer, QueryEmaMixedPackedLinearAttentionLayer):
+ raise RuntimeError("query-EMA cache contains an incompatible layer")
+ layer.configure_confirmation_two(confirmation_two)
+
def _query_ema_layer(self, layer_index: int) -> QueryEmaMixedPackedLinearAttentionLayer:
if isinstance(layer_index, bool) or not isinstance(layer_index, int):
raise TypeError("layer_index must be an integer")
@@ -1660,6 +2604,135 @@ def storage_summary(self) -> dict[str, int | float | bool]:
return summary
+class CoraMixedPackedRecurrentStateCache(MixedPackedRecurrentStateCache):
+ """CORA exact-quota cache; Confirmation-2 is enabled by default."""
+
+ _mixed_layer_class = CoraMixedPackedLinearAttentionLayer
+ selection_method = "causal_observability_confirm2_mse_target_fisher_quota"
+
+ def __init__(
+ self,
+ config: object,
+ *,
+ plan: ExactBudgetRowPlan,
+ rounding: RoundingMode = "nearest",
+ seed: int = 2339,
+ record_evidence: bool = False,
+ confirmation_two: bool = True,
+ ) -> None:
+ if not isinstance(confirmation_two, bool):
+ raise TypeError("confirmation_two must be a bool")
+ super().__init__(
+ config,
+ plan=plan,
+ rounding=rounding,
+ seed=seed,
+ record_evidence=record_evidence,
+ )
+ self.confirmation_two = confirmation_two
+ self.selection_method = (
+ "causal_observability_confirm2_mse_target_fisher_quota"
+ if confirmation_two
+ else "causal_observability_mse_target_fisher_quota"
+ )
+ for _, layer in self.mixed_packed_layers():
+ if not isinstance(layer, CoraMixedPackedLinearAttentionLayer):
+ raise RuntimeError("CORA cache contains an incompatible layer")
+ layer.configure_confirmation_two(confirmation_two)
+
+ def _cora_layer(self, layer_index: int) -> CoraMixedPackedLinearAttentionLayer:
+ if isinstance(layer_index, bool) or not isinstance(layer_index, int):
+ raise TypeError("layer_index must be an integer")
+ if layer_index < 0 or layer_index >= len(self.layers):
+ raise IndexError(f"layer_index {layer_index} is outside this cache")
+ layer = self.layers[layer_index]
+ if not isinstance(layer, CoraMixedPackedLinearAttentionLayer):
+ raise ValueError(f"layer {layer_index} is not a CORA linear-attention layer")
+ return layer
+
+ def stage_transition_observation(
+ self,
+ layer_index: int,
+ query: torch.Tensor,
+ key: torch.Tensor,
+ log_decay: torch.Tensor,
+ beta: torch.Tensor,
+ *,
+ l2norm_eps: float = _CORA_L2NORM_EPS,
+ ) -> None:
+ """Stage kernel q/k/log-decay/beta for the matching layer write."""
+
+ self._cora_layer(layer_index).stage_transition_observation(
+ query,
+ key,
+ log_decay,
+ beta,
+ l2norm_eps=l2norm_eps,
+ )
+
+ def discard_pending_transition_observations(self, layer_index: int) -> None:
+ """Idempotently discard a layer's staged transition observation."""
+
+ self._cora_layer(layer_index).discard_pending_transition_observation()
+
+ def observability_diagonal_bytes(self) -> int:
+ return sum(
+ layer.observability_diagonal_bytes()
+ for _, layer in self.mixed_packed_layers()
+ if isinstance(layer, CoraMixedPackedLinearAttentionLayer)
+ )
+
+ def previous_raw_mask_bytes(self) -> int:
+ return sum(
+ layer.previous_raw_mask_bytes()
+ for _, layer in self.mixed_packed_layers()
+ if isinstance(layer, CoraMixedPackedLinearAttentionLayer)
+ )
+
+ def selector_auxiliary_bytes(self) -> int:
+ return self.observability_diagonal_bytes() + self.previous_raw_mask_bytes()
+
+ def observability_diagnostics(
+ self,
+ ) -> list[dict[str, int | float | bool | str | None]]:
+ return [
+ layer.observability_diagnostics()
+ for _, layer in self.mixed_packed_layers()
+ if isinstance(layer, CoraMixedPackedLinearAttentionLayer)
+ ]
+
+ def selection_diagnostics(
+ self,
+ ) -> list[dict[str, int | float | bool | str | None]]:
+ """Generic evaluator alias for :meth:`observability_diagnostics`."""
+
+ return self.observability_diagnostics()
+
+ def storage_summary(self) -> dict[str, int | float | bool]:
+ summary = super().storage_summary()
+ diagonal = self.observability_diagonal_bytes()
+ raw_mask = self.previous_raw_mask_bytes()
+ auxiliary = diagonal + raw_mask
+ resident = int(summary["resident_bytes"])
+ total = resident + auxiliary
+ full_precision_equivalent = int(summary["full_precision_equivalent_bytes"])
+ summary.update(
+ {
+ "observability_diagonal_bytes": diagonal,
+ "previous_raw_mask_bytes": raw_mask,
+ "selector_auxiliary_bytes": auxiliary,
+ "resident_bytes_including_selector": total,
+ "resident_compression_ratio_including_selector": (
+ full_precision_equivalent / total if total else 0.0
+ ),
+ "physical_reduction_realized_including_selector": (
+ total > 0 and total < full_precision_equivalent
+ ),
+ }
+ )
+ return summary
+
+
class RankFusedMixedPackedRecurrentStateCache(MixedPackedRecurrentStateCache):
"""Exact-byte cache fusing static selector and instantaneous MSE ranks."""
diff --git a/src/recurquant/public_data.py b/src/recurquant/public_data.py
index 9d24245..fca0a0d 100644
--- a/src/recurquant/public_data.py
+++ b/src/recurquant/public_data.py
@@ -127,6 +127,61 @@ def load_mbpp_rows(
return rows if limit is None else rows[:limit]
+def load_mbpp_rows_by_task_ids(
+ phase: MBPPPhase | str,
+ *,
+ task_ids: Sequence[int],
+ load_dataset_fn: LoadDataset | None = None,
+) -> tuple[MBPPRow, ...]:
+ """Load only an already-pinned ordered row identity from a public split.
+
+ This path is intended for preregistered calibration/development identities:
+ it streams the source split, reads only ``task_id`` on non-target records,
+ retains only requested rows, and returns them in the caller's frozen order.
+ It deliberately refuses confirmation data and duplicate or missing IDs.
+ """
+
+ normalized_phase = _coerce_phase(phase)
+ if normalized_phase is MBPPPhase.CONFIRMATION:
+ raise ValueError(
+ "task-ID loading is forbidden for confirmation; use the explicit "
+ "whole-split confirmation contract"
+ )
+ if isinstance(task_ids, (str, bytes)) or not isinstance(task_ids, Sequence):
+ raise TypeError("task_ids must be an ordered sequence of integers")
+ ordered_ids = tuple(_task_id(task_id) for task_id in task_ids)
+ if not ordered_ids:
+ raise ValueError("task_ids must not be empty")
+ if len(set(ordered_ids)) != len(ordered_ids):
+ raise ValueError("task_ids must be unique")
+
+ targets = set(ordered_ids)
+ selected: dict[int, MBPPRow] = {}
+ loader = load_dataset_fn or _load_dataset_lazily
+ loaded = loader(
+ MBPP_DATASET_ID,
+ MBPP_CONFIG,
+ revision=MBPP_REVISION,
+ split=mbpp_source_split(normalized_phase),
+ streaming=True,
+ )
+ for raw_row in loaded:
+ task_id = _task_id(raw_row)
+ if task_id not in targets:
+ continue
+ if task_id in selected:
+ raise ValueError(f"duplicate requested MBPP task_id {task_id} in source split")
+ selected[task_id] = canonical_mbpp_row(raw_row)
+ if len(selected) == len(targets):
+ break
+
+ missing = [task_id for task_id in ordered_ids if task_id not in selected]
+ if missing:
+ rendered = ", ".join(str(task_id) for task_id in missing)
+ raise ValueError(f"requested MBPP task IDs are missing from source split: {rendered}")
+ return tuple(selected[task_id] for task_id in ordered_ids)
+
+
def mbpp_calibration_key(row_or_task_id: Mapping[str, Any] | int) -> str:
"""Return the frozen SHA-256 ranking key for calibration selection."""
diff --git a/src/recurquant/qwen35.py b/src/recurquant/qwen35.py
index 0a3d201..09ecb74 100644
--- a/src/recurquant/qwen35.py
+++ b/src/recurquant/qwen35.py
@@ -12,6 +12,7 @@
from .packed_cache import (
AdaptiveMixedPackedRecurrentStateCache,
+ CoraMixedPackedRecurrentStateCache,
MixedPackedRecurrentStateCache,
PackedRecurrentStateCache,
QueryEmaMixedPackedRecurrentStateCache,
@@ -324,6 +325,7 @@ def create_qwen35_query_ema_exact_budget_cache(
rounding: RoundingMode = "nearest",
seed: int = 2339,
record_evidence: bool = False,
+ confirmation_two: bool = False,
) -> QueryEmaMixedPackedRecurrentStateCache:
"""Create the frozen half-life-32 query-EMA mixed cache for Qwen3.5.
@@ -340,6 +342,34 @@ def create_qwen35_query_ema_exact_budget_cache(
rounding=rounding,
seed=seed,
record_evidence=record_evidence,
+ confirmation_two=confirmation_two,
+ )
+
+
+def create_qwen35_cora_exact_budget_cache(
+ model_or_config: Qwen35Source,
+ *,
+ plan: ExactBudgetRowPlan,
+ rounding: RoundingMode = "nearest",
+ seed: int = 2339,
+ record_evidence: bool = False,
+ confirmation_two: bool = True,
+) -> CoraMixedPackedRecurrentStateCache:
+ """Create the frozen causal-observability Qwen3.5 mixed cache.
+
+ The exact row plan fixes per-layer promotion quotas and packed-state bytes.
+ A transition observer must stage the successful Gated DeltaNet kernel's
+ post-convolution query, key, log-decay, and beta tensors before every state
+ write. ``confirmation_two=False`` selects the frozen raw-CORA ablation.
+ """
+
+ return CoraMixedPackedRecurrentStateCache(
+ _validated_exact_budget_config(model_or_config, plan=plan),
+ plan=plan,
+ rounding=rounding,
+ seed=seed,
+ record_evidence=record_evidence,
+ confirmation_two=confirmation_two,
)
diff --git a/src/recurquant/transition_observer.py b/src/recurquant/transition_observer.py
new file mode 100644
index 0000000..7343cbf
--- /dev/null
+++ b/src/recurquant/transition_observer.py
@@ -0,0 +1,302 @@
+"""Causal transition observation for Qwen3.5 recurrent-state caches.
+
+Qwen3.5 constructs and repeats its Gated DeltaNet query and key heads before
+calling either its chunk or recurrent state kernel. This context manager
+observes those exact kernel inputs together with the log decay and write gate.
+It stages them only after the kernel succeeds, immediately before the model
+writes the resulting recurrent state to the selected cache.
+
+Dispatch is by cache identity. Reference, static, and otherwise unregistered
+caches are never inspected or modified.
+"""
+
+from __future__ import annotations
+
+from contextvars import ContextVar
+from dataclasses import dataclass
+from types import TracebackType
+from typing import Any
+
+import torch
+
+_OBSERVER_ATTRIBUTE = "_recurquant_transition_observer"
+_PACKED_SEQUENCE_ARGUMENTS = (
+ "cu_seq_lens_q",
+ "cu_seq_lens_k",
+ "cu_seqlens",
+)
+
+
+def _argument(
+ args: tuple[object, ...],
+ kwargs: dict[str, object],
+ name: str,
+ position: int,
+) -> object | None:
+ if name in kwargs:
+ return kwargs[name]
+ return args[position] if len(args) > position else None
+
+
+@dataclass(slots=True)
+class _ForwardCall:
+ module: torch.nn.Module
+ cache: object
+ layer_index: int
+ kernel_calls: int = 0
+ stage_attempted: bool = False
+ staged: bool = False
+
+
+class Qwen35TransitionObserver:
+ """Stage exact Qwen3.5 Gated DeltaNet transition inputs on CORA caches.
+
+ ``caches`` must implement
+ ``stage_transition_observation(layer_idx, query, key, log_decay, beta)``
+ and ``discard_pending_transition_observations(layer_idx)``. Only those
+ exact objects are observed. The observer supports uncached prefill,
+ cached multi-token chunks, and cached one-token decode, and composes with
+ :class:`~recurquant.query_energy.Qwen35QueryEnergyObserver` in either
+ context-manager nesting order.
+
+ Packed ``cu_seqlens`` forwards are rejected because the frozen CORA-C2
+ recurrence requires an unambiguous chronological batch-one sequence.
+ """
+
+ def __init__(
+ self,
+ model: torch.nn.Module,
+ *,
+ caches: list[object] | tuple[object, ...],
+ ) -> None:
+ if not isinstance(model, torch.nn.Module):
+ raise TypeError("model must be a torch.nn.Module")
+ if not isinstance(caches, (list, tuple)):
+ raise TypeError("caches must be a list or tuple of CORA caches")
+ if not caches:
+ raise ValueError("caches must contain at least one CORA cache")
+
+ identities = [id(cache) for cache in caches]
+ if len(set(identities)) != len(identities):
+ raise ValueError("caches must not contain the same object more than once")
+ for cache in caches:
+ if not callable(getattr(cache, "stage_transition_observation", None)):
+ raise TypeError(
+ "each observed cache must implement stage_transition_observation"
+ )
+ if not callable(
+ getattr(cache, "discard_pending_transition_observations", None)
+ ):
+ raise TypeError(
+ "each observed cache must implement "
+ "discard_pending_transition_observations"
+ )
+
+ self.model = model
+ self.caches = tuple(caches)
+ self._cache_by_identity = {id(cache): cache for cache in self.caches}
+ self._installed: list[tuple[object, str, object]] = []
+ self._active_calls: ContextVar[tuple[_ForwardCall, ...]] = ContextVar(
+ f"recurquant_transition_calls_{id(self)}",
+ default=(),
+ )
+
+ def _gdn_modules(self) -> list[torch.nn.Module]:
+ modules = [
+ module
+ for module in self.model.modules()
+ if module.__class__.__name__ == "Qwen3_5GatedDeltaNet"
+ ]
+ if not modules:
+ raise TypeError("model does not contain Qwen3_5GatedDeltaNet modules")
+ return modules
+
+ def _selected_cache(self, candidate: object | None) -> object | None:
+ if candidate is None:
+ return None
+ selected = self._cache_by_identity.get(id(candidate))
+ return selected if selected is candidate else None
+
+ @staticmethod
+ def _discard(cache: object, layer_index: int) -> None:
+ cache.discard_pending_transition_observations( # type: ignore[attr-defined]
+ layer_index
+ )
+
+ def _discard_after_failure(
+ self,
+ call: _ForwardCall,
+ error: BaseException,
+ ) -> None:
+ try:
+ self._discard(call.cache, call.layer_index)
+ except BaseException as cleanup_error:
+ error.add_note(
+ "RecurQuant could not discard the pending transition observation "
+ f"after the forward failed: {cleanup_error!r}"
+ )
+
+ def _make_kernel_wrapper(
+ self,
+ module: torch.nn.Module,
+ original: Any,
+ ):
+ def wrapped(*args: object, **kwargs: object):
+ active_calls = self._active_calls.get()
+ call = active_calls[-1] if active_calls else None
+ if call is None or call.module is not module:
+ return original(*args, **kwargs)
+ if call.kernel_calls:
+ raise RuntimeError(
+ "Qwen3.5 Gated DeltaNet called more than one state kernel in one "
+ "forward; refusing ambiguous transition attribution"
+ )
+
+ # The selected torch or FLA kernel must complete before its inputs
+ # are eligible to be staged. The Qwen forward writes the returned
+ # state on the very next cache operation.
+ output = original(*args, **kwargs)
+ call.kernel_calls += 1
+
+ observed = {
+ "query": _argument(args, kwargs, "query", 0),
+ "key": _argument(args, kwargs, "key", 1),
+ "log_decay": _argument(args, kwargs, "g", 3),
+ "beta": _argument(args, kwargs, "beta", 4),
+ }
+ malformed = [
+ name for name, value in observed.items() if not isinstance(value, torch.Tensor)
+ ]
+ if malformed:
+ rendered = ", ".join(malformed)
+ raise TypeError(
+ "Qwen3.5 Gated DeltaNet kernel did not expose tensor transition "
+ f"inputs ({rendered})"
+ )
+
+ call.stage_attempted = True
+ call.cache.stage_transition_observation( # type: ignore[attr-defined]
+ call.layer_index,
+ observed["query"],
+ observed["key"],
+ observed["log_decay"],
+ observed["beta"],
+ )
+ call.staged = True
+ return output
+
+ return wrapped
+
+ def _make_forward_wrapper(
+ self,
+ module: torch.nn.Module,
+ original: Any,
+ ):
+ layer_index = int(module.layer_idx) # type: ignore[attr-defined]
+
+ def wrapped(*args: object, **kwargs: object):
+ cache = self._selected_cache(_argument(args, kwargs, "cache_params", 1))
+ if cache is None:
+ return original(*args, **kwargs)
+
+ packed_arguments = [
+ name
+ for name in _PACKED_SEQUENCE_ARGUMENTS
+ if kwargs.get(name) is not None
+ ]
+ if packed_arguments:
+ rendered = ", ".join(packed_arguments)
+ raise ValueError(
+ "Qwen3.5 transition observation does not support packed "
+ f"cu_seqlens forwards ({rendered})"
+ )
+
+ call = _ForwardCall(module=module, cache=cache, layer_index=layer_index)
+ token = self._active_calls.set((*self._active_calls.get(), call))
+ try:
+ output = original(*args, **kwargs)
+ if call.kernel_calls != 1 or not call.stage_attempted or not call.staged:
+ raise RuntimeError(
+ "Qwen3.5 Gated DeltaNet did not complete exactly one observed "
+ "state-kernel call; refusing to continue with ambiguous "
+ "transition inputs"
+ )
+ return output
+ except BaseException as error:
+ self._discard_after_failure(call, error)
+ raise
+ finally:
+ self._active_calls.reset(token)
+
+ return wrapped
+
+ def install(self) -> None:
+ """Install forward and selected torch/FLA kernel wrappers atomically."""
+
+ if self._installed:
+ raise RuntimeError("transition observer is already installed")
+ modules = self._gdn_modules()
+ observed_objects: list[object] = [self.model, *modules]
+ if any(hasattr(item, _OBSERVER_ATTRIBUTE) for item in observed_objects):
+ raise RuntimeError("a transition observer is already installed on this model")
+
+ try:
+ setattr(self.model, _OBSERVER_ATTRIBUTE, self)
+ self._installed.append((self.model, _OBSERVER_ATTRIBUTE, _Missing))
+ for module in modules:
+ setattr(module, _OBSERVER_ATTRIBUTE, self)
+ self._installed.append((module, _OBSERVER_ATTRIBUTE, _Missing))
+ for attribute in (
+ "forward",
+ "chunk_gated_delta_rule",
+ "recurrent_gated_delta_rule",
+ ):
+ original = getattr(module, attribute)
+ if not callable(original):
+ raise TypeError(
+ f"Qwen3_5GatedDeltaNet.{attribute} must be callable"
+ )
+ wrapper = (
+ self._make_forward_wrapper(module, original)
+ if attribute == "forward"
+ else self._make_kernel_wrapper(module, original)
+ )
+ restore_value = original if attribute in module.__dict__ else _Missing
+ setattr(module, attribute, wrapper)
+ self._installed.append((module, attribute, restore_value))
+ except BaseException:
+ self.remove()
+ raise
+
+ def remove(self) -> None:
+ """Restore every wrapped callable and remove installation markers."""
+
+ while self._installed:
+ target, attribute, original = self._installed.pop()
+ if original is _Missing:
+ if attribute == _OBSERVER_ATTRIBUTE:
+ if getattr(target, attribute, None) is self:
+ delattr(target, attribute)
+ elif attribute in getattr(target, "__dict__", {}):
+ delattr(target, attribute)
+ else:
+ setattr(target, attribute, original)
+
+ def __enter__(self) -> Qwen35TransitionObserver:
+ self.install()
+ return self
+
+ def __exit__(
+ self,
+ exc_type: type[BaseException] | None,
+ exc_value: BaseException | None,
+ traceback: TracebackType | None,
+ ) -> None:
+ self.remove()
+
+
+class _MissingType:
+ pass
+
+
+_Missing = _MissingType()
diff --git a/tests/test_cora_mixed_packed_cache.py b/tests/test_cora_mixed_packed_cache.py
new file mode 100644
index 0000000..b94105a
--- /dev/null
+++ b/tests/test_cora_mixed_packed_cache.py
@@ -0,0 +1,456 @@
+from __future__ import annotations
+
+import math
+from types import MethodType
+
+import pytest
+import torch
+from transformers import Qwen3_5ForCausalLM
+
+from recurquant.mixed_quantization import PackedMixedQuantizedTensor
+from recurquant.packed_cache import (
+ CoraMixedPackedLinearAttentionLayer,
+ CoraMixedPackedRecurrentStateCache,
+)
+from recurquant.qwen35 import create_qwen35_cora_exact_budget_cache
+from recurquant.row_policy import ExactBudgetRowPlan, select_rows_exact_budget
+from recurquant.transition_observer import Qwen35TransitionObserver
+from tests.test_transformers_cache import tiny_config
+
+
+def _target_for_promotions(promotions: int) -> int:
+ total_groups = 16
+ group_size = 8
+ low_group_bytes = math.ceil(4 * group_size / 8) + 2
+ high_increment = math.ceil(8 * group_size / 8) - math.ceil(4 * group_size / 8)
+ return total_groups * low_group_bytes + math.ceil(total_groups / 8) + (
+ promotions * high_increment
+ )
+
+
+def _plan(promotions: int) -> ExactBudgetRowPlan:
+ scores = {0: torch.arange(16, dtype=torch.float32).reshape(2, 8)}
+ return select_rows_exact_budget(
+ scores,
+ target_resident_bytes=_target_for_promotions(promotions),
+ group_size=8,
+ )
+
+
+def _cache(
+ promotions: int = 2,
+ *,
+ confirmation_two: bool = True,
+ record_evidence: bool = False,
+) -> CoraMixedPackedRecurrentStateCache:
+ return create_qwen35_cora_exact_budget_cache(
+ tiny_config(),
+ plan=_plan(promotions),
+ confirmation_two=confirmation_two,
+ record_evidence=record_evidence,
+ )
+
+
+def _layer(cache: CoraMixedPackedRecurrentStateCache) -> CoraMixedPackedLinearAttentionLayer:
+ layer = cache.layers[0]
+ assert isinstance(layer, CoraMixedPackedLinearAttentionLayer)
+ return layer
+
+
+def _transition(
+ active_row: int | None = None,
+ *,
+ tokens: int = 1,
+) -> tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]:
+ query = torch.zeros((1, tokens, 2, 8), dtype=torch.float32)
+ if active_row is not None:
+ query.reshape(1, tokens, 16)[:, :, active_row] = 1.0
+ key = torch.zeros_like(query)
+ log_decay = torch.full((1, tokens, 2), -100.0, dtype=torch.float32)
+ beta = torch.zeros((1, tokens, 2), dtype=torch.float32)
+ return query, key, log_decay, beta
+
+
+def _state() -> torch.Tensor:
+ pattern = torch.tensor([1.0, 0.51, -0.37, 0.23, 0.14, -0.08, 0.03, -0.01])
+ return pattern.repeat(16).reshape(1, 2, 8, 8)
+
+
+def _committed_mask(cache: CoraMixedPackedRecurrentStateCache) -> torch.Tensor:
+ packed = _layer(cache).packed_states[0]
+ assert packed is not None
+ return packed.high_precision_mask().reshape(-1)
+
+
+def _raw_mask(cache: CoraMixedPackedRecurrentStateCache) -> torch.Tensor:
+ layer = _layer(cache)
+ packed = layer.previous_raw_mask_packed
+ assert packed is not None
+ shifts = torch.arange(8, dtype=torch.int16)
+ expanded = torch.bitwise_right_shift(packed.to(torch.int16).unsqueeze(1), shifts)
+ return torch.bitwise_and(expanded, 1).reshape(-1)[:16].to(torch.bool)
+
+
+def _stage(
+ cache: CoraMixedPackedRecurrentStateCache,
+ transition: tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor],
+) -> None:
+ cache.stage_transition_observation(0, *transition)
+
+
+def test_diagonal_recurrence_matches_explicit_transition_matrix() -> None:
+ cache = _cache(confirmation_two=False)
+ layer = _layer(cache)
+ generator = torch.Generator().manual_seed(811)
+ query = torch.randn((1, 1, 2, 8), generator=generator)
+ key = torch.randn((1, 1, 2, 8), generator=generator)
+ log_decay = torch.tensor([[[-0.3, -0.7]]], dtype=torch.float32)
+ beta = torch.tensor([[[0.2, 0.8]]], dtype=torch.float32)
+
+ _stage(cache, (query, key, log_decay, beta))
+ pending = layer._pending_transition_observation
+ assert pending is not None
+
+ p0 = torch.full((2, 8), 1.0 / 16, dtype=torch.float64)
+ exact = torch.empty_like(p0)
+ for head in range(2):
+ q = query[0, 0, head].to(torch.float64)
+ k = key[0, 0, head].to(torch.float64)
+ q_hat = q / torch.sqrt(q.square().sum() + 1e-6)
+ k_hat = k / torch.sqrt(k.square().sum() + 1e-6)
+ transition = torch.exp(log_decay[0, 0, head].to(torch.float64)) * (
+ torch.eye(8, dtype=torch.float64)
+ - beta[0, 0, head].to(torch.float64) * torch.outer(k_hat, k_hat)
+ )
+ gram = transition.T @ torch.diag(p0[head]) @ transition
+ exact[head] = q_hat.square() / 8 + torch.diag(gram)
+ exact /= exact.sum()
+
+ assert pending.candidate_diagonal.dtype == torch.float32
+ assert torch.allclose(
+ pending.candidate_diagonal.to(torch.float64),
+ exact,
+ atol=2e-8,
+ rtol=2e-7,
+ )
+
+
+def test_chronological_chunk_matches_one_token_state_writes() -> None:
+ generator = torch.Generator().manual_seed(821)
+ query = torch.randn((1, 7, 2, 8), generator=generator)
+ key = torch.randn((1, 7, 2, 8), generator=generator)
+ log_decay = -torch.rand((1, 7, 2), generator=generator)
+ beta = torch.rand((1, 7, 2), generator=generator)
+ state = torch.randn((1, 2, 8, 8), generator=generator)
+ chunked = _cache(4, confirmation_two=False)
+ stepped = _cache(4, confirmation_two=False)
+
+ _stage(chunked, (query, key, log_decay, beta))
+ chunked.update_recurrent_state(state, layer_idx=0)
+ for token in range(7):
+ selection = slice(token, token + 1)
+ _stage(
+ stepped,
+ (
+ query[:, selection],
+ key[:, selection],
+ log_decay[:, selection],
+ beta[:, selection],
+ ),
+ )
+ stepped.update_recurrent_state(state, layer_idx=0)
+
+ chunked_p = _layer(chunked).observability_diagonal
+ stepped_p = _layer(stepped).observability_diagonal
+ assert chunked_p is not None and stepped_p is not None
+ assert torch.allclose(chunked_p, stepped_p, atol=4e-8, rtol=4e-7)
+
+
+@pytest.mark.parametrize("promotions", [0, 5, 16])
+def test_exact_quota_and_selector_storage(promotions: int) -> None:
+ plan = _plan(promotions)
+ cache = _cache(promotions, record_evidence=True)
+ _stage(cache, _transition(0, tokens=2))
+ cache.update_recurrent_state(_state(), layer_idx=0)
+
+ diagnostics = cache.selection_diagnostics()[0]
+ summary = cache.storage_summary()
+ assert _committed_mask(cache).sum().item() == promotions
+ assert diagnostics["quota"] == promotions
+ assert diagnostics["current_selected_count"] == promotions
+ assert diagnostics["observability_diagonal_bytes"] == 64
+ assert diagnostics["previous_raw_mask_bytes"] == 2
+ assert diagnostics["selector_auxiliary_bytes"] == 66
+ assert summary["resident_bytes"] == plan.resident_bytes
+ assert summary["selector_auxiliary_bytes"] == 66
+ assert summary["resident_bytes_including_selector"] == plan.resident_bytes + 66
+ assert cache.update_evidence[0].selection_method == (
+ "causal_observability_confirm2_mse_target_fisher_quota"
+ )
+
+
+def test_confirmation_two_requires_two_consecutive_raw_hits() -> None:
+ cache = _cache(1, confirmation_two=True)
+ state = _state()
+
+ _stage(cache, _transition(0))
+ cache.update_recurrent_state(state, layer_idx=0)
+ assert _raw_mask(cache).nonzero().flatten().tolist() == [0]
+ assert _committed_mask(cache).nonzero().flatten().tolist() == [0]
+
+ _stage(cache, _transition(1))
+ cache.update_recurrent_state(state, layer_idx=0)
+ assert _raw_mask(cache).nonzero().flatten().tolist() == [1]
+ assert _committed_mask(cache).nonzero().flatten().tolist() == [0]
+
+ _stage(cache, _transition(1))
+ cache.update_recurrent_state(state, layer_idx=0)
+ assert _raw_mask(cache).nonzero().flatten().tolist() == [1]
+ assert _committed_mask(cache).nonzero().flatten().tolist() == [1]
+ diagnostics = cache.selection_diagnostics()[0]
+ assert diagnostics["mask_transition_count"] == 2
+ assert diagnostics["raw_xor_churn_total"] == 2
+ assert diagnostics["committed_xor_churn_total"] == 2
+ assert diagnostics["admissions_total"] == 1
+ assert diagnostics["dwell_total"] == 1
+ assert diagnostics["raw_normalized_churn"] == pytest.approx(0.5)
+ assert diagnostics["committed_normalized_churn"] == pytest.approx(0.5)
+
+
+def test_raw_cora_switches_without_confirmation_delay() -> None:
+ cache = _cache(1, confirmation_two=False)
+ _stage(cache, _transition(0))
+ cache.update_recurrent_state(_state(), layer_idx=0)
+ _stage(cache, _transition(1))
+ cache.update_recurrent_state(_state(), layer_idx=0)
+ assert _committed_mask(cache).nonzero().flatten().tolist() == [1]
+
+
+@pytest.mark.parametrize(
+ ("replacement", "error_type", "message"),
+ [
+ ("query_batch", ValueError, "shape"),
+ ("key_width", ValueError, "shape"),
+ ("gate_width", ValueError, "shape"),
+ ("integer", TypeError, "floating point"),
+ ("nonfinite", ValueError, "finite"),
+ ("empty", ValueError, "at least one token"),
+ ],
+)
+def test_invalid_transition_observations_fail_closed(
+ replacement: str,
+ error_type: type[Exception],
+ message: str,
+) -> None:
+ cache = _cache()
+ query, key, log_decay, beta = _transition(0)
+ if replacement == "query_batch":
+ query = query.repeat(2, 1, 1, 1)
+ elif replacement == "key_width":
+ key = key[..., :7]
+ elif replacement == "gate_width":
+ beta = beta[..., :1]
+ elif replacement == "integer":
+ key = key.to(torch.int64)
+ elif replacement == "nonfinite":
+ log_decay[0, 0, 0] = float("nan")
+ elif replacement == "empty":
+ query = query[:, :0]
+ key = key[:, :0]
+ log_decay = log_decay[:, :0]
+ beta = beta[:, :0]
+
+ with pytest.raises(error_type, match=message):
+ _stage(cache, (query, key, log_decay, beta))
+ assert _layer(cache)._pending_transition_observation is None
+
+
+def test_missing_duplicate_stale_and_invalid_index_fail_closed() -> None:
+ cache = _cache()
+ layer = _layer(cache)
+ with pytest.raises(RuntimeError, match="no staged transition"):
+ cache.update_recurrent_state(_state(), layer_idx=0)
+
+ _stage(cache, _transition(0))
+ with pytest.raises(RuntimeError, match="duplicate transition"):
+ _stage(cache, _transition(1))
+ assert layer._pending_transition_observation is None
+
+ _stage(cache, _transition(0))
+ layer._update_count += 1
+ with pytest.raises(RuntimeError, match="stale transition"):
+ cache.update_recurrent_state(_state(), layer_idx=0)
+ assert layer._pending_transition_observation is None
+
+ layer._update_count = 0
+ _stage(cache, _transition(0))
+ with pytest.raises(IndexError, match="state_idx 9"):
+ layer.update_recurrent_state(_state(), state_idx=9)
+ assert layer._pending_transition_observation is None
+
+
+def test_failed_pack_rolls_back_every_selector_field_and_evidence(
+ monkeypatch: pytest.MonkeyPatch,
+) -> None:
+ cache = _cache(2, record_evidence=True)
+ layer = _layer(cache)
+ _stage(cache, _transition(0, tokens=2))
+ cache.update_recurrent_state(_state(), layer_idx=0)
+ previous_packed = layer.packed_states[0]
+ previous_diagonal = layer.observability_diagonal
+ previous_raw = layer.previous_raw_mask_packed
+ assert previous_packed is not None
+ assert previous_diagonal is not None
+ assert previous_raw is not None
+ previous_diagnostics = layer.observability_diagnostics()
+ previous_evidence = list(cache.update_evidence)
+ previous_evidence_index = cache._update_index
+
+ _stage(cache, _transition(1))
+
+ def fail_dequantize(self: PackedMixedQuantizedTensor) -> torch.Tensor:
+ raise RuntimeError("injected CORA materialization failure")
+
+ monkeypatch.setattr(PackedMixedQuantizedTensor, "dequantize", fail_dequantize)
+ with pytest.raises(RuntimeError, match="injected CORA materialization failure"):
+ cache.update_recurrent_state(_state() * 2, layer_idx=0)
+
+ assert layer.packed_states[0] is previous_packed
+ assert layer.observability_diagonal is previous_diagonal
+ assert layer.previous_raw_mask_packed is previous_raw
+ assert layer.observability_diagnostics() == previous_diagnostics
+ assert cache.update_evidence == previous_evidence
+ assert cache._update_index == previous_evidence_index
+ assert layer._pending_transition_observation is None
+
+
+def test_failed_previous_mask_read_clears_candidate_without_mutation(
+ monkeypatch: pytest.MonkeyPatch,
+) -> None:
+ cache = _cache(2, record_evidence=True)
+ layer = _layer(cache)
+ _stage(cache, _transition(0))
+ cache.update_recurrent_state(_state(), layer_idx=0)
+ previous_packed = layer.packed_states[0]
+ previous_diagonal = layer.observability_diagonal
+ previous_raw = layer.previous_raw_mask_packed
+ previous_diagnostics = layer.observability_diagnostics()
+ previous_evidence = list(cache.update_evidence)
+ _stage(cache, _transition(1))
+
+ def fail_mask(self: PackedMixedQuantizedTensor) -> torch.Tensor:
+ raise RuntimeError("injected previous-mask failure")
+
+ monkeypatch.setattr(PackedMixedQuantizedTensor, "high_precision_mask", fail_mask)
+ with pytest.raises(RuntimeError, match="injected previous-mask failure"):
+ cache.update_recurrent_state(_state() * 2, layer_idx=0)
+
+ assert layer.packed_states[0] is previous_packed
+ assert layer.observability_diagonal is previous_diagonal
+ assert layer.previous_raw_mask_packed is previous_raw
+ assert layer.observability_diagnostics() == previous_diagnostics
+ assert cache.update_evidence == previous_evidence
+ assert layer._pending_transition_observation is None
+
+
+def test_callback_failure_rolls_back_appended_evidence_and_every_state() -> None:
+ cache = _cache(2, record_evidence=True)
+ layer = _layer(cache)
+ _stage(cache, _transition(0))
+ cache.update_recurrent_state(_state(), layer_idx=0)
+ previous_packed = layer.packed_states[0]
+ previous_diagonal = layer.observability_diagonal
+ previous_raw = layer.previous_raw_mask_packed
+ previous_diagnostics = layer.observability_diagnostics()
+ previous_evidence = list(cache.update_evidence)
+ previous_evidence_index = cache._update_index
+ _stage(cache, _transition(1))
+
+ def append_then_fail(
+ owner: CoraMixedPackedRecurrentStateCache,
+ layer_index: int,
+ state_index: int,
+ source: torch.Tensor,
+ packed: PackedMixedQuantizedTensor,
+ materialized: torch.Tensor,
+ ) -> None:
+ del layer_index, state_index, source, packed, materialized
+ owner.update_evidence.append(previous_evidence[0])
+ owner._update_index += 1
+ raise RuntimeError("injected evidence callback failure")
+
+ layer.on_update = MethodType(append_then_fail, cache)
+ with pytest.raises(RuntimeError, match="injected evidence callback failure"):
+ cache.update_recurrent_state(_state() * 2, layer_idx=0)
+
+ assert layer.packed_states[0] is previous_packed
+ assert layer.observability_diagonal is previous_diagonal
+ assert layer.previous_raw_mask_packed is previous_raw
+ assert layer.observability_diagnostics() == previous_diagnostics
+ assert cache.update_evidence == previous_evidence
+ assert cache._update_index == previous_evidence_index
+ assert layer._pending_transition_observation is None
+
+
+def test_reset_offload_prefetch_and_pending_transfer() -> None:
+ cache = _cache(2)
+ layer = _layer(cache)
+ _stage(cache, _transition(0, tokens=3))
+ cache.update_recurrent_state(_state(), layer_idx=0)
+ layer.offload()
+ assert layer.observability_diagonal is not None
+ assert layer.observability_diagonal.device.type == "cpu"
+ assert layer.previous_raw_mask_packed is not None
+ layer.prefetch()
+
+ cache.reset()
+ assert torch.equal(
+ layer.observability_diagonal,
+ torch.full((2, 8), 1.0 / 16, dtype=torch.float32),
+ )
+ assert layer.previous_raw_mask_packed is None
+ assert cache.selection_diagnostics()[0]["state_updates"] == 0
+
+ _stage(cache, _transition(0))
+ with pytest.raises(RuntimeError, match="cannot offload with a pending"):
+ layer.offload()
+ assert layer._pending_transition_observation is None
+
+
+def test_real_tiny_qwen_observer_runs_cora_prefill_chunk_and_decode() -> None:
+ model = Qwen3_5ForCausalLM._from_config(
+ tiny_config(),
+ attn_implementation="eager",
+ ).eval()
+ cache = create_qwen35_cora_exact_budget_cache(
+ model,
+ plan=_plan(5),
+ record_evidence=True,
+ )
+
+ with torch.inference_mode(), Qwen35TransitionObserver(model, caches=[cache]):
+ prefill = model(
+ torch.randint(0, model.config.vocab_size, (1, 5)),
+ past_key_values=cache,
+ )
+ chunk = model(
+ torch.randint(0, model.config.vocab_size, (1, 2)),
+ past_key_values=cache,
+ )
+ decode = model(
+ torch.randint(0, model.config.vocab_size, (1, 1)),
+ past_key_values=cache,
+ )
+
+ assert prefill.logits.shape == (1, 5, model.config.vocab_size)
+ assert chunk.logits.shape == (1, 2, model.config.vocab_size)
+ assert decode.logits.shape == (1, 1, model.config.vocab_size)
+ diagnostics = cache.selection_diagnostics()[0]
+ assert diagnostics["observations_staged"] == 3
+ assert diagnostics["observations_committed"] == 3
+ assert diagnostics["state_updates"] == 3
+ assert diagnostics["tokens_observed"] == 8
+ assert diagnostics["mask_transition_count"] == 2
+ assert diagnostics["pending_observation"] is False
+ assert diagnostics["current_selected_count"] == 5
+ assert len(cache.update_evidence) == 3
diff --git a/tests/test_pilot_evaluate_hrr.py b/tests/test_pilot_evaluate_hrr.py
index 96deadf..7c1e7e5 100644
--- a/tests/test_pilot_evaluate_hrr.py
+++ b/tests/test_pilot_evaluate_hrr.py
@@ -461,20 +461,21 @@ def test_calibration_holdout_refuses_out_of_range_window() -> None:
)
-def test_frozen_holdout_request_requires_exact_window_and_two_eight_task_selectors() -> None:
+def test_legacy_frozen_holdout_is_locked_after_experiment008_freeze() -> None:
selectors = [
_frozen_selector(evaluator.HRR_ARTIFACT_KIND),
_frozen_selector(evaluator.LOSS_ARTIFACT_KIND),
]
- evaluator.validate_frozen_holdout_request(
- offset=8,
- limit=8,
- bootstrap_samples=10_000,
- selectors=selectors,
- loss_selector_present=True,
- storage_boundary_present=True,
- )
+ with pytest.raises(ValueError, match="protected by Experiment 008"):
+ evaluator.validate_frozen_holdout_request(
+ offset=8,
+ limit=8,
+ bootstrap_samples=10_000,
+ selectors=selectors,
+ loss_selector_present=True,
+ storage_boundary_present=True,
+ )
def test_experiment006_rank_fusion_holdout_remains_fail_closed() -> None:
@@ -1097,3 +1098,645 @@ def test_claim_and_exit_code_follow_actual_primary_and_gate() -> None:
assert evaluator.diagnostic_exit_code(heldout_calibration=True, gate_passed=False) == 2
assert evaluator.diagnostic_exit_code(heldout_calibration=True, gate_passed=True) == 0
assert evaluator.diagnostic_exit_code(heldout_calibration=False, gate_passed=False) == 0
+
+
+def _cora_metric(
+ *,
+ delta_nll: float,
+ top1: float,
+ cvar95: float,
+) -> dict[str, float | int]:
+ return {
+ "macro_delta_nll": delta_nll,
+ "macro_mean_kl": delta_nll,
+ "macro_cvar95_kl": cvar95,
+ "macro_top1_agreement": top1,
+ "task_count": evaluator.E008_DEVELOPMENT_LIMIT,
+ "token_count": 2 * evaluator.E008_DEVELOPMENT_LIMIT,
+ }
+
+
+def _cora_task_rows(
+ summary: dict[str, float | int],
+) -> list[dict[str, float | int | bool]]:
+ return [
+ {
+ "task_id": task_id,
+ "delta_nll": summary["macro_delta_nll"],
+ "mean_kl": summary["macro_mean_kl"],
+ "cvar95_kl": summary["macro_cvar95_kl"],
+ "top1_agreement": summary["macro_top1_agreement"],
+ "token_count": 2,
+ "candidate_nll": 1.0,
+ "reference_nll": 0.5,
+ "max_kl": 1.5,
+ "all_logits_finite": True,
+ }
+ for task_id in evaluator.E008_DEVELOPMENT_TASK_IDS
+ ]
+
+
+def _query_selector_layer(*, confirmation_two: bool) -> dict[str, object]:
+ return {
+ "layer_index": 0,
+ "quota": 2,
+ "confirmation_two": confirmation_two,
+ "ema_decay": 2.0 ** (-1.0 / evaluator.QUERY_EMA_HALF_LIFE),
+ "l2norm_eps": 1e-6,
+ "state_updates": 3,
+ "observations_staged": 3,
+ "observations_committed": 3,
+ "tokens_observed": 6,
+ "last_query_token_count": 1,
+ "last_cutoff_score_margin": 0.01,
+ "last_mask_overlap": 1,
+ "last_mask_churn": 2,
+ "current_selected_count": 2,
+ "current_mask_sha256": "a" * 64,
+ "raw_mask_sha256": "b" * 64,
+ "committed_mask_sha256": "a" * 64,
+ "pending_observation": False,
+ "selector_auxiliary_bytes": 9 if confirmation_two else 8,
+ }
+
+
+def _cora_selector_layer(
+ *,
+ confirmation_two: bool,
+ committed_xor: int,
+) -> dict[str, object]:
+ transitions = 2
+ quota = 2
+ denominator = 2 * quota * transitions
+ raw_xor = 4
+ admissions = committed_xor // 2
+ dwell = quota * transitions - admissions
+ return {
+ "layer_index": 0,
+ "selection_method": (
+ evaluator.CORA_C2_PRIMARY if confirmation_two else evaluator.CORA_RAW
+ ),
+ "confirmation_two": confirmation_two,
+ "quota": quota,
+ "current_selected_count": quota,
+ "raw_mask_sha256": "b" * 64,
+ "committed_mask_sha256": "c" * 64,
+ "observations_staged": 3,
+ "observations_committed": 3,
+ "tokens_observed": 6,
+ "last_token_count": 1,
+ "mask_transition_count": transitions,
+ "raw_xor_churn_total": raw_xor,
+ "committed_xor_churn_total": committed_xor,
+ "raw_normalized_churn": raw_xor / denominator,
+ "committed_normalized_churn": committed_xor / denominator,
+ "last_raw_mask_overlap": 1,
+ "last_committed_mask_overlap": 1,
+ "last_dwell_count": 1,
+ "last_admission_count": 1,
+ "dwell_total": dwell,
+ "admissions_total": admissions,
+ "last_raw_cutoff_score": 0.1,
+ "last_raw_score_gap": 0.01,
+ "last_raw_normalized_gap": 0.1,
+ "last_committed_cutoff_score": 0.1,
+ "last_committed_score_gap": 0.01,
+ "last_committed_normalized_gap": 0.1,
+ "observability_trace": 1.0,
+ "observability_min": 0.1,
+ "observability_max": 0.9,
+ "observability_dtype": "torch.float32",
+ "l2norm_eps": 1e-6,
+ "state_updates": 3,
+ "pending_observation": False,
+ "observability_diagonal_bytes": 8,
+ # Raw CORA also keeps its previous raw mask to report cumulative churn.
+ "previous_raw_mask_bytes": 1,
+ "selector_auxiliary_bytes": 9,
+ }
+
+
+def _selector_task_diagnostics(layer: dict[str, object]) -> list[dict[str, object]]:
+ return [
+ {"task_id": task_id, "layers": [deepcopy(layer)]}
+ for task_id in evaluator.E008_DEVELOPMENT_TASK_IDS
+ ]
+
+
+def _passing_cora_c2_development_inputs() -> dict[str, object]:
+ static = "target_directional_fisher_difference_int4"
+ aggregates = {
+ static: _cora_metric(delta_nll=1.00, top1=0.800, cvar95=1.00),
+ evaluator.ADAPTIVE_TARGET_FISHER: _cora_metric(
+ delta_nll=0.90,
+ top1=0.810,
+ cvar95=0.95,
+ ),
+ evaluator.QUERY_EMA_PRIMARY: _cora_metric(
+ delta_nll=0.80,
+ top1=0.800,
+ cvar95=1.00,
+ ),
+ evaluator.CORA_RAW: _cora_metric(
+ delta_nll=0.72,
+ top1=0.804,
+ cvar95=1.02,
+ ),
+ evaluator.QUERY_EMA_C2: _cora_metric(
+ delta_nll=0.78,
+ top1=0.801,
+ cvar95=1.00,
+ ),
+ evaluator.CORA_C2_PRIMARY: _cora_metric(
+ delta_nll=0.70,
+ top1=0.805,
+ cvar95=1.04,
+ ),
+ }
+ per_task = {name: _cora_task_rows(values) for name, values in aggregates.items()}
+ per_task_full_code = deepcopy(per_task)
+ for task_rows in per_task_full_code.values():
+ for row in task_rows:
+ row["token_count"] = 3
+ aggregates_full_code = deepcopy(aggregates)
+ for summary in aggregates_full_code.values():
+ summary["token_count"] = 3 * evaluator.E008_DEVELOPMENT_LIMIT
+ packed_bytes = 100
+ storage = {
+ name: {
+ "resident_bytes": packed_bytes,
+ "high_precision_groups": 2,
+ }
+ for name in aggregates
+ }
+ storage[evaluator.QUERY_EMA_PRIMARY].update(
+ selector_auxiliary_bytes=8,
+ resident_bytes_including_selector=108,
+ )
+ storage[evaluator.CORA_RAW].update(
+ selector_auxiliary_bytes=9,
+ resident_bytes_including_selector=109,
+ )
+ for name in (evaluator.QUERY_EMA_C2, evaluator.CORA_C2_PRIMARY):
+ storage[name].update(
+ selector_auxiliary_bytes=9,
+ resident_bytes_including_selector=109,
+ )
+ selector_diagnostics = {
+ evaluator.QUERY_EMA_PRIMARY: _selector_task_diagnostics(
+ _query_selector_layer(confirmation_two=False)
+ ),
+ evaluator.QUERY_EMA_C2: _selector_task_diagnostics(
+ _query_selector_layer(confirmation_two=True)
+ ),
+ evaluator.CORA_RAW: _selector_task_diagnostics(
+ _cora_selector_layer(confirmation_two=False, committed_xor=4)
+ ),
+ evaluator.CORA_C2_PRIMARY: _selector_task_diagnostics(
+ _cora_selector_layer(confirmation_two=True, committed_xor=2)
+ ),
+ }
+ return {
+ "aggregates": aggregates,
+ "aggregates_full_code": aggregates_full_code,
+ "per_task": per_task,
+ "per_task_full_code": per_task_full_code,
+ "storage": storage,
+ "selector_diagnostics": selector_diagnostics,
+ "contrasts": {
+ static: {"confidence_interval": [0.10, 0.50]},
+ evaluator.QUERY_EMA_PRIMARY: {"confidence_interval": [0.02, 0.20]},
+ },
+ "token_manifest": [
+ {
+ "task_id": task_id,
+ "prompt_tokens": 4,
+ "code_tokens": 3,
+ "aligned_scored_tokens": 2,
+ "full_code_scored_tokens": 3,
+ }
+ for task_id in evaluator.E008_DEVELOPMENT_TASK_IDS
+ ],
+ "expected_quotas": {0: 2},
+ "expected_packed_bytes": packed_bytes,
+ "expected_query_auxiliary_bytes": 8,
+ "expected_cora_auxiliary_bytes": 9,
+ }
+
+
+def _set_all_cora_c2_committed_churn(values: dict[str, object], churn: int) -> None:
+ for task in values["selector_diagnostics"][evaluator.CORA_C2_PRIMARY]:
+ layer = task["layers"][0]
+ layer["committed_xor_churn_total"] = churn
+ layer["committed_normalized_churn"] = churn / 8
+ layer["admissions_total"] = churn // 2
+ layer["dwell_total"] = 4 - churn // 2
+
+
+@pytest.mark.parametrize(
+ "changes",
+ (
+ {"offset": 8},
+ {"offset": 15},
+ {"offset": 17},
+ {"limit": 15},
+ {"bootstrap_samples": 9_999},
+ ),
+)
+def test_experiment008_request_pins_development_and_protects_eight_to_sixteen(
+ changes: dict[str, int],
+) -> None:
+ arguments = {
+ "enabled": True,
+ "offset": evaluator.E008_DEVELOPMENT_OFFSET,
+ "limit": evaluator.E008_DEVELOPMENT_LIMIT,
+ "bootstrap_samples": evaluator.FROZEN_BOOTSTRAP_SAMPLES,
+ }
+ evaluator.validate_cora_development_request(**arguments)
+ arguments.update(changes)
+
+ with pytest.raises(ValueError, match=r"\[16, 32\).*\[8, 16\) remains closed"):
+ evaluator.validate_cora_development_request(**arguments)
+
+
+def test_experiment008_disabled_request_is_a_noop() -> None:
+ evaluator.validate_cora_development_request(
+ enabled=False,
+ offset=8,
+ limit=1,
+ bootstrap_samples=1,
+ )
+
+
+def test_experiment008_requires_a_clean_committed_repository_before_data_access() -> None:
+ clean = {"commit": "a" * 40, "worktree_clean": True, "status": []}
+ evaluator.validate_cora_development_repository_start(clean)
+
+ with pytest.raises(ValueError, match="clean committed worktree"):
+ evaluator.validate_cora_development_repository_start(
+ {"commit": "a" * 40, "worktree_clean": False, "status": [" M source.py"]}
+ )
+ with pytest.raises(ValueError, match="40-character Git commit"):
+ evaluator.validate_cora_development_repository_start(
+ {"commit": "short", "worktree_clean": True, "status": []}
+ )
+
+
+@pytest.mark.parametrize(
+ ("field", "value", "message"),
+ (
+ ("task_ids", tuple(reversed(evaluator.E008_DEVELOPMENT_TASK_IDS)), "task IDs"),
+ ("content_manifest_sha256", "0" * 64, "content manifest"),
+ ("token_manifest_sha256", "0" * 64, "token manifest"),
+ ),
+)
+def test_experiment008_identity_rejects_every_frozen_identity_drift(
+ field: str,
+ value: object,
+ message: str,
+) -> None:
+ arguments = {
+ "enabled": True,
+ "task_ids": evaluator.E008_DEVELOPMENT_TASK_IDS,
+ "content_manifest_sha256": evaluator.E008_DEVELOPMENT_CONTENT_MANIFEST_SHA256,
+ "token_manifest_sha256": evaluator.E008_DEVELOPMENT_TOKEN_MANIFEST_SHA256,
+ }
+ evaluator.validate_cora_development_identity(**arguments)
+ arguments[field] = value
+
+ with pytest.raises(ValueError, match=message):
+ evaluator.validate_cora_development_identity(**arguments)
+
+
+def test_experiment008_authenticates_exact_selector_pair_and_quotas(
+ monkeypatch: pytest.MonkeyPatch,
+) -> None:
+ selectors = [
+ _frozen_selector(evaluator.HRR_ARTIFACT_KIND),
+ _frozen_selector(evaluator.LOSS_ARTIFACT_KIND),
+ ]
+ monkeypatch.setattr(evaluator, "CQER_DEVELOPMENT_TASK_IDS", tuple(range(100, 108)))
+ monkeypatch.setattr(
+ evaluator,
+ "CQER_FROZEN_SELECTOR_CANONICAL_SHA256S",
+ tuple(
+ evaluator.sha256_bytes(evaluator.canonical_json_bytes(selector))
+ for selector in selectors
+ ),
+ )
+
+ evaluator.validate_cora_selector_artifacts(enabled=True, selectors=selectors)
+ evaluator.validate_cora_layer_quotas(
+ enabled=True,
+ quotas=dict(evaluator.CQER_FROZEN_LAYER_QUOTAS),
+ )
+
+ drifted_selector = deepcopy(selectors)
+ drifted_selector[1]["byte_budget"]["target_resident_bytes"] = 999
+ with pytest.raises(ValueError, match="canonical hashes"):
+ evaluator.validate_cora_selector_artifacts(
+ enabled=True,
+ selectors=drifted_selector,
+ )
+
+ drifted_quotas = dict(evaluator.CQER_FROZEN_LAYER_QUOTAS)
+ drifted_quotas[0] -= 1
+ drifted_quotas[1] += 1
+ with pytest.raises(ValueError, match="target-Fisher allocation"):
+ evaluator.validate_cora_layer_quotas(enabled=True, quotas=drifted_quotas)
+
+
+def test_experiment008_cora_path_does_not_authorize_the_protected_window() -> None:
+ with pytest.raises(ValueError, match=r"\[8, 16\) remains closed"):
+ evaluator.validate_cora_development_request(
+ enabled=True,
+ offset=8,
+ limit=8,
+ bootstrap_samples=evaluator.FROZEN_BOOTSTRAP_SAMPLES,
+ )
+
+
+@pytest.mark.parametrize(
+ ("offset", "limit", "bootstrap_samples"),
+ (
+ (8, 8, 10_000),
+ (16, 15, 10_000),
+ (16, 16, 9_999),
+ ),
+)
+def test_generic_holdout_validator_only_bypasses_for_exact_e008_development_request(
+ offset: int,
+ limit: int,
+ bootstrap_samples: int,
+) -> None:
+ evaluator.validate_frozen_holdout_request(
+ offset=16,
+ limit=16,
+ bootstrap_samples=10_000,
+ selectors=[],
+ loss_selector_present=False,
+ storage_boundary_present=False,
+ cora_c2_enabled=True,
+ )
+
+ with pytest.raises(ValueError, match="Experiment 008 CORA-C2"):
+ evaluator.validate_frozen_holdout_request(
+ offset=offset,
+ limit=limit,
+ bootstrap_samples=bootstrap_samples,
+ selectors=[],
+ loss_selector_present=False,
+ storage_boundary_present=False,
+ cora_c2_enabled=True,
+ )
+
+
+def test_cora_c2_development_gate_passes_the_complete_frozen_conjunction() -> None:
+ gate = evaluator.evaluate_cora_c2_development_gate(
+ **_passing_cora_c2_development_inputs()
+ )
+
+ assert gate["schema"] == "recurquant.experiment008-cora-c2-development-gate.v1"
+ assert gate["primary"] == evaluator.CORA_C2_PRIMARY
+ assert gate["passed"] is True
+ assert set(gate["checks"]) == {
+ "exact_per_layer_quotas",
+ "exact_packed_and_selector_bytes",
+ "exact_stage_consume_handshake",
+ "all_values_finite",
+ "lower_nll_than_primary_comparators",
+ "relative_nll_reduction_vs_static",
+ "relative_nll_reduction_vs_adaptive",
+ "relative_nll_reduction_vs_cqer",
+ "paired_lower_ci_vs_static",
+ "paired_lower_ci_vs_cqer",
+ "top1_margin_vs_static_adaptive",
+ "top1_not_lower_than_cqer",
+ "cvar95_margin_vs_static_adaptive",
+ "raw_cora_relative_nll_reduction_vs_cqer",
+ "c2_churn_reduction_vs_raw",
+ "c2_top1_not_lower_than_raw",
+ "c2_nll_worsening_vs_raw",
+ }
+ assert all(check["passed"] is True for check in gate["checks"].values())
+
+
+def test_cora_c2_gate_fails_closed_when_staging_evidence_is_missing() -> None:
+ inputs = _passing_cora_c2_development_inputs()
+ layer = inputs["selector_diagnostics"][evaluator.CORA_C2_PRIMARY][0]["layers"][0]
+ del layer["observations_staged"]
+
+ gate = evaluator.evaluate_cora_c2_development_gate(**inputs)
+
+ assert gate["passed"] is False
+ assert gate["checks"]["exact_stage_consume_handshake"]["passed"] is False
+
+
+def test_cora_c2_gate_rejects_method_or_metric_token_drift() -> None:
+ inputs = _passing_cora_c2_development_inputs()
+ inputs["aggregates"]["posthoc_method"] = deepcopy(
+ inputs["aggregates"][evaluator.CORA_C2_PRIMARY]
+ )
+ with pytest.raises(ValueError, match="frozen six-method set"):
+ evaluator.evaluate_cora_c2_development_gate(**inputs)
+
+ inputs = _passing_cora_c2_development_inputs()
+ inputs["per_task"][evaluator.CORA_C2_PRIMARY][0]["token_count"] = 1
+ with pytest.raises(ValueError, match="aligned token counts"):
+ evaluator.evaluate_cora_c2_development_gate(**inputs)
+
+
+def test_cora_c2_gate_rejects_dropped_transition_tokens() -> None:
+ inputs = _passing_cora_c2_development_inputs()
+ layer = inputs["selector_diagnostics"][evaluator.CORA_C2_PRIMARY][0]["layers"][0]
+ layer["tokens_observed"] = 5
+
+ gate = evaluator.evaluate_cora_c2_development_gate(**inputs)
+
+ assert gate["passed"] is False
+ assert gate["checks"]["exact_stage_consume_handshake"]["passed"] is False
+
+
+def test_evaluator_runs_all_e008_dynamic_methods_with_disjoint_observers() -> None:
+ torch.manual_seed(449)
+ config = tiny_config()
+ model = Qwen3_5ForCausalLM._from_config(
+ config,
+ attn_implementation="eager",
+ ).eval()
+ scores = {0: torch.arange(16, dtype=torch.float32).reshape(2, 8)}
+ plan = evaluator.select_rows_exact_budget(
+ scores,
+ target_resident_bytes=118,
+ group_size=8,
+ )
+ prompt_ids = torch.randint(0, config.vocab_size, (1, 4))
+ code_ids = torch.randint(0, config.vocab_size, (1, 3))
+ dynamic_methods = {
+ evaluator.QUERY_EMA_PRIMARY,
+ evaluator.QUERY_EMA_C2,
+ evaluator.CORA_RAW,
+ evaluator.CORA_C2_PRIMARY,
+ }
+
+ with torch.inference_mode():
+ summaries, _, storage, diagnostics, reference_bytes = evaluator.evaluate_task(
+ model,
+ prompt_ids=prompt_ids,
+ code_ids=code_ids,
+ plans={},
+ adaptive_plans={},
+ query_ema_plans={evaluator.QUERY_EMA_PRIMARY: plan},
+ query_ema_c2_plans={evaluator.QUERY_EMA_C2: plan},
+ cora_specs={
+ evaluator.CORA_RAW: (plan, False),
+ evaluator.CORA_C2_PRIMARY: (plan, True),
+ },
+ include_default_baselines=False,
+ )
+
+ assert set(summaries) == dynamic_methods
+ assert set(diagnostics) == dynamic_methods
+ assert all(summaries[name]["token_count"] == 2 for name in dynamic_methods)
+ assert all(storage[name]["resident_bytes"] == plan.resident_bytes for name in dynamic_methods)
+ assert storage[evaluator.QUERY_EMA_PRIMARY]["selector_auxiliary_bytes"] == 64
+ assert storage[evaluator.QUERY_EMA_C2]["selector_auxiliary_bytes"] == 66
+ assert storage[evaluator.CORA_RAW]["selector_auxiliary_bytes"] == 66
+ assert storage[evaluator.CORA_C2_PRIMARY]["selector_auxiliary_bytes"] == 66
+
+ for name in dynamic_methods:
+ assert len(diagnostics[name]) == 1
+ layer = diagnostics[name][0]
+ assert layer["state_updates"] == 3
+ assert layer["observations_staged"] == 3
+ assert layer["observations_committed"] == 3
+ assert layer["tokens_observed"] == 6
+ assert layer["current_selected_count"] == len(plan.groups_for_layer(0))
+ assert layer["pending_observation"] is False
+
+ assert diagnostics[evaluator.QUERY_EMA_PRIMARY][0]["confirmation_two"] is False
+ assert diagnostics[evaluator.QUERY_EMA_C2][0]["confirmation_two"] is True
+ assert diagnostics[evaluator.CORA_RAW][0]["selection_method"] == evaluator.CORA_RAW
+ assert (
+ diagnostics[evaluator.CORA_C2_PRIMARY][0]["selection_method"]
+ == evaluator.CORA_C2_PRIMARY
+ )
+ assert reference_bytes > 0
+
+
+@pytest.mark.parametrize(
+ ("mutation", "failed_check"),
+ (
+ (
+ lambda values: values["selector_diagnostics"][evaluator.CORA_C2_PRIMARY][0][
+ "layers"
+ ][0].update(current_selected_count=1),
+ "exact_per_layer_quotas",
+ ),
+ (
+ lambda values: values["storage"][evaluator.CORA_C2_PRIMARY].update(
+ resident_bytes_including_selector=110
+ ),
+ "exact_packed_and_selector_bytes",
+ ),
+ (
+ lambda values: values["selector_diagnostics"][evaluator.CORA_C2_PRIMARY][0][
+ "layers"
+ ][0].update(observations_committed=2),
+ "exact_stage_consume_handshake",
+ ),
+ (
+ lambda values: values["per_task_full_code"][evaluator.CORA_C2_PRIMARY][0].update(
+ all_logits_finite=False
+ ),
+ "all_values_finite",
+ ),
+ (
+ lambda values: values["aggregates"][evaluator.CORA_C2_PRIMARY].update(
+ macro_delta_nll=0.80
+ ),
+ "lower_nll_than_primary_comparators",
+ ),
+ (
+ lambda values: values["aggregates"][
+ "target_directional_fisher_difference_int4"
+ ].update(macro_delta_nll=0.874),
+ "relative_nll_reduction_vs_static",
+ ),
+ (
+ lambda values: values["aggregates"][evaluator.ADAPTIVE_TARGET_FISHER].update(
+ macro_delta_nll=0.735
+ ),
+ "relative_nll_reduction_vs_adaptive",
+ ),
+ (
+ lambda values: values["aggregates"][evaluator.QUERY_EMA_PRIMARY].update(
+ macro_delta_nll=0.735
+ ),
+ "relative_nll_reduction_vs_cqer",
+ ),
+ (
+ lambda values: values["contrasts"][
+ "target_directional_fisher_difference_int4"
+ ].update(confidence_interval=[0.0, 0.5]),
+ "paired_lower_ci_vs_static",
+ ),
+ (
+ lambda values: values["contrasts"][evaluator.QUERY_EMA_PRIMARY].update(
+ confidence_interval=[0.0, 0.2]
+ ),
+ "paired_lower_ci_vs_cqer",
+ ),
+ (
+ lambda values: values["aggregates"][evaluator.CORA_C2_PRIMARY].update(
+ macro_top1_agreement=0.799
+ ),
+ "top1_margin_vs_static_adaptive",
+ ),
+ (
+ lambda values: values["aggregates"][evaluator.QUERY_EMA_PRIMARY].update(
+ macro_top1_agreement=0.806
+ ),
+ "top1_not_lower_than_cqer",
+ ),
+ (
+ lambda values: values["aggregates"][evaluator.CORA_C2_PRIMARY].update(
+ macro_cvar95_kl=1.051
+ ),
+ "cvar95_margin_vs_static_adaptive",
+ ),
+ (
+ lambda values: values["aggregates"][evaluator.CORA_RAW].update(
+ macro_delta_nll=0.777
+ ),
+ "raw_cora_relative_nll_reduction_vs_cqer",
+ ),
+ (
+ lambda values: _set_all_cora_c2_committed_churn(values, 4),
+ "c2_churn_reduction_vs_raw",
+ ),
+ (
+ lambda values: values["aggregates"][evaluator.CORA_RAW].update(
+ macro_top1_agreement=0.806
+ ),
+ "c2_top1_not_lower_than_raw",
+ ),
+ (
+ lambda values: values["aggregates"][evaluator.CORA_RAW].update(
+ macro_delta_nll=0.69
+ ),
+ "c2_nll_worsening_vs_raw",
+ ),
+ ),
+)
+def test_cora_c2_development_gate_fails_each_frozen_condition(
+ mutation,
+ failed_check: str,
+) -> None:
+ inputs = _passing_cora_c2_development_inputs()
+ mutation(inputs)
+
+ gate = evaluator.evaluate_cora_c2_development_gate(**inputs)
+
+ assert gate["passed"] is False
+ assert gate["checks"][failed_check]["passed"] is False
diff --git a/tests/test_public_data.py b/tests/test_public_data.py
index 5539191..cdff26f 100644
--- a/tests/test_public_data.py
+++ b/tests/test_public_data.py
@@ -19,6 +19,7 @@
format_mbpp_prompt_code,
load_mbpp_phase,
load_mbpp_rows,
+ load_mbpp_rows_by_task_ids,
mbpp_manifest,
mbpp_manifest_content_sha256,
mbpp_manifest_sha256,
@@ -182,6 +183,53 @@ def fake_loader(*args: Any, **kwargs: Any) -> Iterable[Mapping[str, Any]]:
load_mbpp_rows("development", limit=0)
+def test_task_id_loader_retains_only_targets_in_frozen_order() -> None:
+ calls: list[tuple[tuple[Any, ...], dict[str, Any]]] = []
+ malformed_non_target = {"task_id": 99, "text": object()}
+
+ def fake_loader(*args: Any, **kwargs: Any) -> Iterable[Mapping[str, Any]]:
+ calls.append((args, kwargs))
+ return [malformed_non_target, row(2), row(1), row(3)]
+
+ loaded = load_mbpp_rows_by_task_ids(
+ "calibration",
+ task_ids=(3, 1),
+ load_dataset_fn=fake_loader,
+ )
+
+ assert [item["task_id"] for item in loaded] == [3, 1]
+ assert calls == [
+ (
+ (MBPP_DATASET_ID, MBPP_CONFIG),
+ {"revision": MBPP_REVISION, "split": "train", "streaming": True},
+ )
+ ]
+
+
+def test_task_id_loader_rejects_duplicate_missing_and_confirmation_ids() -> None:
+ def fake_loader(*args: Any, **kwargs: Any) -> Iterable[Mapping[str, Any]]:
+ return [row(1), row(2)]
+
+ with pytest.raises(ValueError, match="unique"):
+ load_mbpp_rows_by_task_ids(
+ "calibration",
+ task_ids=(1, 1),
+ load_dataset_fn=fake_loader,
+ )
+ with pytest.raises(ValueError, match="missing.*3"):
+ load_mbpp_rows_by_task_ids(
+ "calibration",
+ task_ids=(1, 3),
+ load_dataset_fn=fake_loader,
+ )
+ with pytest.raises(ValueError, match="forbidden for confirmation"):
+ load_mbpp_rows_by_task_ids(
+ "confirmation",
+ task_ids=(1,),
+ load_dataset_fn=fake_loader,
+ )
+
+
def test_confirmation_guard_blocks_before_loader_and_accepts_explicit_token() -> None:
calls = 0
diff --git a/tests/test_query_ema_mixed_packed_cache.py b/tests/test_query_ema_mixed_packed_cache.py
index b6e5594..cdda58d 100644
--- a/tests/test_query_ema_mixed_packed_cache.py
+++ b/tests/test_query_ema_mixed_packed_cache.py
@@ -40,11 +40,13 @@ def _cache(
promotions: int = 1,
*,
record_evidence: bool = False,
+ confirmation_two: bool = False,
) -> QueryEmaMixedPackedRecurrentStateCache:
return create_qwen35_query_ema_exact_budget_cache(
tiny_config(),
plan=_plan(promotions),
record_evidence=record_evidence,
+ confirmation_two=confirmation_two,
)
@@ -161,6 +163,40 @@ def test_query_scaling_preserves_row_selection() -> None:
assert torch.equal(_packed_mask(first), _packed_mask(second))
+def test_query_ema_confirmation_two_requires_two_consecutive_raw_hits() -> None:
+ cache = _cache(promotions=1, confirmation_two=True)
+ for row, expected in zip((0, 1, 1), (0, 0, 1), strict=True):
+ cache.stage_query_observation(0, _query(row, tokens=256))
+ cache.update_recurrent_state(_difficult_state(), layer_idx=0)
+ assert _packed_mask(cache).nonzero().flatten().tolist() == [expected]
+
+ diagnostics = cache.query_ema_diagnostics()[0]
+ assert _packed_mask(cache).nonzero().flatten().tolist() == [1]
+ assert diagnostics["confirmation_two"] is True
+ assert diagnostics["observations_staged"] == 3
+ assert diagnostics["observations_committed"] == 3
+ assert diagnostics["mask_transition_count"] == 2
+ assert diagnostics["raw_xor_churn_total"] == 2
+ assert diagnostics["committed_xor_churn_total"] == 2
+ assert diagnostics["admissions_total"] == 1
+ assert diagnostics["dwell_total"] == 1
+ assert diagnostics["previous_raw_mask_bytes"] == 2
+ assert diagnostics["selector_auxiliary_bytes"] == 66
+ assert isinstance(diagnostics["raw_mask_sha256"], str)
+ assert isinstance(diagnostics["committed_mask_sha256"], str)
+
+ cache.reset()
+ reset = cache.query_ema_diagnostics()[0]
+ assert reset["observations_staged"] == 0
+ assert reset["observations_committed"] == 0
+ assert reset["mask_transition_count"] == 0
+ assert reset["raw_xor_churn_total"] == 0
+ assert reset["committed_xor_churn_total"] == 0
+ assert reset["previous_raw_mask_bytes"] == 0
+ assert reset["last_raw_cutoff_score"] is None
+ assert reset["last_committed_normalized_gap"] is None
+
+
def test_missing_and_duplicate_query_observations_fail_closed() -> None:
cache = _cache(promotions=2)
state = torch.zeros((1, 2, 8, 8))
@@ -284,10 +320,12 @@ def test_pending_observation_is_discarded_if_transfer_is_attempted() -> None:
layer.discard_pending_query_observation()
+@pytest.mark.parametrize("confirmation_two", [False, True])
def test_failed_materialization_rolls_back_packed_state_ema_and_generation(
monkeypatch: pytest.MonkeyPatch,
+ confirmation_two: bool,
) -> None:
- cache = _cache(promotions=2)
+ cache = _cache(promotions=2, confirmation_two=confirmation_two)
layer = _layer(cache)
cache.stage_query_observation(0, _query(0, 1, tokens=2))
cache.update_recurrent_state(_difficult_state(), layer_idx=0)
diff --git a/tests/test_transition_observer.py b/tests/test_transition_observer.py
new file mode 100644
index 0000000..84ad86e
--- /dev/null
+++ b/tests/test_transition_observer.py
@@ -0,0 +1,581 @@
+from __future__ import annotations
+
+from contextlib import ExitStack
+from typing import Any
+
+import pytest
+import torch
+from transformers import Qwen3_5ForCausalLM
+
+from recurquant.quantization import QuantizationSpec
+from recurquant.query_energy import Qwen35QueryEnergyObserver
+from recurquant.transformers_cache import RecurrentStateQDQCache
+from recurquant.transition_observer import Qwen35TransitionObserver
+from tests.test_transformers_cache import tiny_config
+
+
+class _TransitionCache:
+ def __init__(
+ self,
+ *,
+ has_previous_state: bool = False,
+ require_query: bool = False,
+ ) -> None:
+ self.previous = has_previous_state
+ self.require_query = require_query
+ self.pending: dict[int, tuple[torch.Tensor, ...]] = {}
+ self.query_pending: dict[int, torch.Tensor] = {}
+ self.staged: list[tuple[int, tuple[torch.Tensor, ...]]] = []
+ self.query_staged: list[tuple[int, torch.Tensor]] = []
+ self.updates: list[tuple[int, torch.Tensor]] = []
+ self.discards: list[int] = []
+ self.query_discards: list[int] = []
+ self.events: list[str] = []
+ self.fail_stage = False
+ self.fail_update = False
+
+ def has_previous_state(self, layer_index: int) -> bool:
+ del layer_index
+ return self.previous
+
+ def stage_transition_observation(
+ self,
+ layer_index: int,
+ query: torch.Tensor,
+ key: torch.Tensor,
+ log_decay: torch.Tensor,
+ beta: torch.Tensor,
+ ) -> None:
+ if self.fail_stage:
+ raise RuntimeError("stage failed")
+ snapshot = tuple(
+ tensor.detach().clone() for tensor in (query, key, log_decay, beta)
+ )
+ self.pending[layer_index] = snapshot
+ self.staged.append((layer_index, snapshot))
+ self.events.append("transition-stage")
+
+ def discard_pending_transition_observations(self, layer_index: int) -> None:
+ self.pending.pop(layer_index, None)
+ self.discards.append(layer_index)
+
+ def stage_query_observation(
+ self,
+ layer_index: int,
+ query: torch.Tensor,
+ *,
+ l2norm_eps: float,
+ ) -> None:
+ assert l2norm_eps > 0
+ snapshot = query.detach().clone()
+ self.query_pending[layer_index] = snapshot
+ self.query_staged.append((layer_index, snapshot))
+ self.events.append("query-stage")
+
+ def discard_pending_query_observation(self, layer_index: int) -> None:
+ self.query_pending.pop(layer_index, None)
+ self.query_discards.append(layer_index)
+
+ def update_recurrent_state(
+ self,
+ state: torch.Tensor,
+ layer_idx: int,
+ ) -> torch.Tensor:
+ self.events.append("cache-write")
+ if self.fail_update:
+ raise RuntimeError("update failed")
+ if layer_idx not in self.pending:
+ raise RuntimeError("transition was not staged before recurrent update")
+ if self.require_query and layer_idx not in self.query_pending:
+ raise RuntimeError("query was not staged before recurrent update")
+ self.pending.pop(layer_idx)
+ self.query_pending.pop(layer_idx, None)
+ self.updates.append((layer_idx, state.detach().clone()))
+ self.previous = True
+ return state
+
+
+class _ReferenceCache:
+ def __init__(self) -> None:
+ self.previous = False
+ self.updates = 0
+
+ def has_previous_state(self, layer_index: int) -> bool:
+ del layer_index
+ return self.previous
+
+ def update_recurrent_state(
+ self,
+ state: torch.Tensor,
+ layer_idx: int,
+ ) -> torch.Tensor:
+ del layer_idx
+ self.previous = True
+ self.updates += 1
+ return state
+
+
+class Qwen3_5GatedDeltaNet(torch.nn.Module):
+ def __init__(self, layer_idx: int) -> None:
+ super().__init__()
+ self.layer_idx = layer_idx
+ self.kernel_calls: list[str] = []
+ self.kernel_inputs: list[tuple[torch.Tensor, ...]] = []
+ self.events: list[str] = []
+ self.fail_kernel = False
+ self.bypass_kernel_wrapper = False
+ self.skip_cache_write = False
+ self.call_kernel_twice = False
+ self.chunk_gated_delta_rule = self._chunk
+ self.recurrent_gated_delta_rule = self._recurrent
+
+ def _kernel(
+ self,
+ kind: str,
+ query: torch.Tensor,
+ key: torch.Tensor,
+ value: torch.Tensor,
+ *,
+ g: torch.Tensor,
+ beta: torch.Tensor,
+ **kwargs: object,
+ ) -> tuple[torch.Tensor, torch.Tensor]:
+ del kwargs
+ self.events.append("kernel-start")
+ if self.fail_kernel:
+ raise RuntimeError("kernel failed")
+ self.kernel_calls.append(kind)
+ snapshot = tuple(
+ tensor.detach().clone() for tensor in (query, key, g, beta)
+ )
+ self.kernel_inputs.append(snapshot)
+ self.events.append("kernel-done")
+ return value, query.sum(dim=1)
+
+ def _chunk(
+ self,
+ query: torch.Tensor,
+ key: torch.Tensor,
+ value: torch.Tensor,
+ *,
+ g: torch.Tensor,
+ beta: torch.Tensor,
+ **kwargs: object,
+ ) -> tuple[torch.Tensor, torch.Tensor]:
+ return self._kernel("chunk", query, key, value, g=g, beta=beta, **kwargs)
+
+ def _recurrent(
+ self,
+ query: torch.Tensor,
+ key: torch.Tensor,
+ value: torch.Tensor,
+ *,
+ g: torch.Tensor,
+ beta: torch.Tensor,
+ **kwargs: object,
+ ) -> tuple[torch.Tensor, torch.Tensor]:
+ return self._kernel(
+ "recurrent",
+ query,
+ key,
+ value,
+ g=g,
+ beta=beta,
+ **kwargs,
+ )
+
+ def forward(
+ self,
+ hidden_states: torch.Tensor,
+ cache_params: object | None = None,
+ attention_mask: torch.Tensor | None = None,
+ **kwargs: object,
+ ) -> torch.Tensor:
+ del attention_mask
+ # Stand in for Qwen3.5's causal convolution, reshape, and key-head repeat.
+ query = (hidden_states + 7.0).repeat_interleave(2, dim=2)
+ key = (hidden_states - 3.0).repeat_interleave(2, dim=2)
+ value = hidden_states.repeat_interleave(2, dim=2)
+ log_decay = -torch.arange(
+ 1,
+ query.shape[1] + 1,
+ dtype=query.dtype,
+ device=query.device,
+ ).reshape(1, -1, 1).expand(query.shape[0], -1, query.shape[2])
+ beta = torch.linspace(
+ 0.1,
+ 0.9,
+ query.shape[1],
+ dtype=query.dtype,
+ device=query.device,
+ ).reshape(1, -1, 1).expand(query.shape[0], -1, query.shape[2])
+ previous = cache_params is not None and cache_params.has_previous_state( # type: ignore[attr-defined]
+ self.layer_idx
+ )
+ kernel = (
+ self.recurrent_gated_delta_rule
+ if previous and query.shape[1] == 1
+ else self.chunk_gated_delta_rule
+ )
+ if self.bypass_kernel_wrapper:
+ kernel = self._recurrent if previous and query.shape[1] == 1 else self._chunk
+ output, final_state = kernel(
+ query,
+ key,
+ value,
+ g=log_decay,
+ beta=beta,
+ cu_seqlens=kwargs.get("cu_seq_lens_q"),
+ )
+ if self.call_kernel_twice:
+ kernel(query, key, value, g=log_decay, beta=beta)
+ if cache_params is not None and not self.skip_cache_write:
+ cache_params.update_recurrent_state( # type: ignore[attr-defined]
+ final_state,
+ self.layer_idx,
+ )
+ return output
+
+
+class _TinyModel(torch.nn.Module):
+ def __init__(self, layers: int = 1) -> None:
+ super().__init__()
+ self.layers = torch.nn.ModuleList(
+ [Qwen3_5GatedDeltaNet(index) for index in range(layers)]
+ )
+
+ def forward(
+ self,
+ hidden_states: torch.Tensor,
+ cache_params: object | None = None,
+ **kwargs: object,
+ ) -> torch.Tensor:
+ output = hidden_states
+ for layer in self.layers:
+ output = layer(output, cache_params=cache_params, **kwargs)
+ return output
+
+
+def _input(sequence_length: int) -> torch.Tensor:
+ return torch.arange(sequence_length * 2, dtype=torch.float32).reshape(
+ 1,
+ sequence_length,
+ 1,
+ 2,
+ )
+
+
+def test_observes_exact_transition_inputs_for_prefill_chunk_and_decode() -> None:
+ model = _TinyModel()
+ cache = _TransitionCache()
+ cache.events = model.layers[0].events
+
+ with Qwen35TransitionObserver(model, caches=[cache]):
+ model(_input(3), cache_params=cache)
+ model(_input(2), cache_params=cache)
+ model(_input(1), cache_params=cache)
+
+ assert model.layers[0].kernel_calls == ["chunk", "chunk", "recurrent"]
+ assert len(cache.staged) == 3
+ assert len(cache.updates) == 3
+ assert not cache.pending
+ for (layer_index, staged), kernel_inputs in zip(
+ cache.staged,
+ model.layers[0].kernel_inputs,
+ strict=True,
+ ):
+ assert layer_index == 0
+ assert len(staged) == 4
+ for observed, expected in zip(staged, kernel_inputs, strict=True):
+ assert torch.equal(observed, expected)
+ query, key, log_decay, beta = staged
+ assert query.shape == key.shape
+ assert query.shape[2] == 2
+ assert log_decay.shape == beta.shape == query.shape[:3]
+
+ assert cache.events == [
+ "kernel-start",
+ "kernel-done",
+ "transition-stage",
+ "cache-write",
+ "kernel-start",
+ "kernel-done",
+ "transition-stage",
+ "cache-write",
+ "kernel-start",
+ "kernel-done",
+ "transition-stage",
+ "cache-write",
+ ]
+
+
+def test_dispatches_strictly_by_identity_and_leaves_reference_cache_alone() -> None:
+ model = _TinyModel()
+ first = _TransitionCache()
+ second = _TransitionCache()
+ reference = _ReferenceCache()
+
+ with Qwen35TransitionObserver(model, caches=[first, second]):
+ model(_input(2), cache_params=first)
+ model(_input(2), cache_params=second)
+ model(_input(2), cache_params=reference)
+
+ assert len(first.staged) == len(second.staged) == 1
+ assert first.staged[0][1][0].data_ptr() != second.staged[0][1][0].data_ptr()
+ assert reference.updates == 1
+
+
+@pytest.mark.parametrize("failure", ["kernel", "stage", "update"])
+def test_every_forward_failure_clears_pending_observation(failure: str) -> None:
+ model = _TinyModel()
+ cache = _TransitionCache()
+ module = model.layers[0]
+ original_forward = module.forward
+ original_chunk = module.chunk_gated_delta_rule
+ original_recurrent = module.recurrent_gated_delta_rule
+ if failure == "kernel":
+ model.layers[0].fail_kernel = True
+ elif failure == "stage":
+ cache.fail_stage = True
+ else:
+ cache.fail_update = True
+
+ with (
+ Qwen35TransitionObserver(model, caches=[cache]),
+ pytest.raises(RuntimeError, match=f"{failure} failed"),
+ ):
+ model(_input(2), cache_params=cache)
+
+ assert not cache.pending
+ assert cache.discards == [0]
+ assert module.forward.__func__ is original_forward.__func__
+ assert "forward" not in module.__dict__
+ assert module.chunk_gated_delta_rule is original_chunk
+ assert module.recurrent_gated_delta_rule is original_recurrent
+
+
+@pytest.mark.parametrize("packed_name", ["cu_seq_lens_q", "cu_seq_lens_k", "cu_seqlens"])
+def test_rejects_packed_cu_seqlens_before_kernel_or_cache_mutation(
+ packed_name: str,
+) -> None:
+ model = _TinyModel()
+ cache = _TransitionCache()
+
+ with (
+ Qwen35TransitionObserver(model, caches=[cache]),
+ pytest.raises(ValueError, match="does not support packed cu_seqlens"),
+ ):
+ model(
+ _input(2),
+ cache_params=cache,
+ **{packed_name: torch.tensor([0, 2])},
+ )
+
+ assert not model.layers[0].kernel_calls
+ assert not cache.staged
+ assert not cache.updates
+
+
+def test_fails_closed_if_forward_bypasses_wrapped_kernel() -> None:
+ model = _TinyModel()
+ cache = _TransitionCache()
+ model.layers[0].bypass_kernel_wrapper = True
+ model.layers[0].skip_cache_write = True
+
+ with (
+ Qwen35TransitionObserver(model, caches=[cache]),
+ pytest.raises(RuntimeError, match="exactly one observed state-kernel call"),
+ ):
+ model(_input(2), cache_params=cache)
+
+ assert not cache.pending
+ assert not cache.staged
+ assert cache.discards == [0]
+
+
+def test_rejects_a_second_kernel_call_without_staging_twice() -> None:
+ model = _TinyModel()
+ cache = _TransitionCache()
+ model.layers[0].call_kernel_twice = True
+
+ with (
+ Qwen35TransitionObserver(model, caches=[cache]),
+ pytest.raises(RuntimeError, match="more than one state kernel"),
+ ):
+ model(_input(2), cache_params=cache)
+
+ assert len(cache.staged) == 1
+ assert not cache.pending
+ assert cache.discards == [0]
+
+
+@pytest.mark.parametrize("transition_outermost", [False, True])
+def test_nests_with_query_energy_observer_in_either_order(
+ transition_outermost: bool,
+) -> None:
+ model = _TinyModel()
+ cache = _TransitionCache(require_query=True)
+ module = model.layers[0]
+ original_forward = module.forward
+ original_chunk = module.chunk_gated_delta_rule
+ original_recurrent = module.recurrent_gated_delta_rule
+ transition = Qwen35TransitionObserver(model, caches=[cache])
+ query = Qwen35QueryEnergyObserver(model, caches=[cache])
+ observers = (query, transition) if transition_outermost else (transition, query)
+
+ with ExitStack() as stack:
+ for observer in observers:
+ stack.enter_context(observer)
+ model(_input(2), cache_params=cache)
+
+ assert len(cache.staged) == len(cache.query_staged) == len(cache.updates) == 1
+ assert not cache.pending
+ assert not cache.query_pending
+ assert module.forward.__func__ is original_forward.__func__
+ assert "forward" not in module.__dict__
+ assert module.chunk_gated_delta_rule is original_chunk
+ assert module.recurrent_gated_delta_rule is original_recurrent
+
+
+def test_nested_observers_both_discard_when_cache_write_fails() -> None:
+ model = _TinyModel()
+ cache = _TransitionCache(require_query=True)
+ cache.fail_update = True
+
+ with (
+ Qwen35TransitionObserver(model, caches=[cache]),
+ Qwen35QueryEnergyObserver(model, caches=[cache]),
+ pytest.raises(RuntimeError, match="update failed"),
+ ):
+ model(_input(2), cache_params=cache)
+
+ assert not cache.pending
+ assert not cache.query_pending
+ assert cache.discards == [0]
+ assert cache.query_discards == [0]
+
+
+def test_installation_is_atomic_and_duplicate_installation_is_rejected() -> None:
+ model = _TinyModel(layers=2)
+ cache = _TransitionCache()
+ first = model.layers[0]
+ originals = (
+ first.forward,
+ first.chunk_gated_delta_rule,
+ first.recurrent_gated_delta_rule,
+ )
+ model.layers[1].recurrent_gated_delta_rule = None # type: ignore[assignment]
+
+ observer = Qwen35TransitionObserver(model, caches=[cache])
+ with pytest.raises(TypeError, match="must be callable"):
+ observer.install()
+
+ assert first.forward.__func__ is originals[0].__func__
+ assert "forward" not in first.__dict__
+ assert first.chunk_gated_delta_rule is originals[1]
+ assert first.recurrent_gated_delta_rule is originals[2]
+ assert not hasattr(model, "_recurquant_transition_observer")
+
+ valid_model = _TinyModel()
+ first_observer = Qwen35TransitionObserver(valid_model, caches=[cache])
+ second_observer = Qwen35TransitionObserver(valid_model, caches=[cache])
+ with first_observer, pytest.raises(RuntimeError, match="already installed"):
+ second_observer.install()
+
+
+@pytest.mark.parametrize(
+ ("caches", "error", "message"),
+ [
+ ([], ValueError, "at least one"),
+ ([object()], TypeError, "stage_transition_observation"),
+ ],
+)
+def test_constructor_rejects_invalid_cache_contract(
+ caches: list[object],
+ error: type[Exception],
+ message: str,
+) -> None:
+ with pytest.raises(error, match=message):
+ Qwen35TransitionObserver(_TinyModel(), caches=caches)
+
+
+def test_constructor_rejects_the_same_cache_identity_twice() -> None:
+ cache = _TransitionCache()
+
+ with pytest.raises(ValueError, match="same object"):
+ Qwen35TransitionObserver(_TinyModel(), caches=[cache, cache])
+
+
+class _ObservedQDQCache(RecurrentStateQDQCache):
+ def __init__(self, config: Any) -> None:
+ super().__init__(config, spec=QuantizationSpec(bits=4, group_size=8))
+ self.transition_observations: list[tuple[int, tuple[torch.Tensor, ...]]] = []
+ self.pending_transitions: dict[int, tuple[torch.Tensor, ...]] = {}
+
+ def stage_transition_observation(
+ self,
+ layer_index: int,
+ query: torch.Tensor,
+ key: torch.Tensor,
+ log_decay: torch.Tensor,
+ beta: torch.Tensor,
+ ) -> None:
+ snapshot = tuple(
+ tensor.detach().clone() for tensor in (query, key, log_decay, beta)
+ )
+ self.pending_transitions[layer_index] = snapshot
+ self.transition_observations.append((layer_index, snapshot))
+
+ def discard_pending_transition_observations(self, layer_index: int) -> None:
+ self.pending_transitions.pop(layer_index, None)
+
+ def update_recurrent_state(
+ self,
+ recurrent_state: torch.Tensor,
+ layer_idx: int,
+ ) -> torch.Tensor:
+ if layer_idx not in self.pending_transitions:
+ raise RuntimeError("transition was not staged before recurrent update")
+ self.pending_transitions.pop(layer_idx)
+ return super().update_recurrent_state(recurrent_state, layer_idx)
+
+
+def test_real_tiny_qwen_runs_prefill_cached_chunk_and_decode() -> None:
+ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
+ config = tiny_config()
+ model = Qwen3_5ForCausalLM._from_config(
+ config,
+ attn_implementation="eager",
+ ).to(device).eval()
+ cache = _ObservedQDQCache(config)
+
+ with torch.inference_mode(), Qwen35TransitionObserver(model, caches=[cache]):
+ prefill = model(
+ torch.randint(0, config.vocab_size, (1, 5), device=device),
+ past_key_values=cache,
+ )
+ chunk = model(
+ torch.randint(0, config.vocab_size, (1, 2), device=device),
+ past_key_values=cache,
+ )
+ decode = model(
+ torch.randint(0, config.vocab_size, (1, 1), device=device),
+ past_key_values=cache,
+ )
+
+ assert prefill.logits.shape == (1, 5, config.vocab_size)
+ assert chunk.logits.shape == (1, 2, config.vocab_size)
+ assert decode.logits.shape == (1, 1, config.vocab_size)
+ assert len(cache.transition_observations) == 3
+ assert not cache.pending_transitions
+ assert [item[1][0].shape[1] for item in cache.transition_observations] == [5, 2, 1]
+ for layer_index, (query, key, log_decay, beta) in cache.transition_observations:
+ assert layer_index == 0
+ assert query.shape == key.shape == (
+ 1,
+ query.shape[1],
+ config.linear_num_value_heads,
+ config.linear_key_head_dim,
+ )
+ assert log_decay.shape == beta.shape == query.shape[:3]
+ assert query.device == key.device == log_decay.device == beta.device == device
From 049a1db57255eeafe9196079709bc5932a1d1f83 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Sun, 26 Jul 2026 10:44:34 +0800
Subject: [PATCH 14/22] docs: record CORA-C2 development rejection
---
README.md | 1 +
...8-cora-c2-development-16task-69eec866.json | 96199 ++++++++++++++++
research/CLAIM_BOUNDARY.md | 24 +-
research/EXPERIMENT_008_CORA_C2_PROTOCOL.md | 6 +-
research/EXPERIMENT_008_RESULT.md | 128 +
research/PRIOR_ART.md | 48 +-
research/STATUS.md | 20 +-
7 files changed, 96403 insertions(+), 23 deletions(-)
create mode 100644 evidence/experiment008-cora-c2-development-16task-69eec866.json
create mode 100644 research/EXPERIMENT_008_RESULT.md
diff --git a/README.md b/README.md
index 5bb72fd..8ee6170 100644
--- a/README.md
+++ b/README.md
@@ -243,6 +243,7 @@ memory reduction, or a cross-model result. See the
- [Frozen public evaluation protocol](research/PUBLIC_EVAL_PROTOCOL_V02.md)
- [MBPP development report](research/DEVELOPMENT_002.md)
- [Current research status](research/STATUS.md)
+- [CORA-C2 development result](research/EXPERIMENT_008_RESULT.md)
- [Claim boundary](research/CLAIM_BOUNDARY.md) and
[prior-art review](research/PRIOR_ART.md)
- [Failed proxy signals and empirical-sensitivity pivot](research/EXPERIMENT_001_SIGNAL_PIVOT.md)
diff --git a/evidence/experiment008-cora-c2-development-16task-69eec866.json b/evidence/experiment008-cora-c2-development-16task-69eec866.json
new file mode 100644
index 0000000..ee2d502
--- /dev/null
+++ b/evidence/experiment008-cora-c2-development-16task-69eec866.json
@@ -0,0 +1,96199 @@
+{
+ "artifact_kind": "recurquant_cora_c2_development_quality_diagnostic",
+ "canonical_evidence_sha256": "24877f73068f765ef0bae6b2bee54ff95d5204977b3c08dfe95516d651c2fb70",
+ "evidence": {
+ "adaptive_policy_contracts": {
+ "adaptive_mse_target_directional_fisher_quota": {
+ "batch_size": 1,
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "resident_bytes": 2564096,
+ "selection": "per-update aligned INT4-to-INT8 row MSE reduction"
+ },
+ "causal_observability_confirm2_mse_target_fisher_quota": {
+ "batch_size": 1,
+ "confirmation_two": true,
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "observability_diagonal_bytes": 147456,
+ "observability_recurrence": "diag(q*q^T + T^T diag(p) T), T=exp(g)(I-beta kk^T)",
+ "packed_recurrent_state_bytes": 2564096,
+ "persistent_observability_dtype": "torch.float32",
+ "previous_raw_mask_bytes": 4608,
+ "query_key_l2norm_epsilon": 1e-06,
+ "read_query_scale": "1 / sqrt(key_row_width)",
+ "resident_bytes_including_selector": 2716160,
+ "selection": "causal trace-normalized diagonal Gated DeltaNet observability predictor multiplied by aligned per-write INT4-to-INT8 row squared-error reduction",
+ "selector_auxiliary_bytes": 152064,
+ "trace_normalization": "across all heads and key rows per layer/token",
+ "workspace_dtype": "torch.float64"
+ },
+ "causal_observability_mse_target_fisher_quota": {
+ "batch_size": 1,
+ "confirmation_two": false,
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "observability_diagonal_bytes": 147456,
+ "observability_recurrence": "diag(q*q^T + T^T diag(p) T), T=exp(g)(I-beta kk^T)",
+ "packed_recurrent_state_bytes": 2564096,
+ "persistent_observability_dtype": "torch.float32",
+ "previous_raw_mask_bytes": 4608,
+ "query_key_l2norm_epsilon": 1e-06,
+ "read_query_scale": "1 / sqrt(key_row_width)",
+ "resident_bytes_including_selector": 2716160,
+ "selection": "causal trace-normalized diagonal Gated DeltaNet observability predictor multiplied by aligned per-write INT4-to-INT8 row squared-error reduction",
+ "selector_auxiliary_bytes": 152064,
+ "trace_normalization": "across all heads and key rows per layer/token",
+ "workspace_dtype": "torch.float64"
+ },
+ "query_ema32_confirm2_mse_target_fisher_quota": {
+ "batch_size": 1,
+ "confirmation_rule": "incumbents remain eligible; new rows require consecutive raw top-quota membership on two state writes",
+ "confirmation_two": true,
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "packed_recurrent_state_bytes": 2564096,
+ "query_energy_half_life_tokens": 32,
+ "query_normalization": "q / sqrt(sum(q^2) + 1e-6), computed in FP32",
+ "resident_bytes_including_selector": 2716160,
+ "selection": "causal normalized-query-energy EMA multiplied by per-write aligned INT4-to-INT8 row-MSE reduction with Confirmation-2",
+ "selector_auxiliary_bytes": 152064
+ },
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "batch_size": 1,
+ "initial_query_energy": "uniform 1 / key-row count",
+ "layer_quota_source": "target_directional_fisher_difference_int4 selector plan",
+ "packed_recurrent_state_bytes": 2564096,
+ "query_energy_decay": 0.9785720620877001,
+ "query_energy_half_life_tokens": 32,
+ "query_normalization": "q / sqrt(sum(q^2) + 1e-6), computed in FP32",
+ "resident_bytes_including_selector": 2711552,
+ "selection": "causal normalized-query-energy EMA multiplied by per-write aligned INT4-to-INT8 row-MSE reduction",
+ "selector_auxiliary_bytes": 147456
+ }
+ },
+ "aggregates": {
+ "adaptive_mse_target_directional_fisher_quota": {
+ "macro_cvar95_kl": 3.0781028866767883,
+ "macro_delta_nll": 0.49961913377046585,
+ "macro_mean_kl": 0.4905063435435295,
+ "macro_top1_agreement": 0.7698915936052799,
+ "maximum_kl": 8.670194625854492,
+ "task_count": 16,
+ "token_count": 798
+ },
+ "causal_observability_confirm2_mse_target_fisher_quota": {
+ "macro_cvar95_kl": 2.8813917115330696,
+ "macro_delta_nll": 0.3915858566761017,
+ "macro_mean_kl": 0.41864895168691874,
+ "macro_top1_agreement": 0.8103738017380238,
+ "maximum_kl": 8.577064514160156,
+ "task_count": 16,
+ "token_count": 798
+ },
+ "causal_observability_mse_target_fisher_quota": {
+ "macro_cvar95_kl": 2.6112778820097446,
+ "macro_delta_nll": 0.3661060743033886,
+ "macro_mean_kl": 0.3896415922790766,
+ "macro_top1_agreement": 0.8017726764082909,
+ "maximum_kl": 7.927745819091797,
+ "task_count": 16,
+ "token_count": 798
+ },
+ "query_ema32_confirm2_mse_target_fisher_quota": {
+ "macro_cvar95_kl": 2.7546808160841465,
+ "macro_delta_nll": 0.39516691491007805,
+ "macro_mean_kl": 0.41655419021844864,
+ "macro_top1_agreement": 0.8111176937818527,
+ "maximum_kl": 8.050419807434082,
+ "task_count": 16,
+ "token_count": 798
+ },
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "macro_cvar95_kl": 2.4055756628513336,
+ "macro_delta_nll": 0.35425034910440445,
+ "macro_mean_kl": 0.36413146927952766,
+ "macro_top1_agreement": 0.802783165127039,
+ "maximum_kl": 7.06448221206665,
+ "task_count": 16,
+ "token_count": 798
+ },
+ "target_directional_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.347835149616003,
+ "macro_delta_nll": 0.5303981080651283,
+ "macro_mean_kl": 0.528649871237576,
+ "macro_top1_agreement": 0.7586527802050114,
+ "maximum_kl": 9.372733116149902,
+ "task_count": 16,
+ "token_count": 798
+ }
+ },
+ "aggregates_full_code_secondary": {
+ "adaptive_mse_target_directional_fisher_quota": {
+ "macro_cvar95_kl": 3.0781028866767883,
+ "macro_delta_nll": 0.4878205582499504,
+ "macro_mean_kl": 0.4789976617321372,
+ "macro_top1_agreement": 0.775614857673645,
+ "maximum_kl": 8.670194625854492,
+ "task_count": 16,
+ "token_count": 814
+ },
+ "causal_observability_confirm2_mse_target_fisher_quota": {
+ "macro_cvar95_kl": 2.8813917115330696,
+ "macro_delta_nll": 0.3827688433229923,
+ "macro_mean_kl": 0.409188368357718,
+ "macro_top1_agreement": 0.8149506449699402,
+ "maximum_kl": 8.577064514160156,
+ "task_count": 16,
+ "token_count": 814
+ },
+ "causal_observability_mse_target_fisher_quota": {
+ "macro_cvar95_kl": 2.6112778820097446,
+ "macro_delta_nll": 0.35773805156350136,
+ "macro_mean_kl": 0.38085155561566353,
+ "macro_top1_agreement": 0.806671217083931,
+ "maximum_kl": 7.927745819091797,
+ "task_count": 16,
+ "token_count": 814
+ },
+ "query_ema32_confirm2_mse_target_fisher_quota": {
+ "macro_cvar95_kl": 2.7546808160841465,
+ "macro_delta_nll": 0.386498399078846,
+ "macro_mean_kl": 0.40721542853862047,
+ "macro_top1_agreement": 0.815608061850071,
+ "maximum_kl": 8.050419807434082,
+ "task_count": 16,
+ "token_count": 814
+ },
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "macro_cvar95_kl": 2.4055756628513336,
+ "macro_delta_nll": 0.346304252743721,
+ "macro_mean_kl": 0.3558998676016927,
+ "macro_top1_agreement": 0.8074802793562412,
+ "maximum_kl": 7.06448221206665,
+ "task_count": 16,
+ "token_count": 814
+ },
+ "target_directional_fisher_difference_int4": {
+ "macro_cvar95_kl": 3.347835149616003,
+ "macro_delta_nll": 0.5179763808846474,
+ "macro_mean_kl": 0.5161478174850345,
+ "macro_top1_agreement": 0.7644606046378613,
+ "maximum_kl": 9.372733116149902,
+ "task_count": 16,
+ "token_count": 814
+ }
+ },
+ "artifact_kind": "recurquant_cora_c2_development_quality_diagnostic",
+ "claim_boundary": "This is the frozen Experiment 008 development diagnostic on ranked calibration window [16, 32), disjoint from the authenticated selector prefix and from prior quality windows. Ranked window [8, 16) remains protected and was not tokenized or evaluated. This result cannot establish confirmation generalization, novelty, speed, state of the art, or a breakthrough. The actual primary uses a causal diagonal observability predictor derived from the Gated DeltaNet state transition, multiplies it by aligned INT4-to-INT8 row squared-error reduction, and applies the frozen Confirmation-2 admission rule under target-Fisher layer quotas. The primary metric excludes the prompt-to-first-code-token prediction because no stored quantized recurrent state can affect that output.",
+ "command": [
+ "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant\\.venv\\Scripts\\python.exe",
+ "scripts\\pilot_evaluate_hrr.py",
+ "--selector-artifact",
+ "artifacts\\experiment006-hrr-selector-8task-c2ad68b.json",
+ "--loss-selector-artifact",
+ "artifacts\\experiment006-loss-selector-8task-c2ad68b.json",
+ "--cora-c2",
+ "--output",
+ "artifacts\\experiment008-cora-c2-development-16task-69eec866.json",
+ "--limit",
+ "16",
+ "--calibration-offset",
+ "16",
+ "--bootstrap-samples",
+ "10000",
+ "--device",
+ "cuda",
+ "--local-files-only"
+ ],
+ "contrasts_baseline_minus_primary_aligned_delta_nll": {
+ "adaptive_mse_target_directional_fisher_quota": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.027790282480418725,
+ 0.18800769913941617
+ ],
+ "mean_improvement": 0.10803327709436417,
+ "paired_examples": 16,
+ "seed": 2339
+ },
+ "causal_observability_mse_target_fisher_quota": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.06890481393784284,
+ 0.019868053775280684
+ ],
+ "mean_improvement": -0.02547978237271309,
+ "paired_examples": 16,
+ "seed": 2339
+ },
+ "query_ema32_confirm2_mse_target_fisher_quota": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.07595706172287463,
+ 0.07375862626358864
+ ],
+ "mean_improvement": 0.003581058233976364,
+ "paired_examples": 16,
+ "seed": 2339
+ },
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ -0.10602090787142514,
+ 0.019262047950178378
+ ],
+ "mean_improvement": -0.037335507571697235,
+ "paired_examples": 16,
+ "seed": 2339
+ },
+ "target_directional_fisher_difference_int4": {
+ "bootstrap_samples": 10000,
+ "confidence": 0.95,
+ "confidence_interval": [
+ 0.0436136125586927,
+ 0.2466757520101964
+ ],
+ "mean_improvement": 0.13881225138902664,
+ "paired_examples": 16,
+ "seed": 2339
+ }
+ },
+ "created_at_utc": "2026-07-22T20:51:42.559117+00:00",
+ "dataset": {
+ "authenticated_selector_prefix": {
+ "all_selectors_matched": true,
+ "manifest": {
+ "config": "full",
+ "dataset_id": "google-research-datasets/mbpp",
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "phase": "calibration",
+ "revision": "4bb6404fdc6cacfda99d4ac4205087b89d32030c",
+ "row_count": 8,
+ "rows": [
+ {
+ "sha256": "df3782543fe3ef4a8443a7737e1f3d7678c974984d7960d19a53c0a94ff8c046",
+ "task_id": 651
+ },
+ {
+ "sha256": "807f4d8170d4920740bd290f081110e02695892d741647dd9c06eddcde0a659d",
+ "task_id": 657
+ },
+ {
+ "sha256": "54dc13e4c5b064b80966b9f315eed560502e37213bd74a5b712fcfc01cb605f3",
+ "task_id": 702
+ },
+ {
+ "sha256": "3efcea05b02d799e12cb49c5d26bbbf2c00972fd466bc30add66ad09a754fc14",
+ "task_id": 720
+ },
+ {
+ "sha256": "18b5d375c0d8a97b8a071d73e606ae091afe52f218959ae7e262ef7e2b155d50",
+ "task_id": 794
+ },
+ {
+ "sha256": "a58f7ba4c00be27de2a85b091d06e2bd8ad57f4f7a3859501b027350a2731307",
+ "task_id": 903
+ },
+ {
+ "sha256": "6d3c59ac8dba827b2c8d4ba8307892558d3832c1e622e12f9c8d3ae7371cc4d4",
+ "task_id": 918
+ },
+ {
+ "sha256": "3208a23529c654eb5f21fcab152e38a4d46e193c11bfba5e3efe6a614339e6f3",
+ "task_id": 945
+ }
+ ],
+ "schema": "recurquant.mbpp-manifest.v1",
+ "selection_namespace": "rq-v0.2",
+ "source_split": "train"
+ },
+ "manifest_sha256": "97d691a6d45ee29668f5b0151c1a0885629539ac9e7967e9baa30cfb5c97ae8b",
+ "ordered_task_ids": [
+ 945,
+ 794,
+ 657,
+ 702,
+ 651,
+ 720,
+ 903,
+ 918
+ ],
+ "selector_count": 2,
+ "token_manifest": [
+ {
+ "aligned_scored_tokens": 19,
+ "code_tokens": 20,
+ "full_code_scored_tokens": 20,
+ "prompt_tokens": 112,
+ "task_id": 945
+ },
+ {
+ "aligned_scored_tokens": 52,
+ "code_tokens": 53,
+ "full_code_scored_tokens": 53,
+ "prompt_tokens": 101,
+ "task_id": 794
+ },
+ {
+ "aligned_scored_tokens": 94,
+ "code_tokens": 95,
+ "full_code_scored_tokens": 95,
+ "prompt_tokens": 76,
+ "task_id": 657
+ },
+ {
+ "aligned_scored_tokens": 180,
+ "code_tokens": 181,
+ "full_code_scored_tokens": 181,
+ "prompt_tokens": 151,
+ "task_id": 702
+ },
+ {
+ "aligned_scored_tokens": 37,
+ "code_tokens": 38,
+ "full_code_scored_tokens": 38,
+ "prompt_tokens": 117,
+ "task_id": 651
+ },
+ {
+ "aligned_scored_tokens": 51,
+ "code_tokens": 52,
+ "full_code_scored_tokens": 52,
+ "prompt_tokens": 240,
+ "task_id": 720
+ },
+ {
+ "aligned_scored_tokens": 77,
+ "code_tokens": 78,
+ "full_code_scored_tokens": 78,
+ "prompt_tokens": 83,
+ "task_id": 903
+ },
+ {
+ "aligned_scored_tokens": 132,
+ "code_tokens": 133,
+ "full_code_scored_tokens": 133,
+ "prompt_tokens": 96,
+ "task_id": 918
+ }
+ ]
+ },
+ "content_manifest_sha256": "21dcc6e1955918a9f6baae3d02e7ba2781600405f91fe42bbe18eac8ca6dde5e",
+ "development_identity": {
+ "actual_token_manifest_sha256": "5a8e7b56528e3ccecc95ff83b2e59749d81dab27d0233fefafc510622a973f87",
+ "content_manifest_sha256": "21dcc6e1955918a9f6baae3d02e7ba2781600405f91fe42bbe18eac8ca6dde5e",
+ "identity_authenticated_before_model_load": true,
+ "ordered_task_ids": [
+ 666,
+ 795,
+ 944,
+ 653,
+ 857,
+ 884,
+ 878,
+ 822,
+ 687,
+ 820,
+ 920,
+ 771,
+ 869,
+ 851,
+ 728,
+ 704
+ ],
+ "protected_window": [
+ 8,
+ 16
+ ],
+ "protected_window_tokenized_or_evaluated": false,
+ "token_manifest_sha256": "5a8e7b56528e3ccecc95ff83b2e59749d81dab27d0233fefafc510622a973f87"
+ },
+ "disjoint_from_all_selector_artifacts": true,
+ "evaluation_task_ids": [
+ 666,
+ 795,
+ 944,
+ 653,
+ 857,
+ 884,
+ 878,
+ 822,
+ 687,
+ 820,
+ 920,
+ 771,
+ 869,
+ 851,
+ 728,
+ 704
+ ],
+ "manifest": {
+ "config": "full",
+ "dataset_id": "google-research-datasets/mbpp",
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "phase": "calibration",
+ "revision": "4bb6404fdc6cacfda99d4ac4205087b89d32030c",
+ "row_count": 16,
+ "rows": [
+ {
+ "sha256": "346aee9efc80955f531c1574db8b5c2eb25b48876c76a0aba1a35f15138800db",
+ "task_id": 653
+ },
+ {
+ "sha256": "b4f5989005c921c3ab94ab52c8115e79f99a22390bc1d6e6235d36fd02687fb9",
+ "task_id": 666
+ },
+ {
+ "sha256": "350e5f813e96ccbba22a8db978e72840806c6e6fe4be28a06905c3eae5cb68ef",
+ "task_id": 687
+ },
+ {
+ "sha256": "dfedafc5ad5c0985fcb5f3451f9434628f9d43077fe643ca1d5026106b5caccc",
+ "task_id": 704
+ },
+ {
+ "sha256": "1c0a375e35a7a918b8caaaf3314b75c36dd75e95f4ce01fa24ac80bb7c5af8cc",
+ "task_id": 728
+ },
+ {
+ "sha256": "7470507a8c6c27b54bb1a56ef07e012d75c78bacbf8570aff8d0bb5f9919ac67",
+ "task_id": 771
+ },
+ {
+ "sha256": "0da1480294ac295b6ceebf822dd2b512863c26b314e43f95ca6e5945e6ecfd82",
+ "task_id": 795
+ },
+ {
+ "sha256": "9ba789ae1cb3f3e21ec124ab7bd3447665019e54aa77fdb409c6d5a871994809",
+ "task_id": 820
+ },
+ {
+ "sha256": "ba6eaa8bdd27506a5372e9e6beeb080d23bbbdc6996661d75ab26290d05fb3a4",
+ "task_id": 822
+ },
+ {
+ "sha256": "b1761ef5396f9ba11c5047b5cb0ff0955f3c8ad67f1c8449a4d7b394f8009076",
+ "task_id": 851
+ },
+ {
+ "sha256": "e9ac9acf8ca396274eef0b4479cfe2c0126ab6656222828b6198a497fa46f913",
+ "task_id": 857
+ },
+ {
+ "sha256": "be0c42f832fb5afeb271845eee64ce97f919537ea266e41c881b798c9d15cabc",
+ "task_id": 869
+ },
+ {
+ "sha256": "88b2f4e5c166757c111f0baff74c20fa4d8f13a4fa13d8403c7cacc4f0558e9c",
+ "task_id": 878
+ },
+ {
+ "sha256": "947efb4b2967163d5a5e7816e091b8b4a2a58c73e479c66ccc1b65fd7ea79cbb",
+ "task_id": 884
+ },
+ {
+ "sha256": "1539ae14cc92af940de077b6700a7a17ca2649aa26e165e15f6761cabde1363a",
+ "task_id": 920
+ },
+ {
+ "sha256": "9a7fbac2ccd13b8940f81ef75d20a4521cad8d39ccfe78714d85c49f712597d0",
+ "task_id": 944
+ }
+ ],
+ "schema": "recurquant.mbpp-manifest.v1",
+ "selection_namespace": "rq-v0.2",
+ "source_split": "train"
+ },
+ "manifest_sha256": "21dcc6e1955918a9f6baae3d02e7ba2781600405f91fe42bbe18eac8ca6dde5e",
+ "phase": "calibration",
+ "selection_mode": "experiment008_development",
+ "selection_window": {
+ "calibration_offset": 16,
+ "limit": 16,
+ "resolved_before_tokenization_and_model_load": true,
+ "stop_exclusive": 32
+ },
+ "selector_task_ids": [
+ 651,
+ 657,
+ 702,
+ 720,
+ 794,
+ 903,
+ 918,
+ 945
+ ],
+ "selector_task_prefix": false,
+ "task_count": 16,
+ "tasks": [
+ {
+ "aligned_scored_tokens": 38,
+ "code_tokens": 39,
+ "full_code_scored_tokens": 39,
+ "prompt_tokens": 69,
+ "task_id": 666
+ },
+ {
+ "aligned_scored_tokens": 34,
+ "code_tokens": 35,
+ "full_code_scored_tokens": 35,
+ "prompt_tokens": 290,
+ "task_id": 795
+ },
+ {
+ "aligned_scored_tokens": 25,
+ "code_tokens": 26,
+ "full_code_scored_tokens": 26,
+ "prompt_tokens": 91,
+ "task_id": 944
+ },
+ {
+ "aligned_scored_tokens": 37,
+ "code_tokens": 38,
+ "full_code_scored_tokens": 38,
+ "prompt_tokens": 249,
+ "task_id": 653
+ },
+ {
+ "aligned_scored_tokens": 21,
+ "code_tokens": 22,
+ "full_code_scored_tokens": 22,
+ "prompt_tokens": 271,
+ "task_id": 857
+ },
+ {
+ "aligned_scored_tokens": 67,
+ "code_tokens": 68,
+ "full_code_scored_tokens": 68,
+ "prompt_tokens": 112,
+ "task_id": 884
+ },
+ {
+ "aligned_scored_tokens": 28,
+ "code_tokens": 29,
+ "full_code_scored_tokens": 29,
+ "prompt_tokens": 139,
+ "task_id": 878
+ },
+ {
+ "aligned_scored_tokens": 131,
+ "code_tokens": 132,
+ "full_code_scored_tokens": 132,
+ "prompt_tokens": 71,
+ "task_id": 822
+ },
+ {
+ "aligned_scored_tokens": 63,
+ "code_tokens": 64,
+ "full_code_scored_tokens": 64,
+ "prompt_tokens": 89,
+ "task_id": 687
+ },
+ {
+ "aligned_scored_tokens": 30,
+ "code_tokens": 31,
+ "full_code_scored_tokens": 31,
+ "prompt_tokens": 74,
+ "task_id": 820
+ },
+ {
+ "aligned_scored_tokens": 35,
+ "code_tokens": 36,
+ "full_code_scored_tokens": 36,
+ "prompt_tokens": 215,
+ "task_id": 920
+ },
+ {
+ "aligned_scored_tokens": 134,
+ "code_tokens": 135,
+ "full_code_scored_tokens": 135,
+ "prompt_tokens": 75,
+ "task_id": 771
+ },
+ {
+ "aligned_scored_tokens": 46,
+ "code_tokens": 47,
+ "full_code_scored_tokens": 47,
+ "prompt_tokens": 305,
+ "task_id": 869
+ },
+ {
+ "aligned_scored_tokens": 35,
+ "code_tokens": 36,
+ "full_code_scored_tokens": 36,
+ "prompt_tokens": 95,
+ "task_id": 851
+ },
+ {
+ "aligned_scored_tokens": 36,
+ "code_tokens": 37,
+ "full_code_scored_tokens": 37,
+ "prompt_tokens": 128,
+ "task_id": 728
+ },
+ {
+ "aligned_scored_tokens": 38,
+ "code_tokens": 39,
+ "full_code_scored_tokens": 39,
+ "prompt_tokens": 114,
+ "task_id": 704
+ }
+ ],
+ "token_manifest_sha256": "5a8e7b56528e3ccecc95ff83b2e59749d81dab27d0233fefafc510622a973f87"
+ },
+ "development_gate": {
+ "applicable": true,
+ "checks": {
+ "all_values_finite": {
+ "passed": true
+ },
+ "authenticated_repository_sources_and_manifests": {
+ "development_content_manifest_authenticated": true,
+ "development_token_manifest_authenticated": true,
+ "passed": true,
+ "protected_window_8_16_evaluated": false,
+ "repository_commit_stable": true,
+ "selector_artifacts_authenticated": true,
+ "source_hashes_stable": true,
+ "worktree_clean_at_start_and_end": true
+ },
+ "c2_churn_reduction_vs_raw": {
+ "c2": {
+ "committed_xor_churn_total": 8166,
+ "normalization_denominator": 3153696,
+ "normalized_committed_churn": 0.002589342790173815
+ },
+ "minimum": 0.5,
+ "observed": 0.7998725615135771,
+ "passed": true,
+ "raw": {
+ "committed_xor_churn_total": 40804,
+ "normalization_denominator": 3153696,
+ "normalized_committed_churn": 0.01293846965592118
+ }
+ },
+ "c2_nll_worsening_vs_raw": {
+ "maximum": 0.01,
+ "observed": 0.06959672117212193,
+ "passed": false
+ },
+ "c2_top1_not_lower_than_raw": {
+ "passed": true,
+ "primary": 0.8103738017380238,
+ "raw": 0.8017726764082909
+ },
+ "cvar95_margin_vs_static_adaptive": {
+ "maximum": 0.1,
+ "observed_disadvantage": -0.19671117514371872,
+ "passed": true
+ },
+ "exact_packed_and_selector_bytes": {
+ "expected_cora_auxiliary_bytes": 152064,
+ "expected_packed_bytes": 2564096,
+ "expected_query_auxiliary_bytes": 147456,
+ "observed": {
+ "causal_observability_confirm2_mse_target_fisher_quota": {
+ "high_precision_groups": 1976,
+ "packed_bytes": 2564096,
+ "resident_bytes_including_selector": 2716160,
+ "selector_auxiliary_bytes": 152064
+ },
+ "causal_observability_mse_target_fisher_quota": {
+ "high_precision_groups": 1976,
+ "packed_bytes": 2564096,
+ "resident_bytes_including_selector": 2716160,
+ "selector_auxiliary_bytes": 152064
+ },
+ "query_ema32_confirm2_mse_target_fisher_quota": {
+ "high_precision_groups": 1976,
+ "packed_bytes": 2564096,
+ "resident_bytes_including_selector": 2716160,
+ "selector_auxiliary_bytes": 152064
+ },
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "high_precision_groups": 1976,
+ "packed_bytes": 2564096,
+ "resident_bytes_including_selector": 2711552,
+ "selector_auxiliary_bytes": 147456
+ }
+ },
+ "passed": true
+ },
+ "exact_per_layer_quotas": {
+ "expected_quotas": {
+ "0": 355,
+ "1": 380,
+ "10": 84,
+ "12": 30,
+ "13": 62,
+ "14": 54,
+ "16": 45,
+ "17": 27,
+ "18": 7,
+ "2": 269,
+ "20": 9,
+ "21": 7,
+ "22": 55,
+ "4": 179,
+ "5": 185,
+ "6": 105,
+ "8": 80,
+ "9": 43
+ },
+ "expected_total_promotions": 1976,
+ "method_audits": {
+ "causal_observability_confirm2_mse_target_fisher_quota": [
+ {
+ "committed_xor_churn": 376,
+ "handshake_passed": true,
+ "mask_transition_count": 684,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 666,
+ "tokens_observed": 1926
+ },
+ {
+ "committed_xor_churn": 418,
+ "handshake_passed": true,
+ "mask_transition_count": 612,
+ "quota_passed": true,
+ "state_updates": 630,
+ "task_id": 795,
+ "tokens_observed": 5832
+ },
+ {
+ "committed_xor_churn": 290,
+ "handshake_passed": true,
+ "mask_transition_count": 450,
+ "quota_passed": true,
+ "state_updates": 468,
+ "task_id": 944,
+ "tokens_observed": 2088
+ },
+ {
+ "committed_xor_churn": 400,
+ "handshake_passed": true,
+ "mask_transition_count": 666,
+ "quota_passed": true,
+ "state_updates": 684,
+ "task_id": 653,
+ "tokens_observed": 5148
+ },
+ {
+ "committed_xor_churn": 264,
+ "handshake_passed": true,
+ "mask_transition_count": 378,
+ "quota_passed": true,
+ "state_updates": 396,
+ "task_id": 857,
+ "tokens_observed": 5256
+ },
+ {
+ "committed_xor_churn": 702,
+ "handshake_passed": true,
+ "mask_transition_count": 1206,
+ "quota_passed": true,
+ "state_updates": 1224,
+ "task_id": 884,
+ "tokens_observed": 3222
+ },
+ {
+ "committed_xor_churn": 302,
+ "handshake_passed": true,
+ "mask_transition_count": 504,
+ "quota_passed": true,
+ "state_updates": 522,
+ "task_id": 878,
+ "tokens_observed": 3006
+ },
+ {
+ "committed_xor_churn": 1144,
+ "handshake_passed": true,
+ "mask_transition_count": 2358,
+ "quota_passed": true,
+ "state_updates": 2376,
+ "task_id": 822,
+ "tokens_observed": 3636
+ },
+ {
+ "committed_xor_churn": 482,
+ "handshake_passed": true,
+ "mask_transition_count": 1134,
+ "quota_passed": true,
+ "state_updates": 1152,
+ "task_id": 687,
+ "tokens_observed": 2736
+ },
+ {
+ "committed_xor_churn": 276,
+ "handshake_passed": true,
+ "mask_transition_count": 540,
+ "quota_passed": true,
+ "state_updates": 558,
+ "task_id": 820,
+ "tokens_observed": 1872
+ },
+ {
+ "committed_xor_churn": 442,
+ "handshake_passed": true,
+ "mask_transition_count": 630,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 920,
+ "tokens_observed": 4500
+ },
+ {
+ "committed_xor_churn": 1286,
+ "handshake_passed": true,
+ "mask_transition_count": 2412,
+ "quota_passed": true,
+ "state_updates": 2430,
+ "task_id": 771,
+ "tokens_observed": 3762
+ },
+ {
+ "committed_xor_churn": 626,
+ "handshake_passed": true,
+ "mask_transition_count": 828,
+ "quota_passed": true,
+ "state_updates": 846,
+ "task_id": 869,
+ "tokens_observed": 6318
+ },
+ {
+ "committed_xor_churn": 332,
+ "handshake_passed": true,
+ "mask_transition_count": 630,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 851,
+ "tokens_observed": 2340
+ },
+ {
+ "committed_xor_churn": 410,
+ "handshake_passed": true,
+ "mask_transition_count": 648,
+ "quota_passed": true,
+ "state_updates": 666,
+ "task_id": 728,
+ "tokens_observed": 2952
+ },
+ {
+ "committed_xor_churn": 416,
+ "handshake_passed": true,
+ "mask_transition_count": 684,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 704,
+ "tokens_observed": 2736
+ }
+ ],
+ "causal_observability_mse_target_fisher_quota": [
+ {
+ "committed_xor_churn": 1818,
+ "handshake_passed": true,
+ "mask_transition_count": 684,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 666,
+ "tokens_observed": 1926
+ },
+ {
+ "committed_xor_churn": 1792,
+ "handshake_passed": true,
+ "mask_transition_count": 612,
+ "quota_passed": true,
+ "state_updates": 630,
+ "task_id": 795,
+ "tokens_observed": 5832
+ },
+ {
+ "committed_xor_churn": 1652,
+ "handshake_passed": true,
+ "mask_transition_count": 450,
+ "quota_passed": true,
+ "state_updates": 468,
+ "task_id": 944,
+ "tokens_observed": 2088
+ },
+ {
+ "committed_xor_churn": 1928,
+ "handshake_passed": true,
+ "mask_transition_count": 666,
+ "quota_passed": true,
+ "state_updates": 684,
+ "task_id": 653,
+ "tokens_observed": 5148
+ },
+ {
+ "committed_xor_churn": 1146,
+ "handshake_passed": true,
+ "mask_transition_count": 378,
+ "quota_passed": true,
+ "state_updates": 396,
+ "task_id": 857,
+ "tokens_observed": 5256
+ },
+ {
+ "committed_xor_churn": 3428,
+ "handshake_passed": true,
+ "mask_transition_count": 1206,
+ "quota_passed": true,
+ "state_updates": 1224,
+ "task_id": 884,
+ "tokens_observed": 3222
+ },
+ {
+ "committed_xor_churn": 1326,
+ "handshake_passed": true,
+ "mask_transition_count": 504,
+ "quota_passed": true,
+ "state_updates": 522,
+ "task_id": 878,
+ "tokens_observed": 3006
+ },
+ {
+ "committed_xor_churn": 7076,
+ "handshake_passed": true,
+ "mask_transition_count": 2358,
+ "quota_passed": true,
+ "state_updates": 2376,
+ "task_id": 822,
+ "tokens_observed": 3636
+ },
+ {
+ "committed_xor_churn": 2886,
+ "handshake_passed": true,
+ "mask_transition_count": 1134,
+ "quota_passed": true,
+ "state_updates": 1152,
+ "task_id": 687,
+ "tokens_observed": 2736
+ },
+ {
+ "committed_xor_churn": 1292,
+ "handshake_passed": true,
+ "mask_transition_count": 540,
+ "quota_passed": true,
+ "state_updates": 558,
+ "task_id": 820,
+ "tokens_observed": 1872
+ },
+ {
+ "committed_xor_churn": 1890,
+ "handshake_passed": true,
+ "mask_transition_count": 630,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 920,
+ "tokens_observed": 4500
+ },
+ {
+ "committed_xor_churn": 6238,
+ "handshake_passed": true,
+ "mask_transition_count": 2412,
+ "quota_passed": true,
+ "state_updates": 2430,
+ "task_id": 771,
+ "tokens_observed": 3762
+ },
+ {
+ "committed_xor_churn": 2774,
+ "handshake_passed": true,
+ "mask_transition_count": 828,
+ "quota_passed": true,
+ "state_updates": 846,
+ "task_id": 869,
+ "tokens_observed": 6318
+ },
+ {
+ "committed_xor_churn": 1754,
+ "handshake_passed": true,
+ "mask_transition_count": 630,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 851,
+ "tokens_observed": 2340
+ },
+ {
+ "committed_xor_churn": 2006,
+ "handshake_passed": true,
+ "mask_transition_count": 648,
+ "quota_passed": true,
+ "state_updates": 666,
+ "task_id": 728,
+ "tokens_observed": 2952
+ },
+ {
+ "committed_xor_churn": 1798,
+ "handshake_passed": true,
+ "mask_transition_count": 684,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 704,
+ "tokens_observed": 2736
+ }
+ ],
+ "query_ema32_confirm2_mse_target_fisher_quota": [
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 666,
+ "tokens_observed": 1926
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 630,
+ "task_id": 795,
+ "tokens_observed": 5832
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 468,
+ "task_id": 944,
+ "tokens_observed": 2088
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 684,
+ "task_id": 653,
+ "tokens_observed": 5148
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 396,
+ "task_id": 857,
+ "tokens_observed": 5256
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 1224,
+ "task_id": 884,
+ "tokens_observed": 3222
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 522,
+ "task_id": 878,
+ "tokens_observed": 3006
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 2376,
+ "task_id": 822,
+ "tokens_observed": 3636
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 1152,
+ "task_id": 687,
+ "tokens_observed": 2736
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 558,
+ "task_id": 820,
+ "tokens_observed": 1872
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 920,
+ "tokens_observed": 4500
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 2430,
+ "task_id": 771,
+ "tokens_observed": 3762
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 846,
+ "task_id": 869,
+ "tokens_observed": 6318
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 851,
+ "tokens_observed": 2340
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 666,
+ "task_id": 728,
+ "tokens_observed": 2952
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 704,
+ "tokens_observed": 2736
+ }
+ ],
+ "query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 666,
+ "tokens_observed": 1926
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 630,
+ "task_id": 795,
+ "tokens_observed": 5832
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 468,
+ "task_id": 944,
+ "tokens_observed": 2088
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 684,
+ "task_id": 653,
+ "tokens_observed": 5148
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 396,
+ "task_id": 857,
+ "tokens_observed": 5256
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 1224,
+ "task_id": 884,
+ "tokens_observed": 3222
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 522,
+ "task_id": 878,
+ "tokens_observed": 3006
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 2376,
+ "task_id": 822,
+ "tokens_observed": 3636
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 1152,
+ "task_id": 687,
+ "tokens_observed": 2736
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 558,
+ "task_id": 820,
+ "tokens_observed": 1872
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 920,
+ "tokens_observed": 4500
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 2430,
+ "task_id": 771,
+ "tokens_observed": 3762
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 846,
+ "task_id": 869,
+ "tokens_observed": 6318
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 851,
+ "tokens_observed": 2340
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 666,
+ "task_id": 728,
+ "tokens_observed": 2952
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 704,
+ "tokens_observed": 2736
+ }
+ ]
+ },
+ "passed": true
+ },
+ "exact_stage_consume_handshake": {
+ "method_audits": {
+ "causal_observability_confirm2_mse_target_fisher_quota": [
+ {
+ "committed_xor_churn": 376,
+ "handshake_passed": true,
+ "mask_transition_count": 684,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 666,
+ "tokens_observed": 1926
+ },
+ {
+ "committed_xor_churn": 418,
+ "handshake_passed": true,
+ "mask_transition_count": 612,
+ "quota_passed": true,
+ "state_updates": 630,
+ "task_id": 795,
+ "tokens_observed": 5832
+ },
+ {
+ "committed_xor_churn": 290,
+ "handshake_passed": true,
+ "mask_transition_count": 450,
+ "quota_passed": true,
+ "state_updates": 468,
+ "task_id": 944,
+ "tokens_observed": 2088
+ },
+ {
+ "committed_xor_churn": 400,
+ "handshake_passed": true,
+ "mask_transition_count": 666,
+ "quota_passed": true,
+ "state_updates": 684,
+ "task_id": 653,
+ "tokens_observed": 5148
+ },
+ {
+ "committed_xor_churn": 264,
+ "handshake_passed": true,
+ "mask_transition_count": 378,
+ "quota_passed": true,
+ "state_updates": 396,
+ "task_id": 857,
+ "tokens_observed": 5256
+ },
+ {
+ "committed_xor_churn": 702,
+ "handshake_passed": true,
+ "mask_transition_count": 1206,
+ "quota_passed": true,
+ "state_updates": 1224,
+ "task_id": 884,
+ "tokens_observed": 3222
+ },
+ {
+ "committed_xor_churn": 302,
+ "handshake_passed": true,
+ "mask_transition_count": 504,
+ "quota_passed": true,
+ "state_updates": 522,
+ "task_id": 878,
+ "tokens_observed": 3006
+ },
+ {
+ "committed_xor_churn": 1144,
+ "handshake_passed": true,
+ "mask_transition_count": 2358,
+ "quota_passed": true,
+ "state_updates": 2376,
+ "task_id": 822,
+ "tokens_observed": 3636
+ },
+ {
+ "committed_xor_churn": 482,
+ "handshake_passed": true,
+ "mask_transition_count": 1134,
+ "quota_passed": true,
+ "state_updates": 1152,
+ "task_id": 687,
+ "tokens_observed": 2736
+ },
+ {
+ "committed_xor_churn": 276,
+ "handshake_passed": true,
+ "mask_transition_count": 540,
+ "quota_passed": true,
+ "state_updates": 558,
+ "task_id": 820,
+ "tokens_observed": 1872
+ },
+ {
+ "committed_xor_churn": 442,
+ "handshake_passed": true,
+ "mask_transition_count": 630,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 920,
+ "tokens_observed": 4500
+ },
+ {
+ "committed_xor_churn": 1286,
+ "handshake_passed": true,
+ "mask_transition_count": 2412,
+ "quota_passed": true,
+ "state_updates": 2430,
+ "task_id": 771,
+ "tokens_observed": 3762
+ },
+ {
+ "committed_xor_churn": 626,
+ "handshake_passed": true,
+ "mask_transition_count": 828,
+ "quota_passed": true,
+ "state_updates": 846,
+ "task_id": 869,
+ "tokens_observed": 6318
+ },
+ {
+ "committed_xor_churn": 332,
+ "handshake_passed": true,
+ "mask_transition_count": 630,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 851,
+ "tokens_observed": 2340
+ },
+ {
+ "committed_xor_churn": 410,
+ "handshake_passed": true,
+ "mask_transition_count": 648,
+ "quota_passed": true,
+ "state_updates": 666,
+ "task_id": 728,
+ "tokens_observed": 2952
+ },
+ {
+ "committed_xor_churn": 416,
+ "handshake_passed": true,
+ "mask_transition_count": 684,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 704,
+ "tokens_observed": 2736
+ }
+ ],
+ "causal_observability_mse_target_fisher_quota": [
+ {
+ "committed_xor_churn": 1818,
+ "handshake_passed": true,
+ "mask_transition_count": 684,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 666,
+ "tokens_observed": 1926
+ },
+ {
+ "committed_xor_churn": 1792,
+ "handshake_passed": true,
+ "mask_transition_count": 612,
+ "quota_passed": true,
+ "state_updates": 630,
+ "task_id": 795,
+ "tokens_observed": 5832
+ },
+ {
+ "committed_xor_churn": 1652,
+ "handshake_passed": true,
+ "mask_transition_count": 450,
+ "quota_passed": true,
+ "state_updates": 468,
+ "task_id": 944,
+ "tokens_observed": 2088
+ },
+ {
+ "committed_xor_churn": 1928,
+ "handshake_passed": true,
+ "mask_transition_count": 666,
+ "quota_passed": true,
+ "state_updates": 684,
+ "task_id": 653,
+ "tokens_observed": 5148
+ },
+ {
+ "committed_xor_churn": 1146,
+ "handshake_passed": true,
+ "mask_transition_count": 378,
+ "quota_passed": true,
+ "state_updates": 396,
+ "task_id": 857,
+ "tokens_observed": 5256
+ },
+ {
+ "committed_xor_churn": 3428,
+ "handshake_passed": true,
+ "mask_transition_count": 1206,
+ "quota_passed": true,
+ "state_updates": 1224,
+ "task_id": 884,
+ "tokens_observed": 3222
+ },
+ {
+ "committed_xor_churn": 1326,
+ "handshake_passed": true,
+ "mask_transition_count": 504,
+ "quota_passed": true,
+ "state_updates": 522,
+ "task_id": 878,
+ "tokens_observed": 3006
+ },
+ {
+ "committed_xor_churn": 7076,
+ "handshake_passed": true,
+ "mask_transition_count": 2358,
+ "quota_passed": true,
+ "state_updates": 2376,
+ "task_id": 822,
+ "tokens_observed": 3636
+ },
+ {
+ "committed_xor_churn": 2886,
+ "handshake_passed": true,
+ "mask_transition_count": 1134,
+ "quota_passed": true,
+ "state_updates": 1152,
+ "task_id": 687,
+ "tokens_observed": 2736
+ },
+ {
+ "committed_xor_churn": 1292,
+ "handshake_passed": true,
+ "mask_transition_count": 540,
+ "quota_passed": true,
+ "state_updates": 558,
+ "task_id": 820,
+ "tokens_observed": 1872
+ },
+ {
+ "committed_xor_churn": 1890,
+ "handshake_passed": true,
+ "mask_transition_count": 630,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 920,
+ "tokens_observed": 4500
+ },
+ {
+ "committed_xor_churn": 6238,
+ "handshake_passed": true,
+ "mask_transition_count": 2412,
+ "quota_passed": true,
+ "state_updates": 2430,
+ "task_id": 771,
+ "tokens_observed": 3762
+ },
+ {
+ "committed_xor_churn": 2774,
+ "handshake_passed": true,
+ "mask_transition_count": 828,
+ "quota_passed": true,
+ "state_updates": 846,
+ "task_id": 869,
+ "tokens_observed": 6318
+ },
+ {
+ "committed_xor_churn": 1754,
+ "handshake_passed": true,
+ "mask_transition_count": 630,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 851,
+ "tokens_observed": 2340
+ },
+ {
+ "committed_xor_churn": 2006,
+ "handshake_passed": true,
+ "mask_transition_count": 648,
+ "quota_passed": true,
+ "state_updates": 666,
+ "task_id": 728,
+ "tokens_observed": 2952
+ },
+ {
+ "committed_xor_churn": 1798,
+ "handshake_passed": true,
+ "mask_transition_count": 684,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 704,
+ "tokens_observed": 2736
+ }
+ ],
+ "query_ema32_confirm2_mse_target_fisher_quota": [
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 666,
+ "tokens_observed": 1926
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 630,
+ "task_id": 795,
+ "tokens_observed": 5832
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 468,
+ "task_id": 944,
+ "tokens_observed": 2088
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 684,
+ "task_id": 653,
+ "tokens_observed": 5148
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 396,
+ "task_id": 857,
+ "tokens_observed": 5256
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 1224,
+ "task_id": 884,
+ "tokens_observed": 3222
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 522,
+ "task_id": 878,
+ "tokens_observed": 3006
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 2376,
+ "task_id": 822,
+ "tokens_observed": 3636
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 1152,
+ "task_id": 687,
+ "tokens_observed": 2736
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 558,
+ "task_id": 820,
+ "tokens_observed": 1872
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 920,
+ "tokens_observed": 4500
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 2430,
+ "task_id": 771,
+ "tokens_observed": 3762
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 846,
+ "task_id": 869,
+ "tokens_observed": 6318
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 851,
+ "tokens_observed": 2340
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 666,
+ "task_id": 728,
+ "tokens_observed": 2952
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 704,
+ "tokens_observed": 2736
+ }
+ ],
+ "query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 666,
+ "tokens_observed": 1926
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 630,
+ "task_id": 795,
+ "tokens_observed": 5832
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 468,
+ "task_id": 944,
+ "tokens_observed": 2088
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 684,
+ "task_id": 653,
+ "tokens_observed": 5148
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 396,
+ "task_id": 857,
+ "tokens_observed": 5256
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 1224,
+ "task_id": 884,
+ "tokens_observed": 3222
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 522,
+ "task_id": 878,
+ "tokens_observed": 3006
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 2376,
+ "task_id": 822,
+ "tokens_observed": 3636
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 1152,
+ "task_id": 687,
+ "tokens_observed": 2736
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 558,
+ "task_id": 820,
+ "tokens_observed": 1872
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 920,
+ "tokens_observed": 4500
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 2430,
+ "task_id": 771,
+ "tokens_observed": 3762
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 846,
+ "task_id": 869,
+ "tokens_observed": 6318
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 648,
+ "task_id": 851,
+ "tokens_observed": 2340
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 666,
+ "task_id": 728,
+ "tokens_observed": 2952
+ },
+ {
+ "committed_xor_churn": 0,
+ "handshake_passed": true,
+ "mask_transition_count": 0,
+ "quota_passed": true,
+ "state_updates": 702,
+ "task_id": 704,
+ "tokens_observed": 2736
+ }
+ ]
+ },
+ "passed": true
+ },
+ "lower_nll_than_primary_comparators": {
+ "adaptive": 0.49961913377046585,
+ "cqer": 0.35425034910440445,
+ "passed": false,
+ "primary": 0.3915858566761017,
+ "static": 0.5303981080651283
+ },
+ "paired_lower_ci_vs_cqer": {
+ "observed_lower_bound": -0.10602090787142514,
+ "passed": false,
+ "required": "strictly greater than zero"
+ },
+ "paired_lower_ci_vs_static": {
+ "observed_lower_bound": 0.0436136125586927,
+ "passed": true,
+ "required": "strictly greater than zero"
+ },
+ "raw_cora_relative_nll_reduction_vs_cqer": {
+ "minimum": 0.03,
+ "observed": -0.033467081201069004,
+ "passed": false
+ },
+ "relative_nll_reduction_vs_adaptive": {
+ "minimum": 0.05,
+ "observed": 0.2162312645616103,
+ "passed": true
+ },
+ "relative_nll_reduction_vs_cqer": {
+ "minimum": 0.05,
+ "observed": -0.1053930014919865,
+ "passed": false
+ },
+ "relative_nll_reduction_vs_static": {
+ "minimum": 0.2,
+ "observed": 0.2617133230271283,
+ "passed": true
+ },
+ "top1_margin_vs_static_adaptive": {
+ "maximum": 0.01,
+ "observed_disadvantage": -0.040482208132743835,
+ "passed": true
+ },
+ "top1_not_lower_than_cqer": {
+ "cqer": 0.802783165127039,
+ "passed": true,
+ "primary": 0.8103738017380238
+ }
+ },
+ "comparators": {
+ "adaptive": "adaptive_mse_target_directional_fisher_quota",
+ "cqer": "query_ema32_weighted_mse_target_fisher_quota",
+ "cqer_c2_ablation": "query_ema32_confirm2_mse_target_fisher_quota",
+ "raw_cora": "causal_observability_mse_target_fisher_quota",
+ "static": "target_directional_fisher_difference_int4"
+ },
+ "passed": false,
+ "primary": "causal_observability_confirm2_mse_target_fisher_quota",
+ "schema": "recurquant.experiment008-cora-c2-development-gate.v1"
+ },
+ "diagnostic_only": true,
+ "environment": {
+ "cuda_available": true,
+ "cuda_runtime": "12.8",
+ "gpu": "NVIDIA GeForce RTX 5070 Laptop GPU",
+ "packages": {
+ "datasets": "4.8.5",
+ "numpy": "2.4.6",
+ "safetensors": "0.8.0",
+ "torch": "2.11.0+cu128",
+ "transformers": "5.14.1"
+ },
+ "platform": "Windows-10-10.0.26200-SP0",
+ "python": "3.11.15 (main, Jun 2 2026, 22:29:49) [MSC v.1944 64 bit (AMD64)]"
+ },
+ "heldout_gate": {
+ "applicable": false,
+ "passed": null,
+ "reason": "the frozen Experiment 008 development diagnostic cannot satisfy its independent numerical or protected holdout prerequisites; ranked window [8, 16) remains closed",
+ "schema": "recurquant.experiment008-heldout-gate.v1"
+ },
+ "methods": [
+ "target_directional_fisher_difference_int4",
+ "adaptive_mse_target_directional_fisher_quota",
+ "query_ema32_weighted_mse_target_fisher_quota",
+ "query_ema32_confirm2_mse_target_fisher_quota",
+ "causal_observability_mse_target_fisher_quota",
+ "causal_observability_confirm2_mse_target_fisher_quota"
+ ],
+ "metric_contract": {
+ "contrasts": "paired task-macro baseline delta NLL minus primary delta NLL",
+ "cvar95_kl": "per-task token CVaR95 KL, followed by an equal-weight task macro mean",
+ "excluded_from_primary": "prompt-to-first-code-token prediction",
+ "maximum_kl": "maximum token KL across every evaluated task",
+ "primary": "calibration-aligned code transitions after recurrent-state storage",
+ "primary_tokens_per_task": "code_tokens - 1",
+ "secondary": "full reference-code tokens, including the unaffected first token"
+ },
+ "model": {
+ "device": "cuda",
+ "dtype": "torch.bfloat16",
+ "id": "Qwen/Qwen3.5-0.8B-Base",
+ "revision": "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68"
+ },
+ "observability_diagnostics": {
+ "causal_observability_confirm2_mse_target_fisher_quota": [
+ {
+ "layers": [
+ {
+ "admissions_total": 28,
+ "committed_mask_sha256": "4177ea2b98b3492b26c040942a981db3d21821972c784fa50e99c15ed77bac0e",
+ "committed_normalized_churn": 0.0020756115641215717,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 13462,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.718346850538182e-09,
+ "last_committed_mask_overlap": 355,
+ "last_committed_normalized_gap": -0.9972805976867676,
+ "last_committed_score_gap": -2.830585117408191e-06,
+ "last_dwell_count": 355,
+ "last_raw_cutoff_score": 1.1459005122560484e-07,
+ "last_raw_mask_overlap": 346,
+ "last_raw_normalized_gap": 0.04721997305750847,
+ "last_raw_score_gap": 5.41093925221503e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043269507586956024,
+ "observability_min": 0.0,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "07c081a95eaa8f6fd23ab4cdc1957b49973c6502bbc2ffe99b0a11708ad368c7",
+ "raw_normalized_churn": 0.01727205337286879,
+ "raw_xor_churn_total": 466,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "abad7864519c7c2f490b9fa34e37f5b4cf8f0a0e225f1d6552ec6ba815155b61",
+ "committed_normalized_churn": 0.002077562326869806,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 14410,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.490875059661505e-10,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9906502366065979,
+ "last_committed_score_gap": -6.877368718960497e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 1.5069220538066475e-08,
+ "last_raw_mask_overlap": 372,
+ "last_raw_normalized_gap": 0.02282748371362686,
+ "last_raw_score_gap": 3.439923901282782e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11331108957529068,
+ "observability_min": 2.9442645543831247e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "8a5ebd215bec59e7b720480701174667e98e8c18eff932bd6aea86a04a13173c",
+ "raw_normalized_churn": 0.022437673130193906,
+ "raw_xor_churn_total": 648,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "f7de993af69eddae215052385897fa5cec4a2eb7343a7edaf4644e3eac8f280b",
+ "committed_normalized_churn": 0.0011739385638818234,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 10210,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.608266739898227e-09,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9564996957778931,
+ "last_committed_score_gap": -1.2331652499142365e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 9.687511237643776e-08,
+ "last_raw_mask_overlap": 265,
+ "last_raw_normalized_gap": 0.08937381207942963,
+ "last_raw_score_gap": 8.658098238356615e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07195139676332474,
+ "observability_min": 5.401708524921389e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "4e308ae97342a1c348bb22ac3cf3f4c95a1abe82a326bc0d5d2b8df82b9560b5",
+ "raw_normalized_churn": 0.012032870279788692,
+ "raw_xor_churn_total": 246,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "694dd99516b624b6e438631ce60f8295ced1e4e3cc59353b4bbc8e6407ee3114",
+ "committed_normalized_churn": 0.0019112025874742722,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6789,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.1706189272663323e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": -0.272671639919281,
+ "last_committed_score_gap": -8.137537861330202e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.5932401968020713e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.15517398715019226,
+ "last_raw_score_gap": 4.024034296890022e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.049873799085617065,
+ "observability_min": 3.265163694976536e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "067a97ac1347e87d46c5f4475a9251a483b676b73cc72d1f6b90aeed191b8250",
+ "raw_normalized_churn": 0.015142605116142311,
+ "raw_xor_churn_total": 206,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "f8e028bb06ed92abac0a970f77ad750db8b18be1cc3f3fd36e65d1b6cca392b9",
+ "committed_normalized_churn": 0.0008534850640113798,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 7024,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.344006576204265e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.06695787608623505,
+ "last_committed_score_gap": -5.2702773700730177e-08,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.871034313211567e-07,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.06695787608623505,
+ "last_raw_score_gap": 5.2702773700730177e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03153788298368454,
+ "observability_min": 8.514712546148218e-11,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "6480f1fc3cb68efdafb0a80fbec70bb2ce82c260aaa1ecf3a35a1701ca07b90a",
+ "raw_normalized_churn": 0.004409672830725462,
+ "raw_xor_churn_total": 62,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "b18ac9411c5b1ea99484bd3ebae8539fd9e18f73083b9bc42ded5a8c327d9e2c",
+ "committed_normalized_churn": 0.0035087719298245615,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3976,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 4.918350882121558e-08,
+ "last_committed_mask_overlap": 102,
+ "last_committed_normalized_gap": -0.8791075944900513,
+ "last_committed_score_gap": -3.576536187210877e-07,
+ "last_dwell_count": 102,
+ "last_raw_cutoff_score": 1.3756185524016473e-07,
+ "last_raw_mask_overlap": 98,
+ "last_raw_normalized_gap": 0.04271308332681656,
+ "last_raw_score_gap": 5.8756910448209965e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.039765823632478714,
+ "observability_min": 1.294988005717812e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "fac937f3705304024541a774183e0e2070452cb14ff4f03117fe33bcf6fcc57d",
+ "raw_normalized_churn": 0.02581453634085213,
+ "raw_xor_churn_total": 206,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "5697a0d21955731ed9077e10668b7ef406cf7e5c7e261cff982223f2e9bc1874",
+ "committed_normalized_churn": 0.001973684210526316,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 3034,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1240756521146977e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.10931922495365143,
+ "last_committed_score_gap": 1.2288307971175527e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.1240756521146977e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.10931922495365143,
+ "last_raw_score_gap": 1.2288307971175527e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05325343459844589,
+ "observability_min": 4.704014955336788e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "5697a0d21955731ed9077e10668b7ef406cf7e5c7e261cff982223f2e9bc1874",
+ "raw_normalized_churn": 0.015460526315789473,
+ "raw_xor_churn_total": 94,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "562bff5edd6d319a8540b8cf63ef857cfe96cf852fe324e6aaa04c3ca651c77a",
+ "committed_normalized_churn": 0.0006119951040391676,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1633,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.218786102683225e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": -0.3012928068637848,
+ "last_committed_score_gap": -1.8192025663665845e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 6.03798866904981e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.18834656476974487,
+ "last_raw_score_gap": 1.1372344488336239e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05605697259306908,
+ "observability_min": 3.813564219967702e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "d4fea8f637a07125609aeb2b7646a0ea2f599b5b7af64e1b093d285c6f689e48",
+ "raw_normalized_churn": 0.009179926560587515,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "b81f2178b3dd2aa6850d6ceef7192b4781eadb21952b0efb2b7b9abd5f32c7a9",
+ "committed_normalized_churn": 0.008458646616541353,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 3165,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.073720288351069e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.848081648349762,
+ "last_committed_score_gap": -2.832397001384379e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.0911134040725301e-07,
+ "last_raw_mask_overlap": 77,
+ "last_raw_normalized_gap": 0.06410513073205948,
+ "last_raw_score_gap": 6.9945969016771414e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05022676661610603,
+ "observability_min": 1.462940844021432e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "c7b2962bb360d30b8a5bba93ca0476a3d01687f511aa936737102df9961342fb",
+ "raw_normalized_churn": 0.05231829573934837,
+ "raw_xor_churn_total": 334,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "3ae3bff9e194531b59d49a113bdfddad9ae408b84a86a9a62d0cce944e256d27",
+ "committed_normalized_churn": 0.008771929824561403,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1130,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 5.2505379244394135e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.14508245885372162,
+ "last_committed_score_gap": 7.617609298904426e-07,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 5.2505379244394135e-06,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.14508245885372162,
+ "last_raw_score_gap": 7.617609298904426e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04034574329853058,
+ "observability_min": 3.8984644845641014e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "3ae3bff9e194531b59d49a113bdfddad9ae408b84a86a9a62d0cce944e256d27",
+ "raw_normalized_churn": 0.034210526315789476,
+ "raw_xor_churn_total": 78,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "39a62f75e5e70564512666a240a0298cdf52cdc2596479d69c2b1cef7b616646",
+ "committed_normalized_churn": 0.009762308998302207,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2333,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8445060590011053e-08,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.930916428565979,
+ "last_committed_score_gap": -2.485512595740147e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.6712485262360133e-07,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.1401107758283615,
+ "last_raw_score_gap": 2.3415992700392962e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.052746549248695374,
+ "observability_min": 9.216720719962268e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "8fc11e249001a3cd032fcc31b5eb51c419db9efda910aeadc9b624707af6b662",
+ "raw_normalized_churn": 0.06960950764006792,
+ "raw_xor_churn_total": 328,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "0e64dbd1776315503c4b8103caefb8e55d8e1887990e6ef9d0e1167856d27492",
+ "committed_normalized_churn": 0.005360623781676413,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 2041,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.9966542197380477e-08,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.9104133248329163,
+ "last_committed_score_gap": -2.0290755742280453e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.7255868556276255e-07,
+ "last_raw_mask_overlap": 51,
+ "last_raw_normalized_gap": 0.004268477205187082,
+ "last_raw_score_gap": 7.365628107436351e-10,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10597944259643555,
+ "observability_min": 2.193173198605791e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "6c169f80ed72036911b869f0a1b806bbe93e339f23fabf308e0c6353339b6702",
+ "raw_normalized_churn": 0.03996101364522417,
+ "raw_xor_churn_total": 164,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "c5b63a0a4d9456870039b8bda9f8fc308fc9b74eb8feb7ff180a4a0ad90f0fd8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1710,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.9298424376756884e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.41667842864990234,
+ "last_committed_score_gap": 8.041237379075028e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.9298424376756884e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.41667842864990234,
+ "last_raw_score_gap": 8.041237379075028e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1081852987408638,
+ "observability_min": 1.500241708640715e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "c5b63a0a4d9456870039b8bda9f8fc308fc9b74eb8feb7ff180a4a0ad90f0fd8",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "4334bd08a3e4241143c7227ccb6c5499d899a20caa5bddc9505b824db65ab6a2",
+ "committed_normalized_churn": 0.0009746588693957114,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 1025,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4301670489658136e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.31136563420295715,
+ "last_committed_score_gap": 4.453048859431874e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.4301670489658136e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.31136563420295715,
+ "last_raw_score_gap": 4.453048859431874e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12057015299797058,
+ "observability_min": 1.4222448774248164e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "4334bd08a3e4241143c7227ccb6c5499d899a20caa5bddc9505b824db65ab6a2",
+ "raw_normalized_churn": 0.014619883040935672,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0006314752972684801,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.3276371955871582,
+ "last_committed_score_gap": 0.00020689479424618185,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0006314752972684801,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.3276371955871582,
+ "last_raw_score_gap": 0.00020689479424618185,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0991729125380516,
+ "observability_min": 3.9883499169945935e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.007518796992481203,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 341,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.992070196545683e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.41715359687805176,
+ "last_committed_score_gap": 1.6653064449201338e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 3.992070196545683e-05,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.41715359687805176,
+ "last_raw_score_gap": 1.6653064449201338e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10540656000375748,
+ "observability_min": 7.316038330706931e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "raw_normalized_churn": 0.02046783625730994,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "45a2c2a332f15df55ca29cc6a4b81b5fbb53fa079fd626883ba29a583a020977",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.613247675588354e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7658131718635559,
+ "last_committed_score_gap": 7.361951429629698e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 9.613247675588354e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7658131718635559,
+ "last_raw_score_gap": 7.361951429629698e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12673921883106232,
+ "observability_min": 3.838228934682775e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "45a2c2a332f15df55ca29cc6a4b81b5fbb53fa079fd626883ba29a583a020977",
+ "raw_normalized_churn": 0.007518796992481203,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "a46645a032ec439a6bd7aab0f3d45217a5e564b6c197aaec5628e8163749b712",
+ "committed_normalized_churn": 0.0023923444976076554,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 2085,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.700943569943774e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.5113288164138794,
+ "last_committed_score_gap": 3.937714154744754e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 7.700943569943774e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.5113288164138794,
+ "last_raw_score_gap": 3.937714154744754e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10862711071968079,
+ "observability_min": 3.520331359752049e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "a46645a032ec439a6bd7aab0f3d45217a5e564b6c197aaec5628e8163749b712",
+ "raw_normalized_churn": 0.005741626794258373,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ],
+ "task_id": 666
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 29,
+ "committed_mask_sha256": "bde212cf95504cf8f74b1fabc9abf45dc5217c61760de979895849f38956be18",
+ "committed_normalized_churn": 0.0024026512013256007,
+ "committed_xor_churn_total": 58,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 12041,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 4.4478074556764113e-08,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.9113873839378357,
+ "last_committed_score_gap": -4.5746028831672447e-07,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.9759359304316604e-07,
+ "last_raw_mask_overlap": 348,
+ "last_raw_normalized_gap": 0.003203083761036396,
+ "last_raw_score_gap": 6.329088364509516e-10,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030501583591103554,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "961d0075c598ebc472b6584aedc1ef77d3367c5947263f2d88ab36f36a1b58e5",
+ "raw_normalized_churn": 0.015990057995029,
+ "raw_xor_churn_total": 386,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "31a7666e141751a156740745c3cef8ffab667054f3dc417d543cd6ebeb8f7a9b",
+ "committed_normalized_churn": 0.001934984520123839,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 12895,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.387909591230255e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9485384225845337,
+ "last_committed_score_gap": -8.087779690413299e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 3.32175353889852e-08,
+ "last_raw_mask_overlap": 369,
+ "last_raw_normalized_gap": 0.023449864238500595,
+ "last_raw_score_gap": 7.78946684931725e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12016329914331436,
+ "observability_min": 5.595069962893717e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "75fe1bd726b04fb7742f8277d0164e6f09de3d6c6c843885bc6d53f7d5d8798e",
+ "raw_normalized_churn": 0.02260061919504644,
+ "raw_xor_churn_total": 584,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "ec61486adb215cc0e92076067b893c4df49fb8a61042d8795e51bce38626bbc7",
+ "committed_normalized_churn": 0.001312048983162038,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 9134,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.8012561159584948e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.8690282106399536,
+ "last_committed_score_gap": -1.858698368550904e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.0293052810084191e-07,
+ "last_raw_mask_overlap": 262,
+ "last_raw_normalized_gap": 0.02243020012974739,
+ "last_raw_score_gap": 2.3087523004505783e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0641818419098854,
+ "observability_min": 9.341970530485355e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "c777b0e7ff00710f94bafcaacd76712694f020c62ce8ad691a56518c4b51950e",
+ "raw_normalized_churn": 0.01760332385742401,
+ "raw_xor_churn_total": 322,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "62c0c16d92911a54b2df2a70e4370e7e7ad0585e780a1aee487343fe05d77f5c",
+ "committed_normalized_churn": 0.001643115346697338,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6076,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.325562263649772e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.433715283870697,
+ "last_committed_score_gap": 1.0086318980029318e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.325562263649772e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.433715283870697,
+ "last_raw_score_gap": 1.0086318980029318e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04181026667356491,
+ "observability_min": 4.654938656756258e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "62c0c16d92911a54b2df2a70e4370e7e7ad0585e780a1aee487343fe05d77f5c",
+ "raw_normalized_churn": 0.00821557673348669,
+ "raw_xor_churn_total": 100,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "71106f81ba68e1c836f323100ee78e33b1a14c926795f1f7e86ea5916155eca2",
+ "committed_normalized_churn": 0.000794912559618442,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 6285,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.036011430092913e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.5990516543388367,
+ "last_committed_score_gap": -7.524237730649475e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.223488864838146e-07,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.0002926572924479842,
+ "last_raw_score_gap": 2.11400674743345e-10,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.038463663309812546,
+ "observability_min": 2.4519199115502488e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "b3318684d8bf8d0f4d90c30f9cfdfe6aec3d90dea60f3144fee4f4f4e8bf95d4",
+ "raw_normalized_churn": 0.00397456279809221,
+ "raw_xor_churn_total": 50,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "12c61364dfa16ee2fd43d93e9d47eb398d16625b729115d600ed894f04e3a9df",
+ "committed_normalized_churn": 0.0070028011204481795,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3545,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.915041565325737e-07,
+ "last_committed_mask_overlap": 103,
+ "last_committed_normalized_gap": -0.3739933669567108,
+ "last_committed_score_gap": -1.144097865335425e-07,
+ "last_dwell_count": 103,
+ "last_raw_cutoff_score": 2.1947802508748282e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.10685120522975922,
+ "last_raw_score_gap": 2.3451491415471537e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05813900753855705,
+ "observability_min": 1.313275932446345e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "8eb63d8c313687904ad4806c5ffaf3ebeeacce06940c6cc0c584ef965f083ce1",
+ "raw_normalized_churn": 0.03697478991596639,
+ "raw_xor_churn_total": 264,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "79a6097f76ec18a887c3ade451aacb31e3a61a167c1c5dd2bdf0a0feac59916a",
+ "committed_normalized_churn": 0.001838235294117647,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2715,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5202526810753625e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.03792642056941986,
+ "last_committed_score_gap": -5.993069862597622e-08,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.5657313952033292e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.011507502757012844,
+ "last_raw_score_gap": 1.8017658476310316e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0604182593524456,
+ "observability_min": 1.127467257333592e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "41e38f66027ee181e8d909d366cdcd17d3f1b80edbd68d04167bacb665d6d684",
+ "raw_normalized_churn": 0.013602941176470588,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "f1fa615004d65715a0f573c1b5726764b5b993178a406ad0f071850d5d4905f6",
+ "committed_normalized_churn": 0.0027359781121751026,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1458,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.344497313013562e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": -0.8858034610748291,
+ "last_committed_score_gap": -3.3699536743370118e-06,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 5.597990480055159e-07,
+ "last_raw_mask_overlap": 40,
+ "last_raw_normalized_gap": 0.0020087144803255796,
+ "last_raw_score_gap": 1.1244765119045042e-09,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05410324037075043,
+ "observability_min": 2.267157981350465e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "0854301546e2e67f63624951481b9a927ad0a39009c69697df8514118618cf26",
+ "raw_normalized_churn": 0.019835841313269494,
+ "raw_xor_churn_total": 58,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "d5dba085b961542f9ad7b87ba52ea05a5ec890ccbbc0ca26d94c3c916e45e89a",
+ "committed_normalized_churn": 0.008053221288515405,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2833,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.0937313277281646e-07,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": -0.8056371808052063,
+ "last_committed_score_gap": -4.5335340814744995e-07,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 1.1079885808840118e-07,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.003743149572983384,
+ "last_raw_score_gap": 4.147366894358129e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030244028195738792,
+ "observability_min": 1.6855906892487837e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "8fa7d6914d050682d82e0c3466601af2b15c4f3bbe77a93608ec914e1ff6085e",
+ "raw_normalized_churn": 0.06197478991596639,
+ "raw_xor_churn_total": 354,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "6801b58d260af567299b27e2f51f5954d0360458c750ad7b7adca47a3c7d4d15",
+ "committed_normalized_churn": 0.01764705882352941,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1002,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.9503148552030325e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.817371666431427,
+ "last_committed_score_gap": -3.110684338025749e-05,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 1.1616381925705355e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.09938635677099228,
+ "last_raw_score_gap": 1.1545098459464498e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.040820371359586716,
+ "observability_min": 1.9409775120493578e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "0d300f93138c57244fcd85111dc378f3f2866d541545186fed0ba317c0bf03f8",
+ "raw_normalized_churn": 0.061764705882352944,
+ "raw_xor_churn_total": 126,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "23a9e1e6927545fb8fc7228dc69ef35113cad268cff7464411ff023e8b79c261",
+ "committed_normalized_churn": 0.016129032258064516,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2074,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.551983737310366e-08,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.7523438334465027,
+ "last_committed_score_gap": -2.901755351558677e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.851219053605746e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 1.5967088984325528e-05,
+ "last_raw_score_gap": 2.9558577807620168e-12,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0536920502781868,
+ "observability_min": 6.667789165248905e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "acf8458987ff13d817950717def51b84254b91c1144bc04a68dba8a8d3604b59",
+ "raw_normalized_churn": 0.08064516129032258,
+ "raw_xor_churn_total": 340,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "ca70ae24452b4c6cb931e86a108693fb9247c1e5efe5989b3afa26e0be9e2afa",
+ "committed_normalized_churn": 0.007080610021786492,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1823,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6555405579765647e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.6087839603424072,
+ "last_committed_score_gap": -2.5762403765838826e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.148107398625143e-07,
+ "last_raw_mask_overlap": 51,
+ "last_raw_normalized_gap": 0.011378435418009758,
+ "last_raw_score_gap": 2.444210167595884e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08831269294023514,
+ "observability_min": 2.4185908387153177e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "2a593374c45414868d45602cc3a386df31033ad6082ac1857417a264d47de4fd",
+ "raw_normalized_churn": 0.04357298474945534,
+ "raw_xor_churn_total": 160,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "2d0cbdb73df091002e1665b9bd5a4d080b83bf97e4285268bfa57e5a7e48a1d8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1530,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.084150790120475e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.6772467494010925,
+ "last_committed_score_gap": 7.342376193264499e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.084150790120475e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.6772467494010925,
+ "last_raw_score_gap": 7.342376193264499e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10611943155527115,
+ "observability_min": 5.762641563933357e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "2d0cbdb73df091002e1665b9bd5a4d080b83bf97e4285268bfa57e5a7e48a1d8",
+ "raw_normalized_churn": 0.00130718954248366,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "abdcc06f758af9e9255b33d8e4a89db9e7f40b4f78287b8e4a03c0f68b535ab1",
+ "committed_normalized_churn": 0.002178649237472767,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 916,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.471346564585474e-07,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": -0.9751933217048645,
+ "last_committed_score_gap": -5.784125278296415e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 5.931260147917783e-06,
+ "last_raw_mask_overlap": 26,
+ "last_raw_normalized_gap": 0.17479388415813446,
+ "last_raw_score_gap": 1.0367480172135402e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1084899827837944,
+ "observability_min": 1.1252711829001782e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "099657b90daedacdaf70446967b7cbf3df6ec0cf894521c9bc69dd841514caa1",
+ "raw_normalized_churn": 0.008714596949891068,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 238,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005550560308620334,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9655309319496155,
+ "last_committed_score_gap": 0.0005359237547963858,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005550560308620334,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9655309319496155,
+ "last_raw_score_gap": 0.0005359237547963858,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09140753000974655,
+ "observability_min": 6.640976124572262e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "a4f1d982e371423929cbd1fe784c538b9ef0fa3f44aa5cf7ee8aad4cd11ce944",
+ "committed_normalized_churn": 0.0032679738562091504,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 305,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010290759382769465,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.7223929762840271,
+ "last_committed_score_gap": 7.433972496073693e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00010290759382769465,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.7223929762840271,
+ "last_raw_score_gap": 7.433972496073693e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10498922318220139,
+ "observability_min": 1.7898217352652068e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "a4f1d982e371423929cbd1fe784c538b9ef0fa3f44aa5cf7ee8aad4cd11ce944",
+ "raw_normalized_churn": 0.0392156862745098,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "0c5d75d11b23524dce61586e2bbe081d6388aba9824bd2374f9f5a022f4a477d",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 238,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00012423221778590232,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8246195912361145,
+ "last_committed_score_gap": 0.00010244431905448437,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00012423221778590232,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8246195912361145,
+ "last_raw_score_gap": 0.00010244431905448437,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12040192633867264,
+ "observability_min": 3.676733584256908e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "0c5d75d11b23524dce61586e2bbe081d6388aba9824bd2374f9f5a022f4a477d",
+ "raw_normalized_churn": 0.008403361344537815,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "0e7fdb3fcbd22df19a06ac0e8b5f3e3c85a01dd4ed8dffa1ac9524f4ca3f24f3",
+ "committed_normalized_churn": 0.0016042780748663102,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1867,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0358339750382584e-05,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.7027780413627625,
+ "last_committed_score_gap": 7.279613782884553e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 1.0358339750382584e-05,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.7027780413627625,
+ "last_raw_score_gap": 7.279613782884553e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10905643552541733,
+ "observability_min": 1.0342348089054099e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "0e7fdb3fcbd22df19a06ac0e8b5f3e3c85a01dd4ed8dffa1ac9524f4ca3f24f3",
+ "raw_normalized_churn": 0.004812834224598931,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ }
+ ],
+ "task_id": 795
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "38d0e602bb907bb9f6096325314e886bb42ec79629d94f2d771839715a997d31",
+ "committed_normalized_churn": 0.0019154929577464789,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 8858,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.4792649949413317e-07,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.7079569101333618,
+ "last_committed_score_gap": -3.5859639524460363e-07,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.8105444610228005e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.15490196645259857,
+ "last_raw_score_gap": 2.8045690214639762e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.031219976022839546,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "06276afafea5c13b5d9405fedae9727c4da8eb38fc4aef27d03af436382495a9",
+ "raw_normalized_churn": 0.012845070422535212,
+ "raw_xor_churn_total": 228,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 33,
+ "committed_mask_sha256": "b3ea70741c3018bcd6add45536e9506002935e89c0b64cdde0a65e8316391f99",
+ "committed_normalized_churn": 0.003473684210526316,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 9467,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.730473186967174e-08,
+ "last_committed_mask_overlap": 379,
+ "last_committed_normalized_gap": -0.8935277462005615,
+ "last_committed_score_gap": -1.4522333913191687e-07,
+ "last_dwell_count": 379,
+ "last_raw_cutoff_score": 2.3750320821136484e-08,
+ "last_raw_mask_overlap": 367,
+ "last_raw_normalized_gap": 0.011856479570269585,
+ "last_raw_score_gap": 2.815951916090853e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10467808693647385,
+ "observability_min": 2.6755737625450138e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "c46c3db6d82f368e626246969947d09d28282c2a03713a247e79639f3ac62131",
+ "raw_normalized_churn": 0.03831578947368421,
+ "raw_xor_churn_total": 728,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "3ad339d214bf956168c0bbe67869a094bc1815d12e53e29d8b236cb64f553d09",
+ "committed_normalized_churn": 0.0020817843866171005,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 6711,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.1180479475569882e-07,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.11993124336004257,
+ "last_committed_score_gap": -1.5236182093758543e-08,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 1.2704097684945737e-07,
+ "last_raw_mask_overlap": 264,
+ "last_raw_normalized_gap": 0.11217601597309113,
+ "last_raw_score_gap": 1.4250950641780946e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06164246052503586,
+ "observability_min": 6.665736407285294e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "63034ff2cd139d281a83b7771e5303e7fba36d5574cb8c16388632b33b87197a",
+ "raw_normalized_churn": 0.01620817843866171,
+ "raw_xor_churn_total": 218,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "ace0e159e3fadf1d82af81972299b00d393c67f208fe0814d1533529ac359e3f",
+ "committed_normalized_churn": 0.001787709497206704,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 4467,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.496578417776618e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.09872416406869888,
+ "last_committed_score_gap": 2.4647260943311267e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.496578417776618e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.09872416406869888,
+ "last_raw_score_gap": 2.4647260943311267e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0458219014108181,
+ "observability_min": 5.898547872362769e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "ace0e159e3fadf1d82af81972299b00d393c67f208fe0814d1533529ac359e3f",
+ "raw_normalized_churn": 0.010949720670391062,
+ "raw_xor_churn_total": 98,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "a2b14ae55085a708d3731cf02ddd0e23cf7f94354c171563d3d6ec571a851b15",
+ "committed_normalized_churn": 0.0006486486486486486,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 4622,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.460342317244795e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.010164676234126091,
+ "last_committed_score_gap": 7.583196293126093e-09,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.460342317244795e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.010164676234126091,
+ "last_raw_score_gap": 7.583196293126093e-09,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03743458911776543,
+ "observability_min": 1.0917529991161246e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "a2b14ae55085a708d3731cf02ddd0e23cf7f94354c171563d3d6ec571a851b15",
+ "raw_normalized_churn": 0.004972972972972973,
+ "raw_xor_churn_total": 46,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "e8aeadc73c1b65f5813202bf21775c8e4420d84ecec95701b45d190798838953",
+ "committed_normalized_churn": 0.004952380952380952,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 2612,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.586101063821843e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.01623428426682949,
+ "last_committed_score_gap": 2.574921609266312e-09,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 1.586101063821843e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.01623428426682949,
+ "last_raw_score_gap": 2.574921609266312e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03782740607857704,
+ "observability_min": 3.524176861446904e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "e8aeadc73c1b65f5813202bf21775c8e4420d84ecec95701b45d190798838953",
+ "raw_normalized_churn": 0.02780952380952381,
+ "raw_xor_churn_total": 146,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "5eaa35832c7ff87c821d74ca244c2c2875cbbb39828ffa1b24aaab454d70d323",
+ "committed_normalized_churn": 0.002,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 1996,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1923535794267082e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.08123970776796341,
+ "last_committed_score_gap": -1.0543169537413632e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.2977852748008445e-06,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.08123970776796341,
+ "last_raw_score_gap": 1.0543169537413632e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.048764508217573166,
+ "observability_min": 1.3265385234717542e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "70c05f1e29561e41117aa3ae55efa0c0c105254998eabfd5667129123ab2903d",
+ "raw_normalized_churn": 0.0135,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "6e5b5b87d07edfed50f6472b9fb20adf83fb27b1a6f40f4d3e2d434ac750fd1a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1075,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.146793344261823e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.03745999559760094,
+ "last_committed_score_gap": 1.553388528918731e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 4.146793344261823e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.03745999559760094,
+ "last_raw_score_gap": 1.553388528918731e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.055327158421278,
+ "observability_min": 3.09101437778736e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "6e5b5b87d07edfed50f6472b9fb20adf83fb27b1a6f40f4d3e2d434ac750fd1a",
+ "raw_normalized_churn": 0.021395348837209303,
+ "raw_xor_churn_total": 46,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "015126dbaf4ee6e013987a7f3e3749ff0cd0915aed9c47dfe64db7e8b1273de2",
+ "committed_normalized_churn": 0.007142857142857143,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2085,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.416293902271718e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.6781074404716492,
+ "last_committed_score_gap": -1.1410108413656417e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 8.725231737116701e-08,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.05089981108903885,
+ "last_raw_score_gap": 4.441126577603427e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03524843603372574,
+ "observability_min": 2.3174538910097908e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "2bbc0394b6dbc5badf0ad19f0472c8e46e4ee12f88e0d3aa9991fad7a416b6ec",
+ "raw_normalized_churn": 0.05714285714285714,
+ "raw_xor_churn_total": 240,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "ad4bc65c0da944c1cdf7e0bbff4012a733ee5bd783f5b9ba51f7b0c30ca61a2f",
+ "committed_normalized_churn": 0.012,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 741,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.121719707152806e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": -0.21679073572158813,
+ "last_committed_score_gap": -1.6944795788731426e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 7.408880264847539e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.17373213171958923,
+ "last_raw_score_gap": 1.2871605576947331e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030838657170534134,
+ "observability_min": 2.2316405079436663e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "4a6cface4c9480f5f46b65ef865117919b21c68be97769984826cd61045f890c",
+ "raw_normalized_churn": 0.05466666666666667,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "f8c425a93be136d478601a553cd2e008823bc63ca7553e2fb1d0a46703e4b9b1",
+ "committed_normalized_churn": 0.011612903225806452,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 1532,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.722275796595568e-08,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.5754586458206177,
+ "last_committed_score_gap": -1.0467413602555098e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.3959416378384049e-07,
+ "last_raw_mask_overlap": 58,
+ "last_raw_normalized_gap": 0.02791501209139824,
+ "last_raw_score_gap": 3.896772682310257e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06056114286184311,
+ "observability_min": 1.2290156803373975e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "d73785fdad66ffaf584e98a7b6c443daa7bf13f500ffb281d672f27b34a79113",
+ "raw_normalized_churn": 0.06709677419354838,
+ "raw_xor_churn_total": 208,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "89b654b9022c134588786ff3081b7c7b35f4ec5cd07cbbb78cf013ef40548023",
+ "committed_normalized_churn": 0.002962962962962963,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1346,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8949367586174048e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.20466823875904083,
+ "last_committed_score_gap": -4.8763723725642194e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.2645934905085596e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.16323314607143402,
+ "last_raw_score_gap": 3.696567318911548e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09047456085681915,
+ "observability_min": 1.3725271230669023e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "6a504f2adfe008a686a2d649e9e52cfc8ac145963fee6953b70c261609caba27",
+ "raw_normalized_churn": 0.03777777777777778,
+ "raw_xor_churn_total": 102,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "6f75a560dcc1ad260c6e1b67819050e192872503d360aba155f93ca0baa7ab50",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1125,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.54671361594228e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.3622960150241852,
+ "last_committed_score_gap": 3.096440195804462e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 8.54671361594228e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.3622960150241852,
+ "last_raw_score_gap": 3.096440195804462e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10108715295791626,
+ "observability_min": 6.321408818621421e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "6f75a560dcc1ad260c6e1b67819050e192872503d360aba155f93ca0baa7ab50",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "403712c1cc0f8ce4678acf0ead39c3276127ea0ae9737434afc022aa93d51749",
+ "committed_normalized_churn": 0.002962962962962963,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 673,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7959688193514012e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.6431366205215454,
+ "last_committed_score_gap": 1.1550533599802293e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.7959688193514012e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.6431366205215454,
+ "last_raw_score_gap": 1.1550533599802293e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11292705684900284,
+ "observability_min": 2.4151765032343064e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "403712c1cc0f8ce4678acf0ead39c3276127ea0ae9737434afc022aa93d51749",
+ "raw_normalized_churn": 0.014814814814814815,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "33d46900ed115b94197f949fc8310510013915d29a474146d0e136a123de4aef",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 175,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00015521026216447353,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7089664936065674,
+ "last_committed_score_gap": 0.00011003887630067766,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00015521026216447353,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7089664936065674,
+ "last_raw_score_gap": 0.00011003887630067766,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09043971449136734,
+ "observability_min": 1.1686540091204733e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "33d46900ed115b94197f949fc8310510013915d29a474146d0e136a123de4aef",
+ "raw_normalized_churn": 0.011428571428571429,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "d1290d0c007f872d1570c3fd1caee90760ee8a2e9c6f92d239c997a6c74ee7a9",
+ "committed_normalized_churn": 0.008888888888888889,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 223,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010225292498944327,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.028311382979154587,
+ "last_committed_score_gap": 2.8949216357432306e-06,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00010225292498944327,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.028311382979154587,
+ "last_raw_score_gap": 2.8949216357432306e-06,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1082712709903717,
+ "observability_min": 4.4045936675729536e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "d1290d0c007f872d1570c3fd1caee90760ee8a2e9c6f92d239c997a6c74ee7a9",
+ "raw_normalized_churn": 0.035555555555555556,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "ee53914920a26fcad20cb8f248265a21a257a771d2680e2cd2a1200c35012bd9",
+ "committed_normalized_churn": 0.005714285714285714,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 174,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0003813476942013949,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.945534348487854,
+ "last_committed_score_gap": 0.0003605773381423205,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0003813476942013949,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.945534348487854,
+ "last_raw_score_gap": 0.0003605773381423205,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.14229106903076172,
+ "observability_min": 9.129927747153488e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "ee53914920a26fcad20cb8f248265a21a257a771d2680e2cd2a1200c35012bd9",
+ "raw_normalized_churn": 0.03428571428571429,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "b5088e0545cd1b0a61847557a257fe19423e4b1ca99715b16b555f581c1cd2e0",
+ "committed_normalized_churn": 0.0014545454545454545,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1373,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.53073595155729e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.6086640357971191,
+ "last_committed_score_gap": 5.801016413897742e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 9.53073595155729e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.6086640357971191,
+ "last_raw_score_gap": 5.801016413897742e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.101134292781353,
+ "observability_min": 8.207258872516832e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "b5088e0545cd1b0a61847557a257fe19423e4b1ca99715b16b555f581c1cd2e0",
+ "raw_normalized_churn": 0.008,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ }
+ ],
+ "task_id": 944
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 26,
+ "committed_mask_sha256": "e9f294aaa8869c2c22e2efe900030e1d624d4780e1df278b256b65b70a3125b6",
+ "committed_normalized_churn": 0.0019794442329653596,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 13109,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 8.862890155114655e-08,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.8474464416503906,
+ "last_committed_score_gap": -4.92340120672452e-07,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.6661253710026358e-07,
+ "last_raw_mask_overlap": 350,
+ "last_raw_normalized_gap": 0.23524615168571472,
+ "last_raw_score_gap": 3.9194958389998646e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04258858412504196,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "d868aeb0eb395b7714919edffc507da7ec7f227cc60079b41c9708f1e3c69e4e",
+ "raw_normalized_churn": 0.014617434335744195,
+ "raw_xor_churn_total": 384,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 38,
+ "committed_mask_sha256": "581d8d78620895c822e3c97afab011cf845fc5d1d815625909e2cc31c119454f",
+ "committed_normalized_churn": 0.002702702702702703,
+ "committed_xor_churn_total": 76,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 14022,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.708766239616466e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9527458548545837,
+ "last_committed_score_gap": -3.4452416031172106e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 7.633836673903716e-09,
+ "last_raw_mask_overlap": 373,
+ "last_raw_normalized_gap": 0.17674373090267181,
+ "last_raw_score_gap": 1.34923272554488e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11141572147607803,
+ "observability_min": 2.2183639647455067e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "d69dbcb71290b40265e87f01719f91fa00cf3c2dac9530dfb230ca9a33f55068",
+ "raw_normalized_churn": 0.02425320056899004,
+ "raw_xor_churn_total": 682,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "bb42a7e4e219bb3ae4b7efb58b85cf8ce9f8f41332f037f11b15dcab5123b543",
+ "committed_normalized_churn": 0.0010047221943132723,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 9943,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.481919960308005e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.6953833103179932,
+ "last_committed_score_gap": -2.1645459469255002e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.320013467420722e-07,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.03326576575636864,
+ "last_raw_score_gap": 4.391125685287989e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06357935070991516,
+ "observability_min": 3.8274675095983923e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "3645cfb8705fe39cfb0def7e3ad0d11d5ad37e3c83886f989d40b5ee0f7279f5",
+ "raw_normalized_churn": 0.013161860745503868,
+ "raw_xor_churn_total": 262,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "66b8085448be394429db9977a01d7cc82395879a735f129a22569b544e56facf",
+ "committed_normalized_churn": 0.0010569228446323418,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6616,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.5196179649356054e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.5403244495391846,
+ "last_committed_score_gap": 1.3614111367132864e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.5196179649356054e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.5403244495391846,
+ "last_raw_score_gap": 1.3614111367132864e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03915214538574219,
+ "observability_min": 1.7254042639081035e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "66b8085448be394429db9977a01d7cc82395879a735f129a22569b544e56facf",
+ "raw_normalized_churn": 0.0066435150234032915,
+ "raw_xor_churn_total": 88,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "b8d722c5332c3eca2275a646333f5cccbc0bedb015db353c233827abfe6ed295",
+ "committed_normalized_churn": 0.0004382761139517896,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 6842,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.84321331998217e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.503359854221344,
+ "last_committed_score_gap": -9.976395176636288e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 1.0741661071733688e-06,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.0742051750421524,
+ "last_raw_score_gap": 7.970868409756804e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0419648140668869,
+ "observability_min": 4.5513051105672275e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "eaab982b25fbe10f4c48ee3608d11845ec23098044037a8d9f1b3b66cc9165ec",
+ "raw_normalized_churn": 0.005113221329437546,
+ "raw_xor_churn_total": 70,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 21,
+ "committed_mask_sha256": "48a3a7d7d095f609e1111e8408238b5aa6204d43f51eae2f5bcd9bf3a43f5dab",
+ "committed_normalized_churn": 0.005405405405405406,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3864,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.8702361614941765e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": -0.11048231273889542,
+ "last_committed_score_gap": -2.3229219436871062e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.0168403125353507e-07,
+ "last_raw_mask_overlap": 102,
+ "last_raw_normalized_gap": 0.003936302848160267,
+ "last_raw_score_gap": 7.938893986647599e-10,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04765620455145836,
+ "observability_min": 9.043074067349721e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "3b8f9ff1945f60099f26cf206455ea8f247f0987ce497f336db8dfba440ea3a5",
+ "raw_normalized_churn": 0.03191763191763192,
+ "raw_xor_churn_total": 248,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "ac3656ab12e7a204a8fb82010af6c29e6fe08f08ff3f7e855cdf39be3903a6e6",
+ "committed_normalized_churn": 0.002027027027027027,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2954,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0519461284275167e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.01576988585293293,
+ "last_committed_score_gap": 1.658906967350049e-08,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.0519461284275167e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.01576988585293293,
+ "last_raw_score_gap": 1.658906967350049e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06068224832415581,
+ "observability_min": 4.141526233070181e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "ac3656ab12e7a204a8fb82010af6c29e6fe08f08ff3f7e855cdf39be3903a6e6",
+ "raw_normalized_churn": 0.019256756756756758,
+ "raw_xor_churn_total": 114,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "145acbaf78d95c583602a70df99a79cfd9238d2bc843fd0506ff21393c298a94",
+ "committed_normalized_churn": 0.0018856065367693275,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1588,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.7395454910438275e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.20778284966945648,
+ "last_committed_score_gap": 7.77013440256269e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.7395454910438275e-07,
+ "last_raw_mask_overlap": 40,
+ "last_raw_normalized_gap": 0.20778284966945648,
+ "last_raw_score_gap": 7.77013440256269e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05452461913228035,
+ "observability_min": 5.2097353098190524e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "145acbaf78d95c583602a70df99a79cfd9238d2bc843fd0506ff21393c298a94",
+ "raw_normalized_churn": 0.023255813953488372,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 35,
+ "committed_mask_sha256": "9243f9764bd985459518139fd1c8f2bfcae72a56de5e2c8a8789fbe412b8fa69",
+ "committed_normalized_churn": 0.01126126126126126,
+ "committed_xor_churn_total": 70,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 3073,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.242364409241418e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.7806434631347656,
+ "last_committed_score_gap": -1.8656464817468077e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.1334820726460748e-07,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.03013037145137787,
+ "last_raw_score_gap": 3.4152236594309215e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04001222178339958,
+ "observability_min": 4.7916781653611906e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "84c1dca54a526e89e2857562c199d78fe6a90267ff8677d3a9985e16ab039caa",
+ "raw_normalized_churn": 0.055984555984555984,
+ "raw_xor_churn_total": 348,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "9b11135a421e2840c0c406c3abce23f426d020cf0a44e338eca55b30a7c54b3e",
+ "committed_normalized_churn": 0.010810810810810811,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1098,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.906972314231098e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.6269404888153076,
+ "last_committed_score_gap": 4.957200872013345e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 7.906972314231098e-06,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.6269404888153076,
+ "last_raw_score_gap": 4.957200872013345e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03207750618457794,
+ "observability_min": 2.066761766172931e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "9b11135a421e2840c0c406c3abce23f426d020cf0a44e338eca55b30a7c54b3e",
+ "raw_normalized_churn": 0.043243243243243246,
+ "raw_xor_churn_total": 96,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "79651072ede64e04e69aa50bc07f24ad336ad30135a1f2c928a5236aaeaf702a",
+ "committed_normalized_churn": 0.010462074978204011,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2270,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.441588844083526e-08,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": -0.7633274793624878,
+ "last_committed_score_gap": -3.045146286240197e-07,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.1106972408470028e-07,
+ "last_raw_mask_overlap": 58,
+ "last_raw_normalized_gap": 0.03230197727680206,
+ "last_raw_score_gap": 3.5877718573829043e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04441627115011215,
+ "observability_min": 1.8618266039993614e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b382e527652a4f5cd76405cb92b5826c4527247d4c6b4293509ab6082abb0ba5",
+ "raw_normalized_churn": 0.07890148212728858,
+ "raw_xor_churn_total": 362,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "ad971d63b3764b279fdc2a92fc8f5009c21f82500fee32b5592ed57270cf87e0",
+ "committed_normalized_churn": 0.005005005005005005,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1988,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.709188392685974e-08,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.16055604815483093,
+ "last_committed_score_gap": -1.665760862579191e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 9.435397174684113e-08,
+ "last_raw_mask_overlap": 51,
+ "last_raw_normalized_gap": 0.0021036751568317413,
+ "last_raw_score_gap": 1.9849011323458399e-10,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10502302646636963,
+ "observability_min": 2.366837925649179e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "c84d1a7bcd384d83d73fdb38e943aeb978f9581d3769a927aa3e31b9e2f22e1e",
+ "raw_normalized_churn": 0.031031031031031032,
+ "raw_xor_churn_total": 124,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "5a49cbb2a070adbd48a549313bbc38d5ef283fa07d27329d9031b37e2e42e6f6",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1665,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2043894457747228e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7384229302406311,
+ "last_committed_score_gap": 8.893487574823666e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.2043894457747228e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7384229302406311,
+ "last_raw_score_gap": 8.893487574823666e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11243442445993423,
+ "observability_min": 1.8074059582318114e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "5a49cbb2a070adbd48a549313bbc38d5ef283fa07d27329d9031b37e2e42e6f6",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "11ac9dbb6d384fb1c57062e7204fec772247d8a4f93bb62a92ab1cd35cef0090",
+ "committed_normalized_churn": 0.002002002002002002,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 997,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.0091541955480352e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.7047677636146545,
+ "last_committed_score_gap": 1.4159871170704719e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.0091541955480352e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.7047677636146545,
+ "last_raw_score_gap": 1.4159871170704719e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11875853687524796,
+ "observability_min": 6.723369416761216e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "11ac9dbb6d384fb1c57062e7204fec772247d8a4f93bb62a92ab1cd35cef0090",
+ "raw_normalized_churn": 0.004004004004004004,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "8edf3633b7d15c1848682380a26764a099718966e4c1076dd114d88e4dce5f52",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 259,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005052823107689619,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.38468649983406067,
+ "last_committed_score_gap": 0.00019437528681010008,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005052823107689619,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.38468649983406067,
+ "last_raw_score_gap": 0.00019437528681010008,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09713229537010193,
+ "observability_min": 5.135589731253276e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "8edf3633b7d15c1848682380a26764a099718966e4c1076dd114d88e4dce5f52",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "committed_normalized_churn": 0.003003003003003003,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 332,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.188125553308055e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": -0.851821780204773,
+ "last_committed_score_gap": -0.0003557325107976794,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.0001161995533038862,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.46745702624320984,
+ "last_raw_score_gap": 5.431829777080566e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10737644881010056,
+ "observability_min": 1.3086194350364622e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.03903903903903904,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "4ba6d105586f7ba05ad61ea0b8868329bd782abc7b89ac5cf446e465523f9b9a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 259,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010174397175433114,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8412348031997681,
+ "last_committed_score_gap": 8.559056732337922e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00010174397175433114,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8412348031997681,
+ "last_raw_score_gap": 8.559056732337922e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1323709934949875,
+ "observability_min": 8.85400730510355e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "4ba6d105586f7ba05ad61ea0b8868329bd782abc7b89ac5cf446e465523f9b9a",
+ "raw_normalized_churn": 0.007722007722007722,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "7f8635af827856b76683e6e5b027f4b2e7deb70562236817eb343680b84f8090",
+ "committed_normalized_churn": 0.0009828009828009828,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 2033,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.635528502054513e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.7403891086578369,
+ "last_committed_score_gap": 6.393651347025298e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 8.635528502054513e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.7403891086578369,
+ "last_raw_score_gap": 6.393651347025298e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11614350229501724,
+ "observability_min": 4.691030675019192e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "7f8635af827856b76683e6e5b027f4b2e7deb70562236817eb343680b84f8090",
+ "raw_normalized_churn": 0.0019656019656019656,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ }
+ ],
+ "task_id": 653
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "98d14738d0bead42e2b43eca58931a7f76b9464785b4c5f70837483d98004f5c",
+ "committed_normalized_churn": 0.0025486250838363516,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 7436,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 3.8233785915053886e-08,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": -0.9039391875267029,
+ "last_committed_score_gap": -3.5978266055280983e-07,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 1.3535564846733905e-07,
+ "last_raw_mask_overlap": 348,
+ "last_raw_normalized_gap": 0.19918230175971985,
+ "last_raw_score_gap": 2.696044987260393e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03602820634841919,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "778fc73ba3b6fd6478b717a72e3f629ce90ff10971a5499573baec2a402d9e79",
+ "raw_normalized_churn": 0.015023474178403756,
+ "raw_xor_churn_total": 224,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "ec0a3f1f4cdc392822556d7d3b0b02739e137479dc0832186a5fe73bd306577c",
+ "committed_normalized_churn": 0.003132832080200501,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 7955,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5986911794385605e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9741333723068237,
+ "last_committed_score_gap": -6.020655263228036e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 3.0031031883481774e-08,
+ "last_raw_mask_overlap": 370,
+ "last_raw_normalized_gap": 0.007516753859817982,
+ "last_raw_score_gap": 2.2573587443730503e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12211071699857712,
+ "observability_min": 5.513250966870942e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "07d292295fb671042f00adb2928277dcd1483001b1be6543fd9baaba95ac6e11",
+ "raw_normalized_churn": 0.02443609022556391,
+ "raw_xor_churn_total": 390,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "cc642013ba11d09d403bc70176a0a43970ed0dd79c4ddea78adb0c27ef069ebf",
+ "committed_normalized_churn": 0.0017702248185519562,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 5639,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3064182624589193e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9862958192825317,
+ "last_committed_score_gap": -9.402365890309738e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.2822762585074088e-07,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.04729887470602989,
+ "last_raw_score_gap": 6.065022262191633e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0687132328748703,
+ "observability_min": 4.108528184332272e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "cb7645570de0490a14c30164f1a20294665c0dd8852ca5a6af709e756887493a",
+ "raw_normalized_churn": 0.01451584351212604,
+ "raw_xor_churn_total": 164,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "049fb097cea273056eb0b8126b5cd828a26941ced3a4a893c5b15d3c8d59cfc1",
+ "committed_normalized_churn": 0.0007980845969672786,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 3756,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.036871364907711e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": -0.05637071281671524,
+ "last_committed_score_gap": -1.2167902241344564e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.1585503873211564e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.05637071281671524,
+ "last_raw_score_gap": 1.2167902241344564e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04492827504873276,
+ "observability_min": 1.8319806116551263e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "2aee07a3031c44829b75078db893f49790fd92558fbfcb30ca9a9931555fb47b",
+ "raw_normalized_churn": 0.008778930566640064,
+ "raw_xor_churn_total": 66,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "29a2947bd9b488941a7418fdad54fa669b88b695e316fc0da4a297609b7ef684",
+ "committed_normalized_churn": 0.0005148005148005148,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 3883,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.68401560485654e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.2653745114803314,
+ "last_committed_score_gap": -2.0532814914986375e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.737297096355178e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.19108910858631134,
+ "last_raw_score_gap": 1.4785132407268975e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043486542999744415,
+ "observability_min": 2.1147343431948684e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "59bd7016d3415138606c013d18e67b7f51aa7f29f6f275c7a804b63abc8ff138",
+ "raw_normalized_churn": 0.004633204633204633,
+ "raw_xor_churn_total": 36,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "3b13fd3bcc0fc89357b76035e5b4b6f3a5a4a2ab39c3edbb11a0b14e8f4c16de",
+ "committed_normalized_churn": 0.004988662131519274,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 2194,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.1181284637350473e-07,
+ "last_committed_mask_overlap": 103,
+ "last_committed_normalized_gap": -0.3405877947807312,
+ "last_committed_score_gap": -1.0940178185592231e-07,
+ "last_dwell_count": 103,
+ "last_raw_cutoff_score": 2.568964987403888e-07,
+ "last_raw_mask_overlap": 102,
+ "last_raw_normalized_gap": 0.04455564543604851,
+ "last_raw_score_gap": 1.1446189773778315e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05021436884999275,
+ "observability_min": 1.4095215661313887e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "e379bd3a1336ddc052498eb58566f7775aebe5d3fa0e45532945270229718339",
+ "raw_normalized_churn": 0.029931972789115645,
+ "raw_xor_churn_total": 132,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "8779901f98e0c2ffaf9420e107c72334b76cc4bd8e62b04ed278dc0756a3a311",
+ "committed_normalized_churn": 0.002976190476190476,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 1675,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4101761962592718e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.31600314378738403,
+ "last_committed_score_gap": -6.514943606816814e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.6033945939852856e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.019609592854976654,
+ "last_raw_score_gap": 3.144191396131646e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.058788202702999115,
+ "observability_min": 2.2335044036481122e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "82f1c160361eac68d732c5c5e9415f7b3066f16596ee7807e6bc1320c381ec66",
+ "raw_normalized_churn": 0.0125,
+ "raw_xor_churn_total": 42,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "25a4414101c9ee5a5a77b89c1db6deaab90c5b9ad27778a0974141fc07830884",
+ "committed_normalized_churn": 0.0011074197120708748,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 902,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7974898014472274e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": -0.7122268676757812,
+ "last_committed_score_gap": -4.448714605587156e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 4.27814654813119e-07,
+ "last_raw_mask_overlap": 40,
+ "last_raw_normalized_gap": 0.07832875847816467,
+ "last_raw_score_gap": 3.351019017827639e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05937189236283302,
+ "observability_min": 1.6959486970336002e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "28bdd105d1184c0a20cbc29b7f72c99cdbfacdb91f900682a70198d8bd29e915",
+ "raw_normalized_churn": 0.018826135105204873,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "a55a8dede1798fd56d1632293754aabbd4b7c0852d337a085e95c6a7afa98ee0",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 1750,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.736102875493089e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.5680955052375793,
+ "last_committed_score_gap": -8.860176592406788e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 8.258468398025798e-08,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.005744934547692537,
+ "last_raw_score_gap": 4.744435955217341e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.042316362261772156,
+ "observability_min": 2.2043660408144206e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "9c9b8dc4ba4f0f08f8000ad9e1702833b8766f007cbe43714bd805132fae9a42",
+ "raw_normalized_churn": 0.05612244897959184,
+ "raw_xor_churn_total": 198,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "65f751b74a1f5f4dcd3ca290ab5375dbc0ec6b0279989c848dfc6359459a5bcc",
+ "committed_normalized_churn": 0.020634920634920634,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 617,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.714184564771131e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.4371102750301361,
+ "last_committed_score_gap": -5.213879376242403e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 8.868503755365964e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.18166103959083557,
+ "last_raw_score_gap": 1.6110616343212314e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.02871638536453247,
+ "observability_min": 3.7664725027752866e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "698209325eee81948bfd1edea2f38f54f0b834e04557b5cd1ddda7e1079f8015",
+ "raw_normalized_churn": 0.06666666666666667,
+ "raw_xor_churn_total": 84,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "8708be873d1a3d04b7307642fffed04679612f48e2f34c536ee78e48fe9ebbfa",
+ "committed_normalized_churn": 0.013824884792626729,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 1284,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.3412734745088528e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": -0.8628209233283997,
+ "last_committed_score_gap": -8.436264238298463e-07,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.8566794324215152e-07,
+ "last_raw_mask_overlap": 56,
+ "last_raw_normalized_gap": 0.006526105105876923,
+ "last_raw_score_gap": 1.2116885272916988e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06084220111370087,
+ "observability_min": 4.310823698006061e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "41b95c9b704948e4652cc2bff586d7765366c24522002f2a8403715a0cfd8c15",
+ "raw_normalized_churn": 0.07219662058371736,
+ "raw_xor_churn_total": 188,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "6fff6bd623a2a9ee7dbcfd265d870810393d04ac3ab37a4d773ada6f6214ef09",
+ "committed_normalized_churn": 0.005291005291005291,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1128,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3331248283066088e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.8579828143119812,
+ "last_committed_score_gap": -8.053942224250932e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 3.4931719028463704e-07,
+ "last_raw_mask_overlap": 49,
+ "last_raw_normalized_gap": 0.04273151978850365,
+ "last_raw_score_gap": 1.492685441917274e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08748547732830048,
+ "observability_min": 7.750266917128101e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "9582456181a1d414c97178045da7989528cde73e3a47422ab05931d5e16cdd57",
+ "raw_normalized_churn": 0.04585537918871252,
+ "raw_xor_churn_total": 104,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "c2693b88973127f354ecd63975ba81c264af81698d615212888ec2fd5451a121",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 945,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.8089793785475194e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.48444104194641113,
+ "last_committed_score_gap": 3.2985490179271437e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 6.8089793785475194e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.48444104194641113,
+ "last_raw_score_gap": 3.2985490179271437e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10300781577825546,
+ "observability_min": 1.6335016894686305e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "c2693b88973127f354ecd63975ba81c264af81698d615212888ec2fd5451a121",
+ "raw_normalized_churn": 0.006349206349206349,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "0deeb606abc5b62cd56f7d2ef584d353aa27b5d87559cbcf876d9049d69e7813",
+ "committed_normalized_churn": 0.001763668430335097,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 566,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1065117178077344e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.39013004302978516,
+ "last_committed_score_gap": 4.316834747442044e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.1065117178077344e-05,
+ "last_raw_mask_overlap": 26,
+ "last_raw_normalized_gap": 0.39013004302978516,
+ "last_raw_score_gap": 4.316834747442044e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11838573962450027,
+ "observability_min": 2.5963256433669812e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "0deeb606abc5b62cd56f7d2ef584d353aa27b5d87559cbcf876d9049d69e7813",
+ "raw_normalized_churn": 0.029982363315696647,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "10acbc451009db8766c9bcf3c51b1ff7859f38ce55684fb5b70b0c044dcb83d0",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0004338750150054693,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6456645131111145,
+ "last_committed_score_gap": 0.0002801376977004111,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0004338750150054693,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6456645131111145,
+ "last_raw_score_gap": 0.0002801376977004111,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09129704535007477,
+ "observability_min": 6.852939549162329e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "10acbc451009db8766c9bcf3c51b1ff7859f38ce55684fb5b70b0c044dcb83d0",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.010582010582010581,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 187,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.106771226972342e-05,
+ "last_committed_mask_overlap": 8,
+ "last_committed_normalized_gap": 0.03675321489572525,
+ "last_committed_score_gap": 2.6119669200852513e-06,
+ "last_dwell_count": 8,
+ "last_raw_cutoff_score": 7.106771226972342e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.03675321489572525,
+ "last_raw_score_gap": 2.6119669200852513e-06,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11014433950185776,
+ "observability_min": 2.115422503834452e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.031746031746031744,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "e2a06d7cf6ce76941d364058db20c85cfb4bbc9811bfa50c4749d978791f9d2f",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00016637428780086339,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8504687547683716,
+ "last_committed_score_gap": 0.00014149612979963422,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00016637428780086339,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8504687547683716,
+ "last_raw_score_gap": 0.00014149612979963422,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1394333392381668,
+ "observability_min": 1.6059972907100928e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e2a06d7cf6ce76941d364058db20c85cfb4bbc9811bfa50c4749d978791f9d2f",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "ffcb43dd5b04bbcaa812845e404f4a7bc96fe360de33a48245535192e2c925bd",
+ "committed_normalized_churn": 0.0017316017316017316,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1153,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.120095688151196e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.4745352864265442,
+ "last_committed_score_gap": 3.378736664672033e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 7.120095688151196e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.4745352864265442,
+ "last_raw_score_gap": 3.378736664672033e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10298613458871841,
+ "observability_min": 1.0730795141355998e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "ffcb43dd5b04bbcaa812845e404f4a7bc96fe360de33a48245535192e2c925bd",
+ "raw_normalized_churn": 0.006060606060606061,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ }
+ ],
+ "task_id": 857
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 50,
+ "committed_mask_sha256": "5b8c122945d88f71834f8413b2e1ecfb9a945bed168f228e01ee0835b3a83790",
+ "committed_normalized_churn": 0.0021021652301870925,
+ "committed_xor_churn_total": 100,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 23735,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.2461721610179666e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": -0.7604772448539734,
+ "last_committed_score_gap": -3.956556611228734e-07,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 1.3582621249952354e-07,
+ "last_raw_mask_overlap": 347,
+ "last_raw_normalized_gap": 0.06546853482723236,
+ "last_raw_score_gap": 8.892342862054647e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.046593453735113144,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "d8b876a965f25ba0f4c13f5cf6bccaa8d45efd8c13da99d76cbaf6435439699b",
+ "raw_normalized_churn": 0.013201597645574941,
+ "raw_xor_churn_total": 628,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 65,
+ "committed_mask_sha256": "a8c687a16ed0aa826f2981483ac8c5287596a7d0f5da7ec1055e928e12066529",
+ "committed_normalized_churn": 0.0025530243519245877,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 25395,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.874800537038368e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.8808188438415527,
+ "last_committed_score_gap": -1.3855883551627812e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 8.747996993463403e-09,
+ "last_raw_mask_overlap": 371,
+ "last_raw_normalized_gap": 0.11947425454854965,
+ "last_raw_score_gap": 1.0451604026684436e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11317642033100128,
+ "observability_min": 6.26822274640837e-11,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "1dc2187cb75c3376d0ae5f851d71871c60b305007f94fe13be592948079f361d",
+ "raw_normalized_churn": 0.026826394344069127,
+ "raw_xor_churn_total": 1366,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "143a0200be7018c1cf002edd56aefa1dd3e5fe001a19bf063d78a97956a08db4",
+ "committed_normalized_churn": 0.0012761471453143205,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 18000,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.679225199121788e-10,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9938091039657593,
+ "last_committed_score_gap": -1.5537753483840788e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 9.045901094850706e-08,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.025086689740419388,
+ "last_raw_score_gap": 2.2693171786158928e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.058977626264095306,
+ "observability_min": 4.673399889298935e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "7fd24e32d53f81a813249091d3e032d93d9b7cdd5ee075af1b320521eff70794",
+ "raw_normalized_churn": 0.013482772013538256,
+ "raw_xor_churn_total": 486,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "fac5bf471385694b8c6a3a4dba689c1c7599b599815ec4a57172766b270e1cf5",
+ "committed_normalized_churn": 0.0014174935378971066,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 11976,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.085477146669291e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.03279540315270424,
+ "last_committed_score_gap": 1.0118947102455422e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.085477146669291e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.03279540315270424,
+ "last_raw_score_gap": 1.0118947102455422e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.045707136392593384,
+ "observability_min": 9.349244045608884e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "fac5bf471385694b8c6a3a4dba689c1c7599b599815ec4a57172766b270e1cf5",
+ "raw_normalized_churn": 0.007337613607937964,
+ "raw_xor_churn_total": 176,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "f18c028bb07ac42e1c42cd5eb83ea913b850312d7a26f61fb5effcfc2c955cb6",
+ "committed_normalized_churn": 0.0008067769261799112,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 12385,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.41979192753206e-07,
+ "last_committed_mask_overlap": 184,
+ "last_committed_normalized_gap": 0.0282602459192276,
+ "last_committed_score_gap": 2.0968514036212582e-08,
+ "last_dwell_count": 184,
+ "last_raw_cutoff_score": 7.41979192753206e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.0282602459192276,
+ "last_raw_score_gap": 2.0968514036212582e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03383700177073479,
+ "observability_min": 7.046635497331977e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "f18c028bb07ac42e1c42cd5eb83ea913b850312d7a26f61fb5effcfc2c955cb6",
+ "raw_normalized_churn": 0.004033884630899556,
+ "raw_xor_churn_total": 100,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "3ee9235b2ceadb9ef4c9458b4edf380cf9eb22cff9d7011f9d186ca8354f8c0b",
+ "committed_normalized_churn": 0.005259417199715707,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 6998,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.888771805624856e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.13489596545696259,
+ "last_committed_score_gap": 2.547876931657811e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 1.888771805624856e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.13489596545696259,
+ "last_raw_score_gap": 2.547876931657811e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.049353793263435364,
+ "observability_min": 1.1435843383367228e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "3ee9235b2ceadb9ef4c9458b4edf380cf9eb22cff9d7011f9d186ca8354f8c0b",
+ "raw_normalized_churn": 0.02771855010660981,
+ "raw_xor_churn_total": 390,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "c7484c7b871fbb479f1bb0fbe8479e1519c3640630bb97cf7dd2c7cc48a31849",
+ "committed_normalized_churn": 0.0018656716417910447,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 5350,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0880517038458493e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.26779523491859436,
+ "last_committed_score_gap": -3.9794201711629285e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.4859937209621421e-06,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.26779523491859436,
+ "last_raw_score_gap": 3.9794201711629285e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.054002292454242706,
+ "observability_min": 2.597656987290975e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "2e934bacee9de58a3d90790e86d8861909143befa2f401161169bdd371fe4c95",
+ "raw_normalized_churn": 0.012313432835820896,
+ "raw_xor_churn_total": 132,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "bcdbdbebb8f7c904284fde93a64ee0bc5a445ac288c89f294d0c08021ad2ddc7",
+ "committed_normalized_churn": 0.0031239153071850054,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 2872,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.69352915690979e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.2212502658367157,
+ "last_committed_score_gap": 3.746937693449581e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 1.69352915690979e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.2212502658367157,
+ "last_raw_score_gap": 3.746937693449581e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.058054275810718536,
+ "observability_min": 6.61517844946502e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "bcdbdbebb8f7c904284fde93a64ee0bc5a445ac288c89f294d0c08021ad2ddc7",
+ "raw_normalized_churn": 0.026032627559875045,
+ "raw_xor_churn_total": 150,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 35,
+ "committed_mask_sha256": "89123d45174ef02c37562562a165c0528d2cbde956b7d3dac78c9f57b3661c16",
+ "committed_normalized_churn": 0.006218905472636816,
+ "committed_xor_churn_total": 70,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 5593,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.190511462975337e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": 0.07372796535491943,
+ "last_committed_score_gap": 6.775977112738474e-09,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 9.190511462975337e-08,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.07372796535491943,
+ "last_raw_score_gap": 6.775977112738474e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.053791921585798264,
+ "observability_min": 2.0567365766055445e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "89123d45174ef02c37562562a165c0528d2cbde956b7d3dac78c9f57b3661c16",
+ "raw_normalized_churn": 0.05063965884861407,
+ "raw_xor_churn_total": 570,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 26,
+ "committed_mask_sha256": "0f13a591a05bc6534f8a0cb0618e3e2eaaa99c11e96caf24ce7931d81a6fca8b",
+ "committed_normalized_churn": 0.012935323383084577,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1984,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.687515567842638e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.2732640504837036,
+ "last_committed_score_gap": -2.1385944819485303e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 7.826110049791168e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.2732640504837036,
+ "last_raw_score_gap": 2.1385944819485303e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043942347168922424,
+ "observability_min": 1.775908629042533e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "24ca936e755c1170114dd84a8bc81b0b63083fa979a57ee3e5ce4c3a723f81c3",
+ "raw_normalized_churn": 0.03283582089552239,
+ "raw_xor_churn_total": 132,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 42,
+ "committed_mask_sha256": "19db78463eb0bfc56effd99be595ed7dbefbfe664349152777c8cf5fc8045280",
+ "committed_normalized_churn": 0.010110736639383727,
+ "committed_xor_churn_total": 84,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 4112,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.736983486163808e-08,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.1760360449552536,
+ "last_committed_score_gap": -2.0802609412839956e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.1817244427447804e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.1760360449552536,
+ "last_raw_score_gap": 2.0802609412839956e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03334452584385872,
+ "observability_min": 2.0844849757395423e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "d97aa0c569d179b3bed89f9cf95579fae156c42804cf92e1d4f03700107842de",
+ "raw_normalized_churn": 0.04694270582571016,
+ "raw_xor_churn_total": 390,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "0de7d45c142a9fdee1de56cc17b3a95ee7aa37676a952a85b35da204cc26541b",
+ "committed_normalized_churn": 0.006080707573244887,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 3596,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2321686426730594e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.01937285251915455,
+ "last_committed_score_gap": -2.434219936731097e-09,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.2565108420403703e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.01937285251915455,
+ "last_raw_score_gap": 2.434219936731097e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0915137380361557,
+ "observability_min": 8.62744116147951e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "c109f09175c6765a77df26fb06b996b8639c447a34624cc9dd430ef03370428e",
+ "raw_normalized_churn": 0.03510226644555003,
+ "raw_xor_churn_total": 254,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "39bac0189fd87d1fc772a10a3c41c3c5de0ca183eb0a3cc16f2d6aa9b4af91e9",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 3015,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.3406270025298e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7595270276069641,
+ "last_committed_score_gap": 7.0944583967502695e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 9.3406270025298e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7595270276069641,
+ "last_raw_score_gap": 7.0944583967502695e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10769981890916824,
+ "observability_min": 5.047812479119784e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "39bac0189fd87d1fc772a10a3c41c3c5de0ca183eb0a3cc16f2d6aa9b4af91e9",
+ "raw_normalized_churn": 0.0013266998341625207,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "302b40f5b816b96b5ac57d9aeb8584b1a7fad6ce05af0af5e3cc840fb4002e2c",
+ "committed_normalized_churn": 0.000552791597567717,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 1808,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.586138180049602e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.923656702041626,
+ "last_committed_score_gap": 2.3887037968961522e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.586138180049602e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.923656702041626,
+ "last_raw_score_gap": 2.3887037968961522e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.109842948615551,
+ "observability_min": 9.490503316555987e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "302b40f5b816b96b5ac57d9aeb8584b1a7fad6ce05af0af5e3cc840fb4002e2c",
+ "raw_normalized_churn": 0.008844665561083471,
+ "raw_xor_churn_total": 32,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "b9fbde646f962cdb6f1e129816f3b2d303d43c96a4da43c49292d3c7d101ee25",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 469,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005943130236119032,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.12954823672771454,
+ "last_committed_score_gap": 7.699220441281796e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005943130236119032,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.12954823672771454,
+ "last_raw_score_gap": 7.699220441281796e-05,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09380555897951126,
+ "observability_min": 2.9540366597302636e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "b9fbde646f962cdb6f1e129816f3b2d303d43c96a4da43c49292d3c7d101ee25",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "6292100f488a6df0d8920362e7e459a3b1a7550cd872b90486669e25c5d9cf5b",
+ "committed_normalized_churn": 0.001658374792703151,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 602,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0001153696357505396,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": -0.7784566283226013,
+ "last_committed_score_gap": -0.0004053844604641199,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.0002314695157110691,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.5015774369239807,
+ "last_raw_score_gap": 0.0001160998799605295,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1017983928322792,
+ "observability_min": 5.166556604763173e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.024875621890547265,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "38678dad620827f1bd29e15ec2ca8125a0b6e2d1bb51f60656bc65fe8638f60a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 469,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.6837111363420263e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.06004375219345093,
+ "last_committed_score_gap": 1.6114008758449927e-06,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 2.6837111363420263e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.06004375219345093,
+ "last_raw_score_gap": 1.6114008758449927e-06,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11505194753408432,
+ "observability_min": 3.95781150075436e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "38678dad620827f1bd29e15ec2ca8125a0b6e2d1bb51f60656bc65fe8638f60a",
+ "raw_normalized_churn": 0.006396588486140725,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "1d4577458643a7fad573e09d7ea1f9d379a67f7f03274eab5919b05f81f759d0",
+ "committed_normalized_churn": 0.0008141112618724559,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 3682,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.037915798311587e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.8826075792312622,
+ "last_committed_score_gap": 4.446502771315863e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.037915798311587e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.8826075792312622,
+ "last_raw_score_gap": 4.446502771315863e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10445117205381393,
+ "observability_min": 1.1164827284915191e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "1d4577458643a7fad573e09d7ea1f9d379a67f7f03274eab5919b05f81f759d0",
+ "raw_normalized_churn": 0.005970149253731343,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ }
+ ],
+ "task_id": 884
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "0a971cab41cf3f2ff1a60489606f7b16d9eff86cf49f434884122f3de3bd6f19",
+ "committed_normalized_churn": 0.0009054325955734407,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 9931,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.961549724517681e-08,
+ "last_committed_mask_overlap": 355,
+ "last_committed_normalized_gap": -0.6252071261405945,
+ "last_committed_score_gap": -1.4949122828511463e-07,
+ "last_dwell_count": 355,
+ "last_raw_cutoff_score": 1.7384752482030308e-07,
+ "last_raw_mask_overlap": 351,
+ "last_raw_normalized_gap": 0.14380617439746857,
+ "last_raw_score_gap": 2.500034668173612e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.042203038930892944,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "1db7dc94a7c81dc5f834dd57f4d5e000a403a0b478b0a0ed1b48bc81fc4ec4ff",
+ "raw_normalized_churn": 0.011770623742454729,
+ "raw_xor_churn_total": 234,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "abe26140287c3ab33dfcbf1e3ded2feb6307815417cb316be44f062405b25932",
+ "committed_normalized_churn": 0.0031954887218045114,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 10606,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 9.02659547108442e-09,
+ "last_committed_mask_overlap": 378,
+ "last_committed_normalized_gap": -0.3104288578033447,
+ "last_committed_score_gap": -4.0635628195673235e-09,
+ "last_dwell_count": 378,
+ "last_raw_cutoff_score": 1.1420806522721705e-08,
+ "last_raw_mask_overlap": 374,
+ "last_raw_normalized_gap": 0.010807403363287449,
+ "last_raw_score_gap": 1.234292668073067e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10486193001270294,
+ "observability_min": 6.330758695050065e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "ca5a8b295fa79f2016fbb03035d3d2c1e03141fc47a955c391056628df426195",
+ "raw_normalized_churn": 0.025657894736842105,
+ "raw_xor_churn_total": 546,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "d945d9fe49756bedce54d369f3013d181f685348d3e7ac6f151ec25f4803acb7",
+ "committed_normalized_churn": 0.0015932023366967605,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 7520,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.852290989125322e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": 0.08556509017944336,
+ "last_committed_score_gap": 7.57447082833096e-09,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 8.852290989125322e-08,
+ "last_raw_mask_overlap": 267,
+ "last_raw_normalized_gap": 0.08556509017944336,
+ "last_raw_score_gap": 7.57447082833096e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06126362830400467,
+ "observability_min": 5.983790352104279e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "d945d9fe49756bedce54d369f3013d181f685348d3e7ac6f151ec25f4803acb7",
+ "raw_normalized_churn": 0.015533722782793415,
+ "raw_xor_churn_total": 234,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "0214cd513606b70d232c563668491a764d9402f1f2bba435e2302d6f6b3a0963",
+ "committed_normalized_churn": 0.0017956903431763766,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 5003,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8141231521440204e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.08253442496061325,
+ "last_committed_score_gap": 1.497276116424473e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 1.8141231521440204e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.08253442496061325,
+ "last_raw_score_gap": 1.497276116424473e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04430510848760605,
+ "observability_min": 8.362253112181861e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "0214cd513606b70d232c563668491a764d9402f1f2bba435e2302d6f6b3a0963",
+ "raw_normalized_churn": 0.007382282521947326,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "9cfc7c8cbd044d90c840b9218d50db0f3c398ede2e37e592f0daced56ed59828",
+ "committed_normalized_churn": 0.0007722007722007722,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 5176,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.624633665021975e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.06558506190776825,
+ "last_committed_score_gap": 5.656471557813347e-08,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.624633665021975e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.06558506190776825,
+ "last_raw_score_gap": 5.656471557813347e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04267045110464096,
+ "observability_min": 6.759299964187448e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "9cfc7c8cbd044d90c840b9218d50db0f3c398ede2e37e592f0daced56ed59828",
+ "raw_normalized_churn": 0.005019305019305019,
+ "raw_xor_churn_total": 52,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "974370f1406826aa402bc60ceab0e719a8b681a6f12570f881f0a73dfe514a44",
+ "committed_normalized_churn": 0.004421768707482994,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 2927,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.4608743842691183e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": -0.5520796179771423,
+ "last_committed_score_gap": -3.033125040019513e-07,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 3.10240210410484e-07,
+ "last_raw_mask_overlap": 102,
+ "last_raw_normalized_gap": 0.08047916740179062,
+ "last_raw_score_gap": 2.4967874878711882e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0521535724401474,
+ "observability_min": 5.7981321077704706e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "13b2211cfc263caa8258b8b3464c54c8de2b2a0186badc04f47091588744e37f",
+ "raw_normalized_churn": 0.0326530612244898,
+ "raw_xor_churn_total": 192,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "e559a73d3ec705a45bed0af5cb1c02f68b062be89709f404bd529d2f5846904d",
+ "committed_normalized_churn": 0.0008928571428571428,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2238,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.356872396892868e-07,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.3916151225566864,
+ "last_committed_score_gap": -6.022984280207311e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.3412096677711816e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.05772286280989647,
+ "last_raw_score_gap": 7.741846275166608e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05401381850242615,
+ "observability_min": 2.048704175194871e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "78031bdef2fd14e734de6e32595b6c5db53b30f3d4560f9a864d40302b230adf",
+ "raw_normalized_churn": 0.01607142857142857,
+ "raw_xor_churn_total": 72,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "5721c45c7b4abb113031983f18962bb0ed6d0dc53158a188cdb587de799ed0a6",
+ "committed_normalized_churn": 0.0008305647840531562,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1203,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.857357799257443e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.16759194433689117,
+ "last_committed_score_gap": 4.788701346569724e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 2.857357799257443e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.16759194433689117,
+ "last_raw_score_gap": 4.788701346569724e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.053742364048957825,
+ "observability_min": 2.2853484438201122e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "5721c45c7b4abb113031983f18962bb0ed6d0dc53158a188cdb587de799ed0a6",
+ "raw_normalized_churn": 0.014119601328903655,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "894187f8557674af45606eedb96f9b0763933dfec8a556883c84cb905f4df2f3",
+ "committed_normalized_churn": 0.008503401360544218,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2332,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.179726052048863e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.40930745005607605,
+ "last_committed_score_gap": -5.667961744393324e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.1565969515459074e-07,
+ "last_raw_mask_overlap": 82,
+ "last_raw_normalized_gap": 0.12866760790348053,
+ "last_raw_score_gap": 1.4881656795751041e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03962259739637375,
+ "observability_min": 2.041395958940484e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "ea7f95ebdd5413aa57716be8352e7d9e64b72ee0c2f39a1b0c172baf6b994150",
+ "raw_normalized_churn": 0.047193877551020405,
+ "raw_xor_churn_total": 222,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "d814ca169cd7e1f2dbdf22160257c9926a2856c29cc19bdc39658874fbd3aa3f",
+ "committed_normalized_churn": 0.007142857142857143,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 834,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.237001914792927e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.01848476752638817,
+ "last_committed_score_gap": -9.862787919701077e-08,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 5.335629793989938e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.01848476752638817,
+ "last_raw_score_gap": 9.862787919701077e-08,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03242328763008118,
+ "observability_min": 2.5960477501030255e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "a7da6b102d4c548714b1e896a197d2a3fad3edfac2a7a0bd63158550294c53f4",
+ "raw_normalized_churn": 0.05,
+ "raw_xor_churn_total": 84,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "fba622d81b8ad3bce88eca00adcedae62c7485799e0b76fa995a4da67242923b",
+ "committed_normalized_churn": 0.013248847926267281,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 1713,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5124960839330015e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.2731739282608032,
+ "last_committed_score_gap": -5.684640314029821e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.0809601153359836e-07,
+ "last_raw_mask_overlap": 60,
+ "last_raw_normalized_gap": 0.2312919944524765,
+ "last_raw_score_gap": 4.813094278688368e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050380196422338486,
+ "observability_min": 4.757749749728646e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "c10ce872d2da39ee5ae1c4b7041214a07e9495486f5c06a364d0d9ad4704f3b2",
+ "raw_normalized_churn": 0.0587557603686636,
+ "raw_xor_churn_total": 204,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "b1cb76cbf9d977cb4ec3228b62b5b365008f84f085dd1704649a02f9c8c94b70",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1500,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5272033238034055e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.44583791494369507,
+ "last_committed_score_gap": -1.228675046149874e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.86264699664207e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.12470919638872147,
+ "last_raw_score_gap": 2.3228921008922043e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08768408000469208,
+ "observability_min": 1.2640924751394778e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "5bc9b8a3d0d2f2ba96a7cf493a0221779d2905e91367dfecec75c28c20641768",
+ "raw_normalized_churn": 0.04563492063492063,
+ "raw_xor_churn_total": 138,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "b4455d4b35211c1106eb8f2c66e24f98dd7ae18dd005659d2aa17f602d7e4edd",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1260,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4226911844161805e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7928441762924194,
+ "last_committed_score_gap": 1.127972427639179e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.4226911844161805e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7928441762924194,
+ "last_raw_score_gap": 1.127972427639179e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10584601759910583,
+ "observability_min": 2.6173241352012155e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "b4455d4b35211c1106eb8f2c66e24f98dd7ae18dd005659d2aa17f602d7e4edd",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "d5b7eb7e29a6a221fa2cb0c60feb904d14fc53af5673cd125f7369370eaa753d",
+ "committed_normalized_churn": 0.0026455026455026454,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 754,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.17923861782765e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.6755212545394897,
+ "last_committed_score_gap": 1.4721220395585988e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.17923861782765e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.6755212545394897,
+ "last_raw_score_gap": 1.4721220395585988e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11019060760736465,
+ "observability_min": 3.6382733270556855e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "d5b7eb7e29a6a221fa2cb0c60feb904d14fc53af5673cd125f7369370eaa753d",
+ "raw_normalized_churn": 0.009259259259259259,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0006700982921756804,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8787106871604919,
+ "last_committed_score_gap": 0.0005888225277885795,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0006700982921756804,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8787106871604919,
+ "last_raw_score_gap": 0.0005888225277885795,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08913954347372055,
+ "observability_min": 6.353501902367498e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "c83ca61e3a87922a171fcc0ddbc9baf6896f7f65ef8c97f6ae7cadc75249745a",
+ "committed_normalized_churn": 0.003968253968253968,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 251,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.1218027288559824e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.5308570861816406,
+ "last_committed_score_gap": 1.657231041463092e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 3.1218027288559824e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.5308570861816406,
+ "last_raw_score_gap": 1.657231041463092e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09977225214242935,
+ "observability_min": 6.383485384731102e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "c83ca61e3a87922a171fcc0ddbc9baf6896f7f65ef8c97f6ae7cadc75249745a",
+ "raw_normalized_churn": 0.003968253968253968,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010960995132336393,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.825285017490387,
+ "last_committed_score_gap": 9.04594489838928e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00010960995132336393,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.825285017490387,
+ "last_raw_score_gap": 9.04594489838928e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1148458868265152,
+ "observability_min": 3.514334423471155e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "f9d05f0077c327fabaa2dd521f08d282ac01dfa8649a59b16b2bec7f49f14657",
+ "committed_normalized_churn": 0.001948051948051948,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1537,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.158103820373071e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": -0.10223174095153809,
+ "last_committed_score_gap": -4.7349658416351303e-07,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.406284006108763e-06,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.05632414668798447,
+ "last_raw_score_gap": 2.4818018573569134e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10405503213405609,
+ "observability_min": 7.018609693432154e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "04d74f6cef9c21bd0ba557ebec08596ff40906889e7ce8b91870bda97a50912b",
+ "raw_normalized_churn": 0.00909090909090909,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ }
+ ],
+ "task_id": 878
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 89,
+ "committed_mask_sha256": "4c16e6c9ba9ea29cd7b93442270f2d910cd12ebc9cf65e13e9a7d0f51e1a4513",
+ "committed_normalized_churn": 0.0019137727126115472,
+ "committed_xor_churn_total": 178,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 46416,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 8.518580330019176e-08,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": -0.9728600978851318,
+ "last_committed_score_gap": -3.0535811674781144e-06,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 1.368010771329864e-07,
+ "last_raw_mask_overlap": 349,
+ "last_raw_normalized_gap": 0.039020538330078125,
+ "last_raw_score_gap": 5.338051778380759e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0513690821826458,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "3cfbd3d7493be6db71f12ec3c43102b2d8673e8cbf6b100837c7078834da59b3",
+ "raw_normalized_churn": 0.016277819589291476,
+ "raw_xor_churn_total": 1514,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 92,
+ "committed_mask_sha256": "52fcbf409101aeba7d6fe1a8922323753a8168f18dadb834a8879a3f4411076e",
+ "committed_normalized_churn": 0.0018481317798312575,
+ "committed_xor_churn_total": 184,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 49688,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 5.504692257574106e-09,
+ "last_committed_mask_overlap": 378,
+ "last_committed_normalized_gap": -0.41792911291122437,
+ "last_committed_score_gap": -3.952389970862669e-09,
+ "last_dwell_count": 378,
+ "last_raw_cutoff_score": 7.116593536693472e-09,
+ "last_raw_mask_overlap": 371,
+ "last_raw_normalized_gap": 0.04827182739973068,
+ "last_raw_score_gap": 3.43530981439244e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12108021229505539,
+ "observability_min": 3.2825603346609e-11,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "2dcbda867533276f13e290c0c598218a0581b41473b0683e7ac6f6e334e62ec1",
+ "raw_normalized_churn": 0.02896745680996384,
+ "raw_xor_churn_total": 2884,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 42,
+ "committed_mask_sha256": "e90a4348f396a32f8c4103bc6a30183913a02aaf5bfc0fe127610b04372fd0d2",
+ "committed_normalized_churn": 0.0011918612900479583,
+ "committed_xor_churn_total": 84,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 35197,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.9752792169167606e-09,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9343018531799316,
+ "last_committed_score_gap": -5.653296852869971e-08,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 5.128052293912333e-08,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.03698186203837395,
+ "last_raw_score_gap": 1.896449219884744e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08065413683652878,
+ "observability_min": 1.311612707333154e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "1196644c0a4c9da5351fcd898ab55cbe6f947a61b7a62edbfc9e66e3aeb061cf",
+ "raw_normalized_churn": 0.01648741451233009,
+ "raw_xor_churn_total": 1162,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "be70d55d6de7cf9aff2ae87e9d5cfc543dc92f8565fb5fc1b1eca7bb13d6161b",
+ "committed_normalized_churn": 0.0011514350292123332,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 23422,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.5043877940333914e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.48705336451530457,
+ "last_committed_score_gap": 1.2197705245853285e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.5043877940333914e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.48705336451530457,
+ "last_raw_score_gap": 1.2197705245853285e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04636087268590927,
+ "observability_min": 3.2210991651737686e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "be70d55d6de7cf9aff2ae87e9d5cfc543dc92f8565fb5fc1b1eca7bb13d6161b",
+ "raw_normalized_churn": 0.011215830099364579,
+ "raw_xor_churn_total": 526,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "67eafe96c10eb846579793ceb4e993de94d26e0ede664d84ddae53bdc86561a8",
+ "committed_normalized_churn": 0.0005364142768722922,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 24222,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.693954676644353e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.6236698031425476,
+ "last_committed_score_gap": 3.5511476426108857e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 5.693954676644353e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.6236698031425476,
+ "last_raw_score_gap": 3.5511476426108857e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05509911850094795,
+ "observability_min": 2.3916510993871043e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "67eafe96c10eb846579793ceb4e993de94d26e0ede664d84ddae53bdc86561a8",
+ "raw_normalized_churn": 0.005034041675263049,
+ "raw_xor_churn_total": 244,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 80,
+ "committed_mask_sha256": "f6e78e621a79c270a459bc03850cd9dbb5418a9638545c20fac97285779caadf",
+ "committed_normalized_churn": 0.0058160668847691745,
+ "committed_xor_churn_total": 160,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 13675,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1191589521786227e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.03751996159553528,
+ "last_committed_score_gap": 4.199080194666749e-09,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 1.1191589521786227e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.03751996159553528,
+ "last_raw_score_gap": 4.199080194666749e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.053902480751276016,
+ "observability_min": 4.539121523094991e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "f6e78e621a79c270a459bc03850cd9dbb5418a9638545c20fac97285779caadf",
+ "raw_normalized_churn": 0.03213376953834969,
+ "raw_xor_churn_total": 884,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "07e086da95fa0bd386296ecf00382c74c51a53c2cfb3a7ae2b6ff35771d6d962",
+ "committed_normalized_churn": 0.0018129770992366412,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 10461,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4091970115259755e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.4476385712623596,
+ "last_committed_score_gap": -1.1420256669225637e-06,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 2.0106313058931846e-06,
+ "last_raw_mask_overlap": 77,
+ "last_raw_normalized_gap": 0.10869680345058441,
+ "last_raw_score_gap": 2.185491894124425e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0631350502371788,
+ "observability_min": 2.2220459072741505e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "fa0dd426285e1e7cf76009f2e0d5a813f6ece1aa87fcf0580eeda42dbf537e36",
+ "raw_normalized_churn": 0.018416030534351147,
+ "raw_xor_churn_total": 386,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "65bf7dac816e0925340d73edac63c3c5a803672065cc86df8e1f624fced2bde2",
+ "committed_normalized_churn": 0.0012426770814841115,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 5626,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.4481584521017794e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.3686068654060364,
+ "last_committed_score_gap": 1.271014866688347e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.4481584521017794e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.3686068654060364,
+ "last_raw_score_gap": 1.271014866688347e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06715214997529984,
+ "observability_min": 5.35766616849287e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "65bf7dac816e0925340d73edac63c3c5a803672065cc86df8e1f624fced2bde2",
+ "raw_normalized_churn": 0.021480560979939643,
+ "raw_xor_churn_total": 242,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 77,
+ "committed_mask_sha256": "bb342c18314285e65ba8ce35c42cdd64a24668dfd5063cc8c2285702ebbee04e",
+ "committed_normalized_churn": 0.006997455470737914,
+ "committed_xor_churn_total": 154,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 10927,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.803251130169883e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.49406933784484863,
+ "last_committed_score_gap": -4.690640764692944e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 7.057758466544328e-08,
+ "last_raw_mask_overlap": 81,
+ "last_raw_normalized_gap": 0.005821253638714552,
+ "last_raw_score_gap": 4.1085002067120513e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04187372326850891,
+ "observability_min": 1.1875437877506556e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "c3ee58699da05c80dc99c93e7520d02ee4a5b3870ec06ed8503ff0d80dcfb4de",
+ "raw_normalized_churn": 0.045438022537259176,
+ "raw_xor_churn_total": 1000,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "aad4410385cf70827a79fdffcb06d6c9b04ee225a29122706c5ea840768b3cde",
+ "committed_normalized_churn": 0.007633587786259542,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 3900,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.724142389837652e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.4347718358039856,
+ "last_committed_score_gap": -6.7105847847415134e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 1.2998955753573682e-05,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.32885822653770447,
+ "last_raw_score_gap": 4.27481336373603e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0513441264629364,
+ "observability_min": 9.647084908692705e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "47d1e4c592d8f6b28838957fdf116f7bd54a9fdfe875ec103a182b40aba42ca4",
+ "raw_normalized_churn": 0.042239185750636135,
+ "raw_xor_churn_total": 332,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 56,
+ "committed_mask_sha256": "7b5a0937db0af0047666d973801a2be92580c1d7b3a8894a27c9c3812ef0671b",
+ "committed_normalized_churn": 0.006894853484363458,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 8066,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.821152153524963e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.21338757872581482,
+ "last_committed_score_gap": -4.940314113355271e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.3151835648604902e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.07705698907375336,
+ "last_raw_score_gap": 1.7840108057498583e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.041370052844285965,
+ "observability_min": 1.1866499249890694e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "4d3a32fbadd3466c94a38306daa51df44a0b45bcfe7b638c72a90f273d0a5b35",
+ "raw_normalized_churn": 0.052450135434622014,
+ "raw_xor_churn_total": 852,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "d5aca251d0be38118ff887d66c86d11282fa20fac7b82168e7f8e782909abc41",
+ "committed_normalized_churn": 0.0028272547356516823,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 7054,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4311945051304065e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.40352389216423035,
+ "last_committed_score_gap": 5.775211775471689e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.4311945051304065e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.40352389216423035,
+ "last_raw_score_gap": 5.775211775471689e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09678450226783752,
+ "observability_min": 8.447752719575874e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d5aca251d0be38118ff887d66c86d11282fa20fac7b82168e7f8e782909abc41",
+ "raw_normalized_churn": 0.02643483177834323,
+ "raw_xor_churn_total": 374,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "9dd259af2943a424c8fbac7dae130bf7378c9d3164dbe524c269cc49012021af",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 5895,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2320085261308122e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7819270491600037,
+ "last_committed_score_gap": 9.633407898945734e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.2320085261308122e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7819270491600037,
+ "last_raw_score_gap": 9.633407898945734e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11265386641025543,
+ "observability_min": 1.7399679919094524e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "9dd259af2943a424c8fbac7dae130bf7378c9d3164dbe524c269cc49012021af",
+ "raw_normalized_churn": 0.002035623409669211,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "be6776e809723ef417d86af151ab9f04a6b1f0723713f064484f278c0b624348",
+ "committed_normalized_churn": 0.0014136273678258412,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 3532,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8297458836968872e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": -0.6014140844345093,
+ "last_committed_score_gap": -2.7608480195340235e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 4.590594016917748e-06,
+ "last_raw_mask_overlap": 26,
+ "last_raw_normalized_gap": 0.48058539628982544,
+ "last_raw_score_gap": 2.2061724394006887e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11929048597812653,
+ "observability_min": 3.0542715023784694e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "d866d36c93eee530168d92ce20f25a9edc09862771e472316c6f24cb6320ffd3",
+ "raw_normalized_churn": 0.011591744416171897,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "e50679cd7f0467ce5de5bbef94a9972a9287baab69d7bf7bde985a57229417df",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 917,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00031634524930268526,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.4562290608882904,
+ "last_committed_score_gap": 0.00014432589523494244,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00031634524930268526,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.4562290608882904,
+ "last_raw_score_gap": 0.00014432589523494244,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10046342760324478,
+ "observability_min": 5.144022097169909e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e50679cd7f0467ce5de5bbef94a9972a9287baab69d7bf7bde985a57229417df",
+ "raw_normalized_churn": 0.003271537622682661,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "2ad44af3d87f65540ef70a4482c821edf831f8390f6545c4c96c9cbb9d9c7a1e",
+ "committed_normalized_churn": 0.007633587786259542,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 1170,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.96386196068488e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.6257679462432861,
+ "last_committed_score_gap": 4.3577616452239454e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 6.96386196068488e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.6257679462432861,
+ "last_raw_score_gap": 4.3577616452239454e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1074005514383316,
+ "observability_min": 1.4123684444200535e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "2ad44af3d87f65540ef70a4482c821edf831f8390f6545c4c96c9cbb9d9c7a1e",
+ "raw_normalized_churn": 0.026293469041560644,
+ "raw_xor_churn_total": 62,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "eb2daa484794c41515ed7a270ddde790ef1c98ac5d04bb1a405a0466e1e35660",
+ "committed_normalized_churn": 0.0021810250817884407,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 915,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00011484652350191027,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9162382483482361,
+ "last_committed_score_gap": 0.00010522677621338516,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00011484652350191027,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9162382483482361,
+ "last_raw_score_gap": 0.00010522677621338516,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12512293457984924,
+ "observability_min": 3.0481970725304564e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "eb2daa484794c41515ed7a270ddde790ef1c98ac5d04bb1a405a0466e1e35660",
+ "raw_normalized_churn": 0.017448200654307525,
+ "raw_xor_churn_total": 32,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "b3e9d5661f5be010cd44eeeba040e7ead1183e6af9592ea130d0e099b9434417",
+ "committed_normalized_churn": 0.0005551700208188758,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 7201,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.654144842992537e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.7468447685241699,
+ "last_committed_score_gap": 4.222768438921776e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.654144842992537e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.7468447685241699,
+ "last_raw_score_gap": 4.222768438921776e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11131149530410767,
+ "observability_min": 3.4897235101638557e-10,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "b3e9d5661f5be010cd44eeeba040e7ead1183e6af9592ea130d0e099b9434417",
+ "raw_normalized_churn": 0.005690492713393476,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ }
+ ],
+ "task_id": 822
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "7ad55a6d59b81cfe1ea4a1fdac636e8bf842b4015aa071cc8a25e235770010e6",
+ "committed_normalized_churn": 0.0016543706684551756,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 22328,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 3.8660590284678165e-09,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.9778856039047241,
+ "last_committed_score_gap": -1.709552606143916e-07,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 6.462084201075413e-08,
+ "last_raw_mask_overlap": 350,
+ "last_raw_normalized_gap": 0.05482466146349907,
+ "last_raw_score_gap": 3.5428158184913627e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.036527037620544434,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "e05305446be2c8207a8ec27da47f525bdfc9c2693735f33db47f53bd560e6e23",
+ "raw_normalized_churn": 0.015381175944556227,
+ "raw_xor_churn_total": 688,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 54,
+ "committed_mask_sha256": "63d608a2ff11029e818bb3abbfaae5349d8115bb1fef0b24076468741b7910dd",
+ "committed_normalized_churn": 0.002255639097744361,
+ "committed_xor_churn_total": 108,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 23886,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.7223067416693993e-08,
+ "last_committed_mask_overlap": 379,
+ "last_committed_normalized_gap": -0.7066381573677063,
+ "last_committed_score_gap": -4.148622423372217e-08,
+ "last_dwell_count": 379,
+ "last_raw_cutoff_score": 2.6813257392177547e-08,
+ "last_raw_mask_overlap": 368,
+ "last_raw_normalized_gap": 0.03008097968995571,
+ "last_raw_score_gap": 8.065690337843989e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12224797159433365,
+ "observability_min": 3.816698512792982e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "15bc097055ff12044091c6dcb621f06ee6790777e991706dc159ed7880f4a9ac",
+ "raw_normalized_churn": 0.02456140350877193,
+ "raw_xor_churn_total": 1176,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "f094e14b396b34daf9978d4eb4c6259d981f3b4e3c00311a4f2b39822574aca6",
+ "committed_normalized_churn": 0.0008851124092759781,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 16932,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.578197707720392e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.6684882640838623,
+ "last_committed_score_gap": -1.7297801946369873e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.2204671406834677e-07,
+ "last_raw_mask_overlap": 267,
+ "last_raw_normalized_gap": 0.041983116418123245,
+ "last_raw_score_gap": 5.1239013032500225e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04934059828519821,
+ "observability_min": 8.86967477242706e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "1514a1706177127074c0634b5e598c3518df9a04f92da157c655b444e4273066",
+ "raw_normalized_churn": 0.008379064141145925,
+ "raw_xor_churn_total": 284,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "270c08310a36262a51b889f5d7a9f5b12cbbf88063ea9158fa2b1a758c0321a3",
+ "committed_normalized_churn": 0.0008867606632969762,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 11267,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.5923774299153592e-06,
+ "last_committed_mask_overlap": 178,
+ "last_committed_normalized_gap": -0.8299239873886108,
+ "last_committed_score_gap": -7.77035893406719e-06,
+ "last_dwell_count": 178,
+ "last_raw_cutoff_score": 2.7170920020580525e-06,
+ "last_raw_mask_overlap": 174,
+ "last_raw_normalized_gap": 0.00869722943753004,
+ "last_raw_score_gap": 2.363117346249055e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04246092960238457,
+ "observability_min": 1.7808103436323108e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "9127f569468c7ee8f62258c75283657bb2a85e6cee369e5f003ebf0469d3f4f3",
+ "raw_normalized_churn": 0.009931719428926133,
+ "raw_xor_churn_total": 224,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "58f435c25475683da34ea3fafbb0ff72c5aea224c184e0ada35ba6a8163a91f2",
+ "committed_normalized_churn": 0.0005148005148005148,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 11649,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.754475864705455e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.5054708123207092,
+ "last_committed_score_gap": -5.881796028006647e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.924394023779314e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.355197012424469,
+ "last_raw_score_gap": 3.169918159073859e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.028900589793920517,
+ "observability_min": 1.280722727869943e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "1c3296300ecc6292a43b00967337682b4e093528a9c56828ac2d53c2751b0ed1",
+ "raw_normalized_churn": 0.004719004719004719,
+ "raw_xor_churn_total": 110,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "5284cee8d7a3ddfe8c67a456768b4765c58f6070f43421e7054a61ab9efc3781",
+ "committed_normalized_churn": 0.0030234315948601664,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 6595,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2786084369054151e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": -0.882242739200592,
+ "last_committed_score_gap": -9.579392781233764e-07,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 3.6228325939191564e-07,
+ "last_raw_mask_overlap": 98,
+ "last_raw_normalized_gap": 0.003821457037702203,
+ "last_raw_score_gap": 1.3844498880644096e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03619275987148285,
+ "observability_min": 2.534521570396464e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "c341c8c381c65ea2e9bdf572a83d401a1fe6af8ae0cef918eb082edd9cbd02c1",
+ "raw_normalized_churn": 0.025396825396825397,
+ "raw_xor_churn_total": 336,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "0306bdd4bfe5ae99c37590858018693d3e7e6b93b1133367c050be8cde8058e0",
+ "committed_normalized_churn": 0.001984126984126984,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 5030,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5253929177561076e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.21925444900989532,
+ "last_committed_score_gap": -4.283715497876983e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.789890347936307e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.1467096507549286,
+ "last_raw_score_gap": 2.6259419882990187e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04616660997271538,
+ "observability_min": 2.319469558642595e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "4f5cdc9a3c31f3c2011ef36441c3c3c8fbadc663e4cef81bc45b8836200d78d9",
+ "raw_normalized_churn": 0.01607142857142857,
+ "raw_xor_churn_total": 162,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "c7bb8b05b29b4060361c02bfdf8177f6f21c5547b462bd53781b6112c4d243e8",
+ "committed_normalized_churn": 0.0007382798080472499,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 2707,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.2716614012097125e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": -0.6531184911727905,
+ "last_committed_score_gap": -4.277149514564371e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.641927435182879e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.09277976304292679,
+ "last_raw_score_gap": 3.378971769052441e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.061315715312957764,
+ "observability_min": 4.862473019784375e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "18f0e02785246815fedbdf1eb763e21a186f2b188c32108c53ff28dc87fd5901",
+ "raw_normalized_churn": 0.0103359173126615,
+ "raw_xor_churn_total": 56,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "7a25614bfd69eff336136e0d803e408d78ed872fe8b040d9d3043767f7df820a",
+ "committed_normalized_churn": 0.00510204081632653,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 5265,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.8440032429653e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.7576524019241333,
+ "last_committed_score_gap": -1.514382859113539e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.0247502757465554e-07,
+ "last_raw_mask_overlap": 77,
+ "last_raw_normalized_gap": 0.0020492193289101124,
+ "last_raw_score_gap": 2.0999380012654e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03947780653834343,
+ "observability_min": 3.39191288389884e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "7900156ef5b7522db21fb3da2f2a22a269e3e5e722a40304e3f38b5c5b9ebee4",
+ "raw_normalized_churn": 0.051776266061980346,
+ "raw_xor_churn_total": 548,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "aea7d33020bf02a1014a3251aeb582182ca5fb24f47b08bef5405e0859ef56b7",
+ "committed_normalized_churn": 0.007407407407407408,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1876,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.384504558809567e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": -0.6469555497169495,
+ "last_committed_score_gap": -1.1699633432726841e-05,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 1.3246844901004806e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.0941234678030014,
+ "last_raw_score_gap": 1.2468390195863321e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.044866323471069336,
+ "observability_min": 3.762768301385222e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "cb21ca47d12d178b459f63123977990658e6e6fa12a5967c3ae4e8569d2eac92",
+ "raw_normalized_churn": 0.043915343915343914,
+ "raw_xor_churn_total": 166,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "b0645f39ebbafed9d7cfd6555feccb0775ce759b4a8e4ed7fa61ba30d505d074",
+ "committed_normalized_churn": 0.007680491551459293,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 3876,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.258114536994981e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.6888954639434814,
+ "last_committed_score_gap": -2.7859107376571046e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.3617820943400147e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.01694689504802227,
+ "last_raw_score_gap": 4.002487230536644e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0359787717461586,
+ "observability_min": 1.5569008837701404e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "73449a4652a671cbe5ec188cea3e614c55cba6039b52f5039cb24e277979ec66",
+ "raw_normalized_churn": 0.06272401433691756,
+ "raw_xor_churn_total": 490,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "6e654d7f18c181f39765a271ff74a4d8dee14d9edf7353e6906790426af71366",
+ "committed_normalized_churn": 0.0026455026455026454,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 3393,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4664767888916685e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.8201139569282532,
+ "last_committed_score_gap": -6.685777407255955e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.623041552851646e-07,
+ "last_raw_mask_overlap": 48,
+ "last_raw_normalized_gap": 0.007961311377584934,
+ "last_raw_score_gap": 2.0882851003989344e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09301511943340302,
+ "observability_min": 9.424121572010336e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d8770264ba23ea6d319b5edb9ad378ecd1954cb34d66ad7e8ad44e646d6593db",
+ "raw_normalized_churn": 0.035567313345091126,
+ "raw_xor_churn_total": 242,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d6dae4655830bd64116a0edc41d2ea0f39d3df9b619d17db8c969141800053fb",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 2835,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2059711480105761e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7812369465827942,
+ "last_committed_score_gap": 9.421491995453835e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.2059711480105761e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7812369465827942,
+ "last_raw_score_gap": 9.421491995453835e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09977611899375916,
+ "observability_min": 6.080751546733154e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "d6dae4655830bd64116a0edc41d2ea0f39d3df9b619d17db8c969141800053fb",
+ "raw_normalized_churn": 0.0014109347442680777,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "d22192c7f7fc3cfabf4404e6d51cc0657cfb5fd60fda21edcd75a8dca391e975",
+ "committed_normalized_churn": 0.001763668430335097,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 1698,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.54630821372848e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.037712592631578445,
+ "last_committed_score_gap": 2.468782440701034e-07,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 6.54630821372848e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.037712592631578445,
+ "last_raw_score_gap": 2.468782440701034e-07,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08649787306785583,
+ "observability_min": 2.0054625338161713e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "d22192c7f7fc3cfabf4404e6d51cc0657cfb5fd60fda21edcd75a8dca391e975",
+ "raw_normalized_churn": 0.006466784244562022,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 441,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0004857346066273749,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9528875350952148,
+ "last_committed_score_gap": 0.0004628504393622279,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0004857346066273749,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9528875350952148,
+ "last_raw_score_gap": 0.0004628504393622279,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08703380078077316,
+ "observability_min": 4.485547933086309e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0045351473922902496,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "539ec2424d8ac68523982bc45ba2f5931475f50e8bf8d655ace640e4392d35b3",
+ "committed_normalized_churn": 0.003527336860670194,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 565,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.739622115972452e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.27423784136772156,
+ "last_committed_score_gap": 1.0255458619212732e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 3.739622115972452e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.27423784136772156,
+ "last_raw_score_gap": 1.0255458619212732e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09049074351787567,
+ "observability_min": 4.40863310302575e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "539ec2424d8ac68523982bc45ba2f5931475f50e8bf8d655ace640e4392d35b3",
+ "raw_normalized_churn": 0.03880070546737213,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 441,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.777385791181587e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.5067727565765381,
+ "last_committed_score_gap": 1.9142762539559044e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 3.777385791181587e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.5067727565765381,
+ "last_raw_score_gap": 1.9142762539559044e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09488765150308609,
+ "observability_min": 7.265204970963168e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0045351473922902496,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "a295b9cd99ffe86258b4ced0528ad100c077c430b3132c9f45e0908fff8c0571",
+ "committed_normalized_churn": 0.0005772005772005772,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 3463,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8366662288826774e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.1635209172964096,
+ "last_committed_score_gap": 3.0033334041945636e-07,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 1.8366662288826774e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.1635209172964096,
+ "last_raw_score_gap": 3.0033334041945636e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09816405177116394,
+ "observability_min": 1.178192565731706e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "a295b9cd99ffe86258b4ced0528ad100c077c430b3132c9f45e0908fff8c0571",
+ "raw_normalized_churn": 0.00404040404040404,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 687
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "e9c3880621579cb4802f5c0aa6424865b5a2e89023555fb0755947a4587478a1",
+ "committed_normalized_churn": 0.0014084507042253522,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 10635,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 3.381022395387845e-08,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": -0.9892075061798096,
+ "last_committed_score_gap": -3.09894767269725e-06,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 1.9112168558876874e-07,
+ "last_raw_mask_overlap": 345,
+ "last_raw_normalized_gap": 0.16237573325634003,
+ "last_raw_score_gap": 3.1033522418510984e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04998818784952164,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "fae4c254c780198fde312bc3b66c8a6d099c574f392d37748353b37c76e6cee0",
+ "raw_normalized_churn": 0.012488262910798123,
+ "raw_xor_churn_total": 266,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 29,
+ "committed_mask_sha256": "35a8f50457d3e301e706c76453f540f5160b4f3db20965620c63e49b9b890280",
+ "committed_normalized_churn": 0.002543859649122807,
+ "committed_xor_churn_total": 58,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 11371,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.868474042154844e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.8891904354095459,
+ "last_committed_score_gap": -1.4993547736708024e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 8.9624432320079e-09,
+ "last_raw_mask_overlap": 374,
+ "last_raw_normalized_gap": 0.12827211618423462,
+ "last_raw_score_gap": 1.149631501107251e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12476925551891327,
+ "observability_min": 1.29445321128685e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "1d69063c0bd214877266c4dafe6d7001a1fa1bde1eac7372df0b29b42a5342b9",
+ "raw_normalized_churn": 0.022280701754385963,
+ "raw_xor_churn_total": 508,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "63434d105f60f8b6be48d23eea830cae014b1abd329dd7f53def5765f01befc4",
+ "committed_normalized_churn": 0.0011152416356877324,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 8061,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.863537376806562e-09,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.950305163860321,
+ "last_committed_score_gap": -1.503728981333552e-07,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 9.508283937975648e-08,
+ "last_raw_mask_overlap": 265,
+ "last_raw_normalized_gap": 0.08318452537059784,
+ "last_raw_score_gap": 7.90942067396827e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06595548987388611,
+ "observability_min": 1.7003979335683539e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "8c3275bf2d9e7f94344889f073e0fa1568092a79ae09d646ce6d0eaffaa951ed",
+ "raw_normalized_churn": 0.010037174721189592,
+ "raw_xor_churn_total": 162,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "eb20110979a9ad52b736f166fb91f6de226de8c688fdf63e71f0abbb081e01b6",
+ "committed_normalized_churn": 0.00037243947858472997,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 5368,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.0152353954472346e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": -0.16730499267578125,
+ "last_committed_score_gap": -4.049009021400707e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.0419165593921207e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.013066725805401802,
+ "last_raw_score_gap": 2.6681163944886066e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04214828833937645,
+ "observability_min": 2.2219222017838547e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "4c99b0bc2840f859a84d5e2eb0bd0c25a9a0debd073b9d3dc99ad385cb4281df",
+ "raw_normalized_churn": 0.0067039106145251395,
+ "raw_xor_churn_total": 72,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "59d6c5c64b7b970f4c1169b685f028d46a4ee4a15f9a79c3ab591ad6711dae03",
+ "committed_normalized_churn": 0.0005405405405405405,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 5547,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.562869654975657e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.3862195909023285,
+ "last_committed_score_gap": 2.920928352523333e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.562869654975657e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.3862195909023285,
+ "last_raw_score_gap": 2.920928352523333e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04449982941150665,
+ "observability_min": 3.3255904696716243e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "59d6c5c64b7b970f4c1169b685f028d46a4ee4a15f9a79c3ab591ad6711dae03",
+ "raw_normalized_churn": 0.0046846846846846845,
+ "raw_xor_churn_total": 52,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "1e0cf0143eea8138d63cda457298d4ea49c3692bba933af214d5987824aee256",
+ "committed_normalized_churn": 0.004126984126984127,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3137,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.5146323423541617e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.3287145495414734,
+ "last_committed_score_gap": 8.26596249225986e-08,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 2.5146323423541617e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.3287145495414734,
+ "last_raw_score_gap": 8.26596249225986e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.032912712544202805,
+ "observability_min": 7.36243066512543e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "1e0cf0143eea8138d63cda457298d4ea49c3692bba933af214d5987824aee256",
+ "raw_normalized_churn": 0.02761904761904762,
+ "raw_xor_churn_total": 174,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "4812c7ff14220a250526f2b2632598dd61a61de439ada464b51514e12f48ebd3",
+ "committed_normalized_churn": 0.002916666666666667,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2393,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0870289770537056e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.5872684717178345,
+ "last_committed_score_gap": -1.5467146567971213e-06,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.1783600939452299e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.04299551248550415,
+ "last_raw_score_gap": 5.066419817012502e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05253954604268074,
+ "observability_min": 5.123778237248189e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "9ed38cd112b9da0b64221698743dcafae1f68eaed9d15e5232fae243911fccc4",
+ "raw_normalized_churn": 0.010833333333333334,
+ "raw_xor_churn_total": 52,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "111adcc55b3ac223b5d9334d32cb51d58057ea8f1d7777cfe2ff405df912d651",
+ "committed_normalized_churn": 0.0015503875968992248,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1288,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.929688432435796e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.7862721681594849,
+ "last_committed_score_gap": 3.089804749834002e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.929688432435796e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.7862721681594849,
+ "last_raw_score_gap": 3.089804749834002e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05568532645702362,
+ "observability_min": 4.761254217555688e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "111adcc55b3ac223b5d9334d32cb51d58057ea8f1d7777cfe2ff405df912d651",
+ "raw_normalized_churn": 0.010077519379844961,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "892a6cd98dd808f9e1b3f5a16093bf2c65a1bb71963c3737971381ab3bbcd6ac",
+ "committed_normalized_churn": 0.00992063492063492,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2495,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.005536418574593e-07,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.2013755738735199,
+ "last_committed_score_gap": 2.0249046883691335e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.005536418574593e-07,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.2013755738735199,
+ "last_raw_score_gap": 2.0249046883691335e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03355047106742859,
+ "observability_min": 2.1022707130669005e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "892a6cd98dd808f9e1b3f5a16093bf2c65a1bb71963c3737971381ab3bbcd6ac",
+ "raw_normalized_churn": 0.056746031746031746,
+ "raw_xor_churn_total": 286,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "08df5ff11c716b299650ec83df25d02f17d23c16e188cd4ee56d4ecb462cc1a5",
+ "committed_normalized_churn": 0.013333333333333334,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 888,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.4795098043978214e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.4501171410083771,
+ "last_committed_score_gap": 3.3666556191747077e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 7.4795098043978214e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.4501171410083771,
+ "last_raw_score_gap": 3.3666556191747077e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03269471600651741,
+ "observability_min": 6.793156330786587e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "08df5ff11c716b299650ec83df25d02f17d23c16e188cd4ee56d4ecb462cc1a5",
+ "raw_normalized_churn": 0.05333333333333334,
+ "raw_xor_churn_total": 96,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "52592ff61007ff4bc4701e339e497b6a6f20b26b9686d30bf9f4cd6e06c64081",
+ "committed_normalized_churn": 0.006989247311827957,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 1847,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6899382160318055e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.5354796051979065,
+ "last_committed_score_gap": 9.049274751760095e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.6899382160318055e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.5354796051979065,
+ "last_raw_score_gap": 9.049274751760095e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.031368687748909,
+ "observability_min": 1.3952960387086932e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "52592ff61007ff4bc4701e339e497b6a6f20b26b9686d30bf9f4cd6e06c64081",
+ "raw_normalized_churn": 0.0521505376344086,
+ "raw_xor_churn_total": 194,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "5fcb7aed1be19601e7376978f02a5a6bb9d0234852adc96235484a540f282c9c",
+ "committed_normalized_churn": 0.001851851851851852,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1617,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.284404049783916e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.3358430862426758,
+ "last_committed_score_gap": 4.313582024906282e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.284404049783916e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.3358430862426758,
+ "last_raw_score_gap": 4.313582024906282e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08585992455482483,
+ "observability_min": 8.469766754615193e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "5fcb7aed1be19601e7376978f02a5a6bb9d0234852adc96235484a540f282c9c",
+ "raw_normalized_churn": 0.04197530864197531,
+ "raw_xor_churn_total": 136,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "ba721681ee39f1d2fc7594e39053a673efa8571f1c628a6a9dea31620cf6adca",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1350,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1469537639641203e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7851879000663757,
+ "last_committed_score_gap": 9.00574195838999e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.1469537639641203e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7851879000663757,
+ "last_raw_score_gap": 9.00574195838999e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10537071526050568,
+ "observability_min": 1.0812957640382592e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "ba721681ee39f1d2fc7594e39053a673efa8571f1c628a6a9dea31620cf6adca",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "0ed62edaf02075c6431361c4ed89eefce9da6268440db35331be9d0cfede3af5",
+ "committed_normalized_churn": 0.003703703703703704,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 807,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.801548569346778e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.9245579242706299,
+ "last_committed_score_gap": 1.6656360458000563e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.801548569346778e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.9245579242706299,
+ "last_raw_score_gap": 1.6656360458000563e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11084818840026855,
+ "observability_min": 2.2282662826000887e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "0ed62edaf02075c6431361c4ed89eefce9da6268440db35331be9d0cfede3af5",
+ "raw_normalized_churn": 0.006172839506172839,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bbdbd4d00d3af2487f1c769abbedaf23065eaaeea14a7bb88a70f5872a7437a6",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005141198053024709,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6084955930709839,
+ "last_committed_score_gap": 0.00031283963471651077,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005141198053024709,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6084955930709839,
+ "last_raw_score_gap": 0.00031283963471651077,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0936540886759758,
+ "observability_min": 6.195692492383387e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bbdbd4d00d3af2487f1c769abbedaf23065eaaeea14a7bb88a70f5872a7437a6",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "c5a3b5277ce95b1e5b1bbc7dab664aa9dd0f5e34a8f6c3311fa4f5edb03c6a35",
+ "committed_normalized_churn": 0.003703703703703704,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 269,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00017007328278850764,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": -0.17078427970409393,
+ "last_committed_score_gap": -3.502808976918459e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00020510137255769223,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.17078427970409393,
+ "last_raw_score_gap": 3.502808976918459e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10066910088062286,
+ "observability_min": 2.534913079443868e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "1586350a614d988383bae852ae5ace1666c215901d089c7068329f99fb0f36ce",
+ "raw_normalized_churn": 0.02962962962962963,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "a22bab13a64c94cb6146e6fabbf88bc3ac426918d99093f3576561652532b31b",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.250911923823878e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8282532691955566,
+ "last_committed_score_gap": 6.833844963693991e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 8.250911923823878e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8282532691955566,
+ "last_raw_score_gap": 6.833844963693991e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10665640980005264,
+ "observability_min": 4.615097637383769e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "a22bab13a64c94cb6146e6fabbf88bc3ac426918d99093f3576561652532b31b",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "53c3b576c91caa61c72c4bbc9b5c4dd5e1414f3a82ba98bea5dfda4d5e4ebea2",
+ "committed_normalized_churn": 0.0006060606060606061,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1649,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.457214799913345e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.4846368730068207,
+ "last_committed_score_gap": 2.160130634365487e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.457214799913345e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.4846368730068207,
+ "last_raw_score_gap": 2.160130634365487e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10294587165117264,
+ "observability_min": 9.681921042670183e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "53c3b576c91caa61c72c4bbc9b5c4dd5e1414f3a82ba98bea5dfda4d5e4ebea2",
+ "raw_normalized_churn": 0.0030303030303030303,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ }
+ ],
+ "task_id": 820
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 16,
+ "committed_mask_sha256": "8fd4dff9f2a04bd75202a4f6181a7e1d003b8cb00a338c627fe6b71abbba4d61",
+ "committed_normalized_churn": 0.0012877263581488935,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 12409,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.4927261910743255e-08,
+ "last_committed_mask_overlap": 355,
+ "last_committed_normalized_gap": -0.9952081441879272,
+ "last_committed_score_gap": -9.330773536930792e-06,
+ "last_dwell_count": 355,
+ "last_raw_cutoff_score": 1.1596597460084013e-07,
+ "last_raw_mask_overlap": 349,
+ "last_raw_normalized_gap": 0.08787795156240463,
+ "last_raw_score_gap": 1.0190852606228873e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03488294780254364,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "0dbafcdace613eb3d72592f37811c27440262af9c367be69882aa39414d73ac5",
+ "raw_normalized_churn": 0.0110261569416499,
+ "raw_xor_churn_total": 274,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 33,
+ "committed_mask_sha256": "8b44c1c5d034f3a8c39cac6f1ab556f54eeac609a11fb00984ef9d1c9ef5717a",
+ "committed_normalized_churn": 0.002481203007518797,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 13267,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.98193950140535e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9642490148544312,
+ "last_committed_score_gap": -5.345533793388313e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 1.506034763565367e-08,
+ "last_raw_mask_overlap": 374,
+ "last_raw_normalized_gap": 0.07601776719093323,
+ "last_raw_score_gap": 1.1448539893876841e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09957802295684814,
+ "observability_min": 2.1382275117165506e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "6bee486579427106d1429f372167968d3b9841818de6738eaacf55b7b51dd24a",
+ "raw_normalized_churn": 0.024285714285714285,
+ "raw_xor_churn_total": 646,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "b0c741cbafe935249c3c1b2216c1dd8b179d8ae96a214f8097ed1375d64ce8fb",
+ "committed_normalized_churn": 0.0013807753584705257,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 9402,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.616449610419295e-08,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.6510696411132812,
+ "last_committed_score_gap": -1.234564308560948e-07,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 1.0092874447309441e-07,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.004281402565538883,
+ "last_raw_score_gap": 4.3211656475250493e-10,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06207551062107086,
+ "observability_min": 1.4644303547584059e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "a962b8ead45a86229fb9cf7b9f03622c1954eb0829104033f2a597af7f35b12d",
+ "raw_normalized_churn": 0.013276686139139671,
+ "raw_xor_churn_total": 250,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "9e25dbc0fdc4a24923a0d2d2184eb8a6e1c63526d738d57bd701c736029e4ec6",
+ "committed_normalized_churn": 0.0017557861133280128,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6254,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.553812121026567e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": -0.4623262286186218,
+ "last_committed_score_gap": -3.0557946502085542e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.700091610880918e-06,
+ "last_raw_mask_overlap": 174,
+ "last_raw_normalized_gap": 0.0032718260772526264,
+ "last_raw_score_gap": 1.2106056601624005e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04210856184363365,
+ "observability_min": 6.62916965765703e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "acda287718c0272086796939426bd5580d29ce1dc106d31012598835253f9654",
+ "raw_normalized_churn": 0.012769353551476457,
+ "raw_xor_churn_total": 160,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "c96d1aaae138d81d0e87b1182d221a9564937d06e32f69e3f127ded919b90988",
+ "committed_normalized_churn": 0.0007722007722007722,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 6470,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.146720915647165e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.12025666236877441,
+ "last_committed_score_gap": 9.796974609344034e-08,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.146720915647165e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.12025666236877441,
+ "last_raw_score_gap": 9.796974609344034e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0399278849363327,
+ "observability_min": 6.367726967937415e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "c96d1aaae138d81d0e87b1182d221a9564937d06e32f69e3f127ded919b90988",
+ "raw_normalized_churn": 0.003861003861003861,
+ "raw_xor_churn_total": 50,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "29c17cfb66f5a91db194049c22dccbff7b252aad63e4571d96adf78376f1cd85",
+ "committed_normalized_churn": 0.006802721088435374,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3650,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.522454281006503e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": -0.1581438183784485,
+ "last_committed_score_gap": -4.738464554066013e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.9963007364131045e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.04959005117416382,
+ "last_raw_score_gap": 1.4858670738249202e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050279948860406876,
+ "observability_min": 3.82527041153935e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "0eb85a68e9e21d2ca5257012f963b652f30e00d6aa88a261d0e5981a3c110a19",
+ "raw_normalized_churn": 0.033197278911564626,
+ "raw_xor_churn_total": 244,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "be5b794da1444a452b92ee93b48e32b6ea1a199fc793df7ac5c8cab667dd2eb8",
+ "committed_normalized_churn": 0.002142857142857143,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2794,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3957408100395696e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.38842207193374634,
+ "last_committed_score_gap": -8.864553819876164e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.9131734916300047e-06,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.1286069005727768,
+ "last_raw_score_gap": 2.460473069731961e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05117727071046829,
+ "observability_min": 1.2799138460195536e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "1bc7532a6f4f738566663106c050bcfaf33bf85694d5ecf2927960dd7a9de601",
+ "raw_normalized_churn": 0.02107142857142857,
+ "raw_xor_churn_total": 118,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "f5a2c8636b01f19ca1bb1dc5345636ffd193c262f62df9fe545710429e37a6b1",
+ "committed_normalized_churn": 0.0026578073089701,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1501,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.779862928851799e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.5974939465522766,
+ "last_committed_score_gap": 4.0509269183530705e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 6.779862928851799e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.5974939465522766,
+ "last_raw_score_gap": 4.0509269183530705e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0577864944934845,
+ "observability_min": 1.6578314898652025e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "f5a2c8636b01f19ca1bb1dc5345636ffd193c262f62df9fe545710429e37a6b1",
+ "raw_normalized_churn": 0.015946843853820596,
+ "raw_xor_churn_total": 48,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "995e682cf5ba4a14c044bb72334f97563f0a1e8edd97733f63718f4e948cfbe3",
+ "committed_normalized_churn": 0.012585034013605442,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2903,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.662576623739369e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": -0.44515669345855713,
+ "last_committed_score_gap": -5.345456344230115e-08,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 8.165379483671131e-08,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.04710805416107178,
+ "last_raw_score_gap": 3.846551521746733e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04450445622205734,
+ "observability_min": 1.4816329496625258e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "69cf0ff6d0f07eda6daca75947d0b7043bfca81e5b0c33551cdc83b02459405f",
+ "raw_normalized_churn": 0.05374149659863946,
+ "raw_xor_churn_total": 316,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "7508bb72880256a03db68833b9791126e91b14052c135786cfdef8ef60586975",
+ "committed_normalized_churn": 0.010476190476190476,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1039,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.104202035814524e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": -0.3910422623157501,
+ "last_committed_score_gap": -5.846263775310945e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 1.0989101610903163e-05,
+ "last_raw_mask_overlap": 28,
+ "last_raw_normalized_gap": 0.1457267850637436,
+ "last_raw_score_gap": 1.60140643856721e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.028063084930181503,
+ "observability_min": 3.482648480712669e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "d3f3faddc058989295220e1598963dcf8bcc9cc0826014d303b64fae9af45b86",
+ "raw_normalized_churn": 0.05904761904761905,
+ "raw_xor_churn_total": 124,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "1f2efb11e8c341ce861f6027c4dc653f174f62db567ea4afabe1b42703a19473",
+ "committed_normalized_churn": 0.01566820276497696,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2136,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3247681351913343e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.8081465363502502,
+ "last_committed_score_gap": -5.580335482591181e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.755803964442748e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.07276899367570877,
+ "last_raw_score_gap": 1.2776808944181539e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06051419675350189,
+ "observability_min": 2.959417244596807e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "54c11f9bb7847d5ce2d63928eef3cc864ce6d5762f43c00520a5501695ba310b",
+ "raw_normalized_churn": 0.07142857142857142,
+ "raw_xor_churn_total": 310,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "fedc256a7fa7d02270c10508ce7bd0a9374a1e7bb7ca2508895291143a210465",
+ "committed_normalized_churn": 0.009523809523809525,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1872,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1352921802654237e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.2748459279537201,
+ "last_committed_score_gap": -4.302953726664782e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.565587552931902e-07,
+ "last_raw_mask_overlap": 50,
+ "last_raw_normalized_gap": 0.16810478270053864,
+ "last_raw_score_gap": 2.6318275558878668e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08929665386676788,
+ "observability_min": 9.921404142687607e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "8ce14b2f838749007bdede06549a46698eb94ccc10f4b6d2e2e6087038f2ff4c",
+ "raw_normalized_churn": 0.06349206349206349,
+ "raw_xor_churn_total": 240,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "c85ac39184aa0bc574bfedbdb9615f99cb354449744f337a7834a5bd7934160a",
+ "committed_normalized_churn": 0.0006349206349206349,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1574,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8105301933246665e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.8368147015571594,
+ "last_committed_score_gap": 1.5150782928685658e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.8105301933246665e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.8368147015571594,
+ "last_raw_score_gap": 1.5150782928685658e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10803094506263733,
+ "observability_min": 1.503943458658341e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "c85ac39184aa0bc574bfedbdb9615f99cb354449744f337a7834a5bd7934160a",
+ "raw_normalized_churn": 0.005079365079365079,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "48f212b53a6b789454c9e5865eaf8ec70f94e6940f918e8e97b11765b50ec523",
+ "committed_normalized_churn": 0.0021164021164021165,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 943,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4893262232362758e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8064577579498291,
+ "last_committed_score_gap": 1.201078703161329e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.4893262232362758e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8064577579498291,
+ "last_raw_score_gap": 1.201078703161329e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11300962418317795,
+ "observability_min": 6.593347734451527e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "48f212b53a6b789454c9e5865eaf8ec70f94e6940f918e8e97b11765b50ec523",
+ "raw_normalized_churn": 0.004232804232804233,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0006603511865250766,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9176920652389526,
+ "last_committed_score_gap": 0.0006059990264475346,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0006603511865250766,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9176920652389526,
+ "last_raw_score_gap": 0.0006059990264475346,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09247082471847534,
+ "observability_min": 6.009017994301757e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.006349206349206349,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 313,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.146537917724345e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": -0.021065635606646538,
+ "last_committed_score_gap": -4.6191235014703125e-07,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 2.192729152739048e-05,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.021065635606646538,
+ "last_raw_score_gap": 4.6191235014703125e-07,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1072969064116478,
+ "observability_min": 2.1689503526545195e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "339c26375343120b33b48d8addff6539f538e83cb5e927b417dffc82d85215f4",
+ "raw_normalized_churn": 0.05714285714285714,
+ "raw_xor_churn_total": 36,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d7e3683d5ef244bae9caee385867a33406f389a47cfe18377bafcd95bab3861a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.05533311702311e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.43519094586372375,
+ "last_committed_score_gap": 3.0704170058015734e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.05533311702311e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.43519094586372375,
+ "last_raw_score_gap": 3.0704170058015734e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.13417866826057434,
+ "observability_min": 1.858611575755731e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d7e3683d5ef244bae9caee385867a33406f389a47cfe18377bafcd95bab3861a",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "4722edaf9f8d1227864849d74307a4b5bb6c32dcbf821d63a1d943934a3d7f5b",
+ "committed_normalized_churn": 0.0015584415584415584,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1922,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.869549451948842e-06,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.3198081851005554,
+ "last_committed_score_gap": 2.1969381123199128e-06,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 6.869549451948842e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.3198081851005554,
+ "last_raw_score_gap": 2.1969381123199128e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11838023364543915,
+ "observability_min": 3.2515654613263223e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "4722edaf9f8d1227864849d74307a4b5bb6c32dcbf821d63a1d943934a3d7f5b",
+ "raw_normalized_churn": 0.0015584415584415584,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ }
+ ],
+ "task_id": 920
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 109,
+ "committed_mask_sha256": "bd700be240d0acae9fa655f658e2edc95d25adb9c80769225cb9ff05acf11470",
+ "committed_normalized_churn": 0.002291360100903931,
+ "committed_xor_churn_total": 218,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 47461,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 7.12927672452679e-08,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": -0.872870147228241,
+ "last_committed_score_gap": -4.894944822808611e-07,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 9.098810949126346e-08,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.11516989767551422,
+ "last_raw_score_gap": 1.0479091372417315e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03392743691802025,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "116cc64ac0f7cc9335b8f3a94bf1b0d1f722eec7f6ad085498138629e38f3122",
+ "raw_normalized_churn": 0.017553079672062225,
+ "raw_xor_churn_total": 1670,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 133,
+ "committed_mask_sha256": "45a9100ce95b43e47d1c9f63511e8449540016a6eae543d8dd7dd8e0c5123814",
+ "committed_normalized_churn": 0.0026119402985074628,
+ "committed_xor_churn_total": 266,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 50787,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 4.563994460138332e-10,
+ "last_committed_mask_overlap": 379,
+ "last_committed_normalized_gap": -0.9978693127632141,
+ "last_committed_score_gap": -2.137475831887059e-07,
+ "last_dwell_count": 379,
+ "last_raw_cutoff_score": 3.323260600041067e-08,
+ "last_raw_mask_overlap": 362,
+ "last_raw_normalized_gap": 0.013378451578319073,
+ "last_raw_score_gap": 4.446008006198099e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.13618925213813782,
+ "observability_min": 1.5930451402468293e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "5cc4e30524c75526a328b7184843596481d19f718aff9c56f0952fb08b33ca65",
+ "raw_normalized_churn": 0.02668892380204242,
+ "raw_xor_churn_total": 2718,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 41,
+ "committed_mask_sha256": "6a9c86d01189b2c06f2291cf2f04a0e1adfbf3a50da525333820f0948fc20ef8",
+ "committed_normalized_churn": 0.0011374354990845031,
+ "committed_xor_churn_total": 82,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 36005,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 5.806584990608599e-09,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.9900344610214233,
+ "last_committed_score_gap": -5.768621917923156e-07,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 7.014852343445455e-08,
+ "last_raw_mask_overlap": 262,
+ "last_raw_normalized_gap": 0.0027480300050228834,
+ "last_raw_score_gap": 1.9277024421171518e-10,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07182031124830246,
+ "observability_min": 3.1617326534671975e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "297fa989f1fa8ef650d158965ea0b8c90fff08330cb020133b2f29a3acd30691",
+ "raw_normalized_churn": 0.013094379404094768,
+ "raw_xor_churn_total": 944,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "7301aef5eaa19a2265ca03f71fe4a7ceb3511971745f0bae3ec5ca02a10b5789",
+ "committed_normalized_churn": 0.0008338197281747686,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 23966,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.4374062377319206e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.5625422596931458,
+ "last_committed_score_gap": 1.3711439805774717e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.4374062377319206e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.5625422596931458,
+ "last_raw_score_gap": 1.3711439805774717e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04170142114162445,
+ "observability_min": 3.5934606401610836e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "7301aef5eaa19a2265ca03f71fe4a7ceb3511971745f0bae3ec5ca02a10b5789",
+ "raw_normalized_churn": 0.009463853914783623,
+ "raw_xor_churn_total": 454,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "55b9fd3748c51d7f5b304271f874bdcd0122e613fdafe28d4b5c8e795cb12a59",
+ "committed_normalized_churn": 0.0007664380798709157,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 24771,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 3.2696723906155967e-07,
+ "last_committed_mask_overlap": 184,
+ "last_committed_normalized_gap": -0.25227847695350647,
+ "last_committed_score_gap": -1.1031752933376993e-07,
+ "last_dwell_count": 184,
+ "last_raw_cutoff_score": 4.372847683953296e-07,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.25227847695350647,
+ "last_raw_score_gap": 1.1031752933376993e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04359448701143265,
+ "observability_min": 2.463766968219261e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "4dbaedff1850db01c462095e3a7c12723f337a448b9c9c2227d58173ee8de7cf",
+ "raw_normalized_churn": 0.005486083098023397,
+ "raw_xor_churn_total": 272,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 61,
+ "committed_mask_sha256": "bbebefdeda3af8690ef332b088b7e4c416e65ff01da1a1eff5e8a4e5e7a4d988",
+ "committed_normalized_churn": 0.00433546552949538,
+ "committed_xor_churn_total": 122,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 14009,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.0848494042269294e-09,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": -0.9860694408416748,
+ "last_committed_score_gap": -1.4757507926788094e-07,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 7.044300787129032e-08,
+ "last_raw_mask_overlap": 97,
+ "last_raw_normalized_gap": 0.00860805343836546,
+ "last_raw_score_gap": 6.063771706976695e-10,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.061117660254240036,
+ "observability_min": 2.334379356483396e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "584d9e96f3c0777cfedb77c95066b348805daebe660020218c90e1fffd6b8d7b",
+ "raw_normalized_churn": 0.030632551528073915,
+ "raw_xor_churn_total": 862,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "62620ae2ef6322f6bb2365ebb13d41b390ab8516e0f154f5df3fdd0e5fb2f050",
+ "committed_normalized_churn": 0.001212686567164179,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 10707,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.2767982816039876e-07,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.7527613043785095,
+ "last_committed_score_gap": -9.976783985621296e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.1000021231666324e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.2286473512649536,
+ "last_raw_score_gap": 2.5151257432298735e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06302253156900406,
+ "observability_min": 1.181938671379612e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "7e781df99e3321c0ff457cb68d01c9b442c99bfd3316a289d530846090e36708",
+ "raw_normalized_churn": 0.014085820895522388,
+ "raw_xor_churn_total": 302,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 21,
+ "committed_mask_sha256": "a52731c7eb3f0ff0d2a6f430bcc5be1215006413d9fcd995e86f9bb779fcb827",
+ "committed_normalized_churn": 0.003644567858382506,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 5741,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.568366911897101e-07,
+ "last_committed_mask_overlap": 42,
+ "last_committed_normalized_gap": -0.5469818711280823,
+ "last_committed_score_gap": -1.8936732715246762e-07,
+ "last_dwell_count": 42,
+ "last_raw_cutoff_score": 3.411424813748454e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.014177676290273666,
+ "last_raw_score_gap": 4.836607558900141e-09,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07219880819320679,
+ "observability_min": 3.9243033711500175e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "2e1fc7d8ec174adae573b31e4cb4be440e4b9448f27e7d0200609e8bfe80d9c4",
+ "raw_normalized_churn": 0.028115237764665048,
+ "raw_xor_churn_total": 324,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 82,
+ "committed_mask_sha256": "1efae5b5eeb19cf3e38517afcf9ea5f3b21053338d87bf03b99993334370d6c3",
+ "committed_normalized_churn": 0.00728500355366027,
+ "committed_xor_churn_total": 164,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 11174,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 3.93765446915495e-08,
+ "last_committed_mask_overlap": 82,
+ "last_committed_normalized_gap": -0.8756247758865356,
+ "last_committed_score_gap": -2.772182483568031e-07,
+ "last_dwell_count": 82,
+ "last_raw_cutoff_score": 7.55677547203959e-08,
+ "last_raw_mask_overlap": 73,
+ "last_raw_normalized_gap": 0.00923686008900404,
+ "last_raw_score_gap": 6.98008761901292e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.055269207805395126,
+ "observability_min": 3.8265330459807956e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "380080b9222d7dd9ed5522a8b930c807357b3d660f47296a28bf3d2ab88f7062",
+ "raw_normalized_churn": 0.05223880597014925,
+ "raw_xor_churn_total": 1176,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "ee8f94322c2c4633f8899bf60c1ad2d381745dc7bef557ff57406e517e380ebd",
+ "committed_normalized_churn": 0.00845771144278607,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 3986,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.700965746451402e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.6902753710746765,
+ "last_committed_score_gap": -1.0476924217073247e-05,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 7.186494713096181e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.3332520127296448,
+ "last_raw_score_gap": 2.3949137357703876e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06288373470306396,
+ "observability_min": 7.675900803860713e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "7af2044e36430bf05674c9b6dd42ca966eb1fd6dd2e21d8f8a7381942c378846",
+ "raw_normalized_churn": 0.04328358208955224,
+ "raw_xor_churn_total": 348,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 68,
+ "committed_mask_sha256": "29005ee1bbcd75467bb5e0381d5e7eea0bd0fd2f597e42b81fb7247de56d7c0a",
+ "committed_normalized_churn": 0.008184882041405874,
+ "committed_xor_churn_total": 136,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 8240,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 1.2459705089895579e-07,
+ "last_committed_mask_overlap": 56,
+ "last_committed_normalized_gap": -0.4583395719528198,
+ "last_committed_score_gap": -1.054309279879817e-07,
+ "last_dwell_count": 56,
+ "last_raw_cutoff_score": 1.3821980360262387e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.012992432340979576,
+ "last_raw_score_gap": 1.795811499505362e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.049396973103284836,
+ "observability_min": 2.9028646153506088e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "aeaca48dad8f4d7dfb6bf4397aac38e14aab37cf247fc04632c250726d9df9aa",
+ "raw_normalized_churn": 0.053923928743379874,
+ "raw_xor_churn_total": 896,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "64f744121292f7ca32c0db87887bb81745d319d61c8189fe594a3b5c43e409e8",
+ "committed_normalized_churn": 0.0031785516860143724,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 7213,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.653705439252917e-08,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.9587787985801697,
+ "last_committed_score_gap": -3.846411402719241e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.8467649454123602e-07,
+ "last_raw_mask_overlap": 48,
+ "last_raw_normalized_gap": 0.17068369686603546,
+ "last_raw_score_gap": 3.152126737404615e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1250056028366089,
+ "observability_min": 6.264698981794936e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "9e5d03f5c6b05cf149f51c7fd759b76a15638fbacc390664ef039e92e792382c",
+ "raw_normalized_churn": 0.02736318407960199,
+ "raw_xor_churn_total": 396,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "9035a724b2095d4e9228a3b67d9c7b7e28b3d32535d6c8e747ac558a134f469f",
+ "committed_normalized_churn": 0.0004975124378109452,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 6027,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.1260451578418724e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.2431575059890747,
+ "last_committed_score_gap": 7.601213383168215e-07,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 3.1260451578418724e-06,
+ "last_raw_mask_overlap": 44,
+ "last_raw_normalized_gap": 0.2431575059890747,
+ "last_raw_score_gap": 7.601213383168215e-07,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11168286949396133,
+ "observability_min": 3.2231397995019506e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "9035a724b2095d4e9228a3b67d9c7b7e28b3d32535d6c8e747ac558a134f469f",
+ "raw_normalized_churn": 0.0067993366500829185,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "575bfec5bbd2e3046fbed389997d5a41ac1fb69013855034284d1f6ffbf05b4e",
+ "committed_normalized_churn": 0.0019347705914870095,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 3611,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.238427770062117e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.6023642420768738,
+ "last_committed_score_gap": 4.36016989624477e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 7.238427770062117e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.6023642420768738,
+ "last_raw_score_gap": 4.36016989624477e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11875496059656143,
+ "observability_min": 1.1779865971561776e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "575bfec5bbd2e3046fbed389997d5a41ac1fb69013855034284d1f6ffbf05b4e",
+ "raw_normalized_churn": 0.011885019347705915,
+ "raw_xor_churn_total": 86,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 938,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0008570690406486392,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9709259271621704,
+ "last_committed_score_gap": 0.0008321505738422275,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0008570690406486392,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9709259271621704,
+ "last_raw_score_gap": 0.0008321505738422275,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09921064227819443,
+ "observability_min": 2.998323367364719e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0021321961620469083,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "8bd010c01c47af812e1e9865f16218d6f1f4dc670fd8555aa79630586ea30d37",
+ "committed_normalized_churn": 0.0024875621890547263,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 1203,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.155140024726279e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.34401077032089233,
+ "last_committed_score_gap": 1.7734237189870328e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 5.155140024726279e-05,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.34401077032089233,
+ "last_raw_score_gap": 1.7734237189870328e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1069256067276001,
+ "observability_min": 1.3512159391382284e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "8bd010c01c47af812e1e9865f16218d6f1f4dc670fd8555aa79630586ea30d37",
+ "raw_normalized_churn": 0.04228855721393035,
+ "raw_xor_churn_total": 102,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "b7005e384bcca257eba558286f3b737be560a83d48bf902e22cb6af4d273d253",
+ "committed_normalized_churn": 0.0021321961620469083,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 936,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00014107294555287808,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9077017903327942,
+ "last_committed_score_gap": 0.00012805216829292476,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00014107294555287808,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9077017903327942,
+ "last_raw_score_gap": 0.00012805216829292476,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12452036142349243,
+ "observability_min": 1.3498148376811514e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "b7005e384bcca257eba558286f3b737be560a83d48bf902e22cb6af4d273d253",
+ "raw_normalized_churn": 0.013859275053304905,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "1ed55498751e3a01bbf9242fbb6a76fae0ab6f2259107e345d8eb9f6972eaa90",
+ "committed_normalized_churn": 0.000542740841248304,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 7366,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.05008244747296e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.1387491226196289,
+ "last_committed_score_gap": 8.394436008529738e-07,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 6.05008244747296e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.1387491226196289,
+ "last_raw_score_gap": 8.394436008529738e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11471416801214218,
+ "observability_min": 1.1003374211782102e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "1ed55498751e3a01bbf9242fbb6a76fae0ab6f2259107e345d8eb9f6972eaa90",
+ "raw_normalized_churn": 0.0025780189959294436,
+ "raw_xor_churn_total": 38,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ }
+ ],
+ "task_id": 771
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 21,
+ "committed_mask_sha256": "be77c482c44b3ef3ae6dcc66e13d0a26887e3e23df99eeea1d95bac5a42ff7d4",
+ "committed_normalized_churn": 0.0012859767299448867,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 16309,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.1080191342216494e-07,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.9669753909111023,
+ "last_committed_score_gap": -3.244327217544196e-06,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.6697100591045455e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.05363418534398079,
+ "last_raw_score_gap": 8.955353791861853e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03273673728108406,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "3ebbd2dff239ad1b3cf67c6c1ec15aaf8d197eeeab7cfe962947ae005d755246",
+ "raw_normalized_churn": 0.010471524800979792,
+ "raw_xor_churn_total": 342,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 80,
+ "committed_mask_sha256": "0621e87eb9c941462c9ef0c81c00180d3eee3cf211fdaacd63720638b677e5fc",
+ "committed_normalized_churn": 0.004576659038901602,
+ "committed_xor_churn_total": 160,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 17400,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.47098952410596e-10,
+ "last_committed_mask_overlap": 379,
+ "last_committed_normalized_gap": -0.9868098497390747,
+ "last_committed_score_gap": -1.848644259894172e-08,
+ "last_dwell_count": 379,
+ "last_raw_cutoff_score": 6.970119148519416e-09,
+ "last_raw_mask_overlap": 362,
+ "last_raw_normalized_gap": 0.03084302879869938,
+ "last_raw_score_gap": 2.1497958968552666e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10394617915153503,
+ "observability_min": 1.6671589664341013e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "10ead61cddb2db437a099f7c7cbfa957294396152b27bb3b702bacb67c342fce",
+ "raw_normalized_churn": 0.03363844393592677,
+ "raw_xor_churn_total": 1176,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 28,
+ "committed_mask_sha256": "77ad39b98d73edcd211a6b5ecda4c0ba6b69f8484355dc5c45ba3eeb2ad1bfc2",
+ "committed_normalized_churn": 0.0022628091158881525,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 12346,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.2420418854807167e-09,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.9863439798355103,
+ "last_committed_score_gap": -1.6193793328511674e-07,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 7.454268313722423e-08,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.04143104329705238,
+ "last_raw_score_gap": 3.088381106408633e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05507059022784233,
+ "observability_min": 5.774032363348169e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "8df9e56a35b681fa6c05767d6feae317dc023dfd384b124c1abf04fadd81b76d",
+ "raw_normalized_churn": 0.016405366090189107,
+ "raw_xor_churn_total": 406,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 16,
+ "committed_mask_sha256": "c9ec80fcd7f26ad018e23255a9ff308deb0176eb89584b11489549a606b09b84",
+ "committed_normalized_churn": 0.0019431624969638087,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 8218,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.2149383767100517e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": -0.09157837927341461,
+ "last_committed_score_gap": -2.232889073638944e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.438227284073946e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.09157837927341461,
+ "last_raw_score_gap": 2.232889073638944e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.042696136981248856,
+ "observability_min": 1.6280009562663622e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "cb54bf2d61f2f7119d0ceb46c81cdef4706a287dada009abeac00abd67f35441",
+ "raw_normalized_churn": 0.010687393733300948,
+ "raw_xor_churn_total": 176,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "eda6b8aabf3420bf0b94c37c83de7bb249029284ae8a125d9bd63ebc64af4c01",
+ "committed_normalized_churn": 0.0007050528789659225,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 8504,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.843854645107058e-07,
+ "last_committed_mask_overlap": 184,
+ "last_committed_normalized_gap": -0.5385103225708008,
+ "last_committed_score_gap": -3.3184818448717124e-07,
+ "last_dwell_count": 184,
+ "last_raw_cutoff_score": 6.16233648997877e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.3695214092731476,
+ "last_raw_score_gap": 2.2771152430323127e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.031236806884407997,
+ "observability_min": 2.2278420774846097e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "1c32c93680d19b040e6675515fcb3e1b73ee0333afbaae24930214eb316383a4",
+ "raw_normalized_churn": 0.005052878965922444,
+ "raw_xor_churn_total": 86,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 26,
+ "committed_mask_sha256": "3c59c31a87d8faec5949055a956f03b94d0a80b36545695d5e86abe9dc71baa0",
+ "committed_normalized_churn": 0.005383022774327122,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 4804,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 5.545155801200963e-08,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": -0.9250013828277588,
+ "last_committed_score_gap": -6.839158004368073e-07,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.8805649776586506e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.09803605824708939,
+ "last_raw_score_gap": 2.8239924176887143e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05108188837766647,
+ "observability_min": 6.447141931431588e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "20fad90ce11776fdb9537538e6d50d998666a3b2d6e145623d746556f114c127",
+ "raw_normalized_churn": 0.027122153209109733,
+ "raw_xor_churn_total": 262,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "02bb0c98ff5eb95d89ad81ae282af36154ed406003ca9a402777cc97f55f3dfb",
+ "committed_normalized_churn": 0.002989130434782609,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 3669,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.285987309529446e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.718293309211731,
+ "last_committed_score_gap": -3.2789998840598855e-06,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.659695499256486e-06,
+ "last_raw_mask_overlap": 77,
+ "last_raw_normalized_gap": 0.013963030651211739,
+ "last_raw_score_gap": 2.3174379748525098e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04897488281130791,
+ "observability_min": 2.1642843250901933e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "a81d22b8c61907798940626c02aa59d9d33f987693f4dc22cf14cbb52790a7fb",
+ "raw_normalized_churn": 0.02282608695652174,
+ "raw_xor_churn_total": 168,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "6e1310cf8a4db62e3758e44c466836b620132013290f7d08e3aea5ba9827efc6",
+ "committed_normalized_churn": 0.0025278058645096056,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1973,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.674051131634769e-07,
+ "last_committed_mask_overlap": 42,
+ "last_committed_normalized_gap": -0.5684832334518433,
+ "last_committed_score_gap": -3.5228137562626216e-07,
+ "last_dwell_count": 42,
+ "last_raw_cutoff_score": 3.117342259884026e-07,
+ "last_raw_mask_overlap": 38,
+ "last_raw_normalized_gap": 0.14220161736011505,
+ "last_raw_score_gap": 4.432911282492569e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.057068150490522385,
+ "observability_min": 3.8989057316030085e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "08026470fe2fc6d0bf92a2a0f25ba0bee9c3afed69409a2e68c08db7181899e4",
+ "raw_normalized_churn": 0.024266936299292215,
+ "raw_xor_churn_total": 96,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 44,
+ "committed_mask_sha256": "5722b4b8026a0443240f2730e39b22a001e9ef1a0229546a8e354939982ab141",
+ "committed_normalized_churn": 0.011387163561076604,
+ "committed_xor_churn_total": 88,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 3820,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2558483319935476e-07,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.7121899127960205,
+ "last_committed_score_gap": -3.1076132245289045e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.3214560112828622e-07,
+ "last_raw_mask_overlap": 77,
+ "last_raw_normalized_gap": 0.0405874028801918,
+ "last_raw_score_gap": 5.363446575756825e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.038423821330070496,
+ "observability_min": 9.851518001369186e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "f175bd268461db3d79ad4c566391e1537e4ec7cc42e466a83764e278ebf58659",
+ "raw_normalized_churn": 0.06030020703933747,
+ "raw_xor_churn_total": 466,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "b4fcea3ba16d673a5664b3afe97e4f91d5576f724515377795955d30ffa4d24d",
+ "committed_normalized_churn": 0.012318840579710146,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1363,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.537534202128882e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.07224854081869125,
+ "last_committed_score_gap": 5.445758688438218e-07,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 7.537534202128882e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.07224854081869125,
+ "last_raw_score_gap": 5.445758688438218e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03769998252391815,
+ "observability_min": 7.77371553795092e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "b4fcea3ba16d673a5664b3afe97e4f91d5576f724515377795955d30ffa4d24d",
+ "raw_normalized_churn": 0.06304347826086956,
+ "raw_xor_churn_total": 174,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 39,
+ "committed_mask_sha256": "c9c61acd8d96f1feab7967dcdd1eab6716f300a94c25bbcf083bdc21a808d820",
+ "committed_normalized_churn": 0.01367461430575035,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2813,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.130435536988443e-08,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": -0.7543185949325562,
+ "last_committed_score_gap": -1.8822350966729573e-07,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.730956853407406e-07,
+ "last_raw_mask_overlap": 58,
+ "last_raw_normalized_gap": 0.07323214411735535,
+ "last_raw_score_gap": 1.2676167671088479e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.035040948539972305,
+ "observability_min": 3.1413557621817745e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b17f9d9738c23994082f1c678eab75ca57d6337bb7d42739fd97764dedaa2fce",
+ "raw_normalized_churn": 0.07643758765778401,
+ "raw_xor_churn_total": 436,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "c78264156b7ca63d7bc8b5ea5bc674c68fc82c3aea9ba80ff80ea70421b0badf",
+ "committed_normalized_churn": 0.004025764895330112,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 2474,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.8207812502168963e-07,
+ "last_committed_mask_overlap": 53,
+ "last_committed_normalized_gap": 0.014063100330531597,
+ "last_committed_score_gap": 2.560582856858673e-09,
+ "last_dwell_count": 53,
+ "last_raw_cutoff_score": 1.8207812502168963e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.014063100330531597,
+ "last_raw_score_gap": 2.560582856858673e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08980627357959747,
+ "observability_min": 8.101605430965719e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "c78264156b7ca63d7bc8b5ea5bc674c68fc82c3aea9ba80ff80ea70421b0badf",
+ "raw_normalized_churn": 0.04589371980676329,
+ "raw_xor_churn_total": 228,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "4a1b6283eb845adfecb6a9e92f0ec8645bd42f42568ee4ea1d984d7342cd5397",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 2070,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6531575965927914e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.6264142990112305,
+ "last_committed_score_gap": 1.0355615813750774e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.6531575965927914e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.6264142990112305,
+ "last_raw_score_gap": 1.0355615813750774e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10706496238708496,
+ "observability_min": 1.7560244813807913e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "4a1b6283eb845adfecb6a9e92f0ec8645bd42f42568ee4ea1d984d7342cd5397",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "91ed1ab4153a1a83ff7caecd8b701ac042ab57e0407ea9a8370c89fdca0febe4",
+ "committed_normalized_churn": 0.00322061191626409,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 1238,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.035140212479746e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.5282583236694336,
+ "last_committed_score_gap": 5.468214112624992e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.035140212479746e-05,
+ "last_raw_mask_overlap": 26,
+ "last_raw_normalized_gap": 0.5282583236694336,
+ "last_raw_score_gap": 5.468214112624992e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11440794169902802,
+ "observability_min": 3.6993494489934164e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "91ed1ab4153a1a83ff7caecd8b701ac042ab57e0407ea9a8370c89fdca0febe4",
+ "raw_normalized_churn": 0.018518518518518517,
+ "raw_xor_churn_total": 46,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 322,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0004839122120756656,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.5280378460884094,
+ "last_committed_score_gap": 0.00025552394799888134,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0004839122120756656,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.5280378460884094,
+ "last_raw_score_gap": 0.00025552394799888134,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09315712004899979,
+ "observability_min": 7.708651850180104e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "committed_normalized_churn": 0.004830917874396135,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 412,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.302108471980318e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.08580995351076126,
+ "last_committed_score_gap": 7.124035619199276e-06,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 8.302108471980318e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.08580995351076126,
+ "last_raw_score_gap": 7.124035619199276e-06,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1034938246011734,
+ "observability_min": 3.5536508846689685e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "raw_normalized_churn": 0.028985507246376812,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "4ba6d105586f7ba05ad61ea0b8868329bd782abc7b89ac5cf446e465523f9b9a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 322,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.907088729552925e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7430335879325867,
+ "last_committed_score_gap": 5.875232454854995e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.907088729552925e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7430335879325867,
+ "last_raw_score_gap": 5.875232454854995e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12083941698074341,
+ "observability_min": 6.451701750620487e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "4ba6d105586f7ba05ad61ea0b8868329bd782abc7b89ac5cf446e465523f9b9a",
+ "raw_normalized_churn": 0.018633540372670808,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "27de94b6f0170f4a838d6175f8211533962d314370271c49dc1640af9ebedc57",
+ "committed_normalized_churn": 0.0015810276679841897,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 2526,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.7051247545605293e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.2517986297607422,
+ "last_committed_score_gap": 9.329453405371169e-07,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 3.7051247545605293e-06,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.2517986297607422,
+ "last_raw_score_gap": 9.329453405371169e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1152687594294548,
+ "observability_min": 1.7598330570578469e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "27de94b6f0170f4a838d6175f8211533962d314370271c49dc1640af9ebedc57",
+ "raw_normalized_churn": 0.005533596837944664,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ }
+ ],
+ "task_id": 869
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "1a340727189d49f02b92f9f5b88b3ee5dbd964aacc23d984b3b1b436905e8ec7",
+ "committed_normalized_churn": 0.00193158953722334,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 12401,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.4121646074727323e-07,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.9398806691169739,
+ "last_committed_score_gap": -2.2077210815041326e-06,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.4242753820781218e-07,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.008503112941980362,
+ "last_raw_score_gap": 1.2110774605389452e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04387785866856575,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "4e9bad0f5695aa320d087ee4623dc7da9e7b2a7a1d8d3809134d1c9d84032e66",
+ "raw_normalized_churn": 0.011911468812877263,
+ "raw_xor_churn_total": 296,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 33,
+ "committed_mask_sha256": "323940cc0956dcc53b79ff46c588115fa130ea7033acd57d0739e9844bb0cc25",
+ "committed_normalized_churn": 0.002481203007518797,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 13267,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0547490880696841e-08,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.6269765496253967,
+ "last_committed_score_gap": -1.772818691847533e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 1.8917134525509027e-08,
+ "last_raw_mask_overlap": 371,
+ "last_raw_normalized_gap": 0.03314834460616112,
+ "last_raw_score_gap": 6.270717278766824e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10000377148389816,
+ "observability_min": 5.7481804038861384e-11,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "325d71961a4bd4ba96b8c28f78d4a705e399528f2738e8d6f84832fa1413f1de",
+ "raw_normalized_churn": 0.02669172932330827,
+ "raw_xor_churn_total": 710,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "791833445828e38ed58c6d12e65b9b038b87be3efedb8d5dc94531dc4e7b2cf1",
+ "committed_normalized_churn": 0.0006372809346787042,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 9409,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.93965632234017e-09,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9810192584991455,
+ "last_committed_score_gap": -3.0699098374498135e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 6.035926958247728e-08,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.06243622675538063,
+ "last_raw_score_gap": 3.76860498363385e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05750088393688202,
+ "observability_min": 6.209987635230618e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "10e78fc64b4d6efa9400806186ead38f408180a22a1d11fd87de473856c4001c",
+ "raw_normalized_churn": 0.011364843335103559,
+ "raw_xor_churn_total": 214,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "59728471c870450d38e408882d81fbb2f9a2ec810d00fa39cd9582db907864b4",
+ "committed_normalized_churn": 0.0022346368715083797,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6251,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 3.001295908688917e-06,
+ "last_committed_mask_overlap": 178,
+ "last_committed_normalized_gap": 0.09556533396244049,
+ "last_committed_score_gap": 2.8681984076683875e-07,
+ "last_dwell_count": 178,
+ "last_raw_cutoff_score": 3.001295908688917e-06,
+ "last_raw_mask_overlap": 176,
+ "last_raw_normalized_gap": 0.09556533396244049,
+ "last_raw_score_gap": 2.8681984076683875e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04144706949591637,
+ "observability_min": 8.02137911648515e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "59728471c870450d38e408882d81fbb2f9a2ec810d00fa39cd9582db907864b4",
+ "raw_normalized_churn": 0.011492418196328812,
+ "raw_xor_churn_total": 144,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "c7ad5d841ed391f462af0bef02156993364b0a1ee0bdeacdfeb92a4e5a3205ab",
+ "committed_normalized_churn": 0.0009266409266409266,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 6469,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.870684726185573e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.263085275888443,
+ "last_committed_score_gap": 2.0706613668153295e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.870684726185573e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.263085275888443,
+ "last_raw_score_gap": 2.0706613668153295e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.026652365922927856,
+ "observability_min": 3.5504672979413954e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "c7ad5d841ed391f462af0bef02156993364b0a1ee0bdeacdfeb92a4e5a3205ab",
+ "raw_normalized_churn": 0.0027799227799227798,
+ "raw_xor_churn_total": 36,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "4fed8ad81ed0ee5b5cef473c6874ad65b2df850e6cf9ffcd9c247c9225c85e00",
+ "committed_normalized_churn": 0.004081632653061225,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3660,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7727407453094202e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": -0.31356456875801086,
+ "last_committed_score_gap": -8.097902082226938e-08,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 2.209720975088203e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.1633225679397583,
+ "last_raw_score_gap": 3.608973031532514e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03346637636423111,
+ "observability_min": 5.4301281693369674e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "e8c8e04feac6128c6edb94648c27cf9309d80457274a6e507c18c1651531a229",
+ "raw_normalized_churn": 0.028299319727891157,
+ "raw_xor_churn_total": 208,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "9a9698ff934c3b4ddabba84f5272069285929ae07014483174ebe678d1963d63",
+ "committed_normalized_churn": 0.0014285714285714286,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2796,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4874107137075043e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.04809719696640968,
+ "last_committed_score_gap": 7.154028480726993e-08,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.4874107137075043e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.04809719696640968,
+ "last_raw_score_gap": 7.154028480726993e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04726400226354599,
+ "observability_min": 2.763112263437506e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "9a9698ff934c3b4ddabba84f5272069285929ae07014483174ebe678d1963d63",
+ "raw_normalized_churn": 0.014642857142857143,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "aaa21ca79e56ac0ceb6cc16da9887ee286e21bcd77496d9e639735bf5991f4da",
+ "committed_normalized_churn": 0.000664451827242525,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1504,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.6544104748136306e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.5505145788192749,
+ "last_committed_score_gap": 2.562320844390342e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 4.6544104748136306e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.5505145788192749,
+ "last_raw_score_gap": 2.562320844390342e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05816830322146416,
+ "observability_min": 3.166797739595495e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "aaa21ca79e56ac0ceb6cc16da9887ee286e21bcd77496d9e639735bf5991f4da",
+ "raw_normalized_churn": 0.013289036544850499,
+ "raw_xor_churn_total": 40,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "74736eb9c806cefcf3f3c5cf077d46a57fa20d56c71c3b42f5250fd5af04ef99",
+ "committed_normalized_churn": 0.00510204081632653,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2925,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.860959445020853e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": -0.46743273735046387,
+ "last_committed_score_gap": -6.021844001224963e-08,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 1.1422806522887186e-07,
+ "last_raw_mask_overlap": 82,
+ "last_raw_normalized_gap": 0.13184209167957306,
+ "last_raw_score_gap": 1.5060066971273045e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03683910146355629,
+ "observability_min": 5.67552547181549e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "9b3fe9a0978f6a4f6581d633eaec7cff4a43920568d8e998ed73d657a8089209",
+ "raw_normalized_churn": 0.04591836734693878,
+ "raw_xor_churn_total": 270,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "34fdae39a4be30be2fbcb85c7216bf5b1ffbe4467da82f158684c09386f66f7e",
+ "committed_normalized_churn": 0.01619047619047619,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1033,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 4.92281242259196e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.09052062034606934,
+ "last_committed_score_gap": 4.456160240806639e-07,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 4.92281242259196e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.09052062034606934,
+ "last_raw_score_gap": 4.456160240806639e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04097004607319832,
+ "observability_min": 4.952271979163925e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "34fdae39a4be30be2fbcb85c7216bf5b1ffbe4467da82f158684c09386f66f7e",
+ "raw_normalized_churn": 0.06571428571428571,
+ "raw_xor_churn_total": 138,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "dae679b659c54a1d0cb9bf63d288173bfdaa4eb16dc0272db5ce435af963776a",
+ "committed_normalized_churn": 0.0064516129032258064,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2156,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.539719960419461e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": 0.03914233669638634,
+ "last_committed_score_gap": 6.02682348471717e-09,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.539719960419461e-07,
+ "last_raw_mask_overlap": 60,
+ "last_raw_normalized_gap": 0.03914233669638634,
+ "last_raw_score_gap": 6.02682348471717e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05138210952281952,
+ "observability_min": 2.072222997639983e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "dae679b659c54a1d0cb9bf63d288173bfdaa4eb16dc0272db5ce435af963776a",
+ "raw_normalized_churn": 0.06175115207373272,
+ "raw_xor_churn_total": 268,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "a1bd676548850f0723e876a0e792eaa9998f3c77ca598d81bd0f16e8156da0df",
+ "committed_normalized_churn": 0.0068783068783068784,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1877,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.608206083389632e-08,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.7918264269828796,
+ "last_committed_score_gap": -1.7528158480217826e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.3165347922949877e-07,
+ "last_raw_mask_overlap": 50,
+ "last_raw_normalized_gap": 0.14750438928604126,
+ "last_raw_score_gap": 1.9419466923409345e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09838861227035522,
+ "observability_min": 4.857485791376348e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "0d0f42ef1abb6ce7261fcc0d70a1d310124138249899e3231856fadb8250a1c4",
+ "raw_normalized_churn": 0.043915343915343914,
+ "raw_xor_churn_total": 166,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "15bbc7ed2b2989dce16f707ff6dcfcda1cf0084f0c4ef1993479a04079a1aebe",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1575,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1491460099932738e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7583280801773071,
+ "last_committed_score_gap": 8.71429710969096e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.1491460099932738e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7583280801773071,
+ "last_raw_score_gap": 8.71429710969096e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10895545035600662,
+ "observability_min": 5.226752808340507e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "15bbc7ed2b2989dce16f707ff6dcfcda1cf0084f0c4ef1993479a04079a1aebe",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "706ea10702da88daeae7c15193a1b30e4ff2ab72d6bf79ec59cdc8fbc1364aaa",
+ "committed_normalized_churn": 0.0010582010582010583,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 944,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5484743926208466e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8188027143478394,
+ "last_committed_score_gap": 1.2678950042754877e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.5484743926208466e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8188027143478394,
+ "last_raw_score_gap": 1.2678950042754877e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11168736964464188,
+ "observability_min": 9.463283845434489e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "706ea10702da88daeae7c15193a1b30e4ff2ab72d6bf79ec59cdc8fbc1364aaa",
+ "raw_normalized_churn": 0.005291005291005291,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0009219471830874681,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8199681043624878,
+ "last_committed_score_gap": 0.000755967281293124,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0009219471830874681,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8199681043624878,
+ "last_raw_score_gap": 0.000755967281293124,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09164250642061234,
+ "observability_min": 8.32096205272137e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "committed_normalized_churn": 0.0031746031746031746,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 314,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.576267358264886e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.401563435792923,
+ "last_committed_score_gap": 2.239225068478845e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 5.576267358264886e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.401563435792923,
+ "last_raw_score_gap": 2.239225068478845e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10353658348321915,
+ "observability_min": 4.2343980766190725e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "raw_normalized_churn": 0.012698412698412698,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "committed_normalized_churn": 0.004081632653061225,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 244,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00017413079331163317,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7272859215736389,
+ "last_committed_score_gap": 0.00012664287351071835,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00017413079331163317,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7272859215736389,
+ "last_raw_score_gap": 0.00012664287351071835,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1190117746591568,
+ "observability_min": 4.1740570111414854e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "raw_normalized_churn": 0.004081632653061225,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "8f8b38c385d479170128a3902ba97641885a83c8c45b07824d4899205fd561a7",
+ "committed_normalized_churn": 0.0005194805194805195,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1924,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.943758646433707e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.49914178252220154,
+ "last_committed_score_gap": 3.965061750932364e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 7.943758646433707e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.49914178252220154,
+ "last_raw_score_gap": 3.965061750932364e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11070720851421356,
+ "observability_min": 6.057604640119507e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "8f8b38c385d479170128a3902ba97641885a83c8c45b07824d4899205fd561a7",
+ "raw_normalized_churn": 0.003116883116883117,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ }
+ ],
+ "task_id": 851
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "5b20a895351eed6ebb38cf92645d7ece9837bb03899a9735e1b5bf88892bfba3",
+ "committed_normalized_churn": 0.0017214397496087637,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 12758,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.9407527080138607e-08,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.9275289177894592,
+ "last_committed_score_gap": -3.7637511240973254e-07,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.1247276177073218e-07,
+ "last_raw_mask_overlap": 350,
+ "last_raw_normalized_gap": 0.05017494782805443,
+ "last_raw_score_gap": 5.643315148518013e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03661351278424263,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "23e141e3735e812f6691bd7a4c44bd776338b32f76954b03f8f9a2fa18dfb38d",
+ "raw_normalized_churn": 0.0107981220657277,
+ "raw_xor_churn_total": 276,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 40,
+ "committed_mask_sha256": "ccda38ba7342b64bbd7322f6a962de011fe6724d676331171e5844f6c884be42",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 80,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 13640,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.69217434403879e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9628028869628906,
+ "last_committed_score_gap": -9.556747926353637e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 2.3861922215928644e-08,
+ "last_raw_mask_overlap": 363,
+ "last_raw_normalized_gap": 0.0051697795279324055,
+ "last_raw_score_gap": 1.233608770689898e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10873386263847351,
+ "observability_min": 2.561356016173022e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "2ce8334ccd1837fba498f11a858341b9ddfd3be9f80e33ecc219ca687ccee9a4",
+ "raw_normalized_churn": 0.034868421052631576,
+ "raw_xor_churn_total": 954,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "365a2e537c8e9c32fc6c904c7115525a4d5745082ce9ff38589c7653d0cb3cfe",
+ "committed_normalized_churn": 0.0020652622883106154,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 9664,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.5337583687299343e-10,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9983172416687012,
+ "last_committed_score_gap": -2.689764926344651e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.0084200141591282e-07,
+ "last_raw_mask_overlap": 262,
+ "last_raw_normalized_gap": 0.018181541934609413,
+ "last_raw_score_gap": 1.8334631590732897e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.057318948209285736,
+ "observability_min": 6.207802050184341e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "943af91daad44544b4d71a4f491e91e24bb9b6f299854ae2d43334eb08f5641b",
+ "raw_normalized_churn": 0.01621230896323833,
+ "raw_xor_churn_total": 314,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "30ec36b5e03065aa511fedbc6bfcfbe75682e78035322c84005dc82cc15ab01a",
+ "committed_normalized_churn": 0.0013966480446927375,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6435,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.982702769964817e-06,
+ "last_committed_mask_overlap": 178,
+ "last_committed_normalized_gap": 0.08322694152593613,
+ "last_committed_score_gap": 1.6501428490300896e-07,
+ "last_dwell_count": 178,
+ "last_raw_cutoff_score": 1.982702769964817e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.08322694152593613,
+ "last_raw_score_gap": 1.6501428490300896e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043467987328767776,
+ "observability_min": 1.3771362938896914e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "30ec36b5e03065aa511fedbc6bfcfbe75682e78035322c84005dc82cc15ab01a",
+ "raw_normalized_churn": 0.012414649286157667,
+ "raw_xor_churn_total": 160,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "580a586be59038bbb4d4a47f639c95f4a97883b146ac005f1cb17e96f91eddaf",
+ "committed_normalized_churn": 0.0009009009009009009,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 6654,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.628506182300043e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.15904350578784943,
+ "last_committed_score_gap": -1.4427195083044353e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.920952723201481e-07,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.043210528790950775,
+ "last_raw_score_gap": 3.854790975310607e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03074106015264988,
+ "observability_min": 2.9293207859382164e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "22cfe5147531cc7cecf7e64856095c5921e154c6c0617b917d429ee919844672",
+ "raw_normalized_churn": 0.004954954954954955,
+ "raw_xor_churn_total": 66,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "2bfe4914c1d5be365d90f8b553a7502d9d76727fe7da8b677c782882e74fdbfc",
+ "committed_normalized_churn": 0.0050264550264550265,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3761,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.8554484288179083e-07,
+ "last_committed_mask_overlap": 103,
+ "last_committed_normalized_gap": -0.1670621931552887,
+ "last_committed_score_gap": -5.727167717850534e-08,
+ "last_dwell_count": 103,
+ "last_raw_cutoff_score": 2.899738262840401e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.01527373492717743,
+ "last_raw_score_gap": 4.428983402249287e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050161801278591156,
+ "observability_min": 4.610122061876609e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "a9efc92a5e3f99a620bb856f46e01d32124432b9e114212f849b8aee4a294bb6",
+ "raw_normalized_churn": 0.029894179894179893,
+ "raw_xor_churn_total": 226,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "5ef7ea1e828a95c6b76a4c59d4b0cecabc0de060a5b09803e481dbe006683d6b",
+ "committed_normalized_churn": 0.0010416666666666667,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2877,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.39496387419058e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.04048115387558937,
+ "last_committed_score_gap": -5.885215159651125e-08,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.4538160257870913e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.04048115387558937,
+ "last_raw_score_gap": 5.885215159651125e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05249067768454552,
+ "observability_min": 2.2671024169085285e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "1c697832bd93e6b0260e55e529eed5e01ad88fc99d6761ca1b78f2f582ec4133",
+ "raw_normalized_churn": 0.014583333333333334,
+ "raw_xor_churn_total": 84,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "f49cd8958266f367c15e26cee61517b51a2fd6ebffd8e0194723d17afc69c913",
+ "committed_normalized_churn": 0.004521963824289405,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1541,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.0885363483102992e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": -0.3867030143737793,
+ "last_committed_score_gap": -1.3168877899261133e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.4054241382364125e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.2095903903245926,
+ "last_raw_score_gap": 7.137441571103409e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05889835208654404,
+ "observability_min": 5.479834044308518e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "9aed9f43dce7760e40eca080a6fc1bd3e6769fd4f377ad67103ccd1bc219bfe8",
+ "raw_normalized_churn": 0.028423772609819122,
+ "raw_xor_churn_total": 88,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "0e27b53d416d6d17a8ea8d8b6ceeab31ec51dd5ec86673f500aa0a3c714c54a3",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 3000,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.354682279332337e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.6577383875846863,
+ "last_committed_score_gap": -1.6055538765158417e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.2071787125478295e-07,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.006217593792825937,
+ "last_raw_score_gap": 7.505747134928242e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04377210512757301,
+ "observability_min": 7.959336301155417e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "49276bf9bf675b96c33907362da0af3c4f9b677ebf8c0f45ca9af4105df98bda",
+ "raw_normalized_churn": 0.04365079365079365,
+ "raw_xor_churn_total": 264,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "566691728f2cc6b01eb55b5318d85df54a61c63c5d395916f593d2c477847f03",
+ "committed_normalized_churn": 0.009259259259259259,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1070,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.419712008209899e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.5101173520088196,
+ "last_committed_score_gap": -6.684878826490603e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 9.988188139686827e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.3493887186050415,
+ "last_raw_score_gap": 3.4897602745331824e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03877219557762146,
+ "observability_min": 2.3097744872302428e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "b0cf9421a46f2bc393ee4b5bce02799454f522b7aea6ebcde3f647f0d9565757",
+ "raw_normalized_churn": 0.04722222222222222,
+ "raw_xor_churn_total": 102,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "e99da66787c578745d3a8d2dfab088490ed115db7d8e2e594bde458c63201944",
+ "committed_normalized_churn": 0.010304659498207885,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2209,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.205736879228425e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": -0.5587214231491089,
+ "last_committed_score_gap": -1.526634463289156e-07,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.7013577746638475e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.01445644162595272,
+ "last_raw_score_gap": 2.459557890688302e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04161253944039345,
+ "observability_min": 7.535059154406554e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "bd6a495439439d2e3a5ee4b4b074db4ec98e07fa38f198b1a4e76db86511bef5",
+ "raw_normalized_churn": 0.0775089605734767,
+ "raw_xor_churn_total": 346,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "11b54b97e4b54448448ff0c1d97de79d576ffd09a1fe252ebd209405da093699",
+ "committed_normalized_churn": 0.006172839506172839,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1932,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.105006302599577e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.7476679682731628,
+ "last_committed_score_gap": -6.23720097792102e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.539175625315693e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.008598455227911472,
+ "last_raw_score_gap": 2.183298875024775e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08731034398078918,
+ "observability_min": 3.719875962815422e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "17cc011139a8c7b757bb606a84a49ec22980f5ca81d9108f43171ca2a2be546e",
+ "raw_normalized_churn": 0.03652263374485597,
+ "raw_xor_churn_total": 142,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "dbe34a46aac3135c93751fe0fea019702495907b1cfd7394fa72e2100565f049",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1620,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1408044883864932e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7223452925682068,
+ "last_committed_score_gap": 8.240547686000355e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.1408044883864932e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7223452925682068,
+ "last_raw_score_gap": 8.240547686000355e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10610237717628479,
+ "observability_min": 4.953796306494951e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "dbe34a46aac3135c93751fe0fea019702495907b1cfd7394fa72e2100565f049",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "aea9277157cac513770f6cab67ce3bbba4da4c32ef44439f177020020dd6baaa",
+ "committed_normalized_churn": 0.0030864197530864196,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 969,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4344607734528836e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.4301973581314087,
+ "last_committed_score_gap": 6.171012500999495e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.4344607734528836e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.4301973581314087,
+ "last_raw_score_gap": 6.171012500999495e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10491446405649185,
+ "observability_min": 1.6590587392784073e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "aea9277157cac513770f6cab67ce3bbba4da4c32ef44439f177020020dd6baaa",
+ "raw_normalized_churn": 0.01131687242798354,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "58ca4272bcb51e7fecec556e7878056a906d8d41ca8ab8a3b9f7543bf14ac247",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0003071752726100385,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.86700439453125,
+ "last_committed_score_gap": 0.0002663223131094128,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0003071752726100385,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.86700439453125,
+ "last_raw_score_gap": 0.0002663223131094128,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09024535119533539,
+ "observability_min": 7.984969840890699e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "58ca4272bcb51e7fecec556e7878056a906d8d41ca8ab8a3b9f7543bf14ac247",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.006172839506172839,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 322,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.433498053112999e-05,
+ "last_committed_mask_overlap": 8,
+ "last_committed_normalized_gap": 0.2522616982460022,
+ "last_committed_score_gap": 2.3797103494871408e-05,
+ "last_dwell_count": 8,
+ "last_raw_cutoff_score": 9.433498053112999e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.2522616982460022,
+ "last_raw_score_gap": 2.3797103494871408e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10027527064085007,
+ "observability_min": 1.3253121267098322e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.018518518518518517,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.39660463295877e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7733740210533142,
+ "last_committed_score_gap": 5.720341869164258e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.39660463295877e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7733740210533142,
+ "last_raw_score_gap": 5.720341869164258e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1079200729727745,
+ "observability_min": 4.191200986269905e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.007936507936507936,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "efef35657bd8aa9e789cdba0489b074bfbe214abf43eaf78570987e49c733794",
+ "committed_normalized_churn": 0.0025252525252525255,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1975,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.973026534571545e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.17933684587478638,
+ "last_committed_score_gap": 8.918468665797263e-07,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.973026534571545e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.17933684587478638,
+ "last_raw_score_gap": 8.918468665797263e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10598735511302948,
+ "observability_min": 1.5805406983204762e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "efef35657bd8aa9e789cdba0489b074bfbe214abf43eaf78570987e49c733794",
+ "raw_normalized_churn": 0.004545454545454545,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ }
+ ],
+ "task_id": 728
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "a473e7962c5358ef97db9dfd4cb1bb8ae914e4e477674215d5330ab29f8fa998",
+ "committed_normalized_churn": 0.002223869532987398,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 13460,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.6878663678407975e-08,
+ "last_committed_mask_overlap": 355,
+ "last_committed_normalized_gap": -0.8778953552246094,
+ "last_committed_score_gap": -2.651464114933333e-07,
+ "last_dwell_count": 355,
+ "last_raw_cutoff_score": 1.2586014008775237e-07,
+ "last_raw_mask_overlap": 349,
+ "last_raw_normalized_gap": 0.056233301758766174,
+ "last_raw_score_gap": 7.07753144979506e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.052964843809604645,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "0e73fae54470b66a9c519404e7a8df485a54e77f6bb9ca6b3c5ff5e13065fd66",
+ "raw_normalized_churn": 0.016827279466271314,
+ "raw_xor_churn_total": 454,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "001abc20711218dd961a0d21fff0da9f06d1c94ae4c47a0644bc4188952268d0",
+ "committed_normalized_churn": 0.002562326869806094,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 14403,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.858581377689461e-08,
+ "last_committed_mask_overlap": 377,
+ "last_committed_normalized_gap": 0.029740750789642334,
+ "last_committed_score_gap": 5.527560631435335e-10,
+ "last_dwell_count": 377,
+ "last_raw_cutoff_score": 1.858581377689461e-08,
+ "last_raw_mask_overlap": 365,
+ "last_raw_normalized_gap": 0.029740750789642334,
+ "last_raw_score_gap": 5.527560631435335e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09602482616901398,
+ "observability_min": 2.6186864232613516e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "001abc20711218dd961a0d21fff0da9f06d1c94ae4c47a0644bc4188952268d0",
+ "raw_normalized_churn": 0.02804709141274238,
+ "raw_xor_churn_total": 810,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "3f9ca7526cf45a2dcb2a33f37abe1c3024040418555d328c735fb2791fe83a77",
+ "committed_normalized_churn": 0.001271766777538642,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 10209,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.871054208408168e-08,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.04156920313835144,
+ "last_committed_score_gap": -3.413845206523547e-09,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 8.072307622342123e-08,
+ "last_raw_mask_overlap": 268,
+ "last_raw_normalized_gap": 0.02493133582174778,
+ "last_raw_score_gap": 2.01253413933955e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0396246537566185,
+ "observability_min": 1.0796466654028336e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "fc855b6ddf7b7b3ae11e95571c31217c73da5c4fbbd4ebd3471d0968968d5bef",
+ "raw_normalized_churn": 0.01281549598904324,
+ "raw_xor_churn_total": 262,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "021988e3b73cafe7422d27d700474983a07cd33ed208010cb2245a5b877dc779",
+ "committed_normalized_churn": 0.001470155836518671,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6792,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.304918098161579e-06,
+ "last_committed_mask_overlap": 176,
+ "last_committed_normalized_gap": -0.06389916688203812,
+ "last_committed_score_gap": -1.5733598957012873e-07,
+ "last_dwell_count": 176,
+ "last_raw_cutoff_score": 2.462254087731708e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.06389916688203812,
+ "last_raw_score_gap": 1.5733598957012873e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04216195270419121,
+ "observability_min": 2.1476654410435003e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "033a82ea0bcedc6a630280fe56aad531343c398e0d72ff72a115fdcc2c983db6",
+ "raw_normalized_churn": 0.007644810349897089,
+ "raw_xor_churn_total": 104,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "e42aa002a0a0a3c135520c20ca61d73ab22f9a023f26438721dc5cbf89e9e47b",
+ "committed_normalized_churn": 0.0008534850640113798,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 7024,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.4475098686925776e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.6823306679725647,
+ "last_committed_score_gap": 2.352341681444159e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 3.4475098686925776e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.6823306679725647,
+ "last_raw_score_gap": 2.352341681444159e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.025337696075439453,
+ "observability_min": 2.587907772522158e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "e42aa002a0a0a3c135520c20ca61d73ab22f9a023f26438721dc5cbf89e9e47b",
+ "raw_normalized_churn": 0.005263157894736842,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "74f3fd55c0e385509ba5c201021806c6145a0d7a1a624720cdcc37622ec9aee4",
+ "committed_normalized_churn": 0.006766917293233083,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3963,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.742265578121078e-08,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": -0.6184602975845337,
+ "last_committed_score_gap": -1.4170856843520596e-07,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 1.5671452047172352e-07,
+ "last_raw_mask_overlap": 102,
+ "last_raw_normalized_gap": 0.06741895526647568,
+ "last_raw_score_gap": 1.0565528896222531e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030376747250556946,
+ "observability_min": 1.1652433329345513e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "986262f5419f7a9d1d646e9db305ad17d8eedf41d517b761b739c02597eeff79",
+ "raw_normalized_churn": 0.03558897243107769,
+ "raw_xor_churn_total": 284,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "3b34d2864f0c84fe652eaa0e2c6b5d3b6495d4e7f8a44b10675db88ccc074214",
+ "committed_normalized_churn": 0.0013157894736842105,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 3036,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.02578449313296e-07,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.33057838678359985,
+ "last_committed_score_gap": 2.983729245897848e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 9.02578449313296e-07,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.33057838678359985,
+ "last_raw_score_gap": 2.983729245897848e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043448999524116516,
+ "observability_min": 4.0367143583353027e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "3b34d2864f0c84fe652eaa0e2c6b5d3b6495d4e7f8a44b10675db88ccc074214",
+ "raw_normalized_churn": 0.014802631578947368,
+ "raw_xor_churn_total": 90,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "fb007c2d754482b2a531ffed95fcbfbd590086235df75500ff13ad7609883e05",
+ "committed_normalized_churn": 0.0018359853121175031,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1631,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.440570199269132e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.29675865173339844,
+ "last_committed_score_gap": 7.242603317081375e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 2.440570199269132e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.29675865173339844,
+ "last_raw_score_gap": 7.242603317081375e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05549290403723717,
+ "observability_min": 5.88715693083941e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "fb007c2d754482b2a531ffed95fcbfbd590086235df75500ff13ad7609883e05",
+ "raw_normalized_churn": 0.014075887392900856,
+ "raw_xor_churn_total": 46,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 28,
+ "committed_mask_sha256": "4d16c88a71f97f394a6e444d2205a5e5157dc01f4e00ca88a9990637c2615656",
+ "committed_normalized_churn": 0.008771929824561403,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 3164,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.706761889243353e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.018132414668798447,
+ "last_committed_score_gap": -1.607901367606246e-09,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 8.867552026003978e-08,
+ "last_raw_mask_overlap": 83,
+ "last_raw_normalized_gap": 0.018132414668798447,
+ "last_raw_score_gap": 1.607901367606246e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.033205460757017136,
+ "observability_min": 5.654127335219528e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "239af332e60ca424d93b7cec40fc222f83631e4e9fb7ffa76236e68474afdbc3",
+ "raw_normalized_churn": 0.05701754385964912,
+ "raw_xor_churn_total": 364,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "11fd5ccde476834ab478f5fc7160a3eb28375c1e70cdbce31c6132dbedf162b2",
+ "committed_normalized_churn": 0.008771929824561403,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1130,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.0022599680232815e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.11136494576931,
+ "last_committed_score_gap": 5.570764187723398e-07,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 5.0022599680232815e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.11136494576931,
+ "last_raw_score_gap": 5.570764187723398e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03097361885011196,
+ "observability_min": 3.5789025787380524e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "11fd5ccde476834ab478f5fc7160a3eb28375c1e70cdbce31c6132dbedf162b2",
+ "raw_normalized_churn": 0.05263157894736842,
+ "raw_xor_churn_total": 120,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "78b0601773e197c35dc69a3230cf4aa632dab83bbafd6ee7990bb04aca948572",
+ "committed_normalized_churn": 0.009762308998302207,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2333,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7874579327781248e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.23449695110321045,
+ "last_committed_score_gap": 4.1915342308129766e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.7874579327781248e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.23449695110321045,
+ "last_raw_score_gap": 4.1915342308129766e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03991476073861122,
+ "observability_min": 5.174724719836377e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "78b0601773e197c35dc69a3230cf4aa632dab83bbafd6ee7990bb04aca948572",
+ "raw_normalized_churn": 0.06960950764006792,
+ "raw_xor_churn_total": 328,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "af9a9a38f84418b398ffc2682df5f8ee5761c3a8a23006d49d6df97c5deec47f",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 2046,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1934270105484757e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.24422034621238708,
+ "last_committed_score_gap": -3.856403907320782e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.2631124945983174e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.05516965687274933,
+ "last_raw_score_gap": 6.968548404984176e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07833381742238998,
+ "observability_min": 4.7877893649683756e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "ee212e63f11d0dc132147b2f0d73380a0cd3f95187e38dc41ed35a80514b2c5c",
+ "raw_normalized_churn": 0.04434697855750487,
+ "raw_xor_churn_total": 182,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "256ba15a9f70f446205fd85b0e361459cb704fcd8900ad636001fcdd05b6f576",
+ "committed_normalized_churn": 0.0017543859649122807,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1707,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.325802703737281e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7468338012695312,
+ "last_committed_score_gap": 3.97748954128474e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 5.325802703737281e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7468338012695312,
+ "last_raw_score_gap": 3.97748954128474e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08591532707214355,
+ "observability_min": 5.8715087902783125e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "256ba15a9f70f446205fd85b0e361459cb704fcd8900ad636001fcdd05b6f576",
+ "raw_normalized_churn": 0.005263157894736842,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "b3ddf29b103dc176989a967f527b6e3dac9e8bb18a4632275a3b08078dfc7793",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 1023,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.507230631948914e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.5722452402114868,
+ "last_committed_score_gap": 4.8682222768547945e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 8.507230631948914e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.5722452402114868,
+ "last_raw_score_gap": 4.8682222768547945e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07980677485466003,
+ "observability_min": 1.663320290390402e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "b3ddf29b103dc176989a967f527b6e3dac9e8bb18a4632275a3b08078dfc7793",
+ "raw_normalized_churn": 0.016569200779727095,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "2150aa066b9fb8fe7e0404888fe4ee7b7be64038cceb00d4a8b474a94d68f790",
+ "committed_normalized_churn": 0.0037593984962406013,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 265,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00015755339700262994,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8943806886672974,
+ "last_committed_score_gap": 0.00014091271441429853,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00015755339700262994,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8943806886672974,
+ "last_raw_score_gap": 0.00014091271441429853,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0778174176812172,
+ "observability_min": 7.9902989114089e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "2150aa066b9fb8fe7e0404888fe4ee7b7be64038cceb00d4a8b474a94d68f790",
+ "raw_normalized_churn": 0.02631578947368421,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "1c5dd0aed3efce7369e5a31aaa06c85ff4395d2b6e1f0e73902aa503ced65add",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 341,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6163423424586654e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": -0.2489287406206131,
+ "last_committed_score_gap": -5.357069312594831e-06,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 2.1520492737181485e-05,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.2489287406206131,
+ "last_raw_score_gap": 5.357069312594831e-06,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08289565145969391,
+ "observability_min": 1.1323527360218577e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ee477779585267fdfdb33029de73b338818df64e9444b4cfa6601cc2c927e71c",
+ "raw_normalized_churn": 0.05847953216374269,
+ "raw_xor_churn_total": 40,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "6915538cbb29305079e9c0857c9c5b42041beee03ddb2d85cca8188545b4f99d",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.694811938563362e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8900420665740967,
+ "last_committed_score_gap": 6.848706107120961e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.694811938563362e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8900420665740967,
+ "last_raw_score_gap": 6.848706107120961e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08357403427362442,
+ "observability_min": 5.755421739195299e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6915538cbb29305079e9c0857c9c5b42041beee03ddb2d85cca8188545b4f99d",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "9f138ebc7a16cb546cab582ee2b623906eb3a09e128abea857f6d2f9deefe47d",
+ "committed_normalized_churn": 0.0014354066985645933,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 2087,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.5683519854501355e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.6847178339958191,
+ "last_committed_score_gap": 2.4433143153146375e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 3.5683519854501355e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.6847178339958191,
+ "last_raw_score_gap": 2.4433143153146375e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09227585047483444,
+ "observability_min": 6.030722232708285e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "9f138ebc7a16cb546cab582ee2b623906eb3a09e128abea857f6d2f9deefe47d",
+ "raw_normalized_churn": 0.0019138755980861245,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 704
+ }
+ ],
+ "causal_observability_mse_target_fisher_quota": [
+ {
+ "layers": [
+ {
+ "admissions_total": 149,
+ "committed_mask_sha256": "42d88c885c16b7d995761e86e5c5b6402964885b3aa0577d19deb1230a7a38c6",
+ "committed_normalized_churn": 0.011045218680504077,
+ "committed_xor_churn_total": 298,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 13341,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 2.02190150844217e-07,
+ "last_committed_mask_overlap": 349,
+ "last_committed_normalized_gap": 0.15897434949874878,
+ "last_committed_score_gap": 3.2143049111255095e-08,
+ "last_dwell_count": 349,
+ "last_raw_cutoff_score": 2.02190150844217e-07,
+ "last_raw_mask_overlap": 349,
+ "last_raw_normalized_gap": 0.15897434949874878,
+ "last_raw_score_gap": 3.2143049111255095e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043269507586956024,
+ "observability_min": 0.0,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "42d88c885c16b7d995761e86e5c5b6402964885b3aa0577d19deb1230a7a38c6",
+ "raw_normalized_churn": 0.011045218680504077,
+ "raw_xor_churn_total": 298,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 274,
+ "committed_mask_sha256": "049ab1188e4148cdd88ec64529fbb96edd2ce0928e2a32cc8262245a9888028c",
+ "committed_normalized_churn": 0.01897506925207756,
+ "committed_xor_churn_total": 548,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 14166,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 12,
+ "last_committed_cutoff_score": 1.3530314646459374e-08,
+ "last_committed_mask_overlap": 368,
+ "last_committed_normalized_gap": 0.09638599306344986,
+ "last_committed_score_gap": 1.304132801749347e-09,
+ "last_dwell_count": 368,
+ "last_raw_cutoff_score": 1.3530314646459374e-08,
+ "last_raw_mask_overlap": 368,
+ "last_raw_normalized_gap": 0.09638599306344986,
+ "last_raw_score_gap": 1.304132801749347e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1133112832903862,
+ "observability_min": 1.2120245918012529e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "049ab1188e4148cdd88ec64529fbb96edd2ce0928e2a32cc8262245a9888028c",
+ "raw_normalized_churn": 0.01897506925207756,
+ "raw_xor_churn_total": 548,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 89,
+ "committed_mask_sha256": "8ef425896ff2a726fc1403a1d2e31408c2be2a9262e8d4c5a011e83f34096e62",
+ "committed_normalized_churn": 0.008706711015456857,
+ "committed_xor_churn_total": 178,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 10133,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 7.985622119122127e-08,
+ "last_committed_mask_overlap": 264,
+ "last_committed_normalized_gap": 0.10949638485908508,
+ "last_committed_score_gap": 8.743967327973223e-09,
+ "last_dwell_count": 264,
+ "last_raw_cutoff_score": 7.985622119122127e-08,
+ "last_raw_mask_overlap": 264,
+ "last_raw_normalized_gap": 0.10949638485908508,
+ "last_raw_score_gap": 8.743967327973223e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07081593573093414,
+ "observability_min": 2.23443441527138e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "8ef425896ff2a726fc1403a1d2e31408c2be2a9262e8d4c5a011e83f34096e62",
+ "raw_normalized_churn": 0.008706711015456857,
+ "raw_xor_churn_total": 178,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 46,
+ "committed_mask_sha256": "d9068b0d34d702a641fc08902a8795e0122672e138bb7109d58844e341d793e8",
+ "committed_normalized_churn": 0.006762716847985887,
+ "committed_xor_churn_total": 92,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6756,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.090972313657403e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.651437520980835,
+ "last_committed_score_gap": 2.0135753402428236e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.090972313657403e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.651437520980835,
+ "last_raw_score_gap": 2.0135753402428236e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.048790499567985535,
+ "observability_min": 5.07410669037256e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "d9068b0d34d702a641fc08902a8795e0122672e138bb7109d58844e341d793e8",
+ "raw_normalized_churn": 0.006762716847985887,
+ "raw_xor_churn_total": 92,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 21,
+ "committed_mask_sha256": "f071a9ca6a495ecabfabd4f1cfd67921f7614fdeb2dc0d93a0f8e0fad154d762",
+ "committed_normalized_churn": 0.0029871977240398294,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 7009,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.415268909317092e-07,
+ "last_committed_mask_overlap": 182,
+ "last_committed_normalized_gap": 0.006394113879650831,
+ "last_committed_score_gap": 1.5443504253198626e-09,
+ "last_dwell_count": 182,
+ "last_raw_cutoff_score": 2.415268909317092e-07,
+ "last_raw_mask_overlap": 182,
+ "last_raw_normalized_gap": 0.006394113879650831,
+ "last_raw_score_gap": 1.5443504253198626e-09,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.029060080647468567,
+ "observability_min": 1.4013039617566392e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "f071a9ca6a495ecabfabd4f1cfd67921f7614fdeb2dc0d93a0f8e0fad154d762",
+ "raw_normalized_churn": 0.0029871977240398294,
+ "raw_xor_churn_total": 42,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 69,
+ "committed_mask_sha256": "3d952a60fef6e9f6cd2aafc6d0a288b0488362a179c2c8edca604c6a01d14b78",
+ "committed_normalized_churn": 0.017293233082706767,
+ "committed_xor_churn_total": 138,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3921,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 1.2384879255478154e-07,
+ "last_committed_mask_overlap": 99,
+ "last_committed_normalized_gap": 0.164062038064003,
+ "last_committed_score_gap": 2.0318886129189195e-08,
+ "last_dwell_count": 99,
+ "last_raw_cutoff_score": 1.2384879255478154e-07,
+ "last_raw_mask_overlap": 99,
+ "last_raw_normalized_gap": 0.164062038064003,
+ "last_raw_score_gap": 2.0318886129189195e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03445073217153549,
+ "observability_min": 8.824438957333314e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "3d952a60fef6e9f6cd2aafc6d0a288b0488362a179c2c8edca604c6a01d14b78",
+ "raw_normalized_churn": 0.017293233082706767,
+ "raw_xor_churn_total": 138,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "99dcf590358eeac576503674aa54678e035c1e2db8c01887ce3b17c9ff186049",
+ "committed_normalized_churn": 0.00625,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 3021,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.2236173461133149e-06,
+ "last_committed_mask_overlap": 78,
+ "last_committed_normalized_gap": 0.004292555619031191,
+ "last_committed_score_gap": 5.252445589576382e-09,
+ "last_dwell_count": 78,
+ "last_raw_cutoff_score": 1.2236173461133149e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.004292555619031191,
+ "last_raw_score_gap": 5.252445589576382e-09,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05268144607543945,
+ "observability_min": 2.823539801966035e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "99dcf590358eeac576503674aa54678e035c1e2db8c01887ce3b17c9ff186049",
+ "raw_normalized_churn": 0.00625,
+ "raw_xor_churn_total": 38,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "93ddf8c723862b24cc4121315055931fdf9903aa2a3db8f89c6f42ad639b6da4",
+ "committed_normalized_churn": 0.006731946144430845,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1623,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.642817378273321e-07,
+ "last_committed_mask_overlap": 42,
+ "last_committed_normalized_gap": 0.2936796247959137,
+ "last_committed_score_gap": 7.761416043194913e-08,
+ "last_dwell_count": 42,
+ "last_raw_cutoff_score": 2.642817378273321e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.2936796247959137,
+ "last_raw_score_gap": 7.761416043194913e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.056067001074552536,
+ "observability_min": 7.776834820560907e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "93ddf8c723862b24cc4121315055931fdf9903aa2a3db8f89c6f42ad639b6da4",
+ "raw_normalized_churn": 0.006731946144430845,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 78,
+ "committed_mask_sha256": "12be95cd0ccc2943dc0a0a652c82637894ee7a6dbc704560cf6e1183468e8d00",
+ "committed_normalized_churn": 0.02443609022556391,
+ "committed_xor_churn_total": 156,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 3114,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.1206689976006601e-07,
+ "last_committed_mask_overlap": 81,
+ "last_committed_normalized_gap": 0.01999414898455143,
+ "last_committed_score_gap": 2.2406823063647607e-09,
+ "last_dwell_count": 81,
+ "last_raw_cutoff_score": 1.1206689976006601e-07,
+ "last_raw_mask_overlap": 81,
+ "last_raw_normalized_gap": 0.01999414898455143,
+ "last_raw_score_gap": 2.2406823063647607e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.040155548602342606,
+ "observability_min": 1.2643893398944783e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "12be95cd0ccc2943dc0a0a652c82637894ee7a6dbc704560cf6e1183468e8d00",
+ "raw_normalized_churn": 0.02443609022556391,
+ "raw_xor_churn_total": 156,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "9582deb1fbbef36dc669bc5e1ccd55acba20694e2460bafeaf998b6f94991f51",
+ "committed_normalized_churn": 0.02368421052631579,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1113,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 4.988352884538472e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.02228396013379097,
+ "last_committed_score_gap": 1.1116026144009084e-07,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 4.988352884538472e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.02228396013379097,
+ "last_raw_score_gap": 1.1116026144009084e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04401962459087372,
+ "observability_min": 1.3424657652194583e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "9582deb1fbbef36dc669bc5e1ccd55acba20694e2460bafeaf998b6f94991f51",
+ "raw_normalized_churn": 0.02368421052631579,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 70,
+ "committed_mask_sha256": "11caac763aadef3f755c524f3baaca3da5cccd2ca4a3220e340ca00a0a0dc442",
+ "committed_normalized_churn": 0.029711375212224108,
+ "committed_xor_churn_total": 140,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2286,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 7.617951780503063e-08,
+ "last_committed_mask_overlap": 57,
+ "last_committed_normalized_gap": 0.028180500492453575,
+ "last_committed_score_gap": 2.146776978406706e-09,
+ "last_dwell_count": 57,
+ "last_raw_cutoff_score": 7.617951780503063e-08,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.028180500492453575,
+ "last_raw_score_gap": 2.146776978406706e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050541169941425323,
+ "observability_min": 1.2915822367176588e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "11caac763aadef3f755c524f3baaca3da5cccd2ca4a3220e340ca00a0a0dc442",
+ "raw_normalized_churn": 0.029711375212224108,
+ "raw_xor_churn_total": 140,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 33,
+ "committed_mask_sha256": "d23802bd94fd25eb4f06bc32daefee140ef6e5f255fcace24d286d36106c96e0",
+ "committed_normalized_churn": 0.01608187134502924,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 2019,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.8929132750145072e-07,
+ "last_committed_mask_overlap": 52,
+ "last_committed_normalized_gap": 0.2236761897802353,
+ "last_committed_score_gap": 4.233996264702e-08,
+ "last_dwell_count": 52,
+ "last_raw_cutoff_score": 1.8929132750145072e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.2236761897802353,
+ "last_raw_score_gap": 4.233996264702e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0942985862493515,
+ "observability_min": 3.6537102232614416e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d23802bd94fd25eb4f06bc32daefee140ef6e5f255fcace24d286d36106c96e0",
+ "raw_normalized_churn": 0.01608187134502924,
+ "raw_xor_churn_total": 66,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "1452a9ed81294967c220254977c0eb3f83a8bd1eed946a03a6b9371d1e3b524a",
+ "committed_normalized_churn": 0.0017543859649122807,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1707,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 8.798559974820819e-06,
+ "last_committed_mask_overlap": 44,
+ "last_committed_normalized_gap": 0.11901796609163284,
+ "last_committed_score_gap": 1.047186742653139e-06,
+ "last_dwell_count": 44,
+ "last_raw_cutoff_score": 8.798559974820819e-06,
+ "last_raw_mask_overlap": 44,
+ "last_raw_normalized_gap": 0.11901796609163284,
+ "last_raw_score_gap": 1.047186742653139e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10430213063955307,
+ "observability_min": 2.441105984019032e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "1452a9ed81294967c220254977c0eb3f83a8bd1eed946a03a6b9371d1e3b524a",
+ "raw_normalized_churn": 0.0017543859649122807,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "a11660d55d776c0ab63d444f9f999e2df58d39f0d17b0aa9fae82a0017936882",
+ "committed_normalized_churn": 0.010721247563352826,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 1015,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2076079656253569e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.21018768846988678,
+ "last_committed_score_gap": 2.5382432795595378e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.2076079656253569e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.21018768846988678,
+ "last_raw_score_gap": 2.5382432795595378e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.114602230489254,
+ "observability_min": 1.9074530399620926e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "a11660d55d776c0ab63d444f9f999e2df58d39f0d17b0aa9fae82a0017936882",
+ "raw_normalized_churn": 0.010721247563352826,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0007460247725248337,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.44804662466049194,
+ "last_committed_score_gap": 0.00033425388392060995,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0007460247725248337,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.44804662466049194,
+ "last_raw_score_gap": 0.00033425388392060995,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0958591029047966,
+ "observability_min": 6.388956563796455e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.005847953216374269,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 340,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.593181751668453e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.5943968892097473,
+ "last_committed_score_gap": 3.9189668314065784e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 6.593181751668453e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.5943968892097473,
+ "last_raw_score_gap": 3.9189668314065784e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1026204526424408,
+ "observability_min": 8.553074692940754e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.005847953216374269,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "cade345f74c7f8b1263aca53f49f2ce1488c78a14beeffdc541d01204df50270",
+ "committed_normalized_churn": 0.0037593984962406013,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 265,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0001055294051184319,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8020143508911133,
+ "last_committed_score_gap": 8.463609992759302e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0001055294051184319,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8020143508911133,
+ "last_raw_score_gap": 8.463609992759302e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11296574026346207,
+ "observability_min": 4.978006273859137e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "cade345f74c7f8b1263aca53f49f2ce1488c78a14beeffdc541d01204df50270",
+ "raw_normalized_churn": 0.0037593984962406013,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "e9ebae1c558cc525d0ae6ca8942806a18c22f4725356f0c3a5ddcb2055a83b71",
+ "committed_normalized_churn": 0.0028708133971291866,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 2084,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.234210443129996e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.37895432114601135,
+ "last_committed_score_gap": 2.7414353098720312e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 7.234210443129996e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.37895432114601135,
+ "last_raw_score_gap": 2.7414353098720312e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1041816994547844,
+ "observability_min": 2.0737327410813577e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "e9ebae1c558cc525d0ae6ca8942806a18c22f4725356f0c3a5ddcb2055a83b71",
+ "raw_normalized_churn": 0.0028708133971291866,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ],
+ "task_id": 666
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 124,
+ "committed_mask_sha256": "d2a07e93d99c65657203a14fa5e38c533d421ed2a57317ec9dcd35409078cdee",
+ "committed_normalized_churn": 0.010273405136702569,
+ "committed_xor_churn_total": 248,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 11946,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.0532083055968542e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.01948738284409046,
+ "last_committed_score_gap": 4.0011656210481306e-09,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 2.0532083055968542e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.01948738284409046,
+ "last_raw_score_gap": 4.0011656210481306e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030501583591103554,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "d2a07e93d99c65657203a14fa5e38c533d421ed2a57317ec9dcd35409078cdee",
+ "raw_normalized_churn": 0.010273405136702569,
+ "raw_xor_churn_total": 248,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 259,
+ "committed_mask_sha256": "9d9f480e8125e0714cb6617277b32e3ce8d3be6cd7349f4fa6da157e117f5407",
+ "committed_normalized_churn": 0.020046439628482973,
+ "committed_xor_churn_total": 518,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 12661,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 11,
+ "last_committed_cutoff_score": 2.506428842252717e-08,
+ "last_committed_mask_overlap": 369,
+ "last_committed_normalized_gap": 0.008443125523626804,
+ "last_committed_score_gap": 2.1162094299143064e-10,
+ "last_dwell_count": 369,
+ "last_raw_cutoff_score": 2.506428842252717e-08,
+ "last_raw_mask_overlap": 369,
+ "last_raw_normalized_gap": 0.008443125523626804,
+ "last_raw_score_gap": 2.1162094299143064e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11882250756025314,
+ "observability_min": 3.268262604994021e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "9d9f480e8125e0714cb6617277b32e3ce8d3be6cd7349f4fa6da157e117f5407",
+ "raw_normalized_churn": 0.020046439628482973,
+ "raw_xor_churn_total": 518,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 92,
+ "committed_mask_sha256": "52ab0ba1a156917b4a8835dcb12589ddaef0f8aca412a1b0fed31bd62216d5f3",
+ "committed_normalized_churn": 0.010059042204242292,
+ "committed_xor_churn_total": 184,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 9054,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 9.36565882625473e-08,
+ "last_committed_mask_overlap": 265,
+ "last_committed_normalized_gap": 0.004143390338867903,
+ "last_committed_score_gap": 3.880558097080211e-10,
+ "last_dwell_count": 265,
+ "last_raw_cutoff_score": 9.36565882625473e-08,
+ "last_raw_mask_overlap": 265,
+ "last_raw_normalized_gap": 0.004143390338867903,
+ "last_raw_score_gap": 3.880558097080211e-10,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06471268087625504,
+ "observability_min": 6.720973222407167e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "52ab0ba1a156917b4a8835dcb12589ddaef0f8aca412a1b0fed31bd62216d5f3",
+ "raw_normalized_churn": 0.010059042204242292,
+ "raw_xor_churn_total": 184,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "4976ea2b2cda036bc2e33b52eaaee59d6584d0d99a81d9671b5fa1888bb61398",
+ "committed_normalized_churn": 0.004107788366743345,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6061,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.4412804577877978e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.41060346364974976,
+ "last_committed_score_gap": 1.0023982213169802e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.4412804577877978e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.41060346364974976,
+ "last_raw_score_gap": 1.0023982213169802e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04122423380613327,
+ "observability_min": 1.6596519714084934e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "4976ea2b2cda036bc2e33b52eaaee59d6584d0d99a81d9671b5fa1888bb61398",
+ "raw_normalized_churn": 0.004107788366743345,
+ "raw_xor_churn_total": 50,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "9b799fc5e9072adc3201444cb8023be95b7ce754416e19c6caf2e2b2ad33ff73",
+ "committed_normalized_churn": 0.0019077901430842607,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 6278,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.709662668275996e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.20602017641067505,
+ "last_committed_score_gap": 1.5883460946497507e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.709662668275996e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.20602017641067505,
+ "last_raw_score_gap": 1.5883460946497507e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.037392742931842804,
+ "observability_min": 3.2151991291584636e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "9b799fc5e9072adc3201444cb8023be95b7ce754416e19c6caf2e2b2ad33ff73",
+ "raw_normalized_churn": 0.0019077901430842607,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 82,
+ "committed_mask_sha256": "27a32a4c67728c7ae21f023ee9371b876d7c503bc393baf5e3c332ee7e02575b",
+ "committed_normalized_churn": 0.02296918767507003,
+ "committed_xor_churn_total": 164,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3488,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.1332557764708326e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.12181419134140015,
+ "last_committed_score_gap": 2.5986082619056106e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.1332557764708326e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.12181419134140015,
+ "last_raw_score_gap": 2.5986082619056106e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0579802542924881,
+ "observability_min": 2.4909038720544174e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "27a32a4c67728c7ae21f023ee9371b876d7c503bc393baf5e3c332ee7e02575b",
+ "raw_normalized_churn": 0.02296918767507003,
+ "raw_xor_churn_total": 164,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "0ab10484e72e980e6cce0586b0aa276b0b0279a77819aaaf2463d60a5e446ed7",
+ "committed_normalized_churn": 0.007352941176470588,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2700,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7836836150308955e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.19406159222126007,
+ "last_committed_score_gap": 3.4614447486092104e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.7836836150308955e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.19406159222126007,
+ "last_raw_score_gap": 3.4614447486092104e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0574929341673851,
+ "observability_min": 1.7020991549543396e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "0ab10484e72e980e6cce0586b0aa276b0b0279a77819aaaf2463d60a5e446ed7",
+ "raw_normalized_churn": 0.007352941176470588,
+ "raw_xor_churn_total": 40,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "bb58bb9fe709453914035d7d0ba757323e7eeb4dea0666705d0576176f53a4c8",
+ "committed_normalized_churn": 0.008891928864569083,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1449,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 3.3496849027869757e-07,
+ "last_committed_mask_overlap": 41,
+ "last_committed_normalized_gap": 0.03369053080677986,
+ "last_committed_score_gap": 1.1285266054983367e-08,
+ "last_dwell_count": 41,
+ "last_raw_cutoff_score": 3.3496849027869757e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.03369053080677986,
+ "last_raw_score_gap": 1.1285266054983367e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.052388764917850494,
+ "observability_min": 3.143692310914048e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "bb58bb9fe709453914035d7d0ba757323e7eeb4dea0666705d0576176f53a4c8",
+ "raw_normalized_churn": 0.008891928864569083,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 77,
+ "committed_mask_sha256": "2f3665176a670fa00cd9e30d5548339448a60025f3658cd00d11320b5c97e353",
+ "committed_normalized_churn": 0.02696078431372549,
+ "committed_xor_churn_total": 154,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2779,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.469783807640852e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.0040155500173568726,
+ "last_committed_score_gap": 3.4010838589892955e-10,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 8.469783807640852e-08,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.0040155500173568726,
+ "last_raw_score_gap": 3.4010838589892955e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.032247692346572876,
+ "observability_min": 9.515727583675471e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "2f3665176a670fa00cd9e30d5548339448a60025f3658cd00d11320b5c97e353",
+ "raw_normalized_churn": 0.02696078431372549,
+ "raw_xor_churn_total": 154,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 39,
+ "committed_mask_sha256": "c10475a7babdf9cbd864a2b19c1cc5083a327a37b903c4a5be7908f9af5d0e9f",
+ "committed_normalized_churn": 0.03823529411764706,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 981,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.0710044989536982e-05,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.22397583723068237,
+ "last_committed_score_gap": 2.3987913664313965e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 1.0710044989536982e-05,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.22397583723068237,
+ "last_raw_score_gap": 2.3987913664313965e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03929051756858826,
+ "observability_min": 4.4222943529348413e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "c10475a7babdf9cbd864a2b19c1cc5083a327a37b903c4a5be7908f9af5d0e9f",
+ "raw_normalized_churn": 0.03823529411764706,
+ "raw_xor_churn_total": 78,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 99,
+ "committed_mask_sha256": "ee9f67d791ad237700df863798f2da94e7417626f758a33fdca64e5e6dfed4e5",
+ "committed_normalized_churn": 0.04696394686907021,
+ "committed_xor_churn_total": 198,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2009,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 1.256362907042785e-07,
+ "last_committed_mask_overlap": 56,
+ "last_committed_normalized_gap": 0.024962594732642174,
+ "last_committed_score_gap": 3.1362077379526454e-09,
+ "last_dwell_count": 56,
+ "last_raw_cutoff_score": 1.256362907042785e-07,
+ "last_raw_mask_overlap": 56,
+ "last_raw_normalized_gap": 0.024962594732642174,
+ "last_raw_score_gap": 3.1362077379526454e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05668804049491882,
+ "observability_min": 1.1644907260688342e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "ee9f67d791ad237700df863798f2da94e7417626f758a33fdca64e5e6dfed4e5",
+ "raw_normalized_churn": 0.04696394686907021,
+ "raw_xor_churn_total": 198,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "ca73515425d225b7e1ad60cecbf59e4e21368f915b6bebd3b1e00ca75d823fc0",
+ "committed_normalized_churn": 0.020152505446623094,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1799,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.0321397187217372e-07,
+ "last_committed_mask_overlap": 53,
+ "last_committed_normalized_gap": 0.00911655928939581,
+ "last_committed_score_gap": 1.8526122858020244e-09,
+ "last_dwell_count": 53,
+ "last_raw_cutoff_score": 2.0321397187217372e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.00911655928939581,
+ "last_raw_score_gap": 1.8526122858020244e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0888097733259201,
+ "observability_min": 3.832239769963053e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "ca73515425d225b7e1ad60cecbf59e4e21368f915b6bebd3b1e00ca75d823fc0",
+ "raw_normalized_churn": 0.020152505446623094,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "2d0cbdb73df091002e1665b9bd5a4d080b83bf97e4285268bfa57e5a7e48a1d8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1530,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2725698979920708e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7697857618331909,
+ "last_committed_score_gap": 9.796061931410804e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.2725698979920708e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7697857618331909,
+ "last_raw_score_gap": 9.796061931410804e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10586809366941452,
+ "observability_min": 5.9114910300195334e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "2d0cbdb73df091002e1665b9bd5a4d080b83bf97e4285268bfa57e5a7e48a1d8",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "f9858c9c8cd773c2b6fa9d8175d5d02e66cf989a8c1d2cbb3f7aea550f5813bf",
+ "committed_normalized_churn": 0.004357298474945534,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 914,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.2814345912775025e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.020967217162251472,
+ "last_committed_score_gap": 1.5267141861841083e-07,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 7.2814345912775025e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.020967217162251472,
+ "last_raw_score_gap": 1.5267141861841083e-07,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11098583042621613,
+ "observability_min": 6.835514199110548e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "f9858c9c8cd773c2b6fa9d8175d5d02e66cf989a8c1d2cbb3f7aea550f5813bf",
+ "raw_normalized_churn": 0.004357298474945534,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 238,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00045813663746230304,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9502856135368347,
+ "last_committed_score_gap": 0.00043536064913496375,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00045813663746230304,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9502856135368347,
+ "last_raw_score_gap": 0.00043536064913496375,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09153343737125397,
+ "observability_min": 6.519358919376828e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "2ad44af3d87f65540ef70a4482c821edf831f8390f6545c4c96c9cbb9d9c7a1e",
+ "committed_normalized_churn": 0.0196078431372549,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 300,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.458785381051712e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.853740930557251,
+ "last_committed_score_gap": 4.6603883674833924e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 5.458785381051712e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.853740930557251,
+ "last_raw_score_gap": 4.6603883674833924e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10500452667474747,
+ "observability_min": 8.277245555632362e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "2ad44af3d87f65540ef70a4482c821edf831f8390f6545c4c96c9cbb9d9c7a1e",
+ "raw_normalized_churn": 0.0196078431372549,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "3c69eb525cb426b99dbb480f7e200104d6e621b2d4b7f80b5479605bbbacd1f8",
+ "committed_normalized_churn": 0.008403361344537815,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 236,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00012971390970051289,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6826463341712952,
+ "last_committed_score_gap": 8.854872430674732e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00012971390970051289,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6826463341712952,
+ "last_raw_score_gap": 8.854872430674732e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11955423653125763,
+ "observability_min": 3.053013619691569e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "3c69eb525cb426b99dbb480f7e200104d6e621b2d4b7f80b5479605bbbacd1f8",
+ "raw_normalized_churn": 0.008403361344537815,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "915b82622822d2a451ef9857add185ad8a766b4d3eec19c93054eb068b3ec55b",
+ "committed_normalized_churn": 0.00267379679144385,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1865,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.022869224078022e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.622085690498352,
+ "last_committed_score_gap": 4.990912202629261e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 8.022869224078022e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.622085690498352,
+ "last_raw_score_gap": 4.990912202629261e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10877145081758499,
+ "observability_min": 1.6004232605837387e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "915b82622822d2a451ef9857add185ad8a766b4d3eec19c93054eb068b3ec55b",
+ "raw_normalized_churn": 0.00267379679144385,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ }
+ ],
+ "task_id": 795
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 92,
+ "committed_mask_sha256": "5df230ef0726aef71b1c60daf0f96dd054bc09dc05f1201ed90210a6f3bde00d",
+ "committed_normalized_churn": 0.01036619718309859,
+ "committed_xor_churn_total": 184,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 8783,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.6044995138363447e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.044218599796295166,
+ "last_committed_score_gap": 1.1516732456584577e-08,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 2.6044995138363447e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.044218599796295166,
+ "last_raw_score_gap": 1.1516732456584577e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.031219976022839546,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "5df230ef0726aef71b1c60daf0f96dd054bc09dc05f1201ed90210a6f3bde00d",
+ "raw_normalized_churn": 0.01036619718309859,
+ "raw_xor_churn_total": 184,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 347,
+ "committed_mask_sha256": "f65e2ab5215f0cb3a58b7999f90e9d0daf082a93c7aebdf9d28b091fc5979ec8",
+ "committed_normalized_churn": 0.036526315789473685,
+ "committed_xor_churn_total": 694,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 9153,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 8,
+ "last_committed_cutoff_score": 2.4169708012777846e-08,
+ "last_committed_mask_overlap": 372,
+ "last_committed_normalized_gap": 0.02702946588397026,
+ "last_committed_score_gap": 6.532943075399089e-10,
+ "last_dwell_count": 372,
+ "last_raw_cutoff_score": 2.4169708012777846e-08,
+ "last_raw_mask_overlap": 372,
+ "last_raw_normalized_gap": 0.02702946588397026,
+ "last_raw_score_gap": 6.532943075399089e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09982314705848694,
+ "observability_min": 1.6722284668091447e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "f65e2ab5215f0cb3a58b7999f90e9d0daf082a93c7aebdf9d28b091fc5979ec8",
+ "raw_normalized_churn": 0.036526315789473685,
+ "raw_xor_churn_total": 694,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 77,
+ "committed_mask_sha256": "3072cbc9979a5864e629ee04056786fc145167c4fd0e779d521bf2e7d8692306",
+ "committed_normalized_churn": 0.011449814126394052,
+ "committed_xor_churn_total": 154,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 6648,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7717798073135782e-07,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": 0.12331373244524002,
+ "last_committed_score_gap": 2.184847858188732e-08,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.7717798073135782e-07,
+ "last_raw_mask_overlap": 269,
+ "last_raw_normalized_gap": 0.12331373244524002,
+ "last_raw_score_gap": 2.184847858188732e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.062837153673172,
+ "observability_min": 3.180938179525583e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "3072cbc9979a5864e629ee04056786fc145167c4fd0e779d521bf2e7d8692306",
+ "raw_normalized_churn": 0.011449814126394052,
+ "raw_xor_churn_total": 154,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "27cc1b55c850d6f083ff549803e2423b7c78c95bc0fe1547072c9048b1669471",
+ "committed_normalized_churn": 0.004916201117318436,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 4453,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 3.853532234643353e-06,
+ "last_committed_mask_overlap": 178,
+ "last_committed_normalized_gap": 0.2031739503145218,
+ "last_committed_score_gap": 7.829373771528481e-07,
+ "last_dwell_count": 178,
+ "last_raw_cutoff_score": 3.853532234643353e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.2031739503145218,
+ "last_raw_score_gap": 7.829373771528481e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.044981103390455246,
+ "observability_min": 1.575186092672709e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "27cc1b55c850d6f083ff549803e2423b7c78c95bc0fe1547072c9048b1669471",
+ "raw_normalized_churn": 0.004916201117318436,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "a6d6375a5b4bdf6114d789733130586918edd36fd2598e0ce78226638b130b42",
+ "committed_normalized_churn": 0.002162162162162162,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 4615,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.844587793850224e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.5871062278747559,
+ "last_committed_score_gap": 5.779818934570358e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 9.844587793850224e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.5871062278747559,
+ "last_raw_score_gap": 5.779818934570358e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04137483984231949,
+ "observability_min": 4.59279414499747e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "a6d6375a5b4bdf6114d789733130586918edd36fd2598e0ce78226638b130b42",
+ "raw_normalized_churn": 0.002162162162162162,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 53,
+ "committed_mask_sha256": "7823d5bd09138a5536c4e7363bed11e16f13fa5acff4bb7fddc48259535cc8cc",
+ "committed_normalized_churn": 0.02019047619047619,
+ "committed_xor_churn_total": 106,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 2572,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.1420297002805455e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.26917916536331177,
+ "last_committed_score_gap": 5.765897981291346e-08,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 2.1420297002805455e-07,
+ "last_raw_mask_overlap": 105,
+ "last_raw_normalized_gap": 0.26917916536331177,
+ "last_raw_score_gap": 5.765897981291346e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04036920517683029,
+ "observability_min": 1.8227384046554107e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "7823d5bd09138a5536c4e7363bed11e16f13fa5acff4bb7fddc48259535cc8cc",
+ "raw_normalized_churn": 0.02019047619047619,
+ "raw_xor_churn_total": 106,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "1992b47765762d72da2d4dceb81315ea5945f31e21fc64856d3df14cf64a846f",
+ "committed_normalized_churn": 0.0055,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 1989,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.6290740632030065e-06,
+ "last_committed_mask_overlap": 79,
+ "last_committed_normalized_gap": 0.10536929965019226,
+ "last_committed_score_gap": 1.7165439203381538e-07,
+ "last_dwell_count": 79,
+ "last_raw_cutoff_score": 1.6290740632030065e-06,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.10536929965019226,
+ "last_raw_score_gap": 1.7165439203381538e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05047454684972763,
+ "observability_min": 3.1932006550050573e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "1992b47765762d72da2d4dceb81315ea5945f31e21fc64856d3df14cf64a846f",
+ "raw_normalized_churn": 0.0055,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "e8090297cfdf5bb0394d1fb3cbffe77a5eccd97466f0920688417d25bb0f808f",
+ "committed_normalized_churn": 0.008372093023255815,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1066,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.796515551992343e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.48406633734703064,
+ "last_committed_score_gap": 2.805898020596942e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 5.796515551992343e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.48406633734703064,
+ "last_raw_score_gap": 2.805898020596942e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06022842228412628,
+ "observability_min": 2.7964279070147313e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "e8090297cfdf5bb0394d1fb3cbffe77a5eccd97466f0920688417d25bb0f808f",
+ "raw_normalized_churn": 0.008372093023255815,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 78,
+ "committed_mask_sha256": "c235a37940ca047eba3a097a06fcfd0976396dc2ffd62dc120ef2d378c0d934c",
+ "committed_normalized_churn": 0.037142857142857144,
+ "committed_xor_churn_total": 156,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2022,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.708215031878353e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.40904250741004944,
+ "last_committed_score_gap": 3.971072715103219e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 9.708215031878353e-08,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.40904250741004944,
+ "last_raw_score_gap": 3.971072715103219e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03817868232727051,
+ "observability_min": 1.3889584238313546e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "c235a37940ca047eba3a097a06fcfd0976396dc2ffd62dc120ef2d378c0d934c",
+ "raw_normalized_churn": 0.037142857142857144,
+ "raw_xor_churn_total": 156,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 16,
+ "committed_mask_sha256": "d01bb2a4adaa03a5fa9a94a13b3c80a980c2c9a45391ba588d6e117cd5eaf659",
+ "committed_normalized_churn": 0.021333333333333333,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 734,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.934459972602781e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.46789225935935974,
+ "last_committed_score_gap": 3.7124723348824773e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 7.934459972602781e-06,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.46789225935935974,
+ "last_raw_score_gap": 3.7124723348824773e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030100906267762184,
+ "observability_min": 1.9862469002873695e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "d01bb2a4adaa03a5fa9a94a13b3c80a980c2c9a45391ba588d6e117cd5eaf659",
+ "raw_normalized_churn": 0.021333333333333333,
+ "raw_xor_churn_total": 32,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 60,
+ "committed_mask_sha256": "244d249368071bd4df7dbb7cce29d46183d6b223f67cd8645d1352c9dda83c95",
+ "committed_normalized_churn": 0.03870967741935484,
+ "committed_xor_churn_total": 120,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 1490,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7962636889023997e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.21955086290836334,
+ "last_committed_score_gap": 3.9437125565200404e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.7962636889023997e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.21955086290836334,
+ "last_raw_score_gap": 3.9437125565200404e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05696702003479004,
+ "observability_min": 7.703260251901156e-08,
+ "observability_trace": 0.9999998807907104,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "244d249368071bd4df7dbb7cce29d46183d6b223f67cd8645d1352c9dda83c95",
+ "raw_normalized_churn": 0.03870967741935484,
+ "raw_xor_churn_total": 120,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 31,
+ "committed_mask_sha256": "7e7680ac97893915f372961b64929f33c7841c2f000c7e32f8b46e4649535a0d",
+ "committed_normalized_churn": 0.022962962962962963,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1319,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.519226143249398e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.08559604734182358,
+ "last_committed_score_gap": 2.156357936655695e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.519226143249398e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.08559604734182358,
+ "last_raw_score_gap": 2.156357936655695e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0934605747461319,
+ "observability_min": 9.026810943169039e-08,
+ "observability_trace": 0.9999998807907104,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "7e7680ac97893915f372961b64929f33c7841c2f000c7e32f8b46e4649535a0d",
+ "raw_normalized_churn": 0.022962962962962963,
+ "raw_xor_churn_total": 62,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "6f75a560dcc1ad260c6e1b67819050e192872503d360aba155f93ca0baa7ab50",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1125,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.502738066657912e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.38005298376083374,
+ "last_committed_score_gap": 3.611543888837332e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 9.502738066657912e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.38005298376083374,
+ "last_raw_score_gap": 3.611543888837332e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10118542611598969,
+ "observability_min": 5.95310787332437e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "6f75a560dcc1ad260c6e1b67819050e192872503d360aba155f93ca0baa7ab50",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "bf8e8a5e80783e28aca62a09da62fc220aa80c191670e1dc0c99a9737c01feea",
+ "committed_normalized_churn": 0.008888888888888889,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 669,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.969987351913005e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.7534035444259644,
+ "last_committed_score_gap": 1.484195399825694e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.969987351913005e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.7534035444259644,
+ "last_raw_score_gap": 1.484195399825694e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11175792664289474,
+ "observability_min": 5.38903428548565e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "bf8e8a5e80783e28aca62a09da62fc220aa80c191670e1dc0c99a9737c01feea",
+ "raw_normalized_churn": 0.008888888888888889,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "dead25b935c243869d3457164cc1e2cd5f1278064368561169648124f13cb4c1",
+ "committed_normalized_churn": 0.005714285714285714,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 174,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00030299232457764447,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.843914806842804,
+ "last_committed_score_gap": 0.00025569970603100955,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00030299232457764447,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.843914806842804,
+ "last_raw_score_gap": 0.00025569970603100955,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09068001061677933,
+ "observability_min": 1.4598225561712752e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "dead25b935c243869d3457164cc1e2cd5f1278064368561169648124f13cb4c1",
+ "raw_normalized_churn": 0.005714285714285714,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "170e76a6b32ed947b8d8f92908402b66abd8824d46e162d333ef6e6f0d665018",
+ "committed_normalized_churn": 0.017777777777777778,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 221,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 0.0001531853195047006,
+ "last_committed_mask_overlap": 8,
+ "last_committed_normalized_gap": 0.2969858944416046,
+ "last_committed_score_gap": 4.549387813312933e-05,
+ "last_dwell_count": 8,
+ "last_raw_cutoff_score": 0.0001531853195047006,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.2969858944416046,
+ "last_raw_score_gap": 4.549387813312933e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10777474194765091,
+ "observability_min": 7.118573286390983e-09,
+ "observability_trace": 0.9999998807907104,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "170e76a6b32ed947b8d8f92908402b66abd8824d46e162d333ef6e6f0d665018",
+ "raw_normalized_churn": 0.017777777777777778,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "ee53914920a26fcad20cb8f248265a21a257a771d2680e2cd2a1200c35012bd9",
+ "committed_normalized_churn": 0.017142857142857144,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 172,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 0.00034274233621545136,
+ "last_committed_mask_overlap": 6,
+ "last_committed_normalized_gap": 0.10627759248018265,
+ "last_committed_score_gap": 3.642583033069968e-05,
+ "last_dwell_count": 6,
+ "last_raw_cutoff_score": 0.00034274233621545136,
+ "last_raw_mask_overlap": 6,
+ "last_raw_normalized_gap": 0.10627759248018265,
+ "last_raw_score_gap": 3.642583033069968e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1392969936132431,
+ "observability_min": 3.4118976088848285e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "ee53914920a26fcad20cb8f248265a21a257a771d2680e2cd2a1200c35012bd9",
+ "raw_normalized_churn": 0.017142857142857144,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "48f68ee3844615192a9214cc88dd5d5920c2161a6b25ca2d041e8aeb4acae3ad",
+ "committed_normalized_churn": 0.004363636363636364,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1369,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4683520930702798e-05,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.5922368764877319,
+ "last_committed_score_gap": 8.696122677065432e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 1.4683520930702798e-05,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.5922368764877319,
+ "last_raw_score_gap": 8.696122677065432e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0993814691901207,
+ "observability_min": 1.4003050274880025e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "48f68ee3844615192a9214cc88dd5d5920c2161a6b25ca2d041e8aeb4acae3ad",
+ "raw_normalized_churn": 0.004363636363636364,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ }
+ ],
+ "task_id": 944
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 139,
+ "committed_mask_sha256": "d5ac943e19ff8c4489295ff5630ed4f9a407410c07d513eca63aaf9df7a06dfe",
+ "committed_normalized_churn": 0.010582413399314807,
+ "committed_xor_churn_total": 278,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 12996,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 2.1354648538363108e-07,
+ "last_committed_mask_overlap": 350,
+ "last_committed_normalized_gap": 0.04657643660902977,
+ "last_committed_score_gap": 9.946234058588743e-09,
+ "last_dwell_count": 350,
+ "last_raw_cutoff_score": 2.1354648538363108e-07,
+ "last_raw_mask_overlap": 350,
+ "last_raw_normalized_gap": 0.04657643660902977,
+ "last_raw_score_gap": 9.946234058588743e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04258858412504196,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "d5ac943e19ff8c4489295ff5630ed4f9a407410c07d513eca63aaf9df7a06dfe",
+ "raw_normalized_churn": 0.010582413399314807,
+ "raw_xor_churn_total": 278,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 327,
+ "committed_mask_sha256": "03f2c6853a8e5af9bfed2e0037bb06034c1072925e6bbc753dec75888496e781",
+ "committed_normalized_churn": 0.0232574679943101,
+ "committed_xor_churn_total": 654,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 13733,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 7,
+ "last_committed_cutoff_score": 5.484499077113014e-09,
+ "last_committed_mask_overlap": 373,
+ "last_committed_normalized_gap": 0.05402650311589241,
+ "last_committed_score_gap": 2.9630831122062773e-10,
+ "last_dwell_count": 373,
+ "last_raw_cutoff_score": 5.484499077113014e-09,
+ "last_raw_mask_overlap": 373,
+ "last_raw_normalized_gap": 0.05402650311589241,
+ "last_raw_score_gap": 2.9630831122062773e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10692340135574341,
+ "observability_min": 1.8404200385901959e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "03f2c6853a8e5af9bfed2e0037bb06034c1072925e6bbc753dec75888496e781",
+ "raw_normalized_churn": 0.0232574679943101,
+ "raw_xor_churn_total": 654,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 97,
+ "committed_mask_sha256": "7431cc81b9949c4f9288b5a73daa25bd08b43b66d6bef71390a30eca9ffe3520",
+ "committed_normalized_churn": 0.009745805284838743,
+ "committed_xor_churn_total": 194,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 9856,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 8.492001768445334e-08,
+ "last_committed_mask_overlap": 265,
+ "last_committed_normalized_gap": 0.05401119217276573,
+ "last_committed_score_gap": 4.58663151903238e-09,
+ "last_dwell_count": 265,
+ "last_raw_cutoff_score": 8.492001768445334e-08,
+ "last_raw_mask_overlap": 265,
+ "last_raw_normalized_gap": 0.05401119217276573,
+ "last_raw_score_gap": 4.58663151903238e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06558335572481155,
+ "observability_min": 1.5244880913201087e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "7431cc81b9949c4f9288b5a73daa25bd08b43b66d6bef71390a30eca9ffe3520",
+ "raw_normalized_churn": 0.009745805284838743,
+ "raw_xor_churn_total": 194,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "1df93a960c43aabdbce870e6102edee78714fa3376da3d74525395a259835451",
+ "committed_normalized_churn": 0.0033217575117016457,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6601,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.8953418222954497e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.3082221448421478,
+ "last_committed_score_gap": 8.924084795580711e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.8953418222954497e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.3082221448421478,
+ "last_raw_score_gap": 8.924084795580711e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04007241502404213,
+ "observability_min": 7.681523861435835e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "1df93a960c43aabdbce870e6102edee78714fa3376da3d74525395a259835451",
+ "raw_normalized_churn": 0.0033217575117016457,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "87e84611829f9044a1e2ef0a2f99a63a06407aed1f5a8764f392bcc9b8bcfbd2",
+ "committed_normalized_churn": 0.0018991964937910884,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 6832,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.98259429504833e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.5798243880271912,
+ "last_committed_score_gap": 5.208327138461755e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.98259429504833e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.5798243880271912,
+ "last_raw_score_gap": 5.208327138461755e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04027675837278366,
+ "observability_min": 2.1839521302524645e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "87e84611829f9044a1e2ef0a2f99a63a06407aed1f5a8764f392bcc9b8bcfbd2",
+ "raw_normalized_churn": 0.0018991964937910884,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 90,
+ "committed_mask_sha256": "88ab6f1ffd47c022cc5af152777979dc4d4437eaa67a5c6a807701cbe2f88930",
+ "committed_normalized_churn": 0.023166023166023165,
+ "committed_xor_churn_total": 180,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3795,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.5261019825629774e-07,
+ "last_committed_mask_overlap": 103,
+ "last_committed_normalized_gap": 0.1608920693397522,
+ "last_committed_score_gap": 2.4553770572310896e-08,
+ "last_dwell_count": 103,
+ "last_raw_cutoff_score": 1.5261019825629774e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.1608920693397522,
+ "last_raw_score_gap": 2.4553770572310896e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04807084798812866,
+ "observability_min": 1.972011176576416e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "88ab6f1ffd47c022cc5af152777979dc4d4437eaa67a5c6a807701cbe2f88930",
+ "raw_normalized_churn": 0.023166023166023165,
+ "raw_xor_churn_total": 180,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "f9ba5b4a97ea86f0c6857bc41060be46d28d89eee4648c7894643e224e1ffe2b",
+ "committed_normalized_churn": 0.009121621621621622,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2933,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5931952930259285e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.4241234064102173,
+ "last_committed_score_gap": 6.757114192623703e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.5931952930259285e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.4241234064102173,
+ "last_raw_score_gap": 6.757114192623703e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05533228814601898,
+ "observability_min": 3.401095227673068e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "f9ba5b4a97ea86f0c6857bc41060be46d28d89eee4648c7894643e224e1ffe2b",
+ "raw_normalized_churn": 0.009121621621621622,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 16,
+ "committed_mask_sha256": "80d1a1fd9f85f55258644a37db6204bd9f7834c5c34883ce9585b914c0047174",
+ "committed_normalized_churn": 0.01005656819610308,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1575,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.2326157989027706e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.1333576738834381,
+ "last_committed_score_gap": 2.9773644882880035e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 2.2326157989027706e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.1333576738834381,
+ "last_raw_score_gap": 2.9773644882880035e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05366378650069237,
+ "observability_min": 1.9442682130943467e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "80d1a1fd9f85f55258644a37db6204bd9f7834c5c34883ce9585b914c0047174",
+ "raw_normalized_churn": 0.01005656819610308,
+ "raw_xor_churn_total": 32,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 83,
+ "committed_mask_sha256": "a008b0c933d74134d5516e89869f9ba16375fdd74f867454a26dd159ddf292c0",
+ "committed_normalized_churn": 0.026705276705276705,
+ "committed_xor_churn_total": 166,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 3025,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.83939258958344e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": 0.0917503759264946,
+ "last_committed_score_gap": 9.027679936934874e-09,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 9.83939258958344e-08,
+ "last_raw_mask_overlap": 83,
+ "last_raw_normalized_gap": 0.0917503759264946,
+ "last_raw_score_gap": 9.027679936934874e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.036412905901670456,
+ "observability_min": 2.0049141369327117e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "a008b0c933d74134d5516e89869f9ba16375fdd74f867454a26dd159ddf292c0",
+ "raw_normalized_churn": 0.026705276705276705,
+ "raw_xor_churn_total": 166,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 28,
+ "committed_mask_sha256": "5dc2fd773ca57db82df49dc5060323f0a885434c1872b27ec643435f27173830",
+ "committed_normalized_churn": 0.025225225225225224,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1082,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.42247970669996e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.2817460894584656,
+ "last_committed_score_gap": 2.6547468223725446e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 9.42247970669996e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.2817460894584656,
+ "last_raw_score_gap": 2.6547468223725446e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03535793721675873,
+ "observability_min": 2.1095702606999112e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "5dc2fd773ca57db82df49dc5060323f0a885434c1872b27ec643435f27173830",
+ "raw_normalized_churn": 0.025225225225225224,
+ "raw_xor_churn_total": 56,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 90,
+ "committed_mask_sha256": "8494716702c147a8357c98de22df4591733d62702f1d580cddef19c8ec0b4482",
+ "committed_normalized_churn": 0.03923278116826504,
+ "committed_xor_churn_total": 180,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2204,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 1.3530795683891483e-07,
+ "last_committed_mask_overlap": 57,
+ "last_committed_normalized_gap": 0.00830094050616026,
+ "last_committed_score_gap": 1.1231833241254208e-09,
+ "last_dwell_count": 57,
+ "last_raw_cutoff_score": 1.3530795683891483e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.00830094050616026,
+ "last_raw_score_gap": 1.1231833241254208e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04711860790848732,
+ "observability_min": 2.611485427905791e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "8494716702c147a8357c98de22df4591733d62702f1d580cddef19c8ec0b4482",
+ "raw_normalized_churn": 0.03923278116826504,
+ "raw_xor_churn_total": 180,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "d8f4c871d9b1d7b07f5ce581889e1a033c9156a5952d8fa7ee36976cc9e9efa7",
+ "committed_normalized_churn": 0.011011011011011011,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1976,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.9535926298885897e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.4408932626247406,
+ "last_committed_score_gap": 8.613258017931003e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.9535926298885897e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.4408932626247406,
+ "last_raw_score_gap": 8.613258017931003e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10176379978656769,
+ "observability_min": 5.1274464674122555e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d8f4c871d9b1d7b07f5ce581889e1a033c9156a5952d8fa7ee36976cc9e9efa7",
+ "raw_normalized_churn": 0.011011011011011011,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "5a49cbb2a070adbd48a549313bbc38d5ef283fa07d27329d9031b37e2e42e6f6",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1665,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2451966540538706e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.36945268511772156,
+ "last_committed_score_gap": 4.600412466970738e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.2451966540538706e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.36945268511772156,
+ "last_raw_score_gap": 4.600412466970738e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11148277670145035,
+ "observability_min": 4.687943810921524e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "5a49cbb2a070adbd48a549313bbc38d5ef283fa07d27329d9031b37e2e42e6f6",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "11ac9dbb6d384fb1c57062e7204fec772247d8a4f93bb62a92ab1cd35cef0090",
+ "committed_normalized_churn": 0.003003003003003003,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 996,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.330123788851779e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8085615634918213,
+ "last_committed_score_gap": 1.8840484699467197e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.330123788851779e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8085615634918213,
+ "last_raw_score_gap": 1.8840484699467197e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11748040467500687,
+ "observability_min": 5.469217523312864e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "11ac9dbb6d384fb1c57062e7204fec772247d8a4f93bb62a92ab1cd35cef0090",
+ "raw_normalized_churn": 0.003003003003003003,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "8edf3633b7d15c1848682380a26764a099718966e4c1076dd114d88e4dce5f52",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 259,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00043146181269548833,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7138229012489319,
+ "last_committed_score_gap": 0.0003079873276874423,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00043146181269548833,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7138229012489319,
+ "last_raw_score_gap": 0.0003079873276874423,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09728288650512695,
+ "observability_min": 4.52285888741244e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "8edf3633b7d15c1848682380a26764a099718966e4c1076dd114d88e4dce5f52",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "0232a07cd4f1758c624f42624fbaf384e395b7a65c1ea8315f05d7fc54346b41",
+ "committed_normalized_churn": 0.009009009009009009,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 330,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00011915135837625712,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.8290888667106628,
+ "last_committed_score_gap": 9.878706623567268e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00011915135837625712,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.8290888667106628,
+ "last_raw_score_gap": 9.878706623567268e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10758209228515625,
+ "observability_min": 3.911645674037345e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "0232a07cd4f1758c624f42624fbaf384e395b7a65c1ea8315f05d7fc54346b41",
+ "raw_normalized_churn": 0.009009009009009009,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "3f2a5038575c27b467b38aa222f8bbfc752605dac4b8e082a61d28d49908c05e",
+ "committed_normalized_churn": 0.003861003861003861,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 258,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010094292520079762,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8186644911766052,
+ "last_committed_score_gap": 8.263839117716998e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00010094292520079762,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8186644911766052,
+ "last_raw_score_gap": 8.263839117716998e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1331717073917389,
+ "observability_min": 1.2420613870745001e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "3f2a5038575c27b467b38aa222f8bbfc752605dac4b8e082a61d28d49908c05e",
+ "raw_normalized_churn": 0.003861003861003861,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "7f8635af827856b76683e6e5b027f4b2e7deb70562236817eb343680b84f8090",
+ "committed_normalized_churn": 0.0014742014742014742,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 2032,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0572052815405186e-05,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.7579495906829834,
+ "last_committed_score_gap": 8.013083061086945e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 1.0572052815405186e-05,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.7579495906829834,
+ "last_raw_score_gap": 8.013083061086945e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11510322988033295,
+ "observability_min": 1.0786569415444092e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "7f8635af827856b76683e6e5b027f4b2e7deb70562236817eb343680b84f8090",
+ "raw_normalized_churn": 0.0014742014742014742,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ }
+ ],
+ "task_id": 653
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 76,
+ "committed_mask_sha256": "f338214e66d3c467527a81699762cc339554de626680376b1f3cf63d584e25e5",
+ "committed_normalized_churn": 0.010194500335345406,
+ "committed_xor_churn_total": 152,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 7379,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.2865422977247363e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.012167349457740784,
+ "last_committed_score_gap": 2.782115871013957e-09,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 2.2865422977247363e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.012167349457740784,
+ "last_raw_score_gap": 2.782115871013957e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03602820634841919,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "f338214e66d3c467527a81699762cc339554de626680376b1f3cf63d584e25e5",
+ "raw_normalized_churn": 0.010194500335345406,
+ "raw_xor_churn_total": 152,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 198,
+ "committed_mask_sha256": "609864373e80fd166e4eb8348b1ff247de8b3a06895f32b89d6d58b31ef79e61",
+ "committed_normalized_churn": 0.02481203007518797,
+ "committed_xor_churn_total": 396,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 7782,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 10,
+ "last_committed_cutoff_score": 2.524451758745272e-08,
+ "last_committed_mask_overlap": 370,
+ "last_committed_normalized_gap": 0.0027982464525848627,
+ "last_committed_score_gap": 7.064038243242976e-11,
+ "last_dwell_count": 370,
+ "last_raw_cutoff_score": 2.524451758745272e-08,
+ "last_raw_mask_overlap": 370,
+ "last_raw_normalized_gap": 0.0027982464525848627,
+ "last_raw_score_gap": 7.064038243242976e-11,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1209949254989624,
+ "observability_min": 1.1872909322363512e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "609864373e80fd166e4eb8348b1ff247de8b3a06895f32b89d6d58b31ef79e61",
+ "raw_normalized_churn": 0.02481203007518797,
+ "raw_xor_churn_total": 396,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 56,
+ "committed_mask_sha256": "75d3763571b17a1eca230a85b49d83e78d3ae4b7d8bb737d29723b49c791f91c",
+ "committed_normalized_churn": 0.009913258983890954,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 5593,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 1.4311235929653776e-07,
+ "last_committed_mask_overlap": 263,
+ "last_committed_normalized_gap": 0.0008833602187223732,
+ "last_committed_score_gap": 1.2641976354643703e-10,
+ "last_dwell_count": 263,
+ "last_raw_cutoff_score": 1.4311235929653776e-07,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.0008833602187223732,
+ "last_raw_score_gap": 1.2641976354643703e-10,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06945118308067322,
+ "observability_min": 1.8235160048618582e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "75d3763571b17a1eca230a85b49d83e78d3ae4b7d8bb737d29723b49c791f91c",
+ "raw_normalized_churn": 0.009913258983890954,
+ "raw_xor_churn_total": 112,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "2e3b56e690882cd8ee290b2ca741a9c6e2c8e0ec2289b4520b941800444a5701",
+ "committed_normalized_churn": 0.0031923383878691143,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 3747,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.354723048687447e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.45455414056777954,
+ "last_committed_score_gap": 1.5249032685460406e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.354723048687447e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.45455414056777954,
+ "last_raw_score_gap": 1.5249032685460406e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04441952332854271,
+ "observability_min": 1.3927939690461244e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "2e3b56e690882cd8ee290b2ca741a9c6e2c8e0ec2289b4520b941800444a5701",
+ "raw_normalized_churn": 0.0031923383878691143,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "f937915d86726a7c0cc4ec45780c79c725f5cb36c7af2d440baf24a583b246df",
+ "committed_normalized_churn": 0.002059202059202059,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 3877,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.443448109574092e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.03375288471579552,
+ "last_committed_score_gap": 2.8499073323473567e-08,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.443448109574092e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.03375288471579552,
+ "last_raw_score_gap": 2.8499073323473567e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04159999638795853,
+ "observability_min": 9.055372451882704e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "f937915d86726a7c0cc4ec45780c79c725f5cb36c7af2d440baf24a583b246df",
+ "raw_normalized_churn": 0.002059202059202059,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "eefdd0a08ce4261d5cb2f8be1b4fee1208ccfc19aca25c587054d2c5c2688d7b",
+ "committed_normalized_churn": 0.016780045351473923,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 2168,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 3.069589809001627e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.035877618938684464,
+ "last_committed_score_gap": 1.1012957656930666e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 3.069589809001627e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.035877618938684464,
+ "last_raw_score_gap": 1.1012957656930666e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04868088290095329,
+ "observability_min": 9.122011590534385e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "eefdd0a08ce4261d5cb2f8be1b4fee1208ccfc19aca25c587054d2c5c2688d7b",
+ "raw_normalized_churn": 0.016780045351473923,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "0383b39670acf37537b0f0c804c77b9e4d1d1377feeb34b344d325e659621195",
+ "committed_normalized_churn": 0.005952380952380952,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 1670,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5874207974775345e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.6309568285942078,
+ "last_committed_score_gap": 1.0015940006269375e-06,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.5874207974775345e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.6309568285942078,
+ "last_raw_score_gap": 1.0015940006269375e-06,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05510888621211052,
+ "observability_min": 2.051457244078847e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "0383b39670acf37537b0f0c804c77b9e4d1d1377feeb34b344d325e659621195",
+ "raw_normalized_churn": 0.005952380952380952,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "b779e77598901cb602df2e58e698a3c1d18c15248f41dde56aeb82aaa4920f96",
+ "committed_normalized_churn": 0.009966777408637873,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 894,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 4.4580770008906256e-07,
+ "last_committed_mask_overlap": 41,
+ "last_committed_normalized_gap": 0.1246996596455574,
+ "last_committed_score_gap": 5.559206783800619e-08,
+ "last_dwell_count": 41,
+ "last_raw_cutoff_score": 4.4580770008906256e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.1246996596455574,
+ "last_raw_score_gap": 5.559206783800619e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06010860949754715,
+ "observability_min": 1.2751618783113372e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "b779e77598901cb602df2e58e698a3c1d18c15248f41dde56aeb82aaa4920f96",
+ "raw_normalized_churn": 0.009966777408637873,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 56,
+ "committed_mask_sha256": "da707bd4da7f02a946e92784a18bff59b514971cf49de02eafda8761cbf5dd74",
+ "committed_normalized_churn": 0.031746031746031744,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 1708,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.0959406893107371e-07,
+ "last_committed_mask_overlap": 81,
+ "last_committed_normalized_gap": 0.0766579657793045,
+ "last_committed_score_gap": 8.401258355661412e-09,
+ "last_dwell_count": 81,
+ "last_raw_cutoff_score": 1.0959406893107371e-07,
+ "last_raw_mask_overlap": 81,
+ "last_raw_normalized_gap": 0.0766579657793045,
+ "last_raw_score_gap": 8.401258355661412e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04214879125356674,
+ "observability_min": 2.3579825381148112e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "da707bd4da7f02a946e92784a18bff59b514971cf49de02eafda8761cbf5dd74",
+ "raw_normalized_churn": 0.031746031746031744,
+ "raw_xor_churn_total": 112,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 21,
+ "committed_mask_sha256": "c49d2772eca45a8f1d7eee98696c2c6e6ee4b24176cafa701c1540c1156c1345",
+ "committed_normalized_churn": 0.03333333333333333,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 609,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.1722459021257237e-05,
+ "last_committed_mask_overlap": 28,
+ "last_committed_normalized_gap": 0.006909235846251249,
+ "last_committed_score_gap": 8.099323167698458e-08,
+ "last_dwell_count": 28,
+ "last_raw_cutoff_score": 1.1722459021257237e-05,
+ "last_raw_mask_overlap": 28,
+ "last_raw_normalized_gap": 0.006909235846251249,
+ "last_raw_score_gap": 8.099323167698458e-08,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.029558712616562843,
+ "observability_min": 2.8549530384225363e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "c49d2772eca45a8f1d7eee98696c2c6e6ee4b24176cafa701c1540c1156c1345",
+ "raw_normalized_churn": 0.03333333333333333,
+ "raw_xor_churn_total": 42,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 54,
+ "committed_mask_sha256": "b951568a90ee68a8c63117b021b9da9e4c334df274ab8fec2852ebcd47d272fa",
+ "committed_normalized_churn": 0.041474654377880185,
+ "committed_xor_churn_total": 108,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 1248,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 2.0839910064296419e-07,
+ "last_committed_mask_overlap": 58,
+ "last_committed_normalized_gap": 0.025838568806648254,
+ "last_committed_score_gap": 5.384734436120198e-09,
+ "last_dwell_count": 58,
+ "last_raw_cutoff_score": 2.0839910064296419e-07,
+ "last_raw_mask_overlap": 58,
+ "last_raw_normalized_gap": 0.025838568806648254,
+ "last_raw_score_gap": 5.384734436120198e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06064045429229736,
+ "observability_min": 1.9472479095838935e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b951568a90ee68a8c63117b021b9da9e4c334df274ab8fec2852ebcd47d272fa",
+ "raw_normalized_churn": 0.041474654377880185,
+ "raw_xor_churn_total": 108,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "7ddd7795d7cf95d72808b82b050231fc75d9a2c9d48afa406f6ef56de0104115",
+ "committed_normalized_churn": 0.023809523809523808,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1107,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 3.6468532016442623e-07,
+ "last_committed_mask_overlap": 49,
+ "last_committed_normalized_gap": 0.00525678601115942,
+ "last_committed_score_gap": 1.9170727227901807e-09,
+ "last_dwell_count": 49,
+ "last_raw_cutoff_score": 3.6468532016442623e-07,
+ "last_raw_mask_overlap": 49,
+ "last_raw_normalized_gap": 0.00525678601115942,
+ "last_raw_score_gap": 1.9170727227901807e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08561830222606659,
+ "observability_min": 3.51168232270993e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "7ddd7795d7cf95d72808b82b050231fc75d9a2c9d48afa406f6ef56de0104115",
+ "raw_normalized_churn": 0.023809523809523808,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "d30d3cb0d74b515be1b28961c5a8172619c119b148c92010271189e68d0e9ee0",
+ "committed_normalized_churn": 0.0010582010582010583,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 944,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6101412256830372e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7219364047050476,
+ "last_committed_score_gap": 1.1624195394688286e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.6101412256830372e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7219364047050476,
+ "last_raw_score_gap": 1.1624195394688286e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10442441701889038,
+ "observability_min": 2.2668448451668155e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "d30d3cb0d74b515be1b28961c5a8172619c119b148c92010271189e68d0e9ee0",
+ "raw_normalized_churn": 0.0010582010582010583,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "4a7790fefc76f0e6f6d7d9ad4f6ea3bc6ee165f049ffc5be850529216852fe2c",
+ "committed_normalized_churn": 0.005291005291005291,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 564,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3926241990702692e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.5159022212028503,
+ "last_committed_score_gap": 7.184578862506896e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.3926241990702692e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.5159022212028503,
+ "last_raw_score_gap": 7.184578862506896e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11745685338973999,
+ "observability_min": 3.0500512337994223e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "4a7790fefc76f0e6f6d7d9ad4f6ea3bc6ee165f049ffc5be850529216852fe2c",
+ "raw_normalized_churn": 0.005291005291005291,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "10acbc451009db8766c9bcf3c51b1ff7859f38ce55684fb5b70b0c044dcb83d0",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0004494785680435598,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6207436323165894,
+ "last_committed_score_gap": 0.0002790109720081091,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0004494785680435598,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6207436323165894,
+ "last_raw_score_gap": 0.0002790109720081091,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09103486686944962,
+ "observability_min": 6.833012378137937e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "10acbc451009db8766c9bcf3c51b1ff7859f38ce55684fb5b70b0c044dcb83d0",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "a269316861f02605fa2748786562caa4ffcceab9d92f9adaa8c48a1f7bc8d0ef",
+ "committed_normalized_churn": 0.015873015873015872,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 186,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0001413264690199867,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.8431950807571411,
+ "last_committed_score_gap": 0.00011916577932424843,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.0001413264690199867,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.8431950807571411,
+ "last_raw_score_gap": 0.00011916577932424843,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1093296930193901,
+ "observability_min": 3.311284757501198e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "a269316861f02605fa2748786562caa4ffcceab9d92f9adaa8c48a1f7bc8d0ef",
+ "raw_normalized_churn": 0.015873015873015872,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "e2a06d7cf6ce76941d364058db20c85cfb4bbc9811bfa50c4749d978791f9d2f",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0001786348148016259,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8493877649307251,
+ "last_committed_score_gap": 0.00015173022984527051,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0001786348148016259,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8493877649307251,
+ "last_raw_score_gap": 0.00015173022984527051,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.13516327738761902,
+ "observability_min": 1.4333909170716197e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e2a06d7cf6ce76941d364058db20c85cfb4bbc9811bfa50c4749d978791f9d2f",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "7cc5d1026095c754ae3cf9b3a259896de69b7acd8dc766e8b79f7f1d954481da",
+ "committed_normalized_churn": 0.0017316017316017316,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1153,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.229714356071781e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.38980382680892944,
+ "last_committed_score_gap": 2.818170287355315e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 7.229714356071781e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.38980382680892944,
+ "last_raw_score_gap": 2.818170287355315e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10248155891895294,
+ "observability_min": 1.5384129525841672e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "7cc5d1026095c754ae3cf9b3a259896de69b7acd8dc766e8b79f7f1d954481da",
+ "raw_normalized_churn": 0.0017316017316017316,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ }
+ ],
+ "task_id": 857
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 227,
+ "committed_mask_sha256": "5dd6a98e39e9ef27be405da0e6ae9bee1ce52ff6930aa295d7cebe230accb8c3",
+ "committed_normalized_churn": 0.009543830145049401,
+ "committed_xor_churn_total": 454,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 23558,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.6527555146694795e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.4295732080936432,
+ "last_committed_score_gap": 7.099794885334632e-08,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 1.6527555146694795e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.4295732080936432,
+ "last_raw_score_gap": 7.099794885334632e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.046593453735113144,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "5dd6a98e39e9ef27be405da0e6ae9bee1ce52ff6930aa295d7cebe230accb8c3",
+ "raw_normalized_churn": 0.009543830145049401,
+ "raw_xor_churn_total": 454,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 689,
+ "committed_mask_sha256": "8092e834b1bdf7bdc7767d45c3e0fdcec32804d723423949c55935d8a36fdf42",
+ "committed_normalized_churn": 0.027062058130400628,
+ "committed_xor_churn_total": 1378,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 24771,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 11,
+ "last_committed_cutoff_score": 4.463304836832549e-09,
+ "last_committed_mask_overlap": 369,
+ "last_committed_normalized_gap": 0.0059797209687530994,
+ "last_committed_score_gap": 2.6689317422778913e-11,
+ "last_dwell_count": 369,
+ "last_raw_cutoff_score": 4.463304836832549e-09,
+ "last_raw_mask_overlap": 369,
+ "last_raw_normalized_gap": 0.0059797209687530994,
+ "last_raw_score_gap": 2.6689317422778913e-11,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11097219586372375,
+ "observability_min": 1.8397919299140142e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "8092e834b1bdf7bdc7767d45c3e0fdcec32804d723423949c55935d8a36fdf42",
+ "raw_normalized_churn": 0.027062058130400628,
+ "raw_xor_churn_total": 1378,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 133,
+ "committed_mask_sha256": "ffee3392da966096eaa0c1e073212e959688ee0811866a5fb8f5c56648831d9c",
+ "committed_normalized_churn": 0.007379459579426289,
+ "committed_xor_churn_total": 266,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 17890,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 7.145158065213764e-08,
+ "last_committed_mask_overlap": 266,
+ "last_committed_normalized_gap": 0.2061581015586853,
+ "last_committed_score_gap": 1.4730321851175177e-08,
+ "last_dwell_count": 266,
+ "last_raw_cutoff_score": 7.145158065213764e-08,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.2061581015586853,
+ "last_raw_score_gap": 1.4730321851175177e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06045669689774513,
+ "observability_min": 7.113126199165265e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "ffee3392da966096eaa0c1e073212e959688ee0811866a5fb8f5c56648831d9c",
+ "raw_normalized_churn": 0.007379459579426289,
+ "raw_xor_churn_total": 266,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 49,
+ "committed_mask_sha256": "6914b1e8d5f43f9be094d48a43e79416d21f5d4c90a113e5e41d372a8ae32f90",
+ "committed_normalized_churn": 0.004085716668056366,
+ "committed_xor_churn_total": 98,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 11944,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.822047347057378e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.6060513854026794,
+ "last_committed_score_gap": 2.3163570403994527e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.822047347057378e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.6060513854026794,
+ "last_raw_score_gap": 2.3163570403994527e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04523974657058716,
+ "observability_min": 6.416472686510133e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "6914b1e8d5f43f9be094d48a43e79416d21f5d4c90a113e5e41d372a8ae32f90",
+ "raw_normalized_churn": 0.004085716668056366,
+ "raw_xor_churn_total": 98,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 35,
+ "committed_mask_sha256": "d544f4addffc25775980ea1db1f763f9105242ec0468623f188171a0e60352fd",
+ "committed_normalized_churn": 0.0028237192416296895,
+ "committed_xor_churn_total": 70,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 12360,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.473175240742421e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.43188348412513733,
+ "last_committed_score_gap": 1.5000070163750934e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 3.473175240742421e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.43188348412513733,
+ "last_raw_score_gap": 1.5000070163750934e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03726198896765709,
+ "observability_min": 1.2711495189776656e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "d544f4addffc25775980ea1db1f763f9105242ec0468623f188171a0e60352fd",
+ "raw_normalized_churn": 0.0028237192416296895,
+ "raw_xor_churn_total": 70,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 118,
+ "committed_mask_sha256": "75c0bf9e9d8c11ac2d19784766fa322fd0a2f3e904673c0f701e62310712a6bf",
+ "committed_normalized_churn": 0.016773276474769012,
+ "committed_xor_churn_total": 236,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 6917,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.335164654392429e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.16372159123420715,
+ "last_committed_score_gap": 2.185952752142839e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 1.335164654392429e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.16372159123420715,
+ "last_raw_score_gap": 2.185952752142839e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04969267174601555,
+ "observability_min": 8.439362986223387e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "75c0bf9e9d8c11ac2d19784766fa322fd0a2f3e904673c0f701e62310712a6bf",
+ "raw_normalized_churn": 0.016773276474769012,
+ "raw_xor_churn_total": 236,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "b7a66281ac28c250da6b65a2cb1beeebe878675a0de7f5b4ee440109f5a1d551",
+ "committed_normalized_churn": 0.005597014925373134,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 5330,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.429503981853486e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.24905706942081451,
+ "last_committed_score_gap": 3.5602806747192517e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.429503981853486e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.24905706942081451,
+ "last_raw_score_gap": 3.5602806747192517e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05241208150982857,
+ "observability_min": 1.167436067817107e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "b7a66281ac28c250da6b65a2cb1beeebe878675a0de7f5b4ee440109f5a1d551",
+ "raw_normalized_churn": 0.005597014925373134,
+ "raw_xor_churn_total": 60,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 38,
+ "committed_mask_sha256": "5013396448e9418b20ee179ddc1c43fc828adc58598d99347367b64e860d4dab",
+ "committed_normalized_churn": 0.013189864630336688,
+ "committed_xor_churn_total": 76,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 2843,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.1771303693185473e-07,
+ "last_committed_mask_overlap": 42,
+ "last_committed_normalized_gap": 0.13185179233551025,
+ "last_committed_score_gap": 2.870585547043447e-08,
+ "last_dwell_count": 42,
+ "last_raw_cutoff_score": 2.1771303693185473e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.13185179233551025,
+ "last_raw_score_gap": 2.870585547043447e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06496667116880417,
+ "observability_min": 1.205099238177354e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "5013396448e9418b20ee179ddc1c43fc828adc58598d99347367b64e860d4dab",
+ "raw_normalized_churn": 0.013189864630336688,
+ "raw_xor_churn_total": 76,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 116,
+ "committed_mask_sha256": "d4e0cac315a9726d812d4f8196f5639120c72d2045a7a606909c0216ac43062b",
+ "committed_normalized_churn": 0.02061122956645345,
+ "committed_xor_churn_total": 232,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 5512,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 8.507348780995017e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": 0.15360289812088013,
+ "last_committed_score_gap": 1.3067534609945142e-08,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 8.507348780995017e-08,
+ "last_raw_mask_overlap": 83,
+ "last_raw_normalized_gap": 0.15360289812088013,
+ "last_raw_score_gap": 1.3067534609945142e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04889337345957756,
+ "observability_min": 4.720347135389602e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "d4e0cac315a9726d812d4f8196f5639120c72d2045a7a606909c0216ac43062b",
+ "raw_normalized_churn": 0.02061122956645345,
+ "raw_xor_churn_total": 232,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 49,
+ "committed_mask_sha256": "38cec47373b6d0b759a213f02d091e52a9b04e4613f53b065bcc39a254aa83b3",
+ "committed_normalized_churn": 0.02437810945273632,
+ "committed_xor_churn_total": 98,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1961,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.798181963560637e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.04046814143657684,
+ "last_committed_score_gap": 3.9651422412134707e-07,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 9.798181963560637e-06,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.04046814143657684,
+ "last_raw_score_gap": 3.9651422412134707e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.058503542095422745,
+ "observability_min": 1.8460643502749008e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "38cec47373b6d0b759a213f02d091e52a9b04e4613f53b065bcc39a254aa83b3",
+ "raw_normalized_churn": 0.02437810945273632,
+ "raw_xor_churn_total": 98,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 121,
+ "committed_mask_sha256": "b1327d3f99e1b2532a163feb617ffaec924cea95966e56d5f72fc2b911ee7f22",
+ "committed_normalized_churn": 0.029128550794415023,
+ "committed_xor_churn_total": 242,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 4033,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.214988949679537e-08,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.06385508179664612,
+ "last_committed_score_gap": 5.8842388739321905e-09,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 9.214988949679537e-08,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.06385508179664612,
+ "last_raw_score_gap": 5.8842388739321905e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03402160853147507,
+ "observability_min": 4.621750449018691e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b1327d3f99e1b2532a163feb617ffaec924cea95966e56d5f72fc2b911ee7f22",
+ "raw_normalized_churn": 0.029128550794415023,
+ "raw_xor_churn_total": 242,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 82,
+ "committed_mask_sha256": "d938ae2298c17b4cc74253a412ae90320fa47a81a14461005e3abe039d826dd1",
+ "committed_normalized_churn": 0.022664455500276397,
+ "committed_xor_churn_total": 164,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 3536,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 8.888634539516715e-08,
+ "last_committed_mask_overlap": 53,
+ "last_committed_normalized_gap": 0.06067400425672531,
+ "last_committed_score_gap": 5.3930904186927364e-09,
+ "last_dwell_count": 53,
+ "last_raw_cutoff_score": 8.888634539516715e-08,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.06067400425672531,
+ "last_raw_score_gap": 5.3930904186927364e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10072711110115051,
+ "observability_min": 1.7135743490825917e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d938ae2298c17b4cc74253a412ae90320fa47a81a14461005e3abe039d826dd1",
+ "raw_normalized_churn": 0.022664455500276397,
+ "raw_xor_churn_total": 164,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "04cbfb094becc7e8586dd746f2b2a938e63f5a43da9e23730a4c2964c5a525e9",
+ "committed_normalized_churn": 0.0003316749585406302,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 3014,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3640916222357191e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7135615944862366,
+ "last_committed_score_gap": 9.73363421508111e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.3640916222357191e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7135615944862366,
+ "last_raw_score_gap": 9.73363421508111e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11016922444105148,
+ "observability_min": 4.0385290667188656e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "04cbfb094becc7e8586dd746f2b2a938e63f5a43da9e23730a4c2964c5a525e9",
+ "raw_normalized_churn": 0.0003316749585406302,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 16,
+ "committed_mask_sha256": "3389cd0c8b7aace6b1fb306ac53fbbcbf09b510941b32d6dd973dbbf0d6cdd01",
+ "committed_normalized_churn": 0.008844665561083471,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 1793,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.3956764582399046e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.22807565331459045,
+ "last_committed_score_gap": 7.744711183477193e-07,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 3.3956764582399046e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.22807565331459045,
+ "last_raw_score_gap": 7.744711183477193e-07,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11778046935796738,
+ "observability_min": 6.717608691531041e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "3389cd0c8b7aace6b1fb306ac53fbbcbf09b510941b32d6dd973dbbf0d6cdd01",
+ "raw_normalized_churn": 0.008844665561083471,
+ "raw_xor_churn_total": 32,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "b9fbde646f962cdb6f1e129816f3b2d303d43c96a4da43c49292d3c7d101ee25",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 469,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0008381258230656385,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.49391329288482666,
+ "last_committed_score_gap": 0.00041396147571504116,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0008381258230656385,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.49391329288482666,
+ "last_raw_score_gap": 0.00041396147571504116,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09769230335950851,
+ "observability_min": 2.6413353282350727e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "b9fbde646f962cdb6f1e129816f3b2d303d43c96a4da43c49292d3c7d101ee25",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "d70b54079d803d694bffb9ec59632d2feefda9839071f9a2211203b8a887abb5",
+ "committed_normalized_churn": 0.004975124378109453,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 600,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00012121209147153422,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.7583497166633606,
+ "last_committed_score_gap": 9.192115248879418e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00012121209147153422,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.7583497166633606,
+ "last_raw_score_gap": 9.192115248879418e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10698218643665314,
+ "observability_min": 1.9827725239451865e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "d70b54079d803d694bffb9ec59632d2feefda9839071f9a2211203b8a887abb5",
+ "raw_normalized_churn": 0.004975124378109453,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "a5097917c833efce49a01eec1ba576b21ee309a8dce0cf77bf754a3d387a2d7f",
+ "committed_normalized_churn": 0.0042643923240938165,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 467,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.816686072852463e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6911746263504028,
+ "last_committed_score_gap": 4.711520523414947e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 6.816686072852463e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6911746263504028,
+ "last_raw_score_gap": 4.711520523414947e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12661239504814148,
+ "observability_min": 1.4642231427330898e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "a5097917c833efce49a01eec1ba576b21ee309a8dce0cf77bf754a3d387a2d7f",
+ "raw_normalized_churn": 0.0042643923240938165,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "91de389575c32215b830f99a882373c3e714f4b2b4cfd1edb69d0a77b755097d",
+ "committed_normalized_churn": 0.0013568521031207597,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 3680,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.518075340660289e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.8346657752990723,
+ "last_committed_score_gap": 4.60574847238604e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.518075340660289e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.8346657752990723,
+ "last_raw_score_gap": 4.60574847238604e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10997878015041351,
+ "observability_min": 1.3157067657587618e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "91de389575c32215b830f99a882373c3e714f4b2b4cfd1edb69d0a77b755097d",
+ "raw_normalized_churn": 0.0013568521031207597,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ }
+ ],
+ "task_id": 884
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 83,
+ "committed_mask_sha256": "48841df2be2a6dca12f98f9d6a294879238ce9aa5802c6547b839a32c28f6505",
+ "committed_normalized_churn": 0.00835010060362173,
+ "committed_xor_churn_total": 166,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 9857,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.211978570836436e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.15140695869922638,
+ "last_committed_score_gap": 1.83501995820734e-08,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 1.211978570836436e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.15140695869922638,
+ "last_raw_score_gap": 1.83501995820734e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.042203038930892944,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "48841df2be2a6dca12f98f9d6a294879238ce9aa5802c6547b839a32c28f6505",
+ "raw_normalized_churn": 0.00835010060362173,
+ "raw_xor_churn_total": 166,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 202,
+ "committed_mask_sha256": "22c98a0bc70ab099e4195e70f34e704301e8edf5bb494d75b404081c7f9f6252",
+ "committed_normalized_churn": 0.01898496240601504,
+ "committed_xor_churn_total": 404,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 10438,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 9.738063688757848e-09,
+ "last_committed_mask_overlap": 376,
+ "last_committed_normalized_gap": 0.004685753490775824,
+ "last_committed_score_gap": 4.5630166312093934e-11,
+ "last_dwell_count": 376,
+ "last_raw_cutoff_score": 9.738063688757848e-09,
+ "last_raw_mask_overlap": 376,
+ "last_raw_normalized_gap": 0.004685753490775824,
+ "last_raw_score_gap": 4.5630166312093934e-11,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10222873836755753,
+ "observability_min": 3.293435801854372e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "22c98a0bc70ab099e4195e70f34e704301e8edf5bb494d75b404081c7f9f6252",
+ "raw_normalized_churn": 0.01898496240601504,
+ "raw_xor_churn_total": 404,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 69,
+ "committed_mask_sha256": "4aa69155ea808d2e0e30722dcf80a504027faf1043642879fe2bdb049dfd6e06",
+ "committed_normalized_churn": 0.009160913436006373,
+ "committed_xor_churn_total": 138,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 7463,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.466815077350475e-08,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": 0.06151404604315758,
+ "last_committed_score_gap": 4.593140090491943e-09,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 7.466815077350475e-08,
+ "last_raw_mask_overlap": 268,
+ "last_raw_normalized_gap": 0.06151404604315758,
+ "last_raw_score_gap": 4.593140090491943e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06293516606092453,
+ "observability_min": 8.079048541276279e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "4aa69155ea808d2e0e30722dcf80a504027faf1043642879fe2bdb049dfd6e06",
+ "raw_normalized_churn": 0.009160913436006373,
+ "raw_xor_churn_total": 138,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "eca59b8a4677361d6099a210f09e4244c10cbbc08df62850e32cc20b23bffb8b",
+ "committed_normalized_churn": 0.003391859537110934,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 4995,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.9438583624141756e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.3744824230670929,
+ "last_committed_score_gap": 1.102423198062752e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.9438583624141756e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.3744824230670929,
+ "last_raw_score_gap": 1.102423198062752e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04532354697585106,
+ "observability_min": 1.1573348501769942e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "eca59b8a4677361d6099a210f09e4244c10cbbc08df62850e32cc20b23bffb8b",
+ "raw_normalized_churn": 0.003391859537110934,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "d51f243e1faa709c8a2e908b84684589bda5d9fd39796e5336d16ca1e98ff647",
+ "committed_normalized_churn": 0.0015444015444015444,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 5172,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0093802984556532e-06,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.1082344800233841,
+ "last_committed_score_gap": 1.0924975413217908e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 1.0093802984556532e-06,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.1082344800233841,
+ "last_raw_score_gap": 1.0924975413217908e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0407431498169899,
+ "observability_min": 3.006785931347622e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "d51f243e1faa709c8a2e908b84684589bda5d9fd39796e5336d16ca1e98ff647",
+ "raw_normalized_churn": 0.0015444015444015444,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 72,
+ "committed_mask_sha256": "8f07075060bc9c57b8ec81f4c32c8ba8194ae58152761663c7c6b7d77796b627",
+ "committed_normalized_churn": 0.024489795918367346,
+ "committed_xor_churn_total": 144,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 2868,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 1.7879848712709645e-07,
+ "last_committed_mask_overlap": 101,
+ "last_committed_normalized_gap": 0.051562391221523285,
+ "last_committed_score_gap": 9.219277785632585e-09,
+ "last_dwell_count": 101,
+ "last_raw_cutoff_score": 1.7879848712709645e-07,
+ "last_raw_mask_overlap": 101,
+ "last_raw_normalized_gap": 0.051562391221523285,
+ "last_raw_score_gap": 9.219277785632585e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.049021489918231964,
+ "observability_min": 2.8513584382494628e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "8f07075060bc9c57b8ec81f4c32c8ba8194ae58152761663c7c6b7d77796b627",
+ "raw_normalized_churn": 0.024489795918367346,
+ "raw_xor_churn_total": 144,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "8dcf133f8138d28f3bdd0165ad3a5fd22aaa0ce2bf343b04e4f3348c53d5493d",
+ "committed_normalized_churn": 0.00625,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2226,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1610768524406012e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.0003165591915603727,
+ "last_committed_score_gap": 3.675495463539846e-10,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.1610768524406012e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.0003165591915603727,
+ "last_raw_score_gap": 3.675495463539846e-10,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05240270495414734,
+ "observability_min": 9.809006229488659e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "8dcf133f8138d28f3bdd0165ad3a5fd22aaa0ce2bf343b04e4f3348c53d5493d",
+ "raw_normalized_churn": 0.00625,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "eebd41b0f4805a574576f6acb0d383024403a8a98cde85f83ac79645d0992c08",
+ "committed_normalized_churn": 0.006644518272425249,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.123721453197504e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.5573578476905823,
+ "last_committed_score_gap": 2.2983884662153287e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 4.123721453197504e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.5573578476905823,
+ "last_raw_score_gap": 2.2983884662153287e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05158327892422676,
+ "observability_min": 2.5618396648496855e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "eebd41b0f4805a574576f6acb0d383024403a8a98cde85f83ac79645d0992c08",
+ "raw_normalized_churn": 0.006644518272425249,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 67,
+ "committed_mask_sha256": "2219c25429f39ecb0c70862fe0aa2a7c390f4ac243ff4ef3a9058d3bee884fdb",
+ "committed_normalized_churn": 0.02848639455782313,
+ "committed_xor_churn_total": 134,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2285,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.4372260181971797e-07,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": 0.43447431921958923,
+ "last_committed_score_gap": 6.244378170094933e-08,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 1.4372260181971797e-07,
+ "last_raw_mask_overlap": 83,
+ "last_raw_normalized_gap": 0.43447431921958923,
+ "last_raw_score_gap": 6.244378170094933e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03898216411471367,
+ "observability_min": 3.527420062710007e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "2219c25429f39ecb0c70862fe0aa2a7c390f4ac243ff4ef3a9058d3bee884fdb",
+ "raw_normalized_churn": 0.02848639455782313,
+ "raw_xor_churn_total": 134,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "6f39b11428dd6be1331db16488fc9a20d0c1912abfdbb11a06d8701e9983ce89",
+ "committed_normalized_churn": 0.023809523809523808,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 820,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 6.87737156113144e-06,
+ "last_committed_mask_overlap": 28,
+ "last_committed_normalized_gap": 0.1403072029352188,
+ "last_committed_score_gap": 9.649447747506201e-07,
+ "last_dwell_count": 28,
+ "last_raw_cutoff_score": 6.87737156113144e-06,
+ "last_raw_mask_overlap": 28,
+ "last_raw_normalized_gap": 0.1403072029352188,
+ "last_raw_score_gap": 9.649447747506201e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03575362637639046,
+ "observability_min": 4.0288523450726643e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "6f39b11428dd6be1331db16488fc9a20d0c1912abfdbb11a06d8701e9983ce89",
+ "raw_normalized_churn": 0.023809523809523808,
+ "raw_xor_churn_total": 40,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 58,
+ "committed_mask_sha256": "d41d6704ddd44b7c8cb74ded5f83d658b5f800c7b7be6379c98352e2a8d55160",
+ "committed_normalized_churn": 0.03341013824884793,
+ "committed_xor_churn_total": 116,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 1678,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.350459169520036e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.06446695327758789,
+ "last_committed_score_gap": 1.5152693322306732e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.350459169520036e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.06446695327758789,
+ "last_raw_score_gap": 1.5152693322306732e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.048633258789777756,
+ "observability_min": 7.997503814749507e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "d41d6704ddd44b7c8cb74ded5f83d658b5f800c7b7be6379c98352e2a8d55160",
+ "raw_normalized_churn": 0.03341013824884793,
+ "raw_xor_churn_total": 116,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "ca50f20b443ac5497b35bee0b4deaa1f50beaef61399594349dc37a81cd7393c",
+ "committed_normalized_churn": 0.022486772486772486,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1478,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7343029412586475e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.16774122416973114,
+ "last_committed_score_gap": 2.9091410169712617e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.7343029412586475e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.16774122416973114,
+ "last_raw_score_gap": 2.9091410169712617e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08946901559829712,
+ "observability_min": 1.2036198882015015e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "ca50f20b443ac5497b35bee0b4deaa1f50beaef61399594349dc37a81cd7393c",
+ "raw_normalized_churn": 0.022486772486772486,
+ "raw_xor_churn_total": 68,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "b4455d4b35211c1106eb8f2c66e24f98dd7ae18dd005659d2aa17f602d7e4edd",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1260,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3266972928249743e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.8433861136436462,
+ "last_committed_score_gap": 1.1189180440851487e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.3266972928249743e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.8433861136436462,
+ "last_raw_score_gap": 1.1189180440851487e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10675735026597977,
+ "observability_min": 4.9691934123075043e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "b4455d4b35211c1106eb8f2c66e24f98dd7ae18dd005659d2aa17f602d7e4edd",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "b618212bce0b1b89788d18ce3016a89f5dd997e4aded3e012d334470b2287eb2",
+ "committed_normalized_churn": 0.003968253968253968,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 753,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.3867807612987235e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8487284779548645,
+ "last_committed_score_gap": 2.025728826993145e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.3867807612987235e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8487284779548645,
+ "last_raw_score_gap": 2.025728826993145e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11336156725883484,
+ "observability_min": 5.881473441604612e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "b618212bce0b1b89788d18ce3016a89f5dd997e4aded3e012d334470b2287eb2",
+ "raw_normalized_churn": 0.003968253968253968,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0006465233163908124,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8725898861885071,
+ "last_committed_score_gap": 0.0005641496973112226,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0006465233163908124,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8725898861885071,
+ "last_raw_score_gap": 0.0005641496973112226,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09054111689329147,
+ "observability_min": 6.71471553914671e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "c5a3b5277ce95b1e5b1bbc7dab664aa9dd0f5e34a8f6c3311fa4f5edb03c6a35",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 250,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00017063748964574188,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.9510131478309631,
+ "last_committed_score_gap": 0.00016227849118877202,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00017063748964574188,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.9510131478309631,
+ "last_raw_score_gap": 0.00016227849118877202,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10119711607694626,
+ "observability_min": 6.24067837406983e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "c5a3b5277ce95b1e5b1bbc7dab664aa9dd0f5e34a8f6c3311fa4f5edb03c6a35",
+ "raw_normalized_churn": 0.007936507936507936,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010405352804809809,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8294221758842468,
+ "last_committed_score_gap": 8.630430238554254e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00010405352804809809,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8294221758842468,
+ "last_raw_score_gap": 8.630430238554254e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11902071535587311,
+ "observability_min": 2.1947069939187713e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "80cffb767529b79bc41aa8e09a6b86e25455a322d0aaceb10080814c35a279b6",
+ "committed_normalized_churn": 0.003896103896103896,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1534,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.653601419908227e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.4832952618598938,
+ "last_committed_score_gap": 2.732358780122013e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.653601419908227e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.4832952618598938,
+ "last_raw_score_gap": 2.732358780122013e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10638348758220673,
+ "observability_min": 1.1320638648726344e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "80cffb767529b79bc41aa8e09a6b86e25455a322d0aaceb10080814c35a279b6",
+ "raw_normalized_churn": 0.003896103896103896,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ }
+ ],
+ "task_id": 878
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 473,
+ "committed_mask_sha256": "e9fde5f00c12b2957abe729e7f7b7b21379c0b2ed10eaaa9a50be4c7473d9f31",
+ "committed_normalized_churn": 0.010170949360283841,
+ "committed_xor_churn_total": 946,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 46032,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 1.2073556376890338e-07,
+ "last_committed_mask_overlap": 351,
+ "last_committed_normalized_gap": 0.17948301136493683,
+ "last_committed_score_gap": 2.1669983141237026e-08,
+ "last_dwell_count": 351,
+ "last_raw_cutoff_score": 1.2073556376890338e-07,
+ "last_raw_mask_overlap": 351,
+ "last_raw_normalized_gap": 0.17948301136493683,
+ "last_raw_score_gap": 2.1669983141237026e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0513690821826458,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "e9fde5f00c12b2957abe729e7f7b7b21379c0b2ed10eaaa9a50be4c7473d9f31",
+ "raw_normalized_churn": 0.010170949360283841,
+ "raw_xor_churn_total": 946,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 1457,
+ "committed_mask_sha256": "4fc5acadffa5b41c124d68572a3b26e15f8008e770530085eac59dd3cb0f0728",
+ "committed_normalized_churn": 0.02926878264363198,
+ "committed_xor_churn_total": 2914,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 48323,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 11,
+ "last_committed_cutoff_score": 3.626522415700606e-09,
+ "last_committed_mask_overlap": 369,
+ "last_committed_normalized_gap": 0.06352775543928146,
+ "last_committed_score_gap": 2.303848223306204e-10,
+ "last_dwell_count": 369,
+ "last_raw_cutoff_score": 3.626522415700606e-09,
+ "last_raw_mask_overlap": 369,
+ "last_raw_normalized_gap": 0.06352775543928146,
+ "last_raw_score_gap": 2.303848223306204e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11568023264408112,
+ "observability_min": 4.056299740540226e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "4fc5acadffa5b41c124d68572a3b26e15f8008e770530085eac59dd3cb0f0728",
+ "raw_normalized_churn": 0.02926878264363198,
+ "raw_xor_churn_total": 2914,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 388,
+ "committed_mask_sha256": "167778ccdfb5e071bd7e918aacad80b7335dc7b6fcec88b2727806a4635b69b5",
+ "committed_normalized_churn": 0.01101052810806209,
+ "committed_xor_churn_total": 776,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 34851,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 5.94401647902032e-08,
+ "last_committed_mask_overlap": 266,
+ "last_committed_normalized_gap": 0.0255411546677351,
+ "last_committed_score_gap": 1.5181704782207817e-09,
+ "last_dwell_count": 266,
+ "last_raw_cutoff_score": 5.94401647902032e-08,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.0255411546677351,
+ "last_raw_score_gap": 1.5181704782207817e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07889769971370697,
+ "observability_min": 1.2387896264343112e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "167778ccdfb5e071bd7e918aacad80b7335dc7b6fcec88b2727806a4635b69b5",
+ "raw_normalized_churn": 0.01101052810806209,
+ "raw_xor_churn_total": 776,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 95,
+ "committed_mask_sha256": "77ba507372d7a02eed1b09a0a8054e307f079dad4e6cedc00ace8d24e6e76606",
+ "committed_normalized_churn": 0.004051345473154506,
+ "committed_xor_churn_total": 190,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 23354,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.0061805773584638e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.7073199152946472,
+ "last_committed_score_gap": 2.126331310137175e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.0061805773584638e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.7073199152946472,
+ "last_raw_score_gap": 2.126331310137175e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04736001417040825,
+ "observability_min": 1.0049261867095538e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "77ba507372d7a02eed1b09a0a8054e307f079dad4e6cedc00ace8d24e6e76606",
+ "raw_normalized_churn": 0.004051345473154506,
+ "raw_xor_churn_total": 190,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 60,
+ "committed_mask_sha256": "fb2fd36be5df154412c8640bd03109e02a7825a541239cee164249890348ee91",
+ "committed_normalized_churn": 0.0024757582009490406,
+ "committed_xor_churn_total": 120,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 24175,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.147004233345797e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.5147420763969421,
+ "last_committed_score_gap": 2.134637639983339e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 4.147004233345797e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.5147420763969421,
+ "last_raw_score_gap": 2.134637639983339e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05423837527632713,
+ "observability_min": 1.6675540948085654e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "fb2fd36be5df154412c8640bd03109e02a7825a541239cee164249890348ee91",
+ "raw_normalized_churn": 0.0024757582009490406,
+ "raw_xor_churn_total": 120,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 252,
+ "committed_mask_sha256": "4cde75d4cd581d47043867f3afdefa9bc74f0420e0c5ea2e2ee1ae153f06438f",
+ "committed_normalized_churn": 0.0183206106870229,
+ "committed_xor_churn_total": 504,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 13503,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.1779684427892789e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.12833945453166962,
+ "last_committed_score_gap": 1.511798330966485e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 1.1779684427892789e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.12833945453166962,
+ "last_raw_score_gap": 1.511798330966485e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.046866655349731445,
+ "observability_min": 6.375024952376407e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "4cde75d4cd581d47043867f3afdefa9bc74f0420e0c5ea2e2ee1ae153f06438f",
+ "raw_normalized_churn": 0.0183206106870229,
+ "raw_xor_churn_total": 504,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 56,
+ "committed_mask_sha256": "e4255253255b506e5c36909760a3b8d4ec881f030195ac37a5d230ec91b9a17b",
+ "committed_normalized_churn": 0.0053435114503816794,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 10424,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.066944489342859e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.5655902028083801,
+ "last_committed_score_gap": 1.1690435712807812e-06,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 2.066944489342859e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.5655902028083801,
+ "last_raw_score_gap": 1.1690435712807812e-06,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05994913727045059,
+ "observability_min": 2.922856481291092e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "e4255253255b506e5c36909760a3b8d4ec881f030195ac37a5d230ec91b9a17b",
+ "raw_normalized_churn": 0.0053435114503816794,
+ "raw_xor_churn_total": 112,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 69,
+ "committed_mask_sha256": "75463b19fd1d2272b9bc00a421e163f81e634f4878c2ec7786ba23c14a7a1d0e",
+ "committed_normalized_churn": 0.012249245517486242,
+ "committed_xor_churn_total": 138,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 5564,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.076959617625107e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.18047979474067688,
+ "last_committed_score_gap": 3.7484923609554244e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 2.076959617625107e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.18047979474067688,
+ "last_raw_score_gap": 3.7484923609554244e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06505274027585983,
+ "observability_min": 4.3848194763995707e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "75463b19fd1d2272b9bc00a421e163f81e634f4878c2ec7786ba23c14a7a1d0e",
+ "raw_normalized_churn": 0.012249245517486242,
+ "raw_xor_churn_total": 138,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 232,
+ "committed_mask_sha256": "4dbd8fcaca0bdb254c184e75b1d425cfb78dc9809dd79a95194ad90298ea5d5f",
+ "committed_normalized_churn": 0.021083242457288258,
+ "committed_xor_churn_total": 464,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 10772,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.953355828429267e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": 0.25040027499198914,
+ "last_committed_score_gap": 2.4923231478624075e-08,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 9.953355828429267e-08,
+ "last_raw_mask_overlap": 83,
+ "last_raw_normalized_gap": 0.25040027499198914,
+ "last_raw_score_gap": 2.4923231478624075e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03230898082256317,
+ "observability_min": 1.7931074580701534e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "4dbd8fcaca0bdb254c184e75b1d425cfb78dc9809dd79a95194ad90298ea5d5f",
+ "raw_normalized_churn": 0.021083242457288258,
+ "raw_xor_churn_total": 464,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 70,
+ "committed_mask_sha256": "b8537d0ecbb53dcc71c2568f93ce380f9ed178b7a6fa84e8fd2444b62d63c33c",
+ "committed_normalized_churn": 0.017811704834605598,
+ "committed_xor_churn_total": 140,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 3860,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3869677786715329e-05,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.4408794343471527,
+ "last_committed_score_gap": 6.114855750638526e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 1.3869677786715329e-05,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.4408794343471527,
+ "last_raw_score_gap": 6.114855750638526e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05186467990279198,
+ "observability_min": 5.218615797275561e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "b8537d0ecbb53dcc71c2568f93ce380f9ed178b7a6fa84e8fd2444b62d63c33c",
+ "raw_normalized_churn": 0.017811704834605598,
+ "raw_xor_churn_total": 140,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 188,
+ "committed_mask_sha256": "ebed63c9e506f9d20a135e5f36440e57fc2a4a1ab65080c6cdaf55cc91dfd52e",
+ "committed_normalized_churn": 0.023147008126077322,
+ "committed_xor_churn_total": 376,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 7934,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.343581684272067e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": 0.2530236542224884,
+ "last_committed_score_gap": 5.9298159271747863e-08,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 2.343581684272067e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.2530236542224884,
+ "last_raw_score_gap": 5.9298159271747863e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03419528529047966,
+ "observability_min": 7.495158271808577e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "ebed63c9e506f9d20a135e5f36440e57fc2a4a1ab65080c6cdaf55cc91dfd52e",
+ "raw_normalized_churn": 0.023147008126077322,
+ "raw_xor_churn_total": 376,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 116,
+ "committed_mask_sha256": "f66fcc9f10c7ff269fda1a29f507fa2751e4d1d568ad7764bee941a96e28dc17",
+ "committed_normalized_churn": 0.016398077466779758,
+ "committed_xor_churn_total": 232,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 6958,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7291866072355333e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.6240001320838928,
+ "last_committed_score_gap": 1.0790126481197149e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.7291866072355333e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.6240001320838928,
+ "last_raw_score_gap": 1.0790126481197149e-07,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11073438823223114,
+ "observability_min": 2.730446801990638e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "f66fcc9f10c7ff269fda1a29f507fa2751e4d1d568ad7764bee941a96e28dc17",
+ "raw_normalized_churn": 0.016398077466779758,
+ "raw_xor_churn_total": 232,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "a0fb63506f0be26dfb3fdf2860d6e8da7d59efbca4f6bc802b963018bb8f75d7",
+ "committed_normalized_churn": 0.0008481764206955047,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 5890,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.154613402031828e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.4440990388393402,
+ "last_committed_score_gap": 2.7332578156347154e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 6.154613402031828e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.4440990388393402,
+ "last_raw_score_gap": 2.7332578156347154e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11090283840894699,
+ "observability_min": 1.1777116171174384e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "a0fb63506f0be26dfb3fdf2860d6e8da7d59efbca4f6bc802b963018bb8f75d7",
+ "raw_normalized_churn": 0.0008481764206955047,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 36,
+ "committed_mask_sha256": "4bc4826fad0fc5af118a75b6c4cdce179f040f1763092cc4850c5e5f74814a4e",
+ "committed_normalized_churn": 0.010178117048346057,
+ "committed_xor_churn_total": 72,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 3501,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 5.288204647513339e-06,
+ "last_committed_mask_overlap": 26,
+ "last_committed_normalized_gap": 0.0013223967980593443,
+ "last_committed_score_gap": 6.993104761932045e-09,
+ "last_dwell_count": 26,
+ "last_raw_cutoff_score": 5.288204647513339e-06,
+ "last_raw_mask_overlap": 26,
+ "last_raw_normalized_gap": 0.0013223967980593443,
+ "last_raw_score_gap": 6.993104761932045e-09,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11733391135931015,
+ "observability_min": 2.5785514168319423e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "4bc4826fad0fc5af118a75b6c4cdce179f040f1763092cc4850c5e5f74814a4e",
+ "raw_normalized_churn": 0.010178117048346057,
+ "raw_xor_churn_total": 72,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "e50679cd7f0467ce5de5bbef94a9972a9287baab69d7bf7bde985a57229417df",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 917,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0003992746351286769,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7051072120666504,
+ "last_committed_score_gap": 0.00028153142193332314,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0003992746351286769,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7051072120666504,
+ "last_raw_score_gap": 0.00028153142193332314,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0990634560585022,
+ "observability_min": 2.3625888800893335e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e50679cd7f0467ce5de5bbef94a9972a9287baab69d7bf7bde985a57229417df",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "1586350a614d988383bae852ae5ace1666c215901d089c7068329f99fb0f36ce",
+ "committed_normalized_churn": 0.011874469889737066,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 1165,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00015131877444218844,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.727756679058075,
+ "last_committed_score_gap": 0.00011012324830517173,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00015131877444218844,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.727756679058075,
+ "last_raw_score_gap": 0.00011012324830517173,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10400424152612686,
+ "observability_min": 1.5950208265280708e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "1586350a614d988383bae852ae5ace1666c215901d089c7068329f99fb0f36ce",
+ "raw_normalized_churn": 0.011874469889737066,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "399628730e0a8bdbf375641cd95ac51f00ef504aead5145ce44b8eaecd949767",
+ "committed_normalized_churn": 0.007633587786259542,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 910,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.509527156595141e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8768304586410522,
+ "last_committed_score_gap": 5.707751552108675e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 6.509527156595141e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8768304586410522,
+ "last_raw_score_gap": 5.707751552108675e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1172957643866539,
+ "observability_min": 1.650548853149303e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "399628730e0a8bdbf375641cd95ac51f00ef504aead5145ce44b8eaecd949767",
+ "raw_normalized_churn": 0.007633587786259542,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "d752b333fabcf8eaaac33f51bced6d98ef1c0c3247537a237ced91dd6450bd1f",
+ "committed_normalized_churn": 0.002775850104094379,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 7185,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.918197646475164e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.5749244689941406,
+ "last_committed_score_gap": 2.8275921977183316e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.918197646475164e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.5749244689941406,
+ "last_raw_score_gap": 2.8275921977183316e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1069217324256897,
+ "observability_min": 1.3403125276312267e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "d752b333fabcf8eaaac33f51bced6d98ef1c0c3247537a237ced91dd6450bd1f",
+ "raw_normalized_churn": 0.002775850104094379,
+ "raw_xor_churn_total": 40,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ }
+ ],
+ "task_id": 822
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 245,
+ "committed_mask_sha256": "173c2b8a3d1c7f79705a4bfb1c1b77c4fc9ed2242ac54c162f6625664931411a",
+ "committed_normalized_churn": 0.010954616588419406,
+ "committed_xor_churn_total": 490,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 22120,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 9.18276015227093e-08,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.06703441590070724,
+ "last_committed_score_gap": 6.155609355573688e-09,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 9.18276015227093e-08,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.06703441590070724,
+ "last_raw_score_gap": 6.155609355573688e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.036527037620544434,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "173c2b8a3d1c7f79705a4bfb1c1b77c4fc9ed2242ac54c162f6625664931411a",
+ "raw_normalized_churn": 0.010954616588419406,
+ "raw_xor_churn_total": 490,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 515,
+ "committed_mask_sha256": "a82d80bb9cd48ece4023801252a485d668fe6d26fdfd8786bce3e011b0326e41",
+ "committed_normalized_churn": 0.021512113617376774,
+ "committed_xor_churn_total": 1030,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 23425,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 10,
+ "last_committed_cutoff_score": 2.8329074197586124e-08,
+ "last_committed_mask_overlap": 370,
+ "last_committed_normalized_gap": 8.778612254900509e-07,
+ "last_committed_score_gap": 2.4868995751603507e-14,
+ "last_dwell_count": 370,
+ "last_raw_cutoff_score": 2.8329074197586124e-08,
+ "last_raw_mask_overlap": 370,
+ "last_raw_normalized_gap": 8.778612254900509e-07,
+ "last_raw_score_gap": 2.4868995751603507e-14,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1148163378238678,
+ "observability_min": 6.77344225152865e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "a82d80bb9cd48ece4023801252a485d668fe6d26fdfd8786bce3e011b0326e41",
+ "raw_normalized_churn": 0.021512113617376774,
+ "raw_xor_churn_total": 1030,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 104,
+ "committed_mask_sha256": "f8d35d7416c92ec66c34837a400d3f155ad3f612c057e1112dff951fc548eeee",
+ "committed_normalized_churn": 0.006136779370980115,
+ "committed_xor_churn_total": 208,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 16843,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.260229112176603e-07,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": 0.13653184473514557,
+ "last_committed_score_gap": 1.720614051237135e-08,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 1.260229112176603e-07,
+ "last_raw_mask_overlap": 268,
+ "last_raw_normalized_gap": 0.13653184473514557,
+ "last_raw_score_gap": 1.720614051237135e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04969097301363945,
+ "observability_min": 8.237924120635398e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "f8d35d7416c92ec66c34837a400d3f155ad3f612c057e1112dff951fc548eeee",
+ "raw_normalized_churn": 0.006136779370980115,
+ "raw_xor_churn_total": 208,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 40,
+ "committed_mask_sha256": "7c6682da31d65989deb846661e53791cf0c130e08d7009ba7ee6c02a9695bf27",
+ "committed_normalized_churn": 0.0035470426531879046,
+ "committed_xor_churn_total": 80,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 11237,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 3.5675116123456974e-06,
+ "last_committed_mask_overlap": 173,
+ "last_committed_normalized_gap": 0.05238525941967964,
+ "last_committed_score_gap": 1.8688501768338028e-07,
+ "last_dwell_count": 173,
+ "last_raw_cutoff_score": 3.5675116123456974e-06,
+ "last_raw_mask_overlap": 173,
+ "last_raw_normalized_gap": 0.05238525941967964,
+ "last_raw_score_gap": 1.8688501768338028e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.041588593274354935,
+ "observability_min": 2.603298376868679e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "7c6682da31d65989deb846661e53791cf0c130e08d7009ba7ee6c02a9695bf27",
+ "raw_normalized_churn": 0.0035470426531879046,
+ "raw_xor_churn_total": 80,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "465bbf92d346d3d2358e40c193391d92f08ccf2a68e6f3badd9c6ff92647d161",
+ "committed_normalized_churn": 0.0023166023166023165,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 11628,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1414798564146622e-06,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.5821287631988525,
+ "last_committed_score_gap": 6.644882546424924e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 1.1414798564146622e-06,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.5821287631988525,
+ "last_raw_score_gap": 6.644882546424924e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.027238575741648674,
+ "observability_min": 1.3092402184611274e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "465bbf92d346d3d2358e40c193391d92f08ccf2a68e6f3badd9c6ff92647d161",
+ "raw_normalized_churn": 0.0023166023166023165,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 110,
+ "committed_mask_sha256": "f1cab7dd0cffffc6f931d0e860b1e05fc1a582b46d64eaee77b7eea58e9f9080",
+ "committed_normalized_churn": 0.016628873771730914,
+ "committed_xor_churn_total": 220,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 6505,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 3.591566724026052e-07,
+ "last_committed_mask_overlap": 102,
+ "last_committed_normalized_gap": 0.006831766571849585,
+ "last_committed_score_gap": 2.4536745968362084e-09,
+ "last_dwell_count": 102,
+ "last_raw_cutoff_score": 3.591566724026052e-07,
+ "last_raw_mask_overlap": 102,
+ "last_raw_normalized_gap": 0.006831766571849585,
+ "last_raw_score_gap": 2.4536745968362084e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03363000229001045,
+ "observability_min": 6.233340599237636e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "f1cab7dd0cffffc6f931d0e860b1e05fc1a582b46d64eaee77b7eea58e9f9080",
+ "raw_normalized_churn": 0.016628873771730914,
+ "raw_xor_churn_total": 220,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 42,
+ "committed_mask_sha256": "8827b9d8f00446410882657d0d4d899830dee803186266e264f553f459e5aadf",
+ "committed_normalized_churn": 0.008333333333333333,
+ "committed_xor_churn_total": 84,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 4998,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6209702380365343e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.09470483660697937,
+ "last_committed_score_gap": 1.5351372439909028e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.6209702380365343e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.09470483660697937,
+ "last_raw_score_gap": 1.5351372439909028e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05081064999103546,
+ "observability_min": 2.2567989788058185e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "8827b9d8f00446410882657d0d4d899830dee803186266e264f553f459e5aadf",
+ "raw_normalized_churn": 0.008333333333333333,
+ "raw_xor_churn_total": 84,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "918971887809196b24fe52b734b3eaea879e7f11b57487528ab9b93c25f4c2ce",
+ "committed_normalized_churn": 0.0036913990402362494,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 2699,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 4.0193023664869543e-07,
+ "last_committed_mask_overlap": 41,
+ "last_committed_normalized_gap": 0.025765428319573402,
+ "last_committed_score_gap": 1.0355904578318587e-08,
+ "last_dwell_count": 41,
+ "last_raw_cutoff_score": 4.0193023664869543e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.025765428319573402,
+ "last_raw_score_gap": 1.0355904578318587e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.057510703802108765,
+ "observability_min": 8.562148678947779e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "918971887809196b24fe52b734b3eaea879e7f11b57487528ab9b93c25f4c2ce",
+ "raw_normalized_churn": 0.0036913990402362494,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 96,
+ "committed_mask_sha256": "3a3f3299029e788b48ff8b4d64feaf642cdc3248488f0d7cf65425f4a56ee553",
+ "committed_normalized_churn": 0.018140589569160998,
+ "committed_xor_churn_total": 192,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 5196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.0784226844862133e-07,
+ "last_committed_mask_overlap": 82,
+ "last_committed_normalized_gap": 0.0014151915675029159,
+ "last_committed_score_gap": 1.5261747421391192e-10,
+ "last_dwell_count": 82,
+ "last_raw_cutoff_score": 1.0784226844862133e-07,
+ "last_raw_mask_overlap": 82,
+ "last_raw_normalized_gap": 0.0014151915675029159,
+ "last_raw_score_gap": 1.5261747421391192e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.036484599113464355,
+ "observability_min": 1.826531281778898e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "3a3f3299029e788b48ff8b4d64feaf642cdc3248488f0d7cf65425f4a56ee553",
+ "raw_normalized_churn": 0.018140589569160998,
+ "raw_xor_churn_total": 192,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 47,
+ "committed_mask_sha256": "a926fa372ccf3a7ad96e30f55df56b87052897f01272e7f42ffc0423a2ccaa49",
+ "committed_normalized_churn": 0.02486772486772487,
+ "committed_xor_churn_total": 94,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1843,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.7284670320805162e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.07441571354866028,
+ "last_committed_score_gap": 1.2862510629929602e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.7284670320805162e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.07441571354866028,
+ "last_raw_score_gap": 1.2862510629929602e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04878464341163635,
+ "observability_min": 3.2150256856766646e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "a926fa372ccf3a7ad96e30f55df56b87052897f01272e7f42ffc0423a2ccaa49",
+ "raw_normalized_churn": 0.02486772486772487,
+ "raw_xor_churn_total": 94,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 128,
+ "committed_mask_sha256": "7ddc41a37e2fe1631515a01363e1709eb304a25798c533dabc38415ccc9df7bf",
+ "committed_normalized_churn": 0.03277009728622632,
+ "committed_xor_churn_total": 256,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 3778,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.449044131935807e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": 0.04524175450205803,
+ "last_committed_score_gap": 1.1079904993493983e-08,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 2.449044131935807e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.04524175450205803,
+ "last_raw_score_gap": 1.1079904993493983e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03779587522149086,
+ "observability_min": 8.452384037127558e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "7ddc41a37e2fe1631515a01363e1709eb304a25798c533dabc38415ccc9df7bf",
+ "raw_normalized_churn": 0.03277009728622632,
+ "raw_xor_churn_total": 256,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 56,
+ "committed_mask_sha256": "c46d530e6b8e0f1b4b8f4ca1f74609fea3de783705c069c1ae4f4e58360cf085",
+ "committed_normalized_churn": 0.01646090534979424,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 3346,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.2791296316881926e-07,
+ "last_committed_mask_overlap": 52,
+ "last_committed_normalized_gap": 0.016781572252511978,
+ "last_committed_score_gap": 3.824737859758898e-09,
+ "last_dwell_count": 52,
+ "last_raw_cutoff_score": 2.2791296316881926e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.016781572252511978,
+ "last_raw_score_gap": 3.824737859758898e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09679871797561646,
+ "observability_min": 1.200060637529532e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "c46d530e6b8e0f1b4b8f4ca1f74609fea3de783705c069c1ae4f4e58360cf085",
+ "raw_normalized_churn": 0.01646090534979424,
+ "raw_xor_churn_total": 112,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "677a5306d9dbbe314692ececd929e7394df1b85602517b2f24b0ecd7b934e92e",
+ "committed_normalized_churn": 0.0003527336860670194,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 2834,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6802881873445585e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.8036050200462341,
+ "last_committed_score_gap": 1.350288039247971e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.6802881873445585e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.8036050200462341,
+ "last_raw_score_gap": 1.350288039247971e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10151644051074982,
+ "observability_min": 1.1791456699938863e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "677a5306d9dbbe314692ececd929e7394df1b85602517b2f24b0ecd7b934e92e",
+ "raw_normalized_churn": 0.0003527336860670194,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "11ed239d051cc4fde768e96b2e9fc66a0920b5d8eefd99c55e0b87f83e9da21f",
+ "committed_normalized_churn": 0.00411522633744856,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 1694,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.806596264941618e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8690193891525269,
+ "last_committed_score_gap": 1.5699672076152638e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.806596264941618e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8690193891525269,
+ "last_raw_score_gap": 1.5699672076152638e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09026310592889786,
+ "observability_min": 1.4032110584594193e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "11ed239d051cc4fde768e96b2e9fc66a0920b5d8eefd99c55e0b87f83e9da21f",
+ "raw_normalized_churn": 0.00411522633744856,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "b5ae6e953c5c2edc637dffe244dff252bea6693b23ec8a668b8dff74dbd26eda",
+ "committed_normalized_churn": 0.0022675736961451248,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 440,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0003469205694273114,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9350845813751221,
+ "last_committed_score_gap": 0.0003244000836275518,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0003469205694273114,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9350845813751221,
+ "last_raw_score_gap": 0.0003244000836275518,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0880444347858429,
+ "observability_min": 5.523295953935303e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "b5ae6e953c5c2edc637dffe244dff252bea6693b23ec8a668b8dff74dbd26eda",
+ "raw_normalized_churn": 0.0022675736961451248,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "committed_normalized_churn": 0.008818342151675485,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 562,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.41582368593663e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.8131374716758728,
+ "last_committed_score_gap": 6.84322149027139e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 8.41582368593663e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.8131374716758728,
+ "last_raw_score_gap": 6.84322149027139e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09110309183597565,
+ "observability_min": 4.002648168466294e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "raw_normalized_churn": 0.008818342151675485,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "2b09545cdc928f1c17863d6e81139087720be0f3d4f874192874a14b30d5c102",
+ "committed_normalized_churn": 0.006802721088435374,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 438,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.187751518562436e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9294983148574829,
+ "last_committed_score_gap": 7.61050105211325e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 8.187751518562436e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9294983148574829,
+ "last_raw_score_gap": 7.61050105211325e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09863856434822083,
+ "observability_min": 7.499026111190688e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "2b09545cdc928f1c17863d6e81139087720be0f3d4f874192874a14b30d5c102",
+ "raw_normalized_churn": 0.006802721088435374,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "a295b9cd99ffe86258b4ced0528ad100c077c430b3132c9f45e0908fff8c0571",
+ "committed_normalized_churn": 0.0017316017316017316,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 3459,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.817808985535521e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.6901684403419495,
+ "last_committed_score_gap": 3.3250996693823254e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.817808985535521e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.6901684403419495,
+ "last_raw_score_gap": 3.3250996693823254e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1000891625881195,
+ "observability_min": 1.3756827677013916e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "a295b9cd99ffe86258b4ced0528ad100c077c430b3132c9f45e0908fff8c0571",
+ "raw_normalized_churn": 0.0017316017316017316,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 687
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 96,
+ "committed_mask_sha256": "06c8f982204239e624ee7f260658c2f2723c48340c5f1637c5c697cbde61b33b",
+ "committed_normalized_churn": 0.009014084507042254,
+ "committed_xor_churn_total": 192,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 10554,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.315856448831255e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.21924597024917603,
+ "last_committed_score_gap": 5.077421860733011e-08,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 2.315856448831255e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.21924597024917603,
+ "last_raw_score_gap": 5.077421860733011e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04998818784952164,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "06c8f982204239e624ee7f260658c2f2723c48340c5f1637c5c697cbde61b33b",
+ "raw_normalized_churn": 0.009014084507042254,
+ "raw_xor_churn_total": 192,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 214,
+ "committed_mask_sha256": "2babe2f4cc877c937a2138131395ec6eaeb5253ea963e9b0c2ec92ebab5d940c",
+ "committed_normalized_churn": 0.018771929824561405,
+ "committed_xor_churn_total": 428,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 11186,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 8,
+ "last_committed_cutoff_score": 5.87834714238511e-09,
+ "last_committed_mask_overlap": 372,
+ "last_committed_normalized_gap": 0.019665764644742012,
+ "last_committed_score_gap": 1.1560219448369935e-10,
+ "last_dwell_count": 372,
+ "last_raw_cutoff_score": 5.87834714238511e-09,
+ "last_raw_mask_overlap": 372,
+ "last_raw_normalized_gap": 0.019665764644742012,
+ "last_raw_score_gap": 1.1560219448369935e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1210479587316513,
+ "observability_min": 6.470600499852708e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "2babe2f4cc877c937a2138131395ec6eaeb5253ea963e9b0c2ec92ebab5d940c",
+ "raw_normalized_churn": 0.018771929824561405,
+ "raw_xor_churn_total": 428,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 65,
+ "committed_mask_sha256": "523abef3296568117eaecad7a17460045b06d67056e8c6c9d82d1e8010c1ddf1",
+ "committed_normalized_churn": 0.0080545229244114,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 8005,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 6.570388677573646e-08,
+ "last_committed_mask_overlap": 265,
+ "last_committed_normalized_gap": 0.23096545040607452,
+ "last_committed_score_gap": 1.517532766115437e-08,
+ "last_dwell_count": 265,
+ "last_raw_cutoff_score": 6.570388677573646e-08,
+ "last_raw_mask_overlap": 265,
+ "last_raw_normalized_gap": 0.23096545040607452,
+ "last_raw_score_gap": 1.517532766115437e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06847025454044342,
+ "observability_min": 1.0815319750889785e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "523abef3296568117eaecad7a17460045b06d67056e8c6c9d82d1e8010c1ddf1",
+ "raw_normalized_churn": 0.0080545229244114,
+ "raw_xor_churn_total": 130,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "82937d239c73afef1fb4fa06df2823b7e1d7de2911b62587e4ed1d3e2b37a89b",
+ "committed_normalized_churn": 0.002420856610800745,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 5357,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.689230768737616e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.6998856067657471,
+ "last_committed_score_gap": 1.882153924270824e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.689230768737616e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.6998856067657471,
+ "last_raw_score_gap": 1.882153924270824e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.042955901473760605,
+ "observability_min": 1.9803854556244005e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "82937d239c73afef1fb4fa06df2823b7e1d7de2911b62587e4ed1d3e2b37a89b",
+ "raw_normalized_churn": 0.002420856610800745,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "9304fbd571f39c15eb60f67c6354099c2a100406c9f81ebc88f1e40c14bf7136",
+ "committed_normalized_churn": 0.002702702702702703,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 5535,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.751599125389475e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.7112561464309692,
+ "last_committed_score_gap": 6.224628918971575e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.751599125389475e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.7112561464309692,
+ "last_raw_score_gap": 6.224628918971575e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043455321341753006,
+ "observability_min": 5.459925400685961e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "9304fbd571f39c15eb60f67c6354099c2a100406c9f81ebc88f1e40c14bf7136",
+ "raw_normalized_churn": 0.002702702702702703,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 50,
+ "committed_mask_sha256": "68659e8f8a0a9a05beed4f282dbb9bdb38d715fb00d64eaea2bfaa5d5cd90236",
+ "committed_normalized_churn": 0.015873015873015872,
+ "committed_xor_churn_total": 100,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3100,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.029268699743625e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.09821677953004837,
+ "last_committed_score_gap": 1.9930823214053817e-08,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 2.029268699743625e-07,
+ "last_raw_mask_overlap": 105,
+ "last_raw_normalized_gap": 0.09821677953004837,
+ "last_raw_score_gap": 1.9930823214053817e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03294428437948227,
+ "observability_min": 7.054656947502735e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "68659e8f8a0a9a05beed4f282dbb9bdb38d715fb00d64eaea2bfaa5d5cd90236",
+ "raw_normalized_churn": 0.015873015873015872,
+ "raw_xor_churn_total": 100,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "ac3aaec26a6539fc9b8677d810715b6d259c1e2168c34db5109cd4e6513327cf",
+ "committed_normalized_churn": 0.00625,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2385,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5402101780637167e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.42557692527770996,
+ "last_committed_score_gap": 6.55477890632028e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.5402101780637167e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.42557692527770996,
+ "last_raw_score_gap": 6.55477890632028e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05183929204940796,
+ "observability_min": 4.8436402266816e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "ac3aaec26a6539fc9b8677d810715b6d259c1e2168c34db5109cd4e6513327cf",
+ "raw_normalized_churn": 0.00625,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "5d7d4bc3716082e38ef07cb881890c3be61bc05572af979ede0f7effb1a0f4b5",
+ "committed_normalized_churn": 0.0031007751937984496,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1286,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.4942013371619396e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.7835305333137512,
+ "last_committed_score_gap": 2.737813531439315e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.4942013371619396e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.7835305333137512,
+ "last_raw_score_gap": 2.737813531439315e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050614628940820694,
+ "observability_min": 2.708151498609368e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "5d7d4bc3716082e38ef07cb881890c3be61bc05572af979ede0f7effb1a0f4b5",
+ "raw_normalized_churn": 0.0031007751937984496,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 70,
+ "committed_mask_sha256": "9b179aa4f94ec237913a897616c33a0790ab8f8e8bc0c461a25f4ebd53622d64",
+ "committed_normalized_churn": 0.027777777777777776,
+ "committed_xor_churn_total": 140,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2450,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2635042878628155e-07,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.37695765495300293,
+ "last_committed_score_gap": 4.762875960295787e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.2635042878628155e-07,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.37695765495300293,
+ "last_raw_score_gap": 4.762875960295787e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03502379730343819,
+ "observability_min": 4.3231486301920086e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "9b179aa4f94ec237913a897616c33a0790ab8f8e8bc0c461a25f4ebd53622d64",
+ "raw_normalized_churn": 0.027777777777777776,
+ "raw_xor_churn_total": 140,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "dc5676bbf594522b9ed8adc7eaa36b4b9da465e7aac1318ac0df4af2292c9a18",
+ "committed_normalized_churn": 0.03,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 873,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0260883755108807e-05,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.8486993312835693,
+ "last_committed_score_gap": 8.708405403012875e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 1.0260883755108807e-05,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.8486993312835693,
+ "last_raw_score_gap": 8.708405403012875e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03549002856016159,
+ "observability_min": 7.1421823122364e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "dc5676bbf594522b9ed8adc7eaa36b4b9da465e7aac1318ac0df4af2292c9a18",
+ "raw_normalized_churn": 0.03,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 41,
+ "committed_mask_sha256": "c6fe3cc48be2aeae5394792604c44c22175b574d3b0e115894a7787a876b4872",
+ "committed_normalized_churn": 0.02204301075268817,
+ "committed_xor_churn_total": 82,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 1819,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.2305307822989562e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.7113282680511475,
+ "last_committed_score_gap": 1.5866396552155493e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.2305307822989562e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.7113282680511475,
+ "last_raw_score_gap": 1.5866396552155493e-07,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.02771003358066082,
+ "observability_min": 1.7745190916684805e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "c6fe3cc48be2aeae5394792604c44c22175b574d3b0e115894a7787a876b4872",
+ "raw_normalized_churn": 0.02204301075268817,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "cc41beecbf0dd3d2caf4dd905270665979fe3b17c751dae4beca6a703cc3181c",
+ "committed_normalized_churn": 0.014814814814814815,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1596,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.2078935185400042e-07,
+ "last_committed_mask_overlap": 53,
+ "last_committed_normalized_gap": 0.346243292093277,
+ "last_committed_score_gap": 4.182250279427535e-08,
+ "last_dwell_count": 53,
+ "last_raw_cutoff_score": 1.2078935185400042e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.346243292093277,
+ "last_raw_score_gap": 4.182250279427535e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08885863423347473,
+ "observability_min": 7.326746498392822e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "cc41beecbf0dd3d2caf4dd905270665979fe3b17c751dae4beca6a703cc3181c",
+ "raw_normalized_churn": 0.014814814814814815,
+ "raw_xor_churn_total": 48,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "ba721681ee39f1d2fc7594e39053a673efa8571f1c628a6a9dea31620cf6adca",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1350,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1609603461693041e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.8152685761451721,
+ "last_committed_score_gap": 9.46494492382044e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.1609603461693041e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.8152685761451721,
+ "last_raw_score_gap": 9.46494492382044e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10609941929578781,
+ "observability_min": 3.2515174552827375e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "ba721681ee39f1d2fc7594e39053a673efa8571f1c628a6a9dea31620cf6adca",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "2b501c63f8f0848925d366447bdb52974cf25da6da8c4029d98bf1501501ade3",
+ "committed_normalized_churn": 0.007407407407407408,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 804,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8899332644650713e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.9040740728378296,
+ "last_committed_score_gap": 1.7086396837839857e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.8899332644650713e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.9040740728378296,
+ "last_raw_score_gap": 1.7086396837839857e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11522635817527771,
+ "observability_min": 8.764167169772463e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "2b501c63f8f0848925d366447bdb52974cf25da6da8c4029d98bf1501501ade3",
+ "raw_normalized_churn": 0.007407407407407408,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bbdbd4d00d3af2487f1c769abbedaf23065eaaeea14a7bb88a70f5872a7437a6",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005860227392986417,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7804555296897888,
+ "last_committed_score_gap": 0.00045736468746326864,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005860227392986417,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7804555296897888,
+ "last_raw_score_gap": 0.00045736468746326864,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09437616914510727,
+ "observability_min": 5.2186354793093415e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bbdbd4d00d3af2487f1c769abbedaf23065eaaeea14a7bb88a70f5872a7437a6",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "1586350a614d988383bae852ae5ace1666c215901d089c7068329f99fb0f36ce",
+ "committed_normalized_churn": 0.014814814814814815,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 266,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00023312398116104305,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.8426907062530518,
+ "last_committed_score_gap": 0.00019645140855573118,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00023312398116104305,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.8426907062530518,
+ "last_raw_score_gap": 0.00019645140855573118,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10144485533237457,
+ "observability_min": 2.4274115162370435e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "1586350a614d988383bae852ae5ace1666c215901d089c7068329f99fb0f36ce",
+ "raw_normalized_churn": 0.014814814814814815,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "a22bab13a64c94cb6146e6fabbf88bc3ac426918d99093f3576561652532b31b",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.163962775142863e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.85968416929245,
+ "last_committed_score_gap": 7.018429460003972e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 8.163962775142863e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.85968416929245,
+ "last_raw_score_gap": 7.018429460003972e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11064888536930084,
+ "observability_min": 5.118583246144226e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "a22bab13a64c94cb6146e6fabbf88bc3ac426918d99093f3576561652532b31b",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "08c375bfbf4d555aa78d32111077eec294bee80c1197bf2ec6c673ddbfed67a3",
+ "committed_normalized_churn": 0.0012121212121212121,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1648,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.808196081285132e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.4770214855670929,
+ "last_committed_score_gap": 2.293612851644866e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.808196081285132e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.4770214855670929,
+ "last_raw_score_gap": 2.293612851644866e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1061977818608284,
+ "observability_min": 6.9173848871173504e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "08c375bfbf4d555aa78d32111077eec294bee80c1197bf2ec6c673ddbfed67a3",
+ "raw_normalized_churn": 0.0012121212121212121,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ }
+ ],
+ "task_id": 820
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 109,
+ "committed_mask_sha256": "1d816b6682a3cf0c516ec44e98b9feda4e094795974748bd4e3290a950672cfb",
+ "committed_normalized_churn": 0.008772635814889336,
+ "committed_xor_churn_total": 218,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 12316,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.1584663894836922e-07,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": 0.08694400638341904,
+ "last_committed_score_gap": 1.0072170653074863e-08,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 1.1584663894836922e-07,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.08694400638341904,
+ "last_raw_score_gap": 1.0072170653074863e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03488294780254364,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "1d816b6682a3cf0c516ec44e98b9feda4e094795974748bd4e3290a950672cfb",
+ "raw_normalized_churn": 0.008772635814889336,
+ "raw_xor_churn_total": 218,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 305,
+ "committed_mask_sha256": "1a0c882934ffd1de836cdffcfb648d31ea014ca0a5380d789ab183c20764616f",
+ "committed_normalized_churn": 0.02293233082706767,
+ "committed_xor_churn_total": 610,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 12995,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 1.497783586046353e-08,
+ "last_committed_mask_overlap": 376,
+ "last_committed_normalized_gap": 0.02653374709188938,
+ "last_committed_score_gap": 3.9741809843008014e-10,
+ "last_dwell_count": 376,
+ "last_raw_cutoff_score": 1.497783586046353e-08,
+ "last_raw_mask_overlap": 376,
+ "last_raw_normalized_gap": 0.02653374709188938,
+ "last_raw_score_gap": 3.9741809843008014e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09560588002204895,
+ "observability_min": 5.984429063410346e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "1a0c882934ffd1de836cdffcfb648d31ea014ca0a5380d789ab183c20764616f",
+ "raw_normalized_churn": 0.02293233082706767,
+ "raw_xor_churn_total": 610,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 84,
+ "committed_mask_sha256": "b92c40a1da1f57e400153ebecabf5fd1dcedba648e204dd6964df40821a8af22",
+ "committed_normalized_churn": 0.008921933085501859,
+ "committed_xor_churn_total": 168,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 9331,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.114695109549757e-07,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": 0.07311362028121948,
+ "last_committed_score_gap": 8.149939390023064e-09,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 1.114695109549757e-07,
+ "last_raw_mask_overlap": 268,
+ "last_raw_normalized_gap": 0.07311362028121948,
+ "last_raw_score_gap": 8.149939390023064e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06156356260180473,
+ "observability_min": 1.4051811936255376e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "b92c40a1da1f57e400153ebecabf5fd1dcedba648e204dd6964df40821a8af22",
+ "raw_normalized_churn": 0.008921933085501859,
+ "raw_xor_churn_total": 168,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 38,
+ "committed_mask_sha256": "d6088519136ec02d7afc95b878285a4b825caac8580ea8d27989ce480e11e0d1",
+ "committed_normalized_churn": 0.006065442936951317,
+ "committed_xor_churn_total": 76,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6227,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 3.712906618602574e-06,
+ "last_committed_mask_overlap": 177,
+ "last_committed_normalized_gap": 0.011990971863269806,
+ "last_committed_score_gap": 4.452135726751294e-08,
+ "last_dwell_count": 177,
+ "last_raw_cutoff_score": 3.712906618602574e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.011990971863269806,
+ "last_raw_score_gap": 4.452135726751294e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04210086911916733,
+ "observability_min": 3.2885563716611443e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "d6088519136ec02d7afc95b878285a4b825caac8580ea8d27989ce480e11e0d1",
+ "raw_normalized_churn": 0.006065442936951317,
+ "raw_xor_churn_total": 76,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "4ad3671f4fe89a2c22d322ead14298ea2c0ca18aae2bfcc875c53808627b7cf1",
+ "committed_normalized_churn": 0.0023166023166023165,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 6460,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.581242016385659e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.7327459454536438,
+ "last_committed_score_gap": 5.555124289458035e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.581242016385659e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.7327459454536438,
+ "last_raw_score_gap": 5.555124289458035e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0437765046954155,
+ "observability_min": 4.1732718614184705e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "4ad3671f4fe89a2c22d322ead14298ea2c0ca18aae2bfcc875c53808627b7cf1",
+ "raw_normalized_churn": 0.0023166023166023165,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 90,
+ "committed_mask_sha256": "d247bdad5604b6fd2d38f949471dc7f823d80c84a3b64ea550c3bb925b551006",
+ "committed_normalized_churn": 0.024489795918367346,
+ "committed_xor_churn_total": 180,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3585,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.1987860066019493e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.15336884558200836,
+ "last_committed_score_gap": 3.372252876943094e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.1987860066019493e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.15336884558200836,
+ "last_raw_score_gap": 3.372252876943094e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.049031324684619904,
+ "observability_min": 3.192326403222978e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "d247bdad5604b6fd2d38f949471dc7f823d80c84a3b64ea550c3bb925b551006",
+ "raw_normalized_churn": 0.024489795918367346,
+ "raw_xor_churn_total": 180,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "8e24ce1338af30255de3f92fa8e1593f7241db8a812bfd5ff839c6cbe4ec3ea1",
+ "committed_normalized_churn": 0.008571428571428572,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2776,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.1665355234290473e-06,
+ "last_committed_mask_overlap": 78,
+ "last_committed_normalized_gap": 0.11986284703016281,
+ "last_committed_score_gap": 2.5968711270252243e-07,
+ "last_dwell_count": 78,
+ "last_raw_cutoff_score": 2.1665355234290473e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.11986284703016281,
+ "last_raw_score_gap": 2.5968711270252243e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05255753919482231,
+ "observability_min": 1.8665134859929822e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "8e24ce1338af30255de3f92fa8e1593f7241db8a812bfd5ff839c6cbe4ec3ea1",
+ "raw_normalized_churn": 0.008571428571428572,
+ "raw_xor_churn_total": 48,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "685042518adf9ce4a6b0f740458ff8d8a097001094d1d83d74be5b949cbdd789",
+ "committed_normalized_churn": 0.011960132890365448,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1487,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.107196099947032e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.648975670337677,
+ "last_committed_score_gap": 3.963421590924554e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 6.107196099947032e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.648975670337677,
+ "last_raw_score_gap": 3.963421590924554e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05678972601890564,
+ "observability_min": 6.603799818094558e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "685042518adf9ce4a6b0f740458ff8d8a097001094d1d83d74be5b949cbdd789",
+ "raw_normalized_churn": 0.011960132890365448,
+ "raw_xor_churn_total": 36,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 89,
+ "committed_mask_sha256": "cf7e01f64a994ca28ff748a1bb82c86e97cf19eb5d5fbf7ca5e37592f9b8a7db",
+ "committed_normalized_churn": 0.030272108843537416,
+ "committed_xor_churn_total": 178,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2851,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 9.50353751250077e-08,
+ "last_committed_mask_overlap": 79,
+ "last_committed_normalized_gap": 0.019615044817328453,
+ "last_committed_score_gap": 1.864123078121338e-09,
+ "last_dwell_count": 79,
+ "last_raw_cutoff_score": 9.50353751250077e-08,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.019615044817328453,
+ "last_raw_score_gap": 1.864123078121338e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.035235702991485596,
+ "observability_min": 5.520071155729056e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "cf7e01f64a994ca28ff748a1bb82c86e97cf19eb5d5fbf7ca5e37592f9b8a7db",
+ "raw_normalized_churn": 0.030272108843537416,
+ "raw_xor_churn_total": 178,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "7fd3d20071bbe8e81d1cd5eff36b64a7d494308718d0710ab861c8082a47df59",
+ "committed_normalized_churn": 0.025714285714285714,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1023,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.845241038419772e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.08684976398944855,
+ "last_committed_score_gap": 8.550568963983096e-07,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 9.845241038419772e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.08684976398944855,
+ "last_raw_score_gap": 8.550568963983096e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03036610595881939,
+ "observability_min": 1.5226075333885092e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "7fd3d20071bbe8e81d1cd5eff36b64a7d494308718d0710ab861c8082a47df59",
+ "raw_normalized_churn": 0.025714285714285714,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 84,
+ "committed_mask_sha256": "a24b662ab9d01ae810d30528983946e943b8233fef06f3f3135c9a1662cec14d",
+ "committed_normalized_churn": 0.03870967741935484,
+ "committed_xor_churn_total": 168,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2086,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.390955842201947e-07,
+ "last_committed_mask_overlap": 60,
+ "last_committed_normalized_gap": 0.04914496839046478,
+ "last_committed_score_gap": 1.1750344697247783e-08,
+ "last_dwell_count": 60,
+ "last_raw_cutoff_score": 2.390955842201947e-07,
+ "last_raw_mask_overlap": 60,
+ "last_raw_normalized_gap": 0.04914496839046478,
+ "last_raw_score_gap": 1.1750344697247783e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05975921452045441,
+ "observability_min": 2.6449381351767443e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "a24b662ab9d01ae810d30528983946e943b8233fef06f3f3135c9a1662cec14d",
+ "raw_normalized_churn": 0.03870967741935484,
+ "raw_xor_churn_total": 168,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 49,
+ "committed_mask_sha256": "745bcdcaa27c99d482fd9335a80c374ba42c12c0c4feee36cdd4d85aa7d345a4",
+ "committed_normalized_churn": 0.025925925925925925,
+ "committed_xor_churn_total": 98,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1841,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.4157927214218944e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.1802825778722763,
+ "last_committed_score_gap": 4.355253224730404e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.4157927214218944e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.1802825778722763,
+ "last_raw_score_gap": 4.355253224730404e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09480665624141693,
+ "observability_min": 1.258670891957081e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "745bcdcaa27c99d482fd9335a80c374ba42c12c0c4feee36cdd4d85aa7d345a4",
+ "raw_normalized_churn": 0.025925925925925925,
+ "raw_xor_churn_total": 98,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "999db9f2b3209587c871e2883496300083c7e427fae6b82636193bd585336f74",
+ "committed_normalized_churn": 0.0012698412698412698,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1573,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.682794936641585e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.8029727339744568,
+ "last_committed_score_gap": 1.3512384612113237e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.682794936641585e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.8029727339744568,
+ "last_raw_score_gap": 1.3512384612113237e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10766752809286118,
+ "observability_min": 3.363526701605224e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "999db9f2b3209587c871e2883496300083c7e427fae6b82636193bd585336f74",
+ "raw_normalized_churn": 0.0012698412698412698,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "56984cc933e6792a64c3f60ae278c40da4f8e0adbf97b0e133667b74e86b8e21",
+ "committed_normalized_churn": 0.004232804232804233,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 941,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5752810213598423e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.6005203723907471,
+ "last_committed_score_gap": 9.459883585805073e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.5752810213598423e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.6005203723907471,
+ "last_raw_score_gap": 9.459883585805073e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10961534082889557,
+ "observability_min": 6.997739632197408e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "56984cc933e6792a64c3f60ae278c40da4f8e0adbf97b0e133667b74e86b8e21",
+ "raw_normalized_churn": 0.004232804232804233,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0006086434004828334,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.802864134311676,
+ "last_committed_score_gap": 0.000488657969981432,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0006086434004828334,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.802864134311676,
+ "last_raw_score_gap": 0.000488657969981432,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09145650267601013,
+ "observability_min": 3.883629418055534e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.012698412698412698,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 311,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.876661063870415e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.4195261299610138,
+ "last_committed_score_gap": 2.884939021896571e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 6.876661063870415e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.4195261299610138,
+ "last_raw_score_gap": 2.884939021896571e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10403943806886673,
+ "observability_min": 5.609080133694988e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.012698412698412698,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d7e3683d5ef244bae9caee385867a33406f389a47cfe18377bafcd95bab3861a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.427257514791563e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6579396724700928,
+ "last_committed_score_gap": 4.8866873839870095e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.427257514791563e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6579396724700928,
+ "last_raw_score_gap": 4.8866873839870095e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12527234852313995,
+ "observability_min": 5.789902779440581e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d7e3683d5ef244bae9caee385867a33406f389a47cfe18377bafcd95bab3861a",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "4722edaf9f8d1227864849d74307a4b5bb6c32dcbf821d63a1d943934a3d7f5b",
+ "committed_normalized_churn": 0.0015584415584415584,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1922,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 5.6721173677942716e-06,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.1573011726140976,
+ "last_committed_score_gap": 8.922306733438745e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 5.6721173677942716e-06,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.1573011726140976,
+ "last_raw_score_gap": 8.922306733438745e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11547784507274628,
+ "observability_min": 2.6177027212526127e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "4722edaf9f8d1227864849d74307a4b5bb6c32dcbf821d63a1d943934a3d7f5b",
+ "raw_normalized_churn": 0.0015584415584415584,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ }
+ ],
+ "task_id": 920
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 478,
+ "committed_mask_sha256": "244faa0eddb8e042f0844439256561c20a4d11c9626e89445f9790fb0055cf3f",
+ "committed_normalized_churn": 0.010048349800294303,
+ "committed_xor_churn_total": 956,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 47092,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 9.753377838706001e-08,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": 0.18492767214775085,
+ "last_committed_score_gap": 1.803669391620133e-08,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 9.753377838706001e-08,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.18492767214775085,
+ "last_raw_score_gap": 1.803669391620133e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03392743691802025,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "244faa0eddb8e042f0844439256561c20a4d11c9626e89445f9790fb0055cf3f",
+ "raw_normalized_churn": 0.010048349800294303,
+ "raw_xor_churn_total": 956,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 1128,
+ "committed_mask_sha256": "65dbe66384803d21f1d379d013ceb61aff385ac59a721fb251efac3689687554",
+ "committed_normalized_churn": 0.022152395915161036,
+ "committed_xor_churn_total": 2256,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 49792,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 16,
+ "last_committed_cutoff_score": 3.348836585814752e-08,
+ "last_committed_mask_overlap": 364,
+ "last_committed_normalized_gap": 0.01601865142583847,
+ "last_committed_score_gap": 5.364384492168028e-10,
+ "last_dwell_count": 364,
+ "last_raw_cutoff_score": 3.348836585814752e-08,
+ "last_raw_mask_overlap": 364,
+ "last_raw_normalized_gap": 0.01601865142583847,
+ "last_raw_score_gap": 5.364384492168028e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.13115759193897247,
+ "observability_min": 2.6873085978706968e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "65dbe66384803d21f1d379d013ceb61aff385ac59a721fb251efac3689687554",
+ "raw_normalized_churn": 0.022152395915161036,
+ "raw_xor_churn_total": 2256,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 337,
+ "committed_mask_sha256": "f3b514ed93c69daa069cc9ab2aa39f41b639dc804fe1ac5949ebaf6063420736",
+ "committed_normalized_churn": 0.009349164955889697,
+ "committed_xor_churn_total": 674,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 35709,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 5.967114447003041e-08,
+ "last_committed_mask_overlap": 263,
+ "last_committed_normalized_gap": 0.029301555827260017,
+ "last_committed_score_gap": 1.7484573788806301e-09,
+ "last_dwell_count": 263,
+ "last_raw_cutoff_score": 5.967114447003041e-08,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.029301555827260017,
+ "last_raw_score_gap": 1.7484573788806301e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07572316378355026,
+ "observability_min": 5.91157789386898e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "f3b514ed93c69daa069cc9ab2aa39f41b639dc804fe1ac5949ebaf6063420736",
+ "raw_normalized_churn": 0.009349164955889697,
+ "raw_xor_churn_total": 674,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 78,
+ "committed_mask_sha256": "a9762e64ef872eff0469e81c6799416748799ead8adeaa6bcfbd38ca56c4bdb2",
+ "committed_normalized_churn": 0.0032518969398815977,
+ "committed_xor_churn_total": 156,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 23908,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.497118996165227e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.6173948049545288,
+ "last_committed_score_gap": 2.159103132726159e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.497118996165227e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.6173948049545288,
+ "last_raw_score_gap": 2.159103132726159e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.039714403450489044,
+ "observability_min": 9.975707371268072e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "a9762e64ef872eff0469e81c6799416748799ead8adeaa6bcfbd38ca56c4bdb2",
+ "raw_normalized_churn": 0.0032518969398815977,
+ "raw_xor_churn_total": 156,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 91,
+ "committed_mask_sha256": "286818d4e917e5fde59ddaf3f93e3bc5644da63c29a31ae504abc0783ed3e9f4",
+ "committed_normalized_churn": 0.0036708350141185964,
+ "committed_xor_churn_total": 182,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 24699,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.9299746984179365e-07,
+ "last_committed_mask_overlap": 184,
+ "last_committed_normalized_gap": 0.026722943410277367,
+ "last_committed_score_gap": 7.829754622434848e-09,
+ "last_dwell_count": 184,
+ "last_raw_cutoff_score": 2.9299746984179365e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.026722943410277367,
+ "last_raw_score_gap": 7.829754622434848e-09,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.047387514263391495,
+ "observability_min": 7.955378578117234e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "286818d4e917e5fde59ddaf3f93e3bc5644da63c29a31ae504abc0783ed3e9f4",
+ "raw_normalized_churn": 0.0036708350141185964,
+ "raw_xor_churn_total": 182,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 235,
+ "committed_mask_sha256": "e4c402eabb8683ab386e87d15264cb1cfdba6bd5ce03f5e230e18fbc28016677",
+ "committed_normalized_churn": 0.016702203269367447,
+ "committed_xor_churn_total": 470,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 13835,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 8,
+ "last_committed_cutoff_score": 6.71606628088739e-08,
+ "last_committed_mask_overlap": 97,
+ "last_committed_normalized_gap": 0.009721728041768074,
+ "last_committed_score_gap": 6.529177198899561e-10,
+ "last_dwell_count": 97,
+ "last_raw_cutoff_score": 6.71606628088739e-08,
+ "last_raw_mask_overlap": 97,
+ "last_raw_normalized_gap": 0.009721728041768074,
+ "last_raw_score_gap": 6.529177198899561e-10,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05446861311793327,
+ "observability_min": 3.6942851000532073e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "e4c402eabb8683ab386e87d15264cb1cfdba6bd5ce03f5e230e18fbc28016677",
+ "raw_normalized_churn": 0.016702203269367447,
+ "raw_xor_churn_total": 470,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 65,
+ "committed_mask_sha256": "4730ad15a0f20893c8fd467ae5ddbdc78e3f22f2cad296f43e22e74bb23dc3a0",
+ "committed_normalized_churn": 0.006063432835820896,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 10655,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.4297800134954741e-06,
+ "last_committed_mask_overlap": 78,
+ "last_committed_normalized_gap": 0.05738307535648346,
+ "last_committed_score_gap": 8.204517598642269e-08,
+ "last_dwell_count": 78,
+ "last_raw_cutoff_score": 1.4297800134954741e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.05738307535648346,
+ "last_raw_score_gap": 8.204517598642269e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05840010568499565,
+ "observability_min": 2.387226771816131e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "4730ad15a0f20893c8fd467ae5ddbdc78e3f22f2cad296f43e22e74bb23dc3a0",
+ "raw_normalized_churn": 0.006063432835820896,
+ "raw_xor_churn_total": 130,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 66,
+ "committed_mask_sha256": "27410cd7cd538f22e8563be9505ea63df00c5079add5c8d270a30a88a6d2da81",
+ "committed_normalized_churn": 0.011454356126345018,
+ "committed_xor_churn_total": 132,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 5696,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.390635813753761e-07,
+ "last_committed_mask_overlap": 41,
+ "last_committed_normalized_gap": 0.015019077807664871,
+ "last_committed_score_gap": 3.5905145523429383e-09,
+ "last_dwell_count": 41,
+ "last_raw_cutoff_score": 2.390635813753761e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.015019077807664871,
+ "last_raw_score_gap": 3.5905145523429383e-09,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07724962383508682,
+ "observability_min": 4.866723557483965e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "27410cd7cd538f22e8563be9505ea63df00c5079add5c8d270a30a88a6d2da81",
+ "raw_normalized_churn": 0.011454356126345018,
+ "raw_xor_churn_total": 132,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 237,
+ "committed_mask_sha256": "31c62ac16ff9f00fb0403aa7d66df05e3fa8670f4ff3753a9ef82ef606bc7d5f",
+ "committed_normalized_churn": 0.02105543710021322,
+ "committed_xor_churn_total": 474,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 11019,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 9,
+ "last_committed_cutoff_score": 6.396661689223038e-08,
+ "last_committed_mask_overlap": 75,
+ "last_committed_normalized_gap": 0.07538777589797974,
+ "last_committed_score_gap": 4.8223007809156115e-09,
+ "last_dwell_count": 75,
+ "last_raw_cutoff_score": 6.396661689223038e-08,
+ "last_raw_mask_overlap": 75,
+ "last_raw_normalized_gap": 0.07538777589797974,
+ "last_raw_score_gap": 4.8223007809156115e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04541906341910362,
+ "observability_min": 6.698173393715479e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "31c62ac16ff9f00fb0403aa7d66df05e3fa8670f4ff3753a9ef82ef606bc7d5f",
+ "raw_normalized_churn": 0.02105543710021322,
+ "raw_xor_churn_total": 474,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 74,
+ "committed_mask_sha256": "5913977cf8280cbc3f2970e7fb901fb827799aa0b27e4fc03573c4bd86889f65",
+ "committed_normalized_churn": 0.018407960199004977,
+ "committed_xor_churn_total": 148,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 3946,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.203577994601801e-05,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.4770040512084961,
+ "last_committed_score_gap": 5.741115728596924e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 1.203577994601801e-05,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.4770040512084961,
+ "last_raw_score_gap": 5.741115728596924e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0564182810485363,
+ "observability_min": 8.748359903165692e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "5913977cf8280cbc3f2970e7fb901fb827799aa0b27e4fc03573c4bd86889f65",
+ "raw_normalized_churn": 0.018407960199004977,
+ "raw_xor_churn_total": 148,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 165,
+ "committed_mask_sha256": "5d3efae05920a101c2982dbd6317433d7d030ebfc63e7fcec3c69903d0a85a6f",
+ "committed_normalized_churn": 0.019860375541646606,
+ "committed_xor_churn_total": 330,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 8143,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.3196196846365638e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": 0.2059800624847412,
+ "last_committed_score_gap": 2.7181535244835686e-08,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.3196196846365638e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.2059800624847412,
+ "last_raw_score_gap": 2.7181535244835686e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.041060417890548706,
+ "observability_min": 5.732839536420897e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "5d3efae05920a101c2982dbd6317433d7d030ebfc63e7fcec3c69903d0a85a6f",
+ "raw_normalized_churn": 0.019860375541646606,
+ "raw_xor_churn_total": 330,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 120,
+ "committed_mask_sha256": "9b7ee5c894d8d83550c5d7ef6c9849b9f85817e164bdb6cbe9cede8edba8a225",
+ "committed_normalized_churn": 0.01658374792703151,
+ "committed_xor_churn_total": 240,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 7116,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.778579996260305e-08,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.05432330444455147,
+ "last_committed_score_gap": 4.76881467648127e-09,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 8.778579996260305e-08,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.05432330444455147,
+ "last_raw_score_gap": 4.76881467648127e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12145649641752243,
+ "observability_min": 9.462977068608325e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "9b7ee5c894d8d83550c5d7ef6c9849b9f85817e164bdb6cbe9cede8edba8a225",
+ "raw_normalized_churn": 0.01658374792703151,
+ "raw_xor_churn_total": 240,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "4f1f337b8dfe0f28b66b656cb9821402ec64a581b3efb587cd6563d09d3c8f69",
+ "committed_normalized_churn": 0.0003316749585406302,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 6028,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6825670172693208e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7186415195465088,
+ "last_committed_score_gap": 1.2091624739696272e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.6825670172693208e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7186415195465088,
+ "last_raw_score_gap": 1.2091624739696272e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1105087623000145,
+ "observability_min": 1.3955904876183922e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "4f1f337b8dfe0f28b66b656cb9821402ec64a581b3efb587cd6563d09d3c8f69",
+ "raw_normalized_churn": 0.0003316749585406302,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "c2fb197483030f893869d26e9f8efcc72ae52b4785690d06386063a03f6b5ba2",
+ "committed_normalized_churn": 0.005251520176893312,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 3599,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.015153950196691e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8781198859214783,
+ "last_committed_score_gap": 1.769546724972315e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.015153950196691e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8781198859214783,
+ "last_raw_score_gap": 1.769546724972315e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11610116809606552,
+ "observability_min": 7.687606107253941e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "c2fb197483030f893869d26e9f8efcc72ae52b4785690d06386063a03f6b5ba2",
+ "raw_normalized_churn": 0.005251520176893312,
+ "raw_xor_churn_total": 38,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 938,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005410760059021413,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9183571934700012,
+ "last_committed_score_gap": 0.0004969010478816926,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005410760059021413,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9183571934700012,
+ "last_raw_score_gap": 0.0004969010478816926,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09718641638755798,
+ "observability_min": 3.0333968226159413e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "committed_normalized_churn": 0.006633499170812604,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 1198,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.142702765529975e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.7313700318336487,
+ "last_committed_score_gap": 6.686698907287791e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 9.142702765529975e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.7313700318336487,
+ "last_raw_score_gap": 6.686698907287791e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10566738992929459,
+ "observability_min": 1.2385887870891565e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "raw_normalized_churn": 0.006633499170812604,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "1b54c1d4fa8bd24940823d8736f41c00c0ea2c231837dfb020d8ea1a5300ccb0",
+ "committed_normalized_churn": 0.006396588486140725,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 932,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00016602181131020188,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9638353586196899,
+ "last_committed_score_gap": 0.00016001769108697772,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00016602181131020188,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9638353586196899,
+ "last_raw_score_gap": 0.00016001769108697772,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12203800678253174,
+ "observability_min": 1.9158829189791504e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "1b54c1d4fa8bd24940823d8736f41c00c0ea2c231837dfb020d8ea1a5300ccb0",
+ "raw_normalized_churn": 0.006396588486140725,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "61e28c95e0d667e4e6bca8183c39a82261cfc0cee3105eda59b0ab3947368da5",
+ "committed_normalized_churn": 0.0013568521031207597,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 7360,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.348349532141583e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.5763474702835083,
+ "last_committed_score_gap": 3.0825076464680023e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.348349532141583e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.5763474702835083,
+ "last_raw_score_gap": 3.0825076464680023e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11137228459119797,
+ "observability_min": 1.6038422812059139e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "61e28c95e0d667e4e6bca8183c39a82261cfc0cee3105eda59b0ab3947368da5",
+ "raw_normalized_churn": 0.0013568521031207597,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ }
+ ],
+ "task_id": 771
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 129,
+ "committed_mask_sha256": "666ec7777f87231fa983cf7e4980cb481b425b49504592375d2bae34c8278231",
+ "committed_normalized_churn": 0.007899571341090018,
+ "committed_xor_churn_total": 258,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 16201,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.2547889955149003e-07,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": 0.16576361656188965,
+ "last_committed_score_gap": 3.737619636012823e-08,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 2.2547889955149003e-07,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.16576361656188965,
+ "last_raw_score_gap": 3.737619636012823e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03273673728108406,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "666ec7777f87231fa983cf7e4980cb481b425b49504592375d2bae34c8278231",
+ "raw_normalized_churn": 0.007899571341090018,
+ "raw_xor_churn_total": 258,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 609,
+ "committed_mask_sha256": "6e289d88d88e35534d2fed7f57f27b6cccbbd72ee04815b3cf0bc02e12095b55",
+ "committed_normalized_churn": 0.03483981693363845,
+ "committed_xor_churn_total": 1218,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 16871,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 23,
+ "last_committed_cutoff_score": 5.424540372445108e-09,
+ "last_committed_mask_overlap": 357,
+ "last_committed_normalized_gap": 0.0026772047858685255,
+ "last_committed_score_gap": 1.4522605340516748e-11,
+ "last_dwell_count": 357,
+ "last_raw_cutoff_score": 5.424540372445108e-09,
+ "last_raw_mask_overlap": 357,
+ "last_raw_normalized_gap": 0.0026772047858685255,
+ "last_raw_score_gap": 1.4522605340516748e-11,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09986503422260284,
+ "observability_min": 3.390550284976257e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "6e289d88d88e35534d2fed7f57f27b6cccbbd72ee04815b3cf0bc02e12095b55",
+ "raw_normalized_churn": 0.03483981693363845,
+ "raw_xor_churn_total": 1218,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 122,
+ "committed_mask_sha256": "6c33faeaf4ea18f1b18014ea676533c3f1861c99bb28bd6beb1f8402ac531a93",
+ "committed_normalized_churn": 0.009859382576369808,
+ "committed_xor_churn_total": 244,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 12252,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 7.002365975949942e-08,
+ "last_committed_mask_overlap": 263,
+ "last_committed_normalized_gap": 0.14826847612857819,
+ "last_committed_score_gap": 1.0382301240952074e-08,
+ "last_dwell_count": 263,
+ "last_raw_cutoff_score": 7.002365975949942e-08,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.14826847612857819,
+ "last_raw_score_gap": 1.0382301240952074e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05831507220864296,
+ "observability_min": 8.296628939419293e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "6c33faeaf4ea18f1b18014ea676533c3f1861c99bb28bd6beb1f8402ac531a93",
+ "raw_normalized_churn": 0.009859382576369808,
+ "raw_xor_churn_total": 244,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 51,
+ "committed_mask_sha256": "c075eb8f46af3bf9b3796b31071638a0bef6ec6ca8804240539492043ad835a7",
+ "committed_normalized_churn": 0.00619383045907214,
+ "committed_xor_churn_total": 102,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 8183,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.9500397431547754e-06,
+ "last_committed_mask_overlap": 177,
+ "last_committed_normalized_gap": 0.023488694801926613,
+ "last_committed_score_gap": 6.929258233867586e-08,
+ "last_dwell_count": 177,
+ "last_raw_cutoff_score": 2.9500397431547754e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.023488694801926613,
+ "last_raw_score_gap": 6.929258233867586e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04187816008925438,
+ "observability_min": 1.5631936634008525e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "c075eb8f46af3bf9b3796b31071638a0bef6ec6ca8804240539492043ad835a7",
+ "raw_normalized_churn": 0.00619383045907214,
+ "raw_xor_churn_total": 102,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "751496422f71bf19b2290a56fc773684f0be61d05e2a2503d61737ccffbc85b2",
+ "committed_normalized_churn": 0.0025851938895417154,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 8488,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 7.809199473740591e-07,
+ "last_committed_mask_overlap": 183,
+ "last_committed_normalized_gap": 0.07577043771743774,
+ "last_committed_score_gap": 5.9170645272388356e-08,
+ "last_dwell_count": 183,
+ "last_raw_cutoff_score": 7.809199473740591e-07,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.07577043771743774,
+ "last_raw_score_gap": 5.9170645272388356e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.029164837673306465,
+ "observability_min": 1.5081665916127918e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "751496422f71bf19b2290a56fc773684f0be61d05e2a2503d61737ccffbc85b2",
+ "raw_normalized_churn": 0.0025851938895417154,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 85,
+ "committed_mask_sha256": "619cd7e607f5915ded5d45c262ffac4372068f15f0b9662da9810eee2432ed05",
+ "committed_normalized_churn": 0.017598343685300208,
+ "committed_xor_churn_total": 170,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 4745,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.4480417576123727e-07,
+ "last_committed_mask_overlap": 103,
+ "last_committed_normalized_gap": 0.0064085377380251884,
+ "last_committed_score_gap": 9.27983023757406e-10,
+ "last_dwell_count": 103,
+ "last_raw_cutoff_score": 1.4480417576123727e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.0064085377380251884,
+ "last_raw_score_gap": 9.27983023757406e-10,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.054027002304792404,
+ "observability_min": 4.8759516424468075e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "619cd7e607f5915ded5d45c262ffac4372068f15f0b9662da9810eee2432ed05",
+ "raw_normalized_churn": 0.017598343685300208,
+ "raw_xor_churn_total": 170,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "7c92dc38b7fbe1049698c912e742779b2c8839ef070c5342b8b1b870bdb36d3a",
+ "committed_normalized_churn": 0.008152173913043478,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 3650,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.6654092860335368e-06,
+ "last_committed_mask_overlap": 79,
+ "last_committed_normalized_gap": 0.0003296449431218207,
+ "last_committed_score_gap": 5.489937393576838e-10,
+ "last_dwell_count": 79,
+ "last_raw_cutoff_score": 1.6654092860335368e-06,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.0003296449431218207,
+ "last_raw_score_gap": 5.489937393576838e-10,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050164595246315,
+ "observability_min": 6.162258614494931e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "7c92dc38b7fbe1049698c912e742779b2c8839ef070c5342b8b1b870bdb36d3a",
+ "raw_normalized_churn": 0.008152173913043478,
+ "raw_xor_churn_total": 60,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "bc39469acc8feac6bc72f6ff93bae4d8c807aa4d2786ed33868b12acb8c0af24",
+ "committed_normalized_churn": 0.011122345803842264,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1956,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.540242682400276e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.6909493803977966,
+ "last_committed_score_gap": 3.8280271041912783e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 5.540242682400276e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.6909493803977966,
+ "last_raw_score_gap": 3.8280271041912783e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05362372472882271,
+ "observability_min": 7.44765600302344e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "bc39469acc8feac6bc72f6ff93bae4d8c807aa4d2786ed33868b12acb8c0af24",
+ "raw_normalized_churn": 0.011122345803842264,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 108,
+ "committed_mask_sha256": "bf85f6679b591cd5966f7bbb65248ba10cc0071944220ad1b3952a6d5ed54ada",
+ "committed_normalized_churn": 0.027950310559006212,
+ "committed_xor_churn_total": 216,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 3756,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8948233559967775e-07,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.034216102212667465,
+ "last_committed_score_gap": 6.483347192443034e-09,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.8948233559967775e-07,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.034216102212667465,
+ "last_raw_score_gap": 6.483347192443034e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03207545354962349,
+ "observability_min": 1.296249934057414e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "bf85f6679b591cd5966f7bbb65248ba10cc0071944220ad1b3952a6d5ed54ada",
+ "raw_normalized_churn": 0.027950310559006212,
+ "raw_xor_churn_total": 216,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 41,
+ "committed_mask_sha256": "5e15a07fff28b255b91a4a5f722efb78e3e7d7ab3204e3f15aa996049c8bd308",
+ "committed_normalized_churn": 0.029710144927536233,
+ "committed_xor_churn_total": 82,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1339,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.0342673704144545e-05,
+ "last_committed_mask_overlap": 28,
+ "last_committed_normalized_gap": 0.13953959941864014,
+ "last_committed_score_gap": 1.443212568119634e-06,
+ "last_dwell_count": 28,
+ "last_raw_cutoff_score": 1.0342673704144545e-05,
+ "last_raw_mask_overlap": 28,
+ "last_raw_normalized_gap": 0.13953959941864014,
+ "last_raw_score_gap": 1.443212568119634e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03959038853645325,
+ "observability_min": 2.803876100188063e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "5e15a07fff28b255b91a4a5f722efb78e3e7d7ab3204e3f15aa996049c8bd308",
+ "raw_normalized_churn": 0.029710144927536233,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 94,
+ "committed_mask_sha256": "2c93b6653b1b45838978f3d98ae451c861634583d015d8593fe6d00caa893de7",
+ "committed_normalized_churn": 0.03295932678821879,
+ "committed_xor_churn_total": 188,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2758,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.402716236498236e-07,
+ "last_committed_mask_overlap": 60,
+ "last_committed_normalized_gap": 0.07634464651346207,
+ "last_committed_score_gap": 1.0708987474572496e-08,
+ "last_dwell_count": 60,
+ "last_raw_cutoff_score": 1.402716236498236e-07,
+ "last_raw_mask_overlap": 60,
+ "last_raw_normalized_gap": 0.07634464651346207,
+ "last_raw_score_gap": 1.0708987474572496e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03539694845676422,
+ "observability_min": 2.3496141920986702e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "2c93b6653b1b45838978f3d98ae451c861634583d015d8593fe6d00caa893de7",
+ "raw_normalized_churn": 0.03295932678821879,
+ "raw_xor_churn_total": 188,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 45,
+ "committed_mask_sha256": "d12ded3f36059c94efcacb9caba86ab52b068bf2e9646b53d2826d7372c3078b",
+ "committed_normalized_churn": 0.018115942028985508,
+ "committed_xor_churn_total": 90,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 2439,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 1.70489542483665e-07,
+ "last_committed_mask_overlap": 49,
+ "last_committed_normalized_gap": 0.04840539023280144,
+ "last_committed_score_gap": 8.252612815340399e-09,
+ "last_dwell_count": 49,
+ "last_raw_cutoff_score": 1.70489542483665e-07,
+ "last_raw_mask_overlap": 49,
+ "last_raw_normalized_gap": 0.04840539023280144,
+ "last_raw_score_gap": 8.252612815340399e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10099761188030243,
+ "observability_min": 2.1728189025793654e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d12ded3f36059c94efcacb9caba86ab52b068bf2e9646b53d2826d7372c3078b",
+ "raw_normalized_churn": 0.018115942028985508,
+ "raw_xor_churn_total": 90,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "4a1b6283eb845adfecb6a9e92f0ec8645bd42f42568ee4ea1d984d7342cd5397",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 2070,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.896245521493256e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.645084023475647,
+ "last_committed_score_gap": 1.2232377230247948e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.896245521493256e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.645084023475647,
+ "last_raw_score_gap": 1.2232377230247948e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10736694931983948,
+ "observability_min": 3.273875748277533e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "4a1b6283eb845adfecb6a9e92f0ec8645bd42f42568ee4ea1d984d7342cd5397",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "bbbd9b0fafe10e0d2da721c4189caf9a456f9ee709b08035d0c547ebab5b1b40",
+ "committed_normalized_churn": 0.010466988727858293,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 1229,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.334262252494227e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.6438989043235779,
+ "last_committed_score_gap": 4.078624442627188e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 6.334262252494227e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.6438989043235779,
+ "last_raw_score_gap": 4.078624442627188e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10785167664289474,
+ "observability_min": 6.920857487102694e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "bbbd9b0fafe10e0d2da721c4189caf9a456f9ee709b08035d0c547ebab5b1b40",
+ "raw_normalized_churn": 0.010466988727858293,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 322,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005191183881834149,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6781460642814636,
+ "last_committed_score_gap": 0.0003520380996633321,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005191183881834149,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6781460642814636,
+ "last_raw_score_gap": 0.0003520380996633321,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09160400182008743,
+ "observability_min": 8.14018505934655e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "ed96b5649b0a470c130cd6db684ea1cccb581afd1b182d7ad824dc60b79e7de5",
+ "committed_normalized_churn": 0.012077294685990338,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 409,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.015553612494841e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.1882903277873993,
+ "last_committed_score_gap": 1.5092511603143066e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 8.015553612494841e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.1882903277873993,
+ "last_raw_score_gap": 1.5092511603143066e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10091803967952728,
+ "observability_min": 1.0210123946308158e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ed96b5649b0a470c130cd6db684ea1cccb581afd1b182d7ad824dc60b79e7de5",
+ "raw_normalized_churn": 0.012077294685990338,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "27dd4b3313b714ff21c5ef2c50c8e015ff470323ebbe901ef4015a4f33a6505d",
+ "committed_normalized_churn": 0.006211180124223602,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 320,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.9762383898487315e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6736694574356079,
+ "last_committed_score_gap": 4.026009264634922e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 5.9762383898487315e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6736694574356079,
+ "last_raw_score_gap": 4.026009264634922e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11526400595903397,
+ "observability_min": 5.216726250978354e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "27dd4b3313b714ff21c5ef2c50c8e015ff470323ebbe901ef4015a4f33a6505d",
+ "raw_normalized_churn": 0.006211180124223602,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "83d4d0c71b7f1b74ca0795e11ea7fc838b8dc38bee31538e6882251775b12209",
+ "committed_normalized_churn": 0.0035573122529644267,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 2521,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.389617283275584e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.36752790212631226,
+ "last_committed_score_gap": 2.348362613702193e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 6.389617283275584e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.36752790212631226,
+ "last_raw_score_gap": 2.348362613702193e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10772296786308289,
+ "observability_min": 5.28281063338909e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "83d4d0c71b7f1b74ca0795e11ea7fc838b8dc38bee31538e6882251775b12209",
+ "raw_normalized_churn": 0.0035573122529644267,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ }
+ ],
+ "task_id": 869
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 113,
+ "committed_mask_sha256": "23e41fd0374fc37116e6231770a19229a1784b9e716f2dddfa25ff3b8e573d43",
+ "committed_normalized_churn": 0.00909456740442656,
+ "committed_xor_churn_total": 226,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 12312,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.4355681798861042e-07,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": 0.037918463349342346,
+ "last_committed_score_gap": 5.443453687803412e-09,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 1.4355681798861042e-07,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.037918463349342346,
+ "last_raw_score_gap": 5.443453687803412e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04387785866856575,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "23e41fd0374fc37116e6231770a19229a1784b9e716f2dddfa25ff3b8e573d43",
+ "raw_normalized_churn": 0.00909456740442656,
+ "raw_xor_churn_total": 226,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 301,
+ "committed_mask_sha256": "4ec05be30f0d076f6cf4627ed9883672e56b30204d9f5880c9e0301dbc38506c",
+ "committed_normalized_churn": 0.022631578947368423,
+ "committed_xor_churn_total": 602,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 12999,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 7,
+ "last_committed_cutoff_score": 8.40342373464864e-09,
+ "last_committed_mask_overlap": 373,
+ "last_committed_normalized_gap": 0.02120116539299488,
+ "last_committed_score_gap": 1.7816237374290722e-10,
+ "last_dwell_count": 373,
+ "last_raw_cutoff_score": 8.40342373464864e-09,
+ "last_raw_mask_overlap": 373,
+ "last_raw_normalized_gap": 0.02120116539299488,
+ "last_raw_score_gap": 1.7816237374290722e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09698230773210526,
+ "observability_min": 6.044836853291713e-11,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "4ec05be30f0d076f6cf4627ed9883672e56b30204d9f5880c9e0301dbc38506c",
+ "raw_normalized_churn": 0.022631578947368423,
+ "raw_xor_churn_total": 602,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 71,
+ "committed_mask_sha256": "9570214723c0763c24f8818630c33d778979d693feba248f09e220c6b2c1af93",
+ "committed_normalized_churn": 0.007541157727031333,
+ "committed_xor_churn_total": 142,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 9344,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 9.607022377622343e-08,
+ "last_committed_mask_overlap": 266,
+ "last_committed_normalized_gap": 2.3889328076620586e-05,
+ "last_committed_score_gap": 2.2950530365051236e-12,
+ "last_dwell_count": 266,
+ "last_raw_cutoff_score": 9.607022377622343e-08,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 2.3889328076620586e-05,
+ "last_raw_score_gap": 2.2950530365051236e-12,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05601523444056511,
+ "observability_min": 1.1970991975474021e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "9570214723c0763c24f8818630c33d778979d693feba248f09e220c6b2c1af93",
+ "raw_normalized_churn": 0.007541157727031333,
+ "raw_xor_churn_total": 142,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 45,
+ "committed_mask_sha256": "fe0640328b410cf235a45209d1eb3342616794e379d841b35364a212b5ccf62e",
+ "committed_normalized_churn": 0.007182761372705506,
+ "committed_xor_churn_total": 90,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6220,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.055236786371097e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.014526058919727802,
+ "last_committed_score_gap": 5.89066075917799e-08,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 4.055236786371097e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.014526058919727802,
+ "last_raw_score_gap": 5.89066075917799e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04150775447487831,
+ "observability_min": 5.570746086647205e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "fe0640328b410cf235a45209d1eb3342616794e379d841b35364a212b5ccf62e",
+ "raw_normalized_churn": 0.007182761372705506,
+ "raw_xor_churn_total": 90,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "6918a44892a0e57f1566773b4068ab0066c5e9b4415a2faf00b135b69fafdb07",
+ "committed_normalized_churn": 0.0026254826254826255,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 6458,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.415805948265188e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.7516260147094727,
+ "last_committed_score_gap": 7.077164809743408e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 9.415805948265188e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.7516260147094727,
+ "last_raw_score_gap": 7.077164809743408e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.026271630078554153,
+ "observability_min": 6.485232262321006e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "6918a44892a0e57f1566773b4068ab0066c5e9b4415a2faf00b135b69fafdb07",
+ "raw_normalized_churn": 0.0026254826254826255,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 68,
+ "committed_mask_sha256": "60d8cee12e5179e2ea98729bda17f80f6be811884cbcaa950194e295899a4c8e",
+ "committed_normalized_churn": 0.01850340136054422,
+ "committed_xor_churn_total": 136,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3607,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.511034438157367e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.03589598089456558,
+ "last_committed_score_gap": 9.013604085339466e-09,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.511034438157367e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.03589598089456558,
+ "last_raw_score_gap": 9.013604085339466e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03314143419265747,
+ "observability_min": 2.9117813937773462e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "60d8cee12e5179e2ea98729bda17f80f6be811884cbcaa950194e295899a4c8e",
+ "raw_normalized_churn": 0.01850340136054422,
+ "raw_xor_churn_total": 136,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "c857e4c87e8c38937ec4c51d25c9058cb5b0a2e20cca4aa5212daef472621f56",
+ "committed_normalized_churn": 0.008214285714285714,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2777,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6668441276124213e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.45020541548728943,
+ "last_committed_score_gap": 7.504222594434395e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.6668441276124213e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.45020541548728943,
+ "last_raw_score_gap": 7.504222594434395e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04664970561861992,
+ "observability_min": 1.2576252572671365e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "c857e4c87e8c38937ec4c51d25c9058cb5b0a2e20cca4aa5212daef472621f56",
+ "raw_normalized_churn": 0.008214285714285714,
+ "raw_xor_churn_total": 46,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "c0d569320d872ecc7fd76f8828dccf00f170602e08ddf6d4a01c3d32ac68fc74",
+ "committed_normalized_churn": 0.006644518272425249,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1495,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.127585041009297e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.6984828114509583,
+ "last_committed_score_gap": 3.581530165774893e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 5.127585041009297e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.6984828114509583,
+ "last_raw_score_gap": 3.581530165774893e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.056476183235645294,
+ "observability_min": 2.3572489737944124e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "c0d569320d872ecc7fd76f8828dccf00f170602e08ddf6d4a01c3d32ac68fc74",
+ "raw_normalized_churn": 0.006644518272425249,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 67,
+ "committed_mask_sha256": "909c0a6eaa547bbfd465a09011aa85483bd8be09f67633945ceccd84b1075d0a",
+ "committed_normalized_churn": 0.022789115646258504,
+ "committed_xor_churn_total": 134,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2873,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.1053923287818179e-07,
+ "last_committed_mask_overlap": 82,
+ "last_committed_normalized_gap": 0.12826015055179596,
+ "last_committed_score_gap": 1.4177778950852371e-08,
+ "last_dwell_count": 82,
+ "last_raw_cutoff_score": 1.1053923287818179e-07,
+ "last_raw_mask_overlap": 82,
+ "last_raw_normalized_gap": 0.12826015055179596,
+ "last_raw_score_gap": 1.4177778950852371e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04302891716361046,
+ "observability_min": 1.7448344635795365e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "909c0a6eaa547bbfd465a09011aa85483bd8be09f67633945ceccd84b1075d0a",
+ "raw_normalized_churn": 0.022789115646258504,
+ "raw_xor_churn_total": 134,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 29,
+ "committed_mask_sha256": "cc850bbf2482a80177c512f5875344aa07fbdcf028f56a962b1c4dade026cbb5",
+ "committed_normalized_churn": 0.02761904761904762,
+ "committed_xor_churn_total": 58,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1021,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.699425390863325e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.13024304807186127,
+ "last_committed_score_gap": 1.2632826837943867e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 9.699425390863325e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.13024304807186127,
+ "last_raw_score_gap": 1.2632826837943867e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04191617667675018,
+ "observability_min": 3.470042884146096e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "cc850bbf2482a80177c512f5875344aa07fbdcf028f56a962b1c4dade026cbb5",
+ "raw_normalized_churn": 0.02761904761904762,
+ "raw_xor_churn_total": 58,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 70,
+ "committed_mask_sha256": "77f5e6b0baa87427b230d1f982d66af46ee2318496c8679074880e03706b752c",
+ "committed_normalized_churn": 0.03225806451612903,
+ "committed_xor_churn_total": 140,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2100,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.261339773212967e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.6149218082427979,
+ "last_committed_score_gap": 1.3905471973885142e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.261339773212967e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.6149218082427979,
+ "last_raw_score_gap": 1.3905471973885142e-07,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05166446417570114,
+ "observability_min": 1.5470128289507556e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "77f5e6b0baa87427b230d1f982d66af46ee2318496c8679074880e03706b752c",
+ "raw_normalized_churn": 0.03225806451612903,
+ "raw_xor_churn_total": 140,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 47,
+ "committed_mask_sha256": "de3c9c4c68264be510ab72fb25006e5938977c1a1d1766cb6acb95613bbb1cbd",
+ "committed_normalized_churn": 0.02486772486772487,
+ "committed_xor_churn_total": 94,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1843,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.898072241601767e-07,
+ "last_committed_mask_overlap": 52,
+ "last_committed_normalized_gap": 0.304842084646225,
+ "last_committed_score_gap": 5.786122869722021e-08,
+ "last_dwell_count": 52,
+ "last_raw_cutoff_score": 1.898072241601767e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.304842084646225,
+ "last_raw_score_gap": 5.786122869722021e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09996703267097473,
+ "observability_min": 2.8733413870440927e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "de3c9c4c68264be510ab72fb25006e5938977c1a1d1766cb6acb95613bbb1cbd",
+ "raw_normalized_churn": 0.02486772486772487,
+ "raw_xor_churn_total": 94,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "23a2c7057745d509a1f5ffa058c1f0e28ed40bf48fcd2895dad8ef456a1fbd52",
+ "committed_normalized_churn": 0.0006349206349206349,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1574,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0647799172147643e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.75300133228302,
+ "last_committed_score_gap": 8.017806976567954e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.0647799172147643e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.75300133228302,
+ "last_raw_score_gap": 8.017806976567954e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10891885310411453,
+ "observability_min": 1.3599287029819607e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "23a2c7057745d509a1f5ffa058c1f0e28ed40bf48fcd2895dad8ef456a1fbd52",
+ "raw_normalized_churn": 0.0006349206349206349,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "2532051ae184ffcd0d36450b286b3458bc2b4a9eea98ff3ced16ae9f988e9824",
+ "committed_normalized_churn": 0.005291005291005291,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 940,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.735718979034573e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.827846884727478,
+ "last_committed_score_gap": 1.4369095879374072e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.735718979034573e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.827846884727478,
+ "last_raw_score_gap": 1.4369095879374072e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11255506426095963,
+ "observability_min": 1.077787743497538e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "2532051ae184ffcd0d36450b286b3458bc2b4a9eea98ff3ced16ae9f988e9824",
+ "raw_normalized_churn": 0.005291005291005291,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0009782034903764725,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8199619650840759,
+ "last_committed_score_gap": 0.0008020896348170936,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0009782034903764725,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8199619650840759,
+ "last_raw_score_gap": 0.0008020896348170936,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09244658052921295,
+ "observability_min": 4.940023501376345e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.015873015873015872,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 310,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00017633159586694092,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.8382759690284729,
+ "last_committed_score_gap": 0.00014781454228796065,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00017633159586694092,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.8382759690284729,
+ "last_raw_score_gap": 0.00014781454228796065,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10436496138572693,
+ "observability_min": 1.80131447535814e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.015873015873015872,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "committed_normalized_churn": 0.004081632653061225,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 244,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0001480895298300311,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6649798154830933,
+ "last_committed_score_gap": 9.847655019257218e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0001480895298300311,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6649798154830933,
+ "last_raw_score_gap": 9.847655019257218e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12306632101535797,
+ "observability_min": 2.65744990457506e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "raw_normalized_churn": 0.004081632653061225,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "103567299d3307b44ce9f7ed2f34032f015aa00a1770434ed38e838d21178aaf",
+ "committed_normalized_churn": 0.002077922077922078,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1921,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.843092811934184e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.6224151849746704,
+ "last_committed_score_gap": 6.126490461610956e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 9.843092811934184e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.6224151849746704,
+ "last_raw_score_gap": 6.126490461610956e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1121813952922821,
+ "observability_min": 4.242701301393481e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "103567299d3307b44ce9f7ed2f34032f015aa00a1770434ed38e838d21178aaf",
+ "raw_normalized_churn": 0.002077922077922078,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ }
+ ],
+ "task_id": 851
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 113,
+ "committed_mask_sha256": "b30fd727492c2d92e40c1f931b450a0d309c02de69956c8447d22ae110c4d2b1",
+ "committed_normalized_churn": 0.008841940532081377,
+ "committed_xor_churn_total": 226,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 12667,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.4277075877089374e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.002541556488722563,
+ "last_committed_score_gap": 3.6285996429796796e-10,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 1.4277075877089374e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.002541556488722563,
+ "last_raw_score_gap": 3.6285996429796796e-10,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03661351278424263,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "b30fd727492c2d92e40c1f931b450a0d309c02de69956c8447d22ae110c4d2b1",
+ "raw_normalized_churn": 0.008841940532081377,
+ "raw_xor_churn_total": 226,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 417,
+ "committed_mask_sha256": "9bcca7b947cd0c711b351d09d5db7d30a86d1bded3a514671b8a19268ecf3a50",
+ "committed_normalized_churn": 0.03048245614035088,
+ "committed_xor_churn_total": 834,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 13263,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 18,
+ "last_committed_cutoff_score": 2.2462858240146488e-08,
+ "last_committed_mask_overlap": 362,
+ "last_committed_normalized_gap": 0.017693061381578445,
+ "last_committed_score_gap": 3.9743675017689384e-10,
+ "last_dwell_count": 362,
+ "last_raw_cutoff_score": 2.2462858240146488e-08,
+ "last_raw_mask_overlap": 362,
+ "last_raw_normalized_gap": 0.017693061381578445,
+ "last_raw_score_gap": 3.9743675017689384e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10602586716413498,
+ "observability_min": 2.796427978069005e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "9bcca7b947cd0c711b351d09d5db7d30a86d1bded3a514671b8a19268ecf3a50",
+ "raw_normalized_churn": 0.03048245614035088,
+ "raw_xor_churn_total": 834,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 106,
+ "committed_mask_sha256": "ab68870aa12a59b9d7cc8c1bacf762ec5998e9cf3dfa6948976ac5ebc95327ee",
+ "committed_normalized_churn": 0.010945890128046263,
+ "committed_xor_churn_total": 212,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 9578,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 7,
+ "last_committed_cutoff_score": 1.0374592562811813e-07,
+ "last_committed_mask_overlap": 262,
+ "last_committed_normalized_gap": 0.0379163920879364,
+ "last_committed_score_gap": 3.933671166578279e-09,
+ "last_dwell_count": 262,
+ "last_raw_cutoff_score": 1.0374592562811813e-07,
+ "last_raw_mask_overlap": 262,
+ "last_raw_normalized_gap": 0.0379163920879364,
+ "last_raw_score_gap": 3.933671166578279e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05918871611356735,
+ "observability_min": 6.871231583716053e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "ab68870aa12a59b9d7cc8c1bacf762ec5998e9cf3dfa6948976ac5ebc95327ee",
+ "raw_normalized_churn": 0.010945890128046263,
+ "raw_xor_churn_total": 212,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 32,
+ "committed_mask_sha256": "8cafd713d5a9b1a2b35cac69afe01b69b66a8f620ced940c6b970a025975c357",
+ "committed_normalized_churn": 0.004965859714463066,
+ "committed_xor_churn_total": 64,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6412,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.537717591621913e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.21769340336322784,
+ "last_committed_score_gap": 5.524443622562103e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.537717591621913e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.21769340336322784,
+ "last_raw_score_gap": 5.524443622562103e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04250706732273102,
+ "observability_min": 1.952424000251085e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "8cafd713d5a9b1a2b35cac69afe01b69b66a8f620ced940c6b970a025975c357",
+ "raw_normalized_churn": 0.004965859714463066,
+ "raw_xor_churn_total": 64,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "3bdb2b35eaafbc92430c63237baed670b7b3cc2219f2c4ad21387f502e674313",
+ "committed_normalized_churn": 0.0025525525525525524,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 6643,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 8.147260928126343e-07,
+ "last_committed_mask_overlap": 184,
+ "last_committed_normalized_gap": 0.012944423593580723,
+ "last_committed_score_gap": 1.0546159501245711e-08,
+ "last_dwell_count": 184,
+ "last_raw_cutoff_score": 8.147260928126343e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.012944423593580723,
+ "last_raw_score_gap": 1.0546159501245711e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.032716672867536545,
+ "observability_min": 2.9948957092074124e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "3bdb2b35eaafbc92430c63237baed670b7b3cc2219f2c4ad21387f502e674313",
+ "raw_normalized_churn": 0.0025525525525525524,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 65,
+ "committed_mask_sha256": "532b483bfd74990f513dd45c7ea186a61454945f4601b8985f98f4474f53520e",
+ "committed_normalized_churn": 0.017195767195767195,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3715,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.0358400831810286e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.044201113283634186,
+ "last_committed_score_gap": 8.998640055324358e-09,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.0358400831810286e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.044201113283634186,
+ "last_raw_score_gap": 8.998640055324358e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04879630729556084,
+ "observability_min": 3.942557835756588e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "532b483bfd74990f513dd45c7ea186a61454945f4601b8985f98f4474f53520e",
+ "raw_normalized_churn": 0.017195767195767195,
+ "raw_xor_churn_total": 130,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "b8897e00c9d17c361dc0f65b4e467ee182ed6cc8debb64169bb9300f11364788",
+ "committed_normalized_churn": 0.00625,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2862,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5478649402211886e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.0886446163058281,
+ "last_committed_score_gap": 1.3720989500143332e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.5478649402211886e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.0886446163058281,
+ "last_raw_score_gap": 1.3720989500143332e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05391395837068558,
+ "observability_min": 1.2623313239146228e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "b8897e00c9d17c361dc0f65b4e467ee182ed6cc8debb64169bb9300f11364788",
+ "raw_normalized_churn": 0.00625,
+ "raw_xor_churn_total": 36,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "e4dfcf4d97946f426b65d500aac31bdcff75aca5282fc99ace2bcad00db50e2e",
+ "committed_normalized_churn": 0.010981912144702842,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1531,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 4.4409185306903964e-07,
+ "last_committed_mask_overlap": 42,
+ "last_committed_normalized_gap": 0.0903315618634224,
+ "last_committed_score_gap": 4.011550913674e-08,
+ "last_dwell_count": 42,
+ "last_raw_cutoff_score": 4.4409185306903964e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.0903315618634224,
+ "last_raw_score_gap": 4.011550913674e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.059115931391716,
+ "observability_min": 2.905752580772969e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "e4dfcf4d97946f426b65d500aac31bdcff75aca5282fc99ace2bcad00db50e2e",
+ "raw_normalized_churn": 0.010981912144702842,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 70,
+ "committed_mask_sha256": "397db6193dbe014f5d393eac568d79a032b7630c478801cefbb5cd66dfd52d9c",
+ "committed_normalized_churn": 0.023148148148148147,
+ "committed_xor_churn_total": 140,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2954,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.5039208278722072e-07,
+ "last_committed_mask_overlap": 81,
+ "last_committed_normalized_gap": 0.062321752309799194,
+ "last_committed_score_gap": 9.372698173137906e-09,
+ "last_dwell_count": 81,
+ "last_raw_cutoff_score": 1.5039208278722072e-07,
+ "last_raw_mask_overlap": 81,
+ "last_raw_normalized_gap": 0.062321752309799194,
+ "last_raw_score_gap": 9.372698173137906e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03651866689324379,
+ "observability_min": 3.2067944744085253e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "397db6193dbe014f5d393eac568d79a032b7630c478801cefbb5cd66dfd52d9c",
+ "raw_normalized_churn": 0.023148148148148147,
+ "raw_xor_churn_total": 140,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "c5e02bba39c8bcf6069cd1e1fe78cc2b3ec993546463f737001553192d1433dd",
+ "committed_normalized_churn": 0.022222222222222223,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1056,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.119716398534365e-05,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.21295973658561707,
+ "last_committed_score_gap": 2.3845450414228253e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 1.119716398534365e-05,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.21295973658561707,
+ "last_raw_score_gap": 2.3845450414228253e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03480956330895424,
+ "observability_min": 2.1686106776996894e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "c5e02bba39c8bcf6069cd1e1fe78cc2b3ec993546463f737001553192d1433dd",
+ "raw_normalized_churn": 0.022222222222222223,
+ "raw_xor_churn_total": 48,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 78,
+ "committed_mask_sha256": "5a9c6287e6c97f2c40ce81a9a2e78f3280134592ed607a0308d2d2bcf6362a75",
+ "committed_normalized_churn": 0.03494623655913978,
+ "committed_xor_churn_total": 156,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2154,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 2.0360604935376614e-07,
+ "last_committed_mask_overlap": 58,
+ "last_committed_normalized_gap": 0.007414062973111868,
+ "last_committed_score_gap": 1.5095480421223328e-09,
+ "last_dwell_count": 58,
+ "last_raw_cutoff_score": 2.0360604935376614e-07,
+ "last_raw_mask_overlap": 58,
+ "last_raw_normalized_gap": 0.007414062973111868,
+ "last_raw_score_gap": 1.5095480421223328e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04460650309920311,
+ "observability_min": 9.180801896491175e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "5a9c6287e6c97f2c40ce81a9a2e78f3280134592ed607a0308d2d2bcf6362a75",
+ "raw_normalized_churn": 0.03494623655913978,
+ "raw_xor_churn_total": 156,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "53bb1c8d033ac57650db7394bf6fc0fba300bf8cc4dd02fa52878b29753b24cc",
+ "committed_normalized_churn": 0.01748971193415638,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1910,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 2.958615539228049e-07,
+ "last_committed_mask_overlap": 50,
+ "last_committed_normalized_gap": 0.027536040171980858,
+ "last_committed_score_gap": 8.146855634549865e-09,
+ "last_dwell_count": 50,
+ "last_raw_cutoff_score": 2.958615539228049e-07,
+ "last_raw_mask_overlap": 50,
+ "last_raw_normalized_gap": 0.027536040171980858,
+ "last_raw_score_gap": 8.146855634549865e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09452247619628906,
+ "observability_min": 8.003800644473813e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "53bb1c8d033ac57650db7394bf6fc0fba300bf8cc4dd02fa52878b29753b24cc",
+ "raw_normalized_churn": 0.01748971193415638,
+ "raw_xor_churn_total": 68,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "dbe34a46aac3135c93751fe0fea019702495907b1cfd7394fa72e2100565f049",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1620,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6267233149847016e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7912289500236511,
+ "last_committed_score_gap": 1.2871105354861356e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.6267233149847016e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7912289500236511,
+ "last_raw_score_gap": 1.2871105354861356e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10417813807725906,
+ "observability_min": 1.3132063436671615e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "dbe34a46aac3135c93751fe0fea019702495907b1cfd7394fa72e2100565f049",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "aea9277157cac513770f6cab67ce3bbba4da4c32ef44439f177020020dd6baaa",
+ "committed_normalized_churn": 0.0030864197530864196,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 969,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4493355593003798e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.408037394285202,
+ "last_committed_score_gap": 5.913831046200357e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.4493355593003798e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.408037394285202,
+ "last_raw_score_gap": 5.913831046200357e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09991583228111267,
+ "observability_min": 1.9054866129408765e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "aea9277157cac513770f6cab67ce3bbba4da4c32ef44439f177020020dd6baaa",
+ "raw_normalized_churn": 0.0030864197530864196,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "58ca4272bcb51e7fecec556e7878056a906d8d41ca8ab8a3b9f7543bf14ac247",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0002924121799878776,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.84930020570755,
+ "last_committed_score_gap": 0.0002483457210473716,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0002924121799878776,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.84930020570755,
+ "last_raw_score_gap": 0.0002483457210473716,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08773360401391983,
+ "observability_min": 8.310416887979954e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "58ca4272bcb51e7fecec556e7878056a906d8d41ca8ab8a3b9f7543bf14ac247",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.006172839506172839,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 322,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00014599172573070973,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.9350185394287109,
+ "last_committed_score_gap": 0.00013650496839545667,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00014599172573070973,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.9350185394287109,
+ "last_raw_score_gap": 0.00013650496839545667,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09960097819566727,
+ "observability_min": 1.2622207279378017e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.006172839506172839,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.89464611443691e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8647401332855225,
+ "last_committed_score_gap": 6.826817116234452e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.89464611443691e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8647401332855225,
+ "last_raw_score_gap": 6.826817116234452e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10713832825422287,
+ "observability_min": 4.3447503372817664e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "4663ddb0ff0e73352f07f05743fcf0adb4ec55d54e4e04750c4b5459e730fe12",
+ "committed_normalized_churn": 0.0035353535353535356,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1973,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.822446382808266e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.3287775218486786,
+ "last_committed_score_gap": 1.91428944162908e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.822446382808266e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.3287775218486786,
+ "last_raw_score_gap": 1.91428944162908e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10632011294364929,
+ "observability_min": 1.3809284826749035e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "4663ddb0ff0e73352f07f05743fcf0adb4ec55d54e4e04750c4b5459e730fe12",
+ "raw_normalized_churn": 0.0035353535353535356,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ }
+ ],
+ "task_id": 728
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 159,
+ "committed_mask_sha256": "023fc252834001f7d6883cd0af4dc28e6fb21d701a5438c718ae7cd570ed7772",
+ "committed_normalized_churn": 0.01178650852483321,
+ "committed_xor_churn_total": 318,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 13331,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 1.604381054676196e-07,
+ "last_committed_mask_overlap": 350,
+ "last_committed_normalized_gap": 0.17768791317939758,
+ "last_committed_score_gap": 2.8507912475106423e-08,
+ "last_dwell_count": 350,
+ "last_raw_cutoff_score": 1.604381054676196e-07,
+ "last_raw_mask_overlap": 350,
+ "last_raw_normalized_gap": 0.17768791317939758,
+ "last_raw_score_gap": 2.8507912475106423e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.052964843809604645,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "023fc252834001f7d6883cd0af4dc28e6fb21d701a5438c718ae7cd570ed7772",
+ "raw_normalized_churn": 0.01178650852483321,
+ "raw_xor_churn_total": 318,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 303,
+ "committed_mask_sha256": "92f3406772e448b3bf16b24299cf079086d508c896a12df31f3dc19aa1020d14",
+ "committed_normalized_churn": 0.02098337950138504,
+ "committed_xor_churn_total": 606,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 14137,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.332782500502617e-08,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": 0.09469230473041534,
+ "last_committed_score_gap": 2.2089654549972693e-09,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 2.332782500502617e-08,
+ "last_raw_mask_overlap": 380,
+ "last_raw_normalized_gap": 0.09469230473041534,
+ "last_raw_score_gap": 2.2089654549972693e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09210807830095291,
+ "observability_min": 1.1947070888140843e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "92f3406772e448b3bf16b24299cf079086d508c896a12df31f3dc19aa1020d14",
+ "raw_normalized_churn": 0.02098337950138504,
+ "raw_xor_churn_total": 606,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 85,
+ "committed_mask_sha256": "bd5dcfc22c894a85ad79274be1cbf8c2a02d4152dea0526848ddc38449317fdd",
+ "committed_normalized_churn": 0.008315398160829584,
+ "committed_xor_churn_total": 170,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 10137,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.33086496957003e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": 0.3894367516040802,
+ "last_committed_score_gap": 3.633781631151578e-08,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 9.33086496957003e-08,
+ "last_raw_mask_overlap": 269,
+ "last_raw_normalized_gap": 0.3894367516040802,
+ "last_raw_score_gap": 3.633781631151578e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.038324013352394104,
+ "observability_min": 8.448434840602204e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "bd5dcfc22c894a85ad79274be1cbf8c2a02d4152dea0526848ddc38449317fdd",
+ "raw_normalized_churn": 0.008315398160829584,
+ "raw_xor_churn_total": 170,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 26,
+ "committed_mask_sha256": "93e412722b3f8c334f9552ae7c847caae0cd3e362a6c061d77b7b3cf73927f4b",
+ "committed_normalized_churn": 0.0038224051749485444,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6776,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.7923774723603856e-06,
+ "last_committed_mask_overlap": 177,
+ "last_committed_normalized_gap": 0.05090902000665665,
+ "last_committed_score_gap": 1.421572051185649e-07,
+ "last_dwell_count": 177,
+ "last_raw_cutoff_score": 2.7923774723603856e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.05090902000665665,
+ "last_raw_score_gap": 1.421572051185649e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04231423884630203,
+ "observability_min": 2.6696642407841864e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "93e412722b3f8c334f9552ae7c847caae0cd3e362a6c061d77b7b3cf73927f4b",
+ "raw_normalized_churn": 0.0038224051749485444,
+ "raw_xor_churn_total": 52,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "26425c2b1ae194cca834286553adbf368eabfd65ea8d6abcbc6260f33b5967a4",
+ "committed_normalized_churn": 0.001991465149359886,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 7016,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.7039632161395275e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.7450692653656006,
+ "last_committed_score_gap": 2.7597090479503095e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 3.7039632161395275e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.7450692653656006,
+ "last_raw_score_gap": 2.7597090479503095e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.023491786792874336,
+ "observability_min": 2.191741970136718e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "26425c2b1ae194cca834286553adbf368eabfd65ea8d6abcbc6260f33b5967a4",
+ "raw_normalized_churn": 0.001991465149359886,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 74,
+ "committed_mask_sha256": "ca654da2eaaccc46d7668af02ab6b96b43ad1f3dbefee52cba17495c74c2a2cb",
+ "committed_normalized_churn": 0.018546365914786967,
+ "committed_xor_churn_total": 148,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3916,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.1106612280163972e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.03776136040687561,
+ "last_committed_score_gap": 7.970143656166329e-09,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 2.1106612280163972e-07,
+ "last_raw_mask_overlap": 105,
+ "last_raw_normalized_gap": 0.03776136040687561,
+ "last_raw_score_gap": 7.970143656166329e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03024403750896454,
+ "observability_min": 1.4476974286026234e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "ca654da2eaaccc46d7668af02ab6b96b43ad1f3dbefee52cba17495c74c2a2cb",
+ "raw_normalized_churn": 0.018546365914786967,
+ "raw_xor_churn_total": 148,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "c53027c1f35b5fca8b61a84c832319b13aec42c6080574e9e9821b013f863510",
+ "committed_normalized_churn": 0.003618421052631579,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 3029,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.89575574092305e-07,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.1251688003540039,
+ "last_committed_score_gap": 1.1134710575788631e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 8.89575574092305e-07,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.1251688003540039,
+ "last_raw_score_gap": 1.1134710575788631e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.039790503680706024,
+ "observability_min": 4.868075507147296e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "c53027c1f35b5fca8b61a84c832319b13aec42c6080574e9e9821b013f863510",
+ "raw_normalized_churn": 0.003618421052631579,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "6c7c52e26d1632346078baa463e7f2f53e6759eb4a4864333dd8096683382c46",
+ "committed_normalized_churn": 0.004895960832313341,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1626,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.294764496786229e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.5532433986663818,
+ "last_committed_score_gap": 1.822806723339454e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.294764496786229e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.5532433986663818,
+ "last_raw_score_gap": 1.822806723339454e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05347816273570061,
+ "observability_min": 4.4118900177636533e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "6c7c52e26d1632346078baa463e7f2f53e6759eb4a4864333dd8096683382c46",
+ "raw_normalized_churn": 0.004895960832313341,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 76,
+ "committed_mask_sha256": "def79f926cab62ea41cffae92b80f9ff2e7f26ebf5cabf070ba91b0bf10e2e86",
+ "committed_normalized_churn": 0.023809523809523808,
+ "committed_xor_churn_total": 152,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 3116,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.248603922476832e-07,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.568244457244873,
+ "last_committed_score_gap": 7.095122356304273e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.248603922476832e-07,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.568244457244873,
+ "last_raw_score_gap": 7.095122356304273e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.032171085476875305,
+ "observability_min": 6.2093738506519e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "def79f926cab62ea41cffae92b80f9ff2e7f26ebf5cabf070ba91b0bf10e2e86",
+ "raw_normalized_churn": 0.023809523809523808,
+ "raw_xor_churn_total": 152,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 26,
+ "committed_mask_sha256": "6f8719682753e9d94a0cca1cfb9a190ee797232768c9b64ddf103b9c246fb627",
+ "committed_normalized_churn": 0.02280701754385965,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1114,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.611341632378753e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.2290026694536209,
+ "last_committed_score_gap": 1.5140149116632529e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 6.611341632378753e-06,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.2290026694536209,
+ "last_raw_score_gap": 1.5140149116632529e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03300607204437256,
+ "observability_min": 4.884915938418999e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "6f8719682753e9d94a0cca1cfb9a190ee797232768c9b64ddf103b9c246fb627",
+ "raw_normalized_churn": 0.02280701754385965,
+ "raw_xor_churn_total": 52,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 65,
+ "committed_mask_sha256": "f1081bfda3a60431424f8340fbebc86492c777e8f2241f287938c1bf498dd468",
+ "committed_normalized_churn": 0.027589134125636672,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2291,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.118670323625338e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.45236942172050476,
+ "last_committed_score_gap": 9.584216797975387e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.118670323625338e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.45236942172050476,
+ "last_raw_score_gap": 9.584216797975387e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03927992656826973,
+ "observability_min": 4.803929982699628e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "f1081bfda3a60431424f8340fbebc86492c777e8f2241f287938c1bf498dd468",
+ "raw_normalized_churn": 0.027589134125636672,
+ "raw_xor_churn_total": 130,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 28,
+ "committed_mask_sha256": "619739a1ec00c775621d149a429ff7c781f917ceed44f0087971515e72986f01",
+ "committed_normalized_churn": 0.01364522417153996,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 2024,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.601741956847036e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.05339590832591057,
+ "last_committed_score_gap": 8.552646590942459e-09,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.601741956847036e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.05339590832591057,
+ "last_raw_score_gap": 8.552646590942459e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08122210949659348,
+ "observability_min": 6.564563648225885e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "619739a1ec00c775621d149a429ff7c781f917ceed44f0087971515e72986f01",
+ "raw_normalized_churn": 0.01364522417153996,
+ "raw_xor_churn_total": 56,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "36b63dda0d3849c7b24a259e6d7d254aef438279d7252d62410cb1395a028dde",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1705,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.2478619687026367e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7008113861083984,
+ "last_committed_score_gap": 2.276138729939703e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 3.2478619687026367e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7008113861083984,
+ "last_raw_score_gap": 2.276138729939703e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08697356283664703,
+ "observability_min": 5.758539955991182e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "36b63dda0d3849c7b24a259e6d7d254aef438279d7252d62410cb1395a028dde",
+ "raw_normalized_churn": 0.0029239766081871343,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "aaca6323ce62af2c72f74d22c57cd5a4700ba18e01312cce2a5ba9d8e025bd6c",
+ "committed_normalized_churn": 0.00682261208576998,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 1019,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1829020877485164e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.7755933403968811,
+ "last_committed_score_gap": 9.174509614240378e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.1829020877485164e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.7755933403968811,
+ "last_raw_score_gap": 9.174509614240378e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08059482276439667,
+ "observability_min": 1.9990001476344332e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "aaca6323ce62af2c72f74d22c57cd5a4700ba18e01312cce2a5ba9d8e025bd6c",
+ "raw_normalized_churn": 0.00682261208576998,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "f7fefad7c64a40cfa83768d277b4aee083fab1e6b19155cc5a9ca8e763a2037b",
+ "committed_normalized_churn": 0.0037593984962406013,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 265,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00017625071632210165,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9073684811592102,
+ "last_committed_score_gap": 0.00015992434055078775,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00017625071632210165,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9073684811592102,
+ "last_raw_score_gap": 0.00015992434055078775,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07912930846214294,
+ "observability_min": 9.344193330207418e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "f7fefad7c64a40cfa83768d277b4aee083fab1e6b19155cc5a9ca8e763a2037b",
+ "raw_normalized_churn": 0.0037593984962406013,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "80266e8a7d52a1790cf178e09a40f1813d0d3facd8eeadb08250e2042e649a22",
+ "committed_normalized_churn": 0.011695906432748537,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 338,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.227324461680837e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.5677257180213928,
+ "last_committed_score_gap": 2.399960794718936e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 4.227324461680837e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.5677257180213928,
+ "last_raw_score_gap": 2.399960794718936e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08514811098575592,
+ "observability_min": 1.1766224616849286e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "80266e8a7d52a1790cf178e09a40f1813d0d3facd8eeadb08250e2042e649a22",
+ "raw_normalized_churn": 0.011695906432748537,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "fa181db8e06570134716ba3f7c59416c277c02e0f52cc5ebf11e36a5bd63c0d3",
+ "committed_normalized_churn": 0.0037593984962406013,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 265,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.1820076148724183e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7875859141349792,
+ "last_committed_score_gap": 3.2936903153313324e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 4.1820076148724183e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7875859141349792,
+ "last_raw_score_gap": 3.2936903153313324e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0873594805598259,
+ "observability_min": 5.977687322911152e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "fa181db8e06570134716ba3f7c59416c277c02e0f52cc5ebf11e36a5bd63c0d3",
+ "raw_normalized_churn": 0.0037593984962406013,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "c147932e3e636816bff5be811ec14ac4bb716868a049db8bf0b0fdd7696514a5",
+ "committed_normalized_churn": 0.0028708133971291866,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 2084,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.44076567873708e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.47586899995803833,
+ "last_committed_score_gap": 2.113222763000522e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.44076567873708e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.47586899995803833,
+ "last_raw_score_gap": 2.113222763000522e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09505678713321686,
+ "observability_min": 3.786190916343912e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "c147932e3e636816bff5be811ec14ac4bb716868a049db8bf0b0fdd7696514a5",
+ "raw_normalized_churn": 0.0028708133971291866,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 704
+ }
+ ]
+ },
+ "per_task": {
+ "adaptive_mse_target_directional_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9966095089912415,
+ "cvar95_kl": 1.8330870866775513,
+ "delta_nll": 0.42951399087905884,
+ "max_kl": 2.280097723007202,
+ "mean_kl": 0.3387449085712433,
+ "reference_nll": 0.5670955181121826,
+ "task_id": 666,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.319885015487671,
+ "cvar95_kl": 2.5531668663024902,
+ "delta_nll": 0.511053204536438,
+ "max_kl": 2.5599286556243896,
+ "mean_kl": 0.5538523197174072,
+ "reference_nll": 0.8088318109512329,
+ "task_id": 795,
+ "token_count": 34,
+ "top1_agreement": 0.7941176295280457
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4616154432296753,
+ "cvar95_kl": 1.9987668991088867,
+ "delta_nll": 0.29062652587890625,
+ "max_kl": 2.36738920211792,
+ "mean_kl": 0.4532853066921234,
+ "reference_nll": 1.170988917350769,
+ "task_id": 944,
+ "token_count": 25,
+ "top1_agreement": 0.7200000286102295
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8274835348129272,
+ "cvar95_kl": 3.3895606994628906,
+ "delta_nll": 0.43095171451568604,
+ "max_kl": 5.863646507263184,
+ "mean_kl": 0.3790286183357239,
+ "reference_nll": 0.3965318202972412,
+ "task_id": 653,
+ "token_count": 37,
+ "top1_agreement": 0.9189189076423645
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.24638032913208,
+ "cvar95_kl": 1.2618064880371094,
+ "delta_nll": 0.7006878852844238,
+ "max_kl": 1.5680201053619385,
+ "mean_kl": 0.28351157903671265,
+ "reference_nll": 1.5456924438476562,
+ "task_id": 857,
+ "token_count": 21,
+ "top1_agreement": 0.8571428656578064
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.646663784980774,
+ "cvar95_kl": 3.9898862838745117,
+ "delta_nll": 0.6756703853607178,
+ "max_kl": 5.644454479217529,
+ "mean_kl": 0.5790079832077026,
+ "reference_nll": 0.9709933996200562,
+ "task_id": 884,
+ "token_count": 67,
+ "top1_agreement": 0.746268630027771
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.119262933731079,
+ "cvar95_kl": 4.353437900543213,
+ "delta_nll": 0.24159455299377441,
+ "max_kl": 4.723770618438721,
+ "mean_kl": 0.5990476012229919,
+ "reference_nll": 1.8776683807373047,
+ "task_id": 878,
+ "token_count": 28,
+ "top1_agreement": 0.7142857313156128
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5383204221725464,
+ "cvar95_kl": 3.4026129245758057,
+ "delta_nll": 0.5466518402099609,
+ "max_kl": 5.327229022979736,
+ "mean_kl": 0.562431275844574,
+ "reference_nll": 0.9916685819625854,
+ "task_id": 822,
+ "token_count": 131,
+ "top1_agreement": 0.7786259651184082
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.242642879486084,
+ "cvar95_kl": 5.368414878845215,
+ "delta_nll": 0.7577638626098633,
+ "max_kl": 8.670194625854492,
+ "mean_kl": 0.6975302696228027,
+ "reference_nll": 0.4848790168762207,
+ "task_id": 687,
+ "token_count": 63,
+ "top1_agreement": 0.7936508059501648
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7873976826667786,
+ "cvar95_kl": 1.465736985206604,
+ "delta_nll": 0.1482502818107605,
+ "max_kl": 2.3471837043762207,
+ "mean_kl": 0.19874230027198792,
+ "reference_nll": 0.6391474008560181,
+ "task_id": 820,
+ "token_count": 30,
+ "top1_agreement": 0.8333333134651184
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.2097465991973877,
+ "cvar95_kl": 3.7427849769592285,
+ "delta_nll": 0.6562727689743042,
+ "max_kl": 4.485054016113281,
+ "mean_kl": 0.6046320199966431,
+ "reference_nll": 1.5534738302230835,
+ "task_id": 920,
+ "token_count": 35,
+ "top1_agreement": 0.6571428775787354
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1733614206314087,
+ "cvar95_kl": 4.652234077453613,
+ "delta_nll": 0.770543098449707,
+ "max_kl": 6.079392433166504,
+ "mean_kl": 0.7185872793197632,
+ "reference_nll": 0.40281835198402405,
+ "task_id": 771,
+ "token_count": 134,
+ "top1_agreement": 0.7313432693481445
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8544337749481201,
+ "cvar95_kl": 3.5389668941497803,
+ "delta_nll": 0.6102367639541626,
+ "max_kl": 4.738748073577881,
+ "mean_kl": 0.7329993844032288,
+ "reference_nll": 1.2441970109939575,
+ "task_id": 869,
+ "token_count": 46,
+ "top1_agreement": 0.6521739363670349
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.8531334400177,
+ "cvar95_kl": 2.213200330734253,
+ "delta_nll": 0.4835388660430908,
+ "max_kl": 2.2545254230499268,
+ "mean_kl": 0.512210488319397,
+ "reference_nll": 2.3695945739746094,
+ "task_id": 851,
+ "token_count": 35,
+ "top1_agreement": 0.6285714507102966
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.03504478931427,
+ "cvar95_kl": 2.4077816009521484,
+ "delta_nll": 0.30437546968460083,
+ "max_kl": 2.931612968444824,
+ "mean_kl": 0.2740323543548584,
+ "reference_nll": 0.7306693196296692,
+ "task_id": 728,
+ "token_count": 36,
+ "top1_agreement": 0.8611111044883728
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1128015518188477,
+ "cvar95_kl": 3.0782012939453125,
+ "delta_nll": 0.4361749291419983,
+ "max_kl": 4.27485990524292,
+ "mean_kl": 0.36045780777931213,
+ "reference_nll": 0.6766266226768494,
+ "task_id": 704,
+ "token_count": 38,
+ "top1_agreement": 0.8421052694320679
+ }
+ ],
+ "causal_observability_confirm2_mse_target_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9080173373222351,
+ "cvar95_kl": 1.8592658042907715,
+ "delta_nll": 0.3409218192100525,
+ "max_kl": 2.080517530441284,
+ "mean_kl": 0.22089551389217377,
+ "reference_nll": 0.5670955181121826,
+ "task_id": 666,
+ "token_count": 38,
+ "top1_agreement": 0.8684210777282715
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2173877954483032,
+ "cvar95_kl": 2.619504690170288,
+ "delta_nll": 0.4085559844970703,
+ "max_kl": 2.7532622814178467,
+ "mean_kl": 0.41816115379333496,
+ "reference_nll": 0.8088318109512329,
+ "task_id": 795,
+ "token_count": 34,
+ "top1_agreement": 0.8529411554336548
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2633832693099976,
+ "cvar95_kl": 0.8631410598754883,
+ "delta_nll": 0.09239435195922852,
+ "max_kl": 0.8683744668960571,
+ "mean_kl": 0.21229614317417145,
+ "reference_nll": 1.170988917350769,
+ "task_id": 944,
+ "token_count": 25,
+ "top1_agreement": 0.8799999952316284
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7666277289390564,
+ "cvar95_kl": 2.549978733062744,
+ "delta_nll": 0.3700959086418152,
+ "max_kl": 3.5166993141174316,
+ "mean_kl": 0.31725013256073,
+ "reference_nll": 0.3965318202972412,
+ "task_id": 653,
+ "token_count": 37,
+ "top1_agreement": 0.8648648858070374
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8759055137634277,
+ "cvar95_kl": 0.834394097328186,
+ "delta_nll": 0.3302130699157715,
+ "max_kl": 1.1192787885665894,
+ "mean_kl": 0.19417785108089447,
+ "reference_nll": 1.5456924438476562,
+ "task_id": 857,
+ "token_count": 21,
+ "top1_agreement": 0.8571428656578064
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.42953360080719,
+ "cvar95_kl": 2.4091527462005615,
+ "delta_nll": 0.4585402011871338,
+ "max_kl": 3.7132582664489746,
+ "mean_kl": 0.38986852765083313,
+ "reference_nll": 0.9709933996200562,
+ "task_id": 884,
+ "token_count": 67,
+ "top1_agreement": 0.7761194109916687
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.315990447998047,
+ "cvar95_kl": 4.032583236694336,
+ "delta_nll": 0.4383220672607422,
+ "max_kl": 4.404519081115723,
+ "mean_kl": 0.5661551356315613,
+ "reference_nll": 1.8776683807373047,
+ "task_id": 878,
+ "token_count": 28,
+ "top1_agreement": 0.7142857313156128
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.309529185295105,
+ "cvar95_kl": 3.104041576385498,
+ "delta_nll": 0.31786060333251953,
+ "max_kl": 5.011614799499512,
+ "mean_kl": 0.44983190298080444,
+ "reference_nll": 0.9916685819625854,
+ "task_id": 822,
+ "token_count": 131,
+ "top1_agreement": 0.8549618124961853
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9502401947975159,
+ "cvar95_kl": 3.7076339721679688,
+ "delta_nll": 0.46536117792129517,
+ "max_kl": 7.132406234741211,
+ "mean_kl": 0.4479342997074127,
+ "reference_nll": 0.4848790168762207,
+ "task_id": 687,
+ "token_count": 63,
+ "top1_agreement": 0.841269850730896
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7968257069587708,
+ "cvar95_kl": 1.486180305480957,
+ "delta_nll": 0.15767830610275269,
+ "max_kl": 1.6110460758209229,
+ "mean_kl": 0.16627325117588043,
+ "reference_nll": 0.6391474008560181,
+ "task_id": 820,
+ "token_count": 30,
+ "top1_agreement": 0.8666666746139526
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.087273120880127,
+ "cvar95_kl": 4.063179016113281,
+ "delta_nll": 0.5337992906570435,
+ "max_kl": 6.003026962280273,
+ "mean_kl": 0.541380763053894,
+ "reference_nll": 1.5534738302230835,
+ "task_id": 920,
+ "token_count": 35,
+ "top1_agreement": 0.7142857313156128
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3301823139190674,
+ "cvar95_kl": 4.274087429046631,
+ "delta_nll": 0.9273639917373657,
+ "max_kl": 5.121339321136475,
+ "mean_kl": 0.8609323501586914,
+ "reference_nll": 0.40281835198402405,
+ "task_id": 771,
+ "token_count": 134,
+ "top1_agreement": 0.6716417670249939
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.93266761302948,
+ "cvar95_kl": 5.743150234222412,
+ "delta_nll": 0.6884706020355225,
+ "max_kl": 8.577064514160156,
+ "mean_kl": 0.9187028408050537,
+ "reference_nll": 1.2441970109939575,
+ "task_id": 869,
+ "token_count": 46,
+ "top1_agreement": 0.695652186870575
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.486494541168213,
+ "cvar95_kl": 1.3846404552459717,
+ "delta_nll": 0.11689996719360352,
+ "max_kl": 1.5795646905899048,
+ "mean_kl": 0.27929598093032837,
+ "reference_nll": 2.3695945739746094,
+ "task_id": 851,
+ "token_count": 35,
+ "top1_agreement": 0.8571428656578064
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9249114990234375,
+ "cvar95_kl": 1.8563458919525146,
+ "delta_nll": 0.1942421793937683,
+ "max_kl": 2.020651340484619,
+ "mean_kl": 0.23904769122600555,
+ "reference_nll": 0.7306693196296692,
+ "task_id": 728,
+ "token_count": 36,
+ "top1_agreement": 0.8611111044883728
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1012808084487915,
+ "cvar95_kl": 5.314988136291504,
+ "delta_nll": 0.42465418577194214,
+ "max_kl": 6.576378345489502,
+ "mean_kl": 0.47617968916893005,
+ "reference_nll": 0.6766266226768494,
+ "task_id": 704,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ }
+ ],
+ "causal_observability_mse_target_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0578029155731201,
+ "cvar95_kl": 2.675314426422119,
+ "delta_nll": 0.4907073974609375,
+ "max_kl": 3.068423271179199,
+ "mean_kl": 0.32335346937179565,
+ "reference_nll": 0.5670955181121826,
+ "task_id": 666,
+ "token_count": 38,
+ "top1_agreement": 0.8684210777282715
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0970828533172607,
+ "cvar95_kl": 2.1005287170410156,
+ "delta_nll": 0.28825104236602783,
+ "max_kl": 2.7227652072906494,
+ "mean_kl": 0.29945817589759827,
+ "reference_nll": 0.8088318109512329,
+ "task_id": 795,
+ "token_count": 34,
+ "top1_agreement": 0.8823529481887817
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3766798973083496,
+ "cvar95_kl": 0.7636987566947937,
+ "delta_nll": 0.20569097995758057,
+ "max_kl": 0.954285740852356,
+ "mean_kl": 0.2263791412115097,
+ "reference_nll": 1.170988917350769,
+ "task_id": 944,
+ "token_count": 25,
+ "top1_agreement": 0.800000011920929
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7292772531509399,
+ "cvar95_kl": 2.2413432598114014,
+ "delta_nll": 0.33274543285369873,
+ "max_kl": 3.6040163040161133,
+ "mean_kl": 0.2818913459777832,
+ "reference_nll": 0.3965318202972412,
+ "task_id": 653,
+ "token_count": 37,
+ "top1_agreement": 0.8648648858070374
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.7963162660598755,
+ "cvar95_kl": 0.7436349391937256,
+ "delta_nll": 0.25062382221221924,
+ "max_kl": 1.0426603555679321,
+ "mean_kl": 0.1627471148967743,
+ "reference_nll": 1.5456924438476562,
+ "task_id": 857,
+ "token_count": 21,
+ "top1_agreement": 0.8571428656578064
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4122323989868164,
+ "cvar95_kl": 1.8929111957550049,
+ "delta_nll": 0.44123899936676025,
+ "max_kl": 2.732940912246704,
+ "mean_kl": 0.3506784439086914,
+ "reference_nll": 0.9709933996200562,
+ "task_id": 884,
+ "token_count": 67,
+ "top1_agreement": 0.7910447716712952
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.144540548324585,
+ "cvar95_kl": 2.9199399948120117,
+ "delta_nll": 0.2668721675872803,
+ "max_kl": 2.9327492713928223,
+ "mean_kl": 0.4170605540275574,
+ "reference_nll": 1.8776683807373047,
+ "task_id": 878,
+ "token_count": 28,
+ "top1_agreement": 0.75
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.21132493019104,
+ "cvar95_kl": 3.5506274700164795,
+ "delta_nll": 0.2196563482284546,
+ "max_kl": 7.018457412719727,
+ "mean_kl": 0.43994006514549255,
+ "reference_nll": 0.9916685819625854,
+ "task_id": 822,
+ "token_count": 131,
+ "top1_agreement": 0.8549618124961853
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9096933603286743,
+ "cvar95_kl": 3.7834997177124023,
+ "delta_nll": 0.4248143434524536,
+ "max_kl": 7.927745819091797,
+ "mean_kl": 0.43569591641426086,
+ "reference_nll": 0.4848790168762207,
+ "task_id": 687,
+ "token_count": 63,
+ "top1_agreement": 0.841269850730896
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8198418021202087,
+ "cvar95_kl": 0.9281488656997681,
+ "delta_nll": 0.18069440126419067,
+ "max_kl": 0.94764643907547,
+ "mean_kl": 0.13433623313903809,
+ "reference_nll": 0.6391474008560181,
+ "task_id": 820,
+ "token_count": 30,
+ "top1_agreement": 0.8666666746139526
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.1256556510925293,
+ "cvar95_kl": 3.594958782196045,
+ "delta_nll": 0.5721818208694458,
+ "max_kl": 3.870547294616699,
+ "mean_kl": 0.627039909362793,
+ "reference_nll": 1.5534738302230835,
+ "task_id": 920,
+ "token_count": 35,
+ "top1_agreement": 0.6285714507102966
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2017252445220947,
+ "cvar95_kl": 4.043095588684082,
+ "delta_nll": 0.7989069223403931,
+ "max_kl": 5.536599159240723,
+ "mean_kl": 0.7507725358009338,
+ "reference_nll": 0.40281835198402405,
+ "task_id": 771,
+ "token_count": 134,
+ "top1_agreement": 0.7014925479888916
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.853031873703003,
+ "cvar95_kl": 4.1873602867126465,
+ "delta_nll": 0.6088348627090454,
+ "max_kl": 5.306848526000977,
+ "mean_kl": 0.7690393924713135,
+ "reference_nll": 1.2441970109939575,
+ "task_id": 869,
+ "token_count": 46,
+ "top1_agreement": 0.6739130616188049
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.4057528972625732,
+ "cvar95_kl": 1.1129748821258545,
+ "delta_nll": 0.03615832328796387,
+ "max_kl": 1.1709716320037842,
+ "mean_kl": 0.22883905470371246,
+ "reference_nll": 2.3695945739746094,
+ "task_id": 851,
+ "token_count": 35,
+ "top1_agreement": 0.800000011920929
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0452733039855957,
+ "cvar95_kl": 2.0571837425231934,
+ "delta_nll": 0.3146039843559265,
+ "max_kl": 2.418727397918701,
+ "mean_kl": 0.27412089705467224,
+ "reference_nll": 0.7306693196296692,
+ "task_id": 728,
+ "token_count": 36,
+ "top1_agreement": 0.8055555820465088
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.102342963218689,
+ "cvar95_kl": 5.185225486755371,
+ "delta_nll": 0.4257163405418396,
+ "max_kl": 6.647500514984131,
+ "mean_kl": 0.5129132270812988,
+ "reference_nll": 0.6766266226768494,
+ "task_id": 704,
+ "token_count": 38,
+ "top1_agreement": 0.8421052694320679
+ }
+ ],
+ "query_ema32_confirm2_mse_target_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0066633224487305,
+ "cvar95_kl": 1.8497647047042847,
+ "delta_nll": 0.43956780433654785,
+ "max_kl": 2.296926498413086,
+ "mean_kl": 0.2826501429080963,
+ "reference_nll": 0.5670955181121826,
+ "task_id": 666,
+ "token_count": 38,
+ "top1_agreement": 0.8947368264198303
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2719975709915161,
+ "cvar95_kl": 3.311779499053955,
+ "delta_nll": 0.4631657600402832,
+ "max_kl": 5.241847991943359,
+ "mean_kl": 0.47853782773017883,
+ "reference_nll": 0.8088318109512329,
+ "task_id": 795,
+ "token_count": 34,
+ "top1_agreement": 0.8235294222831726
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3906573057174683,
+ "cvar95_kl": 0.8232475519180298,
+ "delta_nll": 0.21966838836669922,
+ "max_kl": 0.9255179166793823,
+ "mean_kl": 0.2615521550178528,
+ "reference_nll": 1.170988917350769,
+ "task_id": 944,
+ "token_count": 25,
+ "top1_agreement": 0.8399999737739563
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7571074366569519,
+ "cvar95_kl": 2.0816569328308105,
+ "delta_nll": 0.3605756163597107,
+ "max_kl": 3.3657214641571045,
+ "mean_kl": 0.3046239912509918,
+ "reference_nll": 0.3965318202972412,
+ "task_id": 653,
+ "token_count": 37,
+ "top1_agreement": 0.837837815284729
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.637642502784729,
+ "cvar95_kl": 0.442375123500824,
+ "delta_nll": 0.09195005893707275,
+ "max_kl": 0.45118799805641174,
+ "mean_kl": 0.13984954357147217,
+ "reference_nll": 1.5456924438476562,
+ "task_id": 857,
+ "token_count": 21,
+ "top1_agreement": 0.9523809552192688
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5586066246032715,
+ "cvar95_kl": 3.373326539993286,
+ "delta_nll": 0.5876132249832153,
+ "max_kl": 4.954159259796143,
+ "mean_kl": 0.5324534177780151,
+ "reference_nll": 0.9709933996200562,
+ "task_id": 884,
+ "token_count": 67,
+ "top1_agreement": 0.8059701323509216
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.125678539276123,
+ "cvar95_kl": 2.350369453430176,
+ "delta_nll": 0.24801015853881836,
+ "max_kl": 2.8959784507751465,
+ "mean_kl": 0.36376434564590454,
+ "reference_nll": 1.8776683807373047,
+ "task_id": 878,
+ "token_count": 28,
+ "top1_agreement": 0.7857142686843872
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.286453366279602,
+ "cvar95_kl": 2.5288708209991455,
+ "delta_nll": 0.2947847843170166,
+ "max_kl": 3.3767356872558594,
+ "mean_kl": 0.4128018915653229,
+ "reference_nll": 0.9916685819625854,
+ "task_id": 822,
+ "token_count": 131,
+ "top1_agreement": 0.8320610523223877
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0488402843475342,
+ "cvar95_kl": 3.746995210647583,
+ "delta_nll": 0.5639612674713135,
+ "max_kl": 5.323850631713867,
+ "mean_kl": 0.5382261872291565,
+ "reference_nll": 0.4848790168762207,
+ "task_id": 687,
+ "token_count": 63,
+ "top1_agreement": 0.7301587462425232
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8046351671218872,
+ "cvar95_kl": 1.3306394815444946,
+ "delta_nll": 0.16548776626586914,
+ "max_kl": 1.3636318445205688,
+ "mean_kl": 0.16305899620056152,
+ "reference_nll": 0.6391474008560181,
+ "task_id": 820,
+ "token_count": 30,
+ "top1_agreement": 0.8666666746139526
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.168785333633423,
+ "cvar95_kl": 3.2559452056884766,
+ "delta_nll": 0.6153115034103394,
+ "max_kl": 4.12993860244751,
+ "mean_kl": 0.5929198861122131,
+ "reference_nll": 1.5534738302230835,
+ "task_id": 920,
+ "token_count": 35,
+ "top1_agreement": 0.6285714507102966
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2947605848312378,
+ "cvar95_kl": 4.867377281188965,
+ "delta_nll": 0.8919422626495361,
+ "max_kl": 7.685347557067871,
+ "mean_kl": 0.82671719789505,
+ "reference_nll": 0.40281835198402405,
+ "task_id": 771,
+ "token_count": 134,
+ "top1_agreement": 0.746268630027771
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5618090629577637,
+ "cvar95_kl": 3.0632898807525635,
+ "delta_nll": 0.31761205196380615,
+ "max_kl": 4.16581392288208,
+ "mean_kl": 0.48814156651496887,
+ "reference_nll": 1.2441970109939575,
+ "task_id": 869,
+ "token_count": 46,
+ "top1_agreement": 0.782608687877655
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.440920352935791,
+ "cvar95_kl": 1.361307144165039,
+ "delta_nll": 0.07132577896118164,
+ "max_kl": 1.840552806854248,
+ "mean_kl": 0.29264330863952637,
+ "reference_nll": 2.3695945739746094,
+ "task_id": 851,
+ "token_count": 35,
+ "top1_agreement": 0.8285714387893677
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1863923072814941,
+ "cvar95_kl": 3.1079931259155273,
+ "delta_nll": 0.45572298765182495,
+ "max_kl": 4.3936686515808105,
+ "mean_kl": 0.3476550281047821,
+ "reference_nll": 0.7306693196296692,
+ "task_id": 728,
+ "token_count": 36,
+ "top1_agreement": 0.8333333134651184
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2125978469848633,
+ "cvar95_kl": 6.579955101013184,
+ "delta_nll": 0.5359712243080139,
+ "max_kl": 8.050419807434082,
+ "mean_kl": 0.6392715573310852,
+ "reference_nll": 0.6766266226768494,
+ "task_id": 704,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ }
+ ],
+ "query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8963398933410645,
+ "cvar95_kl": 1.2762696743011475,
+ "delta_nll": 0.32924437522888184,
+ "max_kl": 1.5639057159423828,
+ "mean_kl": 0.2243848294019699,
+ "reference_nll": 0.5670955181121826,
+ "task_id": 666,
+ "token_count": 38,
+ "top1_agreement": 0.8684210777282715
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2492218017578125,
+ "cvar95_kl": 3.2408816814422607,
+ "delta_nll": 0.4403899908065796,
+ "max_kl": 4.842028617858887,
+ "mean_kl": 0.4175281822681427,
+ "reference_nll": 0.8088318109512329,
+ "task_id": 795,
+ "token_count": 34,
+ "top1_agreement": 0.8529411554336548
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.379153847694397,
+ "cvar95_kl": 0.9304691553115845,
+ "delta_nll": 0.20816493034362793,
+ "max_kl": 1.1248857975006104,
+ "mean_kl": 0.24186603724956512,
+ "reference_nll": 1.170988917350769,
+ "task_id": 944,
+ "token_count": 25,
+ "top1_agreement": 0.8399999737739563
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7320519089698792,
+ "cvar95_kl": 1.6063470840454102,
+ "delta_nll": 0.33552008867263794,
+ "max_kl": 2.256725311279297,
+ "mean_kl": 0.284678190946579,
+ "reference_nll": 0.3965318202972412,
+ "task_id": 653,
+ "token_count": 37,
+ "top1_agreement": 0.8108108043670654
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.658141016960144,
+ "cvar95_kl": 0.3386809825897217,
+ "delta_nll": 0.11244857311248779,
+ "max_kl": 0.37670642137527466,
+ "mean_kl": 0.10457439720630646,
+ "reference_nll": 1.5456924438476562,
+ "task_id": 857,
+ "token_count": 21,
+ "top1_agreement": 0.9047619104385376
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4951311349868774,
+ "cvar95_kl": 2.2852675914764404,
+ "delta_nll": 0.5241377353668213,
+ "max_kl": 3.7752151489257812,
+ "mean_kl": 0.4000699520111084,
+ "reference_nll": 0.9709933996200562,
+ "task_id": 884,
+ "token_count": 67,
+ "top1_agreement": 0.746268630027771
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.199768304824829,
+ "cvar95_kl": 3.0972347259521484,
+ "delta_nll": 0.3220999240875244,
+ "max_kl": 4.512953281402588,
+ "mean_kl": 0.38135799765586853,
+ "reference_nll": 1.8776683807373047,
+ "task_id": 878,
+ "token_count": 28,
+ "top1_agreement": 0.8214285969734192
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2492704391479492,
+ "cvar95_kl": 2.5796921253204346,
+ "delta_nll": 0.25760185718536377,
+ "max_kl": 4.8363261222839355,
+ "mean_kl": 0.4076623320579529,
+ "reference_nll": 0.9916685819625854,
+ "task_id": 822,
+ "token_count": 131,
+ "top1_agreement": 0.8015267252922058
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9714908003807068,
+ "cvar95_kl": 3.329655170440674,
+ "delta_nll": 0.4866117835044861,
+ "max_kl": 7.06448221206665,
+ "mean_kl": 0.4452365040779114,
+ "reference_nll": 0.4848790168762207,
+ "task_id": 687,
+ "token_count": 63,
+ "top1_agreement": 0.7936508059501648
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7986434698104858,
+ "cvar95_kl": 1.4329769611358643,
+ "delta_nll": 0.15949606895446777,
+ "max_kl": 2.14422345161438,
+ "mean_kl": 0.18646274507045746,
+ "reference_nll": 0.6391474008560181,
+ "task_id": 820,
+ "token_count": 30,
+ "top1_agreement": 0.8333333134651184
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.1094753742218018,
+ "cvar95_kl": 3.6445250511169434,
+ "delta_nll": 0.5560015439987183,
+ "max_kl": 5.126568794250488,
+ "mean_kl": 0.5212591886520386,
+ "reference_nll": 1.5534738302230835,
+ "task_id": 920,
+ "token_count": 35,
+ "top1_agreement": 0.6857143044471741
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.166335940361023,
+ "cvar95_kl": 3.9873993396759033,
+ "delta_nll": 0.7635176181793213,
+ "max_kl": 4.6706647872924805,
+ "mean_kl": 0.6871316432952881,
+ "reference_nll": 0.40281835198402405,
+ "task_id": 771,
+ "token_count": 134,
+ "top1_agreement": 0.746268630027771
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5345916748046875,
+ "cvar95_kl": 3.1146926879882812,
+ "delta_nll": 0.29039466381073,
+ "max_kl": 5.165496826171875,
+ "mean_kl": 0.5106522440910339,
+ "reference_nll": 1.2441970109939575,
+ "task_id": 869,
+ "token_count": 46,
+ "top1_agreement": 0.717391312122345
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.510481119155884,
+ "cvar95_kl": 1.235114336013794,
+ "delta_nll": 0.14088654518127441,
+ "max_kl": 1.6543669700622559,
+ "mean_kl": 0.2958219647407532,
+ "reference_nll": 2.3695945739746094,
+ "task_id": 851,
+ "token_count": 35,
+ "top1_agreement": 0.7714285850524902
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.052587628364563,
+ "cvar95_kl": 1.688151240348816,
+ "delta_nll": 0.3219183087348938,
+ "max_kl": 1.7090915441513062,
+ "mean_kl": 0.24152135848999023,
+ "reference_nll": 0.7306693196296692,
+ "task_id": 728,
+ "token_count": 36,
+ "top1_agreement": 0.8611111044883728
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0961982011795044,
+ "cvar95_kl": 4.701852798461914,
+ "delta_nll": 0.41957157850265503,
+ "max_kl": 5.2358808517456055,
+ "mean_kl": 0.4758959412574768,
+ "reference_nll": 0.6766266226768494,
+ "task_id": 704,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ }
+ ],
+ "target_directional_fisher_difference_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9064112305641174,
+ "cvar95_kl": 1.5809619426727295,
+ "delta_nll": 0.3393157124519348,
+ "max_kl": 1.6161720752716064,
+ "mean_kl": 0.2796350419521332,
+ "reference_nll": 0.5670955181121826,
+ "task_id": 666,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5841890573501587,
+ "cvar95_kl": 4.294712066650391,
+ "delta_nll": 0.7753572463989258,
+ "max_kl": 4.500330924987793,
+ "mean_kl": 0.6437158584594727,
+ "reference_nll": 0.8088318109512329,
+ "task_id": 795,
+ "token_count": 34,
+ "top1_agreement": 0.8235294222831726
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8180087804794312,
+ "cvar95_kl": 4.93497371673584,
+ "delta_nll": 0.6470198631286621,
+ "max_kl": 7.3641557693481445,
+ "mean_kl": 0.9052069187164307,
+ "reference_nll": 1.170988917350769,
+ "task_id": 944,
+ "token_count": 25,
+ "top1_agreement": 0.6399999856948853
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8094461560249329,
+ "cvar95_kl": 2.8773627281188965,
+ "delta_nll": 0.41291433572769165,
+ "max_kl": 4.489907264709473,
+ "mean_kl": 0.3338932991027832,
+ "reference_nll": 0.3965318202972412,
+ "task_id": 653,
+ "token_count": 37,
+ "top1_agreement": 0.8648648858070374
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.662603497505188,
+ "cvar95_kl": 0.5889068245887756,
+ "delta_nll": 0.11691105365753174,
+ "max_kl": 0.602655827999115,
+ "mean_kl": 0.15474198758602142,
+ "reference_nll": 1.5456924438476562,
+ "task_id": 857,
+ "token_count": 21,
+ "top1_agreement": 0.9047619104385376
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3544529676437378,
+ "cvar95_kl": 2.257369041442871,
+ "delta_nll": 0.38345956802368164,
+ "max_kl": 3.9341628551483154,
+ "mean_kl": 0.36076003313064575,
+ "reference_nll": 0.9709933996200562,
+ "task_id": 884,
+ "token_count": 67,
+ "top1_agreement": 0.7761194109916687
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.270509719848633,
+ "cvar95_kl": 2.1759629249572754,
+ "delta_nll": 0.3928413391113281,
+ "max_kl": 2.662672519683838,
+ "mean_kl": 0.4259115755558014,
+ "reference_nll": 1.8776683807373047,
+ "task_id": 878,
+ "token_count": 28,
+ "top1_agreement": 0.8214285969734192
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4520103931427002,
+ "cvar95_kl": 3.2412095069885254,
+ "delta_nll": 0.46034181118011475,
+ "max_kl": 5.169238567352295,
+ "mean_kl": 0.5305972099304199,
+ "reference_nll": 0.9916685819625854,
+ "task_id": 822,
+ "token_count": 131,
+ "top1_agreement": 0.7786259651184082
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0410207509994507,
+ "cvar95_kl": 4.008787155151367,
+ "delta_nll": 0.55614173412323,
+ "max_kl": 7.865177154541016,
+ "mean_kl": 0.5799107551574707,
+ "reference_nll": 0.4848790168762207,
+ "task_id": 687,
+ "token_count": 63,
+ "top1_agreement": 0.7460317611694336
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8552323579788208,
+ "cvar95_kl": 1.6502466201782227,
+ "delta_nll": 0.21608495712280273,
+ "max_kl": 2.0427887439727783,
+ "mean_kl": 0.19623364508152008,
+ "reference_nll": 0.6391474008560181,
+ "task_id": 820,
+ "token_count": 30,
+ "top1_agreement": 0.8666666746139526
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.210524797439575,
+ "cvar95_kl": 2.6238837242126465,
+ "delta_nll": 0.6570509672164917,
+ "max_kl": 2.774512529373169,
+ "mean_kl": 0.5549203753471375,
+ "reference_nll": 1.5534738302230835,
+ "task_id": 920,
+ "token_count": 35,
+ "top1_agreement": 0.6285714507102966
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4387098550796509,
+ "cvar95_kl": 5.157857418060303,
+ "delta_nll": 1.0358915328979492,
+ "max_kl": 8.376632690429688,
+ "mean_kl": 0.9675408005714417,
+ "reference_nll": 0.40281835198402405,
+ "task_id": 771,
+ "token_count": 134,
+ "top1_agreement": 0.6343283653259277
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.9772250652313232,
+ "cvar95_kl": 6.585387706756592,
+ "delta_nll": 0.7330280542373657,
+ "max_kl": 7.756852626800537,
+ "mean_kl": 0.9842246770858765,
+ "reference_nll": 1.2441970109939575,
+ "task_id": 869,
+ "token_count": 46,
+ "top1_agreement": 0.6086956262588501
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.707608222961426,
+ "cvar95_kl": 0.7263756990432739,
+ "delta_nll": 0.3380136489868164,
+ "max_kl": 0.7945430278778076,
+ "mean_kl": 0.21119286119937897,
+ "reference_nll": 2.3695945739746094,
+ "task_id": 851,
+ "token_count": 35,
+ "top1_agreement": 0.7714285850524902
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5413459539413452,
+ "cvar95_kl": 3.6317367553710938,
+ "delta_nll": 0.810676634311676,
+ "max_kl": 4.09130334854126,
+ "mean_kl": 0.6802284717559814,
+ "reference_nll": 0.7306693196296692,
+ "task_id": 728,
+ "token_count": 36,
+ "top1_agreement": 0.6944444179534912
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2879478931427002,
+ "cvar95_kl": 7.229628562927246,
+ "delta_nll": 0.6113212704658508,
+ "max_kl": 9.372733116149902,
+ "mean_kl": 0.6496844291687012,
+ "reference_nll": 0.6766266226768494,
+ "task_id": 704,
+ "token_count": 38,
+ "top1_agreement": 0.7894737124443054
+ }
+ ]
+ },
+ "per_task_full_code_secondary": {
+ "adaptive_mse_target_directional_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9857557415962219,
+ "cvar95_kl": 1.8330870866775513,
+ "delta_nll": 0.41850072145462036,
+ "max_kl": 2.280097723007202,
+ "mean_kl": 0.33005911111831665,
+ "reference_nll": 0.5672550201416016,
+ "task_id": 666,
+ "token_count": 39,
+ "top1_agreement": 0.7948718070983887
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3470124006271362,
+ "cvar95_kl": 2.5531668663024902,
+ "delta_nll": 0.4964514970779419,
+ "max_kl": 2.5599286556243896,
+ "mean_kl": 0.5380279421806335,
+ "reference_nll": 0.8505609035491943,
+ "task_id": 795,
+ "token_count": 35,
+ "top1_agreement": 0.800000011920929
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5422093868255615,
+ "cvar95_kl": 1.9987668991088867,
+ "delta_nll": 0.2794487476348877,
+ "max_kl": 2.36738920211792,
+ "mean_kl": 0.43585124611854553,
+ "reference_nll": 1.2627606391906738,
+ "task_id": 944,
+ "token_count": 26,
+ "top1_agreement": 0.7307692170143127
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9296846985816956,
+ "cvar95_kl": 3.3895606994628906,
+ "delta_nll": 0.419610857963562,
+ "max_kl": 5.863646507263184,
+ "mean_kl": 0.3690541982650757,
+ "reference_nll": 0.5100738406181335,
+ "task_id": 653,
+ "token_count": 38,
+ "top1_agreement": 0.9210526347160339
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.1735665798187256,
+ "cvar95_kl": 1.2618064880371094,
+ "delta_nll": 0.6688382625579834,
+ "max_kl": 1.5680201053619385,
+ "mean_kl": 0.27062469720840454,
+ "reference_nll": 1.5047283172607422,
+ "task_id": 857,
+ "token_count": 22,
+ "top1_agreement": 0.8636363744735718
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6343040466308594,
+ "cvar95_kl": 3.9898862838745117,
+ "delta_nll": 0.6657339930534363,
+ "max_kl": 5.644454479217529,
+ "mean_kl": 0.5704931616783142,
+ "reference_nll": 0.9685700535774231,
+ "task_id": 884,
+ "token_count": 68,
+ "top1_agreement": 0.75
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.065258502960205,
+ "cvar95_kl": 4.353437900543213,
+ "delta_nll": 0.23326361179351807,
+ "max_kl": 4.723770618438721,
+ "mean_kl": 0.5783907771110535,
+ "reference_nll": 1.831994891166687,
+ "task_id": 878,
+ "token_count": 29,
+ "top1_agreement": 0.7241379022598267
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5512375831604004,
+ "cvar95_kl": 3.4026129245758057,
+ "delta_nll": 0.5425106287002563,
+ "max_kl": 5.327229022979736,
+ "mean_kl": 0.5581704378128052,
+ "reference_nll": 1.008726954460144,
+ "task_id": 822,
+ "token_count": 132,
+ "top1_agreement": 0.7803030014038086
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2300963401794434,
+ "cvar95_kl": 5.368414878845215,
+ "delta_nll": 0.7459238171577454,
+ "max_kl": 8.670194625854492,
+ "mean_kl": 0.6866313815116882,
+ "reference_nll": 0.484172523021698,
+ "task_id": 687,
+ "token_count": 64,
+ "top1_agreement": 0.796875
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7757230997085571,
+ "cvar95_kl": 1.465736985206604,
+ "delta_nll": 0.1434679627418518,
+ "max_kl": 2.3471837043762207,
+ "mean_kl": 0.1923312395811081,
+ "reference_nll": 0.6322551369667053,
+ "task_id": 820,
+ "token_count": 31,
+ "top1_agreement": 0.8387096524238586
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.168999195098877,
+ "cvar95_kl": 3.7427849769592285,
+ "delta_nll": 0.6380432844161987,
+ "max_kl": 4.485054016113281,
+ "mean_kl": 0.5878366231918335,
+ "reference_nll": 1.5309559106826782,
+ "task_id": 920,
+ "token_count": 36,
+ "top1_agreement": 0.6666666865348816
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2003363370895386,
+ "cvar95_kl": 4.652234077453613,
+ "delta_nll": 0.7648352384567261,
+ "max_kl": 6.079392433166504,
+ "mean_kl": 0.7132644057273865,
+ "reference_nll": 0.4355010986328125,
+ "task_id": 771,
+ "token_count": 135,
+ "top1_agreement": 0.7333333492279053
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.828739881515503,
+ "cvar95_kl": 3.5389668941497803,
+ "delta_nll": 0.5972528457641602,
+ "max_kl": 4.738748073577881,
+ "mean_kl": 0.7174036502838135,
+ "reference_nll": 1.2314870357513428,
+ "task_id": 869,
+ "token_count": 47,
+ "top1_agreement": 0.6595744490623474
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.7957208156585693,
+ "cvar95_kl": 2.213200330734253,
+ "delta_nll": 0.4701075553894043,
+ "max_kl": 2.2545254230499268,
+ "mean_kl": 0.49798235297203064,
+ "reference_nll": 2.325613260269165,
+ "task_id": 851,
+ "token_count": 36,
+ "top1_agreement": 0.6388888955116272
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0277056694030762,
+ "cvar95_kl": 2.4077816009521484,
+ "delta_nll": 0.2961491346359253,
+ "max_kl": 2.931612968444824,
+ "mean_kl": 0.2666260600090027,
+ "reference_nll": 0.7315565347671509,
+ "task_id": 728,
+ "token_count": 37,
+ "top1_agreement": 0.8648648858070374
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0966875553131104,
+ "cvar95_kl": 3.0782012939453125,
+ "delta_nll": 0.42499077320098877,
+ "max_kl": 4.27485990524292,
+ "mean_kl": 0.35121530294418335,
+ "reference_nll": 0.6716967821121216,
+ "task_id": 704,
+ "token_count": 39,
+ "top1_agreement": 0.8461538553237915
+ }
+ ],
+ "causal_observability_confirm2_mse_target_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8994351625442505,
+ "cvar95_kl": 1.8592658042907715,
+ "delta_nll": 0.3321801424026489,
+ "max_kl": 2.080517530441284,
+ "mean_kl": 0.2152315080165863,
+ "reference_nll": 0.5672550201416016,
+ "task_id": 666,
+ "token_count": 39,
+ "top1_agreement": 0.8717948794364929
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2474437952041626,
+ "cvar95_kl": 2.619504690170288,
+ "delta_nll": 0.39688289165496826,
+ "max_kl": 2.7532622814178467,
+ "mean_kl": 0.4062137305736542,
+ "reference_nll": 0.8505609035491943,
+ "task_id": 795,
+ "token_count": 35,
+ "top1_agreement": 0.8571428656578064
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3516013622283936,
+ "cvar95_kl": 0.8631410598754883,
+ "delta_nll": 0.08884072303771973,
+ "max_kl": 0.8683744668960571,
+ "mean_kl": 0.20413090288639069,
+ "reference_nll": 1.2627606391906738,
+ "task_id": 944,
+ "token_count": 26,
+ "top1_agreement": 0.8846153616905212
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8704304099082947,
+ "cvar95_kl": 2.549978733062744,
+ "delta_nll": 0.36035656929016113,
+ "max_kl": 3.5166993141174316,
+ "mean_kl": 0.30890142917633057,
+ "reference_nll": 0.5100738406181335,
+ "task_id": 653,
+ "token_count": 38,
+ "top1_agreement": 0.8684210777282715
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8199317455291748,
+ "cvar95_kl": 0.834394097328186,
+ "delta_nll": 0.3152034282684326,
+ "max_kl": 1.1192787885665894,
+ "mean_kl": 0.18535159528255463,
+ "reference_nll": 1.5047283172607422,
+ "task_id": 857,
+ "token_count": 22,
+ "top1_agreement": 0.8636363744735718
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.420366883277893,
+ "cvar95_kl": 2.4091527462005615,
+ "delta_nll": 0.45179682970046997,
+ "max_kl": 3.7132582664489746,
+ "mean_kl": 0.3841351568698883,
+ "reference_nll": 0.9685700535774231,
+ "task_id": 884,
+ "token_count": 68,
+ "top1_agreement": 0.779411792755127
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.255202293395996,
+ "cvar95_kl": 4.032583236694336,
+ "delta_nll": 0.4232074022293091,
+ "max_kl": 4.404519081115723,
+ "mean_kl": 0.5466325879096985,
+ "reference_nll": 1.831994891166687,
+ "task_id": 878,
+ "token_count": 29,
+ "top1_agreement": 0.7241379022598267
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3241795301437378,
+ "cvar95_kl": 3.104041576385498,
+ "delta_nll": 0.31545257568359375,
+ "max_kl": 5.011614799499512,
+ "mean_kl": 0.44642406702041626,
+ "reference_nll": 1.008726954460144,
+ "task_id": 822,
+ "token_count": 132,
+ "top1_agreement": 0.8560606241226196
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9422623515129089,
+ "cvar95_kl": 3.7076339721679688,
+ "delta_nll": 0.45808982849121094,
+ "max_kl": 7.132406234741211,
+ "mean_kl": 0.44093531370162964,
+ "reference_nll": 0.484172523021698,
+ "task_id": 687,
+ "token_count": 64,
+ "top1_agreement": 0.84375
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.78484708070755,
+ "cvar95_kl": 1.486180305480957,
+ "delta_nll": 0.15259194374084473,
+ "max_kl": 1.6110460758209229,
+ "mean_kl": 0.16090959310531616,
+ "reference_nll": 0.6322551369667053,
+ "task_id": 820,
+ "token_count": 31,
+ "top1_agreement": 0.8709677457809448
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0499277114868164,
+ "cvar95_kl": 4.063179016113281,
+ "delta_nll": 0.5189718008041382,
+ "max_kl": 6.003026962280273,
+ "mean_kl": 0.5263423919677734,
+ "reference_nll": 1.5309559106826782,
+ "task_id": 920,
+ "token_count": 36,
+ "top1_agreement": 0.7222222089767456
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3559956550598145,
+ "cvar95_kl": 4.274087429046631,
+ "delta_nll": 0.920494556427002,
+ "max_kl": 5.121339321136475,
+ "mean_kl": 0.854555070400238,
+ "reference_nll": 0.4355010986328125,
+ "task_id": 771,
+ "token_count": 135,
+ "top1_agreement": 0.6740740537643433
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.9053093194961548,
+ "cvar95_kl": 5.743150234222412,
+ "delta_nll": 0.673822283744812,
+ "max_kl": 8.577064514160156,
+ "mean_kl": 0.8991560339927673,
+ "reference_nll": 1.2314870357513428,
+ "task_id": 869,
+ "token_count": 47,
+ "top1_agreement": 0.7021276354789734
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.439265727996826,
+ "cvar95_kl": 1.3846404552459717,
+ "delta_nll": 0.11365246772766113,
+ "max_kl": 1.5795646905899048,
+ "mean_kl": 0.271537721157074,
+ "reference_nll": 2.325613260269165,
+ "task_id": 851,
+ "token_count": 36,
+ "top1_agreement": 0.8611111044883728
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9205487966537476,
+ "cvar95_kl": 1.8563458919525146,
+ "delta_nll": 0.18899226188659668,
+ "max_kl": 2.020651340484619,
+ "mean_kl": 0.23258690536022186,
+ "reference_nll": 0.7315565347671509,
+ "task_id": 728,
+ "token_count": 37,
+ "top1_agreement": 0.8648648858070374
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0854625701904297,
+ "cvar95_kl": 5.314988136291504,
+ "delta_nll": 0.4137657880783081,
+ "max_kl": 6.576378345489502,
+ "mean_kl": 0.463969886302948,
+ "reference_nll": 0.6716967821121216,
+ "task_id": 704,
+ "token_count": 39,
+ "top1_agreement": 0.7948718070983887
+ }
+ ],
+ "causal_observability_mse_target_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0453801155090332,
+ "cvar95_kl": 2.675314426422119,
+ "delta_nll": 0.47812509536743164,
+ "max_kl": 3.068423271179199,
+ "mean_kl": 0.31506237387657166,
+ "reference_nll": 0.5672550201416016,
+ "task_id": 666,
+ "token_count": 39,
+ "top1_agreement": 0.8717948794364929
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1305763721466064,
+ "cvar95_kl": 2.1005287170410156,
+ "delta_nll": 0.2800154685974121,
+ "max_kl": 2.7227652072906494,
+ "mean_kl": 0.2909022271633148,
+ "reference_nll": 0.8505609035491943,
+ "task_id": 795,
+ "token_count": 35,
+ "top1_agreement": 0.8857142925262451
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4605402946472168,
+ "cvar95_kl": 0.7636987566947937,
+ "delta_nll": 0.19777965545654297,
+ "max_kl": 0.954285740852356,
+ "mean_kl": 0.21767225861549377,
+ "reference_nll": 1.2627606391906738,
+ "task_id": 944,
+ "token_count": 26,
+ "top1_agreement": 0.807692289352417
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8340628743171692,
+ "cvar95_kl": 2.2413432598114014,
+ "delta_nll": 0.32398903369903564,
+ "max_kl": 3.6040163040161133,
+ "mean_kl": 0.2744731903076172,
+ "reference_nll": 0.5100738406181335,
+ "task_id": 653,
+ "token_count": 38,
+ "top1_agreement": 0.8684210777282715
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.743959903717041,
+ "cvar95_kl": 0.7436349391937256,
+ "delta_nll": 0.23923158645629883,
+ "max_kl": 1.0426603555679321,
+ "mean_kl": 0.1553495228290558,
+ "reference_nll": 1.5047283172607422,
+ "task_id": 857,
+ "token_count": 22,
+ "top1_agreement": 0.8636363744735718
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4033201932907104,
+ "cvar95_kl": 1.8929111957550049,
+ "delta_nll": 0.43475013971328735,
+ "max_kl": 2.732940912246704,
+ "mean_kl": 0.3455214202404022,
+ "reference_nll": 0.9685700535774231,
+ "task_id": 884,
+ "token_count": 68,
+ "top1_agreement": 0.7941176295280457
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0896646976470947,
+ "cvar95_kl": 2.9199399948120117,
+ "delta_nll": 0.2576698064804077,
+ "max_kl": 2.9327492713928223,
+ "mean_kl": 0.4026791453361511,
+ "reference_nll": 1.831994891166687,
+ "task_id": 878,
+ "token_count": 29,
+ "top1_agreement": 0.7586206793785095
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2267193794250488,
+ "cvar95_kl": 3.5506274700164795,
+ "delta_nll": 0.21799242496490479,
+ "max_kl": 7.018457412719727,
+ "mean_kl": 0.4366071820259094,
+ "reference_nll": 1.008726954460144,
+ "task_id": 822,
+ "token_count": 132,
+ "top1_agreement": 0.8560606241226196
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9023491144180298,
+ "cvar95_kl": 3.7834997177124023,
+ "delta_nll": 0.4181765913963318,
+ "max_kl": 7.927745819091797,
+ "mean_kl": 0.428888201713562,
+ "reference_nll": 0.484172523021698,
+ "task_id": 687,
+ "token_count": 64,
+ "top1_agreement": 0.84375
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.807120680809021,
+ "cvar95_kl": 0.9281488656997681,
+ "delta_nll": 0.17486554384231567,
+ "max_kl": 0.94764643907547,
+ "mean_kl": 0.13000279664993286,
+ "reference_nll": 0.6322551369667053,
+ "task_id": 820,
+ "token_count": 31,
+ "top1_agreement": 0.8709677457809448
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0872435569763184,
+ "cvar95_kl": 3.594958782196045,
+ "delta_nll": 0.5562876462936401,
+ "max_kl": 3.870547294616699,
+ "mean_kl": 0.6096221804618835,
+ "reference_nll": 1.5309559106826782,
+ "task_id": 920,
+ "token_count": 36,
+ "top1_agreement": 0.6388888955116272
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2284902334213257,
+ "cvar95_kl": 4.043095588684082,
+ "delta_nll": 0.7929891347885132,
+ "max_kl": 5.536599159240723,
+ "mean_kl": 0.7452113032341003,
+ "reference_nll": 0.4355010986328125,
+ "task_id": 771,
+ "token_count": 135,
+ "top1_agreement": 0.7037037014961243
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.827367901802063,
+ "cvar95_kl": 4.1873602867126465,
+ "delta_nll": 0.5958808660507202,
+ "max_kl": 5.306848526000977,
+ "mean_kl": 0.7526768445968628,
+ "reference_nll": 1.2314870357513428,
+ "task_id": 869,
+ "token_count": 47,
+ "top1_agreement": 0.6808510422706604
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.360767364501953,
+ "cvar95_kl": 1.1129748821258545,
+ "delta_nll": 0.035154104232788086,
+ "max_kl": 1.1709716320037842,
+ "mean_kl": 0.22248238325119019,
+ "reference_nll": 2.325613260269165,
+ "task_id": 851,
+ "token_count": 36,
+ "top1_agreement": 0.8055555820465088
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.037657618522644,
+ "cvar95_kl": 2.0571837425231934,
+ "delta_nll": 0.30610108375549316,
+ "max_kl": 2.418727397918701,
+ "mean_kl": 0.2667122185230255,
+ "reference_nll": 0.7315565347671509,
+ "task_id": 728,
+ "token_count": 37,
+ "top1_agreement": 0.8108108043670654
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.08649742603302,
+ "cvar95_kl": 5.185225486755371,
+ "delta_nll": 0.41480064392089844,
+ "max_kl": 6.647500514984131,
+ "mean_kl": 0.4997616410255432,
+ "reference_nll": 0.6716967821121216,
+ "task_id": 704,
+ "token_count": 39,
+ "top1_agreement": 0.8461538553237915
+ }
+ ],
+ "query_ema32_confirm2_mse_target_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9955518841743469,
+ "cvar95_kl": 1.8497647047042847,
+ "delta_nll": 0.42829686403274536,
+ "max_kl": 2.296926498413086,
+ "mean_kl": 0.275402694940567,
+ "reference_nll": 0.5672550201416016,
+ "task_id": 666,
+ "token_count": 39,
+ "top1_agreement": 0.8974359035491943
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3004933595657349,
+ "cvar95_kl": 3.311779499053955,
+ "delta_nll": 0.4499324560165405,
+ "max_kl": 5.241847991943359,
+ "mean_kl": 0.46486538648605347,
+ "reference_nll": 0.8505609035491943,
+ "task_id": 795,
+ "token_count": 35,
+ "top1_agreement": 0.8285714387893677
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.473980188369751,
+ "cvar95_kl": 0.8232475519180298,
+ "delta_nll": 0.21121954917907715,
+ "max_kl": 0.9255179166793823,
+ "mean_kl": 0.251492440700531,
+ "reference_nll": 1.2627606391906738,
+ "task_id": 944,
+ "token_count": 26,
+ "top1_agreement": 0.8461538553237915
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8611606955528259,
+ "cvar95_kl": 2.0816569328308105,
+ "delta_nll": 0.3510868549346924,
+ "max_kl": 3.3657214641571045,
+ "mean_kl": 0.2966075837612152,
+ "reference_nll": 0.5100738406181335,
+ "task_id": 653,
+ "token_count": 38,
+ "top1_agreement": 0.8421052694320679
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5924986600875854,
+ "cvar95_kl": 0.442375123500824,
+ "delta_nll": 0.08777034282684326,
+ "max_kl": 0.45118799805641174,
+ "mean_kl": 0.13349272310733795,
+ "reference_nll": 1.5047283172607422,
+ "task_id": 857,
+ "token_count": 22,
+ "top1_agreement": 0.9545454382896423
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5475417375564575,
+ "cvar95_kl": 3.373326539993286,
+ "delta_nll": 0.5789716839790344,
+ "max_kl": 4.954159259796143,
+ "mean_kl": 0.5246232748031616,
+ "reference_nll": 0.9685700535774231,
+ "task_id": 884,
+ "token_count": 68,
+ "top1_agreement": 0.8088235259056091
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0714528560638428,
+ "cvar95_kl": 2.350369453430176,
+ "delta_nll": 0.23945796489715576,
+ "max_kl": 2.8959784507751465,
+ "mean_kl": 0.3512207567691803,
+ "reference_nll": 1.831994891166687,
+ "task_id": 878,
+ "token_count": 29,
+ "top1_agreement": 0.7931034564971924
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3012785911560059,
+ "cvar95_kl": 2.5288708209991455,
+ "delta_nll": 0.2925516366958618,
+ "max_kl": 3.3767356872558594,
+ "mean_kl": 0.40967464447021484,
+ "reference_nll": 1.008726954460144,
+ "task_id": 822,
+ "token_count": 132,
+ "top1_agreement": 0.8333333134651184
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0393218994140625,
+ "cvar95_kl": 3.746995210647583,
+ "delta_nll": 0.5551493763923645,
+ "max_kl": 5.323850631713867,
+ "mean_kl": 0.5298163890838623,
+ "reference_nll": 0.484172523021698,
+ "task_id": 687,
+ "token_count": 64,
+ "top1_agreement": 0.734375
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7924045324325562,
+ "cvar95_kl": 1.3306394815444946,
+ "delta_nll": 0.16014939546585083,
+ "max_kl": 1.3636318445205688,
+ "mean_kl": 0.15779903531074524,
+ "reference_nll": 0.6322551369667053,
+ "task_id": 820,
+ "token_count": 31,
+ "top1_agreement": 0.8709677457809448
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.1291756629943848,
+ "cvar95_kl": 3.2559452056884766,
+ "delta_nll": 0.5982197523117065,
+ "max_kl": 4.12993860244751,
+ "mean_kl": 0.5764498114585876,
+ "reference_nll": 1.5309559106826782,
+ "task_id": 920,
+ "token_count": 36,
+ "top1_agreement": 0.6388888955116272
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3208363056182861,
+ "cvar95_kl": 4.867377281188965,
+ "delta_nll": 0.8853352069854736,
+ "max_kl": 7.685347557067871,
+ "mean_kl": 0.8205933570861816,
+ "reference_nll": 0.4355010986328125,
+ "task_id": 771,
+ "token_count": 135,
+ "top1_agreement": 0.7481481432914734
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5423413515090942,
+ "cvar95_kl": 3.0632898807525635,
+ "delta_nll": 0.31085431575775146,
+ "max_kl": 4.16581392288208,
+ "mean_kl": 0.4777555763721466,
+ "reference_nll": 1.2314870357513428,
+ "task_id": 869,
+ "token_count": 47,
+ "top1_agreement": 0.7872340679168701
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.3949575424194336,
+ "cvar95_kl": 1.361307144165039,
+ "delta_nll": 0.06934428215026855,
+ "max_kl": 1.840552806854248,
+ "mean_kl": 0.28451430797576904,
+ "reference_nll": 2.325613260269165,
+ "task_id": 851,
+ "token_count": 36,
+ "top1_agreement": 0.8333333134651184
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1749627590179443,
+ "cvar95_kl": 3.1079931259155273,
+ "delta_nll": 0.44340622425079346,
+ "max_kl": 4.3936686515808105,
+ "mean_kl": 0.33825889229774475,
+ "reference_nll": 0.7315565347671509,
+ "task_id": 728,
+ "token_count": 37,
+ "top1_agreement": 0.837837815284729
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.1939252614974976,
+ "cvar95_kl": 6.579955101013184,
+ "delta_nll": 0.522228479385376,
+ "max_kl": 8.050419807434082,
+ "mean_kl": 0.6228799819946289,
+ "reference_nll": 0.6716967821121216,
+ "task_id": 704,
+ "token_count": 39,
+ "top1_agreement": 0.7948718070983887
+ }
+ ],
+ "query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8880572319030762,
+ "cvar95_kl": 1.2762696743011475,
+ "delta_nll": 0.3208022117614746,
+ "max_kl": 1.5639057159423828,
+ "mean_kl": 0.21863137185573578,
+ "reference_nll": 0.5672550201416016,
+ "task_id": 666,
+ "token_count": 39,
+ "top1_agreement": 0.8717948794364929
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.278368353843689,
+ "cvar95_kl": 3.2408816814422607,
+ "delta_nll": 0.42780745029449463,
+ "max_kl": 4.842028617858887,
+ "mean_kl": 0.40559878945350647,
+ "reference_nll": 0.8505609035491943,
+ "task_id": 795,
+ "token_count": 35,
+ "top1_agreement": 0.8571428656578064
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4629193544387817,
+ "cvar95_kl": 0.9304691553115845,
+ "delta_nll": 0.2001587152481079,
+ "max_kl": 1.1248857975006104,
+ "mean_kl": 0.23256349563598633,
+ "reference_nll": 1.2627606391906738,
+ "task_id": 944,
+ "token_count": 26,
+ "top1_agreement": 0.8461538553237915
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8367644548416138,
+ "cvar95_kl": 1.6063470840454102,
+ "delta_nll": 0.3266906142234802,
+ "max_kl": 2.256725311279297,
+ "mean_kl": 0.27718666195869446,
+ "reference_nll": 0.5100738406181335,
+ "task_id": 653,
+ "token_count": 38,
+ "top1_agreement": 0.8157894611358643
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6120655536651611,
+ "cvar95_kl": 0.3386809825897217,
+ "delta_nll": 0.10733723640441895,
+ "max_kl": 0.37670642137527466,
+ "mean_kl": 0.09982101619243622,
+ "reference_nll": 1.5047283172607422,
+ "task_id": 857,
+ "token_count": 22,
+ "top1_agreement": 0.9090909361839294
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.484999656677246,
+ "cvar95_kl": 2.2852675914764404,
+ "delta_nll": 0.516429603099823,
+ "max_kl": 3.7752151489257812,
+ "mean_kl": 0.3941865861415863,
+ "reference_nll": 0.9685700535774231,
+ "task_id": 884,
+ "token_count": 68,
+ "top1_agreement": 0.75
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.1429879665374756,
+ "cvar95_kl": 3.0972347259521484,
+ "delta_nll": 0.3109930753707886,
+ "max_kl": 4.512953281402588,
+ "mean_kl": 0.36820775270462036,
+ "reference_nll": 1.831994891166687,
+ "task_id": 878,
+ "token_count": 29,
+ "top1_agreement": 0.8275862336158752
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2643773555755615,
+ "cvar95_kl": 2.5796921253204346,
+ "delta_nll": 0.2556504011154175,
+ "max_kl": 4.8363261222839355,
+ "mean_kl": 0.4045739471912384,
+ "reference_nll": 1.008726954460144,
+ "task_id": 822,
+ "token_count": 132,
+ "top1_agreement": 0.8030303120613098
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9631810188293457,
+ "cvar95_kl": 3.329655170440674,
+ "delta_nll": 0.4790084958076477,
+ "max_kl": 7.06448221206665,
+ "mean_kl": 0.4382796585559845,
+ "reference_nll": 0.484172523021698,
+ "task_id": 687,
+ "token_count": 64,
+ "top1_agreement": 0.796875
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7866061925888062,
+ "cvar95_kl": 1.4329769611358643,
+ "delta_nll": 0.15435105562210083,
+ "max_kl": 2.14422345161438,
+ "mean_kl": 0.18044783174991608,
+ "reference_nll": 0.6322551369667053,
+ "task_id": 820,
+ "token_count": 31,
+ "top1_agreement": 0.8387096524238586
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.0715129375457764,
+ "cvar95_kl": 3.6445250511169434,
+ "delta_nll": 0.5405570268630981,
+ "max_kl": 5.126568794250488,
+ "mean_kl": 0.5067797899246216,
+ "reference_nll": 1.5309559106826782,
+ "task_id": 920,
+ "token_count": 36,
+ "top1_agreement": 0.6944444179534912
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.193363070487976,
+ "cvar95_kl": 3.9873993396759033,
+ "delta_nll": 0.7578619718551636,
+ "max_kl": 4.6706647872924805,
+ "mean_kl": 0.6820417642593384,
+ "reference_nll": 0.4355010986328125,
+ "task_id": 771,
+ "token_count": 135,
+ "top1_agreement": 0.7481481432914734
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5157032012939453,
+ "cvar95_kl": 3.1146926879882812,
+ "delta_nll": 0.28421616554260254,
+ "max_kl": 5.165496826171875,
+ "mean_kl": 0.499787300825119,
+ "reference_nll": 1.2314870357513428,
+ "task_id": 869,
+ "token_count": 47,
+ "top1_agreement": 0.7234042286872864
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.4625861644744873,
+ "cvar95_kl": 1.235114336013794,
+ "delta_nll": 0.13697290420532227,
+ "max_kl": 1.6543669700622559,
+ "mean_kl": 0.2876046895980835,
+ "reference_nll": 2.325613260269165,
+ "task_id": 851,
+ "token_count": 36,
+ "top1_agreement": 0.7777777910232544
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0447742938995361,
+ "cvar95_kl": 1.688151240348816,
+ "delta_nll": 0.31321775913238525,
+ "max_kl": 1.7090915441513062,
+ "mean_kl": 0.23499375581741333,
+ "reference_nll": 0.7315565347671509,
+ "task_id": 728,
+ "token_count": 37,
+ "top1_agreement": 0.8648648858070374
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.080510139465332,
+ "cvar95_kl": 4.701852798461914,
+ "delta_nll": 0.40881335735321045,
+ "max_kl": 5.2358808517456055,
+ "mean_kl": 0.4636934697628021,
+ "reference_nll": 0.6716967821121216,
+ "task_id": 704,
+ "token_count": 39,
+ "top1_agreement": 0.7948718070983887
+ }
+ ],
+ "target_directional_fisher_difference_int4": [
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8978703618049622,
+ "cvar95_kl": 1.5809619426727295,
+ "delta_nll": 0.3306153416633606,
+ "max_kl": 1.6161720752716064,
+ "mean_kl": 0.27246490120887756,
+ "reference_nll": 0.5672550201416016,
+ "task_id": 666,
+ "token_count": 39,
+ "top1_agreement": 0.7948718070983887
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6037651300430298,
+ "cvar95_kl": 4.294712066650391,
+ "delta_nll": 0.7532042264938354,
+ "max_kl": 4.500330924987793,
+ "mean_kl": 0.625324010848999,
+ "reference_nll": 0.8505609035491943,
+ "task_id": 795,
+ "token_count": 35,
+ "top1_agreement": 0.8285714387893677
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.8848952054977417,
+ "cvar95_kl": 4.93497371673584,
+ "delta_nll": 0.6221345663070679,
+ "max_kl": 7.3641557693481445,
+ "mean_kl": 0.8703912496566772,
+ "reference_nll": 1.2627606391906738,
+ "task_id": 944,
+ "token_count": 26,
+ "top1_agreement": 0.6538461446762085
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.9121221303939819,
+ "cvar95_kl": 2.8773627281188965,
+ "delta_nll": 0.4020482897758484,
+ "max_kl": 4.489907264709473,
+ "mean_kl": 0.3251066505908966,
+ "reference_nll": 0.5100738406181335,
+ "task_id": 653,
+ "token_count": 38,
+ "top1_agreement": 0.8684210777282715
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.6163250207901,
+ "cvar95_kl": 0.5889068245887756,
+ "delta_nll": 0.11159670352935791,
+ "max_kl": 0.602655827999115,
+ "mean_kl": 0.14770826697349548,
+ "reference_nll": 1.5047283172607422,
+ "task_id": 857,
+ "token_count": 22,
+ "top1_agreement": 0.9090909361839294
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.3463903665542603,
+ "cvar95_kl": 2.257369041442871,
+ "delta_nll": 0.37782031297683716,
+ "max_kl": 3.9341628551483154,
+ "mean_kl": 0.3554547131061554,
+ "reference_nll": 0.9685700535774231,
+ "task_id": 884,
+ "token_count": 68,
+ "top1_agreement": 0.779411792755127
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.211290121078491,
+ "cvar95_kl": 2.1759629249572754,
+ "delta_nll": 0.3792952299118042,
+ "max_kl": 2.662672519683838,
+ "mean_kl": 0.41122496128082275,
+ "reference_nll": 1.831994891166687,
+ "task_id": 878,
+ "token_count": 29,
+ "top1_agreement": 0.8275862336158752
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.4655814170837402,
+ "cvar95_kl": 3.2412095069885254,
+ "delta_nll": 0.4568544626235962,
+ "max_kl": 5.169238567352295,
+ "mean_kl": 0.5265775322914124,
+ "reference_nll": 1.008726954460144,
+ "task_id": 822,
+ "token_count": 132,
+ "top1_agreement": 0.7803030014038086
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.0316243171691895,
+ "cvar95_kl": 4.008787155151367,
+ "delta_nll": 0.5474517941474915,
+ "max_kl": 7.865177154541016,
+ "mean_kl": 0.5708496570587158,
+ "reference_nll": 0.484172523021698,
+ "task_id": 687,
+ "token_count": 64,
+ "top1_agreement": 0.75
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8413695693016052,
+ "cvar95_kl": 1.6502466201782227,
+ "delta_nll": 0.2091144323348999,
+ "max_kl": 2.0427887439727783,
+ "mean_kl": 0.18990352749824524,
+ "reference_nll": 0.6322551369667053,
+ "task_id": 820,
+ "token_count": 31,
+ "top1_agreement": 0.8709677457809448
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.169755697250366,
+ "cvar95_kl": 2.6238837242126465,
+ "delta_nll": 0.638799786567688,
+ "max_kl": 2.774512529373169,
+ "mean_kl": 0.5395058989524841,
+ "reference_nll": 1.5309559106826782,
+ "task_id": 920,
+ "token_count": 36,
+ "top1_agreement": 0.6388888955116272
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.463719367980957,
+ "cvar95_kl": 5.157857418060303,
+ "delta_nll": 1.0282182693481445,
+ "max_kl": 8.376632690429688,
+ "mean_kl": 0.9603738188743591,
+ "reference_nll": 0.4355010986328125,
+ "task_id": 771,
+ "token_count": 135,
+ "top1_agreement": 0.6370370388031006
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.9489188194274902,
+ "cvar95_kl": 6.585387706756592,
+ "delta_nll": 0.7174317836761475,
+ "max_kl": 7.756852626800537,
+ "mean_kl": 0.9632837176322937,
+ "reference_nll": 1.2314870357513428,
+ "task_id": 869,
+ "token_count": 47,
+ "top1_agreement": 0.6170212626457214
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 2.6542375087738037,
+ "cvar95_kl": 0.7263756990432739,
+ "delta_nll": 0.32862424850463867,
+ "max_kl": 0.7945430278778076,
+ "mean_kl": 0.2053263932466507,
+ "reference_nll": 2.325613260269165,
+ "task_id": 851,
+ "token_count": 36,
+ "top1_agreement": 0.7777777910232544
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.5203227996826172,
+ "cvar95_kl": 3.6317367553710938,
+ "delta_nll": 0.7887662649154663,
+ "max_kl": 4.09130334854126,
+ "mean_kl": 0.6618438959121704,
+ "reference_nll": 0.7315565347671509,
+ "task_id": 728,
+ "token_count": 37,
+ "top1_agreement": 0.7027027010917664
+ },
+ {
+ "all_logits_finite": true,
+ "candidate_nll": 1.2673431634902954,
+ "cvar95_kl": 7.229628562927246,
+ "delta_nll": 0.5956463813781738,
+ "max_kl": 9.372733116149902,
+ "mean_kl": 0.6330258846282959,
+ "reference_nll": 0.6716967821121216,
+ "task_id": 704,
+ "token_count": 39,
+ "top1_agreement": 0.7948718070983887
+ }
+ ]
+ },
+ "prerequisite_artifacts": {},
+ "primary": "causal_observability_confirm2_mse_target_fisher_quota",
+ "query_ema_diagnostics": {
+ "query_ema32_confirm2_mse_target_fisher_quota": [
+ {
+ "layers": [
+ {
+ "admissions_total": 50,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2bb8e8a75f056af7496a4beb1519acee91b1cd06cb38e508ec27aeacbf28461c",
+ "committed_normalized_churn": 0.0037064492216456633,
+ "committed_xor_churn_total": 100,
+ "confirmation_two": true,
+ "current_mask_sha256": "2bb8e8a75f056af7496a4beb1519acee91b1cd06cb38e508ec27aeacbf28461c",
+ "current_selected_count": 355,
+ "dwell_total": 13440,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0984385340483414e-09,
+ "last_committed_normalized_gap": -0.9988289475440979,
+ "last_committed_score_gap": -1.7898581745612319e-06,
+ "last_cutoff_score_margin": 8.869918133314059e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 352,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7265472607164156e-08,
+ "last_raw_normalized_gap": 0.05137373507022858,
+ "last_raw_score_gap": 8.869918133314059e-10,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "34142680787076ce7c3b5c55624f239d1950e4ad95ab938dcd6e8f7e63a9103a",
+ "raw_normalized_churn": 0.026167531504818382,
+ "raw_xor_churn_total": 706,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 256,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "79380509f9b241d09b50dbc5849f79568fb864b6f37e07786bd538940e7bba87",
+ "committed_normalized_churn": 0.01772853185595568,
+ "committed_xor_churn_total": 512,
+ "confirmation_two": true,
+ "current_mask_sha256": "79380509f9b241d09b50dbc5849f79568fb864b6f37e07786bd538940e7bba87",
+ "current_selected_count": 380,
+ "dwell_total": 14184,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.660273724057859e-10,
+ "last_committed_normalized_gap": -0.9968042969703674,
+ "last_committed_score_gap": -5.178818085482817e-08,
+ "last_cutoff_score_margin": 3.3185676429070554e-12,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 375,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5977090761509771e-09,
+ "last_raw_normalized_gap": 0.002077078679576516,
+ "last_raw_score_gap": 3.3185676429070554e-12,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "63356af2ce2fe36f3e8394ccbc0e24de441a7c5d1c5b8f2d21dea2e865a00ba9",
+ "raw_normalized_churn": 0.11447368421052631,
+ "raw_xor_churn_total": 3306,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 101,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0d970febeb18988e9174ad18c77e038b4c9a1169508fe5dad8a7d916a5160d06",
+ "committed_normalized_churn": 0.009880649579338681,
+ "committed_xor_churn_total": 202,
+ "confirmation_two": true,
+ "current_mask_sha256": "0d970febeb18988e9174ad18c77e038b4c9a1169508fe5dad8a7d916a5160d06",
+ "current_selected_count": 269,
+ "dwell_total": 10121,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.772470445033264e-10,
+ "last_committed_normalized_gap": -0.991985023021698,
+ "last_committed_score_gap": -9.619728302823205e-08,
+ "last_cutoff_score_margin": 3.2086511225770664e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 269,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.677736751394605e-09,
+ "last_raw_normalized_gap": 0.036975666880607605,
+ "last_raw_score_gap": 3.2086511225770664e-10,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "72ccccd9454beb29b643753d6089e2856313b05228e462c66dfa2986e515244d",
+ "raw_normalized_churn": 0.06808843670514576,
+ "raw_xor_churn_total": 1392,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "06f104af162e1ebd345abeadd7968da1125d919fecc0279d5747bee742cce1f2",
+ "committed_normalized_churn": 0.0011761246692149367,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "06f104af162e1ebd345abeadd7968da1125d919fecc0279d5747bee742cce1f2",
+ "current_selected_count": 179,
+ "dwell_total": 6794,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.933304787371526e-07,
+ "last_committed_normalized_gap": -0.8674444556236267,
+ "last_committed_score_gap": -1.2651559018195258e-06,
+ "last_cutoff_score_margin": 6.61222401276973e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.594527188648499e-07,
+ "last_raw_normalized_gap": 0.2548527419567108,
+ "last_raw_score_gap": 6.61222401276973e-08,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "95620f3dc7d781cca36ad528fc636f6fe9cb3b1ea20d594653b25a11d44f09cc",
+ "raw_normalized_churn": 0.016612760952660982,
+ "raw_xor_churn_total": 226,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "81d08d49c6d9191283c944f544ac619ccd5ee04d1a4bb3df46e3e2454f3525e0",
+ "committed_normalized_churn": 0.0015647226173541964,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "81d08d49c6d9191283c944f544ac619ccd5ee04d1a4bb3df46e3e2454f3525e0",
+ "current_selected_count": 185,
+ "dwell_total": 7019,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.441182272467813e-08,
+ "last_committed_normalized_gap": -0.7474905252456665,
+ "last_committed_score_gap": -1.0186752774643537e-07,
+ "last_cutoff_score_margin": 1.293787121880996e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.950459408017196e-08,
+ "last_raw_normalized_gap": 0.18614411354064941,
+ "last_raw_score_gap": 1.293787121880996e-08,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "641b6513cc05769aed663ca474a2efba79e1b55f8b22443f54c2944fb5b2c997",
+ "raw_normalized_churn": 0.011522048364153627,
+ "raw_xor_churn_total": 162,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 52,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "adfb738021b1e6b17955076110a382977253d472be86efd0787b9623898a984f",
+ "committed_normalized_churn": 0.013032581453634085,
+ "committed_xor_churn_total": 104,
+ "confirmation_two": true,
+ "current_mask_sha256": "adfb738021b1e6b17955076110a382977253d472be86efd0787b9623898a984f",
+ "current_selected_count": 105,
+ "dwell_total": 3938,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.654245320371956e-09,
+ "last_committed_normalized_gap": -0.8907546997070312,
+ "last_committed_score_gap": -7.056425488372042e-08,
+ "last_cutoff_score_margin": 1.1220322448934894e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.748783778372399e-08,
+ "last_raw_normalized_gap": 0.04081922397017479,
+ "last_raw_score_gap": 1.1220322448934894e-09,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "c431cfc60c045a6a13f149112e1b24d2e724a165f19bb557fadcc66f6718fa5e",
+ "raw_normalized_churn": 0.08170426065162907,
+ "raw_xor_churn_total": 652,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "30cacf7b6a82f1210e1a065da9946300a2c2c8494df98b7d6bd4639577d732e4",
+ "committed_normalized_churn": 0.000986842105263158,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "30cacf7b6a82f1210e1a065da9946300a2c2c8494df98b7d6bd4639577d732e4",
+ "current_selected_count": 80,
+ "dwell_total": 3037,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.02229022206302e-08,
+ "last_committed_normalized_gap": 0.011300353333353996,
+ "last_committed_score_gap": 6.8054006874263e-10,
+ "last_cutoff_score_margin": 6.8054006874263e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.02229022206302e-08,
+ "last_raw_normalized_gap": 0.011300353333353996,
+ "last_raw_score_gap": 6.8054006874263e-10,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "30cacf7b6a82f1210e1a065da9946300a2c2c8494df98b7d6bd4639577d732e4",
+ "raw_normalized_churn": 0.010197368421052632,
+ "raw_xor_churn_total": 62,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8bbf53aea28b45141c5cfddc29c268bb4c777d107d822e0509e7eadfe2c5c081",
+ "committed_normalized_churn": 0.0036719706242350062,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "8bbf53aea28b45141c5cfddc29c268bb4c777d107d822e0509e7eadfe2c5c081",
+ "current_selected_count": 43,
+ "dwell_total": 1628,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.033644008747615e-08,
+ "last_committed_normalized_gap": -0.8063325881958008,
+ "last_committed_score_gap": -8.467058876249212e-08,
+ "last_cutoff_score_margin": 4.114895091333892e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.814551684579783e-08,
+ "last_raw_normalized_gap": 0.007076891604810953,
+ "last_raw_score_gap": 4.114895091333892e-10,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "eb5d3c04c6554e6e574ce5ba9e557820ce8ae28c2b0e76af1a7e18849cb2909d",
+ "raw_normalized_churn": 0.027539779681762546,
+ "raw_xor_churn_total": 90,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 39,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8bcb0784a59252d04525c1255d3763560a1c0405121a0cda161f32ef5003582a",
+ "committed_normalized_churn": 0.012218045112781954,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": true,
+ "current_mask_sha256": "8bcb0784a59252d04525c1255d3763560a1c0405121a0cda161f32ef5003582a",
+ "current_selected_count": 84,
+ "dwell_total": 3153,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1954354839360803e-08,
+ "last_committed_normalized_gap": -0.5982975959777832,
+ "last_committed_score_gap": -1.7804875795945918e-08,
+ "last_cutoff_score_margin": 3.7072034331231407e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7120436623940805e-08,
+ "last_raw_normalized_gap": 0.02165367268025875,
+ "last_raw_score_gap": 3.7072034331231407e-10,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "9b41204c06554159d2d062c2fe5f58dc638acf587a2c396a9359b5ad732fed6d",
+ "raw_normalized_churn": 0.06547619047619048,
+ "raw_xor_churn_total": 418,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2917e5bc555e2cb0bad06eb020967794c4ca85f51d5ee757d3251597731bc251",
+ "committed_normalized_churn": 0.0017543859649122807,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "2917e5bc555e2cb0bad06eb020967794c4ca85f51d5ee757d3251597731bc251",
+ "current_selected_count": 30,
+ "dwell_total": 1138,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.086895384920354e-07,
+ "last_committed_normalized_gap": -0.53944331407547,
+ "last_committed_score_gap": -5.958206088507723e-07,
+ "last_cutoff_score_margin": 8.342715318576666e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.92116691677802e-07,
+ "last_raw_normalized_gap": 0.14089646935462952,
+ "last_raw_score_gap": 8.342715318576666e-08,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "52a808ff7385e0044158c594a41228eff02be7d6c7d2badc9c3773b8fdd0dabe",
+ "raw_normalized_churn": 0.03070175438596491,
+ "raw_xor_churn_total": 70,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 34,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "72057202e02bf5295294efb24a44ba98899d6c1b87410ed58e19fc8b1b4d71c9",
+ "committed_normalized_churn": 0.014431239388794566,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_mask_sha256": "72057202e02bf5295294efb24a44ba98899d6c1b87410ed58e19fc8b1b4d71c9",
+ "current_selected_count": 62,
+ "dwell_total": 2322,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.584466388266264e-10,
+ "last_committed_normalized_gap": -0.9866904616355896,
+ "last_committed_score_gap": -5.6226909350698406e-08,
+ "last_cutoff_score_margin": 2.916245023243391e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.733888055355237e-08,
+ "last_raw_normalized_gap": 0.01681910827755928,
+ "last_raw_score_gap": 2.916245023243391e-10,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "07b1c93934264f1a6e9775f05e5ebe0c84176fbf4ea70773e470ceed3e23aa8b",
+ "raw_normalized_churn": 0.11290322580645161,
+ "raw_xor_churn_total": 532,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "298e2d48311229dd69d05efde9df52d7b509f95afb7f9abce0ece7c354b9f4dd",
+ "committed_normalized_churn": 0.004873294346978557,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "298e2d48311229dd69d05efde9df52d7b509f95afb7f9abce0ece7c354b9f4dd",
+ "current_selected_count": 54,
+ "dwell_total": 2042,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.951263494172963e-08,
+ "last_committed_normalized_gap": -0.6433628797531128,
+ "last_committed_score_gap": -7.127963641551105e-08,
+ "last_cutoff_score_margin": 1.831338636293367e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.493754511893712e-08,
+ "last_raw_normalized_gap": 0.02820153720676899,
+ "last_raw_score_gap": 1.831338636293367e-09,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "ba7392a1ebfdd8cae3fe0602e14185e828e5910e302f1bfbce0f1bbe199d4ecd",
+ "raw_normalized_churn": 0.047270955165692005,
+ "raw_xor_churn_total": 194,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5f2cadc9793108d8a1d28cda67b310f99f8c3ac9cc3871d47065160a6342cb51",
+ "committed_normalized_churn": 0.0017543859649122807,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "5f2cadc9793108d8a1d28cda67b310f99f8c3ac9cc3871d47065160a6342cb51",
+ "current_selected_count": 45,
+ "dwell_total": 1707,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2067615671185195e-06,
+ "last_committed_normalized_gap": -0.1262798309326172,
+ "last_committed_score_gap": -1.7441470845369622e-07,
+ "last_cutoff_score_margin": 1.0955045581795275e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3163120229364722e-06,
+ "last_raw_normalized_gap": 0.0832252949476242,
+ "last_raw_score_gap": 1.0955045581795275e-07,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "9f03cda0ba028f4d7fb5c321047bb78c5dc47a33eb720f5dbe56282359fa4480",
+ "raw_normalized_churn": 0.02046783625730994,
+ "raw_xor_churn_total": 70,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c3288645627c8fc9c0285ca4edf142ea8614c7eb8d524028b635f3e8ca6862e2",
+ "committed_normalized_churn": 0.001949317738791423,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "c3288645627c8fc9c0285ca4edf142ea8614c7eb8d524028b635f3e8ca6862e2",
+ "current_selected_count": 27,
+ "dwell_total": 1024,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.577883257501526e-07,
+ "last_committed_normalized_gap": -0.6373227834701538,
+ "last_committed_score_gap": -9.801863143366063e-07,
+ "last_cutoff_score_margin": 8.14814029581612e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.990710398393276e-07,
+ "last_raw_normalized_gap": 0.09062843769788742,
+ "last_raw_score_gap": 8.14814029581612e-08,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "e063a9d257ae9aee7f5fa18ca46877e66cfd54cbb26696ce2dde417d9f9327ab",
+ "raw_normalized_churn": 0.03216374269005848,
+ "raw_xor_churn_total": 66,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.782953692483716e-05,
+ "last_committed_normalized_gap": 0.7200399041175842,
+ "last_committed_score_gap": 3.443917375989258e-05,
+ "last_cutoff_score_margin": 3.443917375989258e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.782953692483716e-05,
+ "last_raw_normalized_gap": 0.7200399041175842,
+ "last_raw_score_gap": 3.443917375989258e-05,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ee53178b08ca5dc2b9be1ce7d24a9d9f66eabd361a980adddd7931d54d976e5a",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "ee53178b08ca5dc2b9be1ce7d24a9d9f66eabd361a980adddd7931d54d976e5a",
+ "current_selected_count": 9,
+ "dwell_total": 341,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.1762872317340225e-06,
+ "last_committed_normalized_gap": 0.22554375231266022,
+ "last_committed_score_gap": 1.1674792403937317e-06,
+ "last_cutoff_score_margin": 1.1674792403937317e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.1762872317340225e-06,
+ "last_raw_normalized_gap": 0.22554375231266022,
+ "last_raw_score_gap": 1.1674792403937317e-06,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ee53178b08ca5dc2b9be1ce7d24a9d9f66eabd361a980adddd7931d54d976e5a",
+ "raw_normalized_churn": 0.038011695906432746,
+ "raw_xor_churn_total": 26,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2368783245619852e-05,
+ "last_committed_normalized_gap": 0.9048261046409607,
+ "last_committed_score_gap": 1.11915978777688e-05,
+ "last_cutoff_score_margin": 1.11915978777688e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2368783245619852e-05,
+ "last_raw_normalized_gap": 0.9048261046409607,
+ "last_raw_score_gap": 1.11915978777688e-05,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b6c0c0a6c87a10b03ba804699baa375ca76ca6399d5169f99c81f872c96feab6",
+ "committed_normalized_churn": 0.004784688995215311,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "b6c0c0a6c87a10b03ba804699baa375ca76ca6399d5169f99c81f872c96feab6",
+ "current_selected_count": 55,
+ "dwell_total": 2080,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5223645277728792e-07,
+ "last_committed_normalized_gap": -0.34188613295555115,
+ "last_committed_score_gap": -7.908590760052903e-08,
+ "last_cutoff_score_margin": 3.103735934928409e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.83273812126572e-07,
+ "last_raw_normalized_gap": 0.16934967041015625,
+ "last_raw_score_gap": 3.103735934928409e-08,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "357c748298422829d4ae347b361640bfa338a0c8cb3270e48c837587a20c29ef",
+ "raw_normalized_churn": 0.021052631578947368,
+ "raw_xor_churn_total": 88,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ],
+ "task_id": 666
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3b78641e2b25445fbb8c20d4d447b58d5d204c3d9f955d1a57825352c3cbf32f",
+ "committed_normalized_churn": 0.002568351284175642,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "3b78641e2b25445fbb8c20d4d447b58d5d204c3d9f955d1a57825352c3cbf32f",
+ "current_selected_count": 355,
+ "dwell_total": 12039,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.5722396152237934e-09,
+ "last_committed_normalized_gap": -0.9641019105911255,
+ "last_committed_score_gap": -9.59382546739107e-08,
+ "last_cutoff_score_margin": 2.8023503517715653e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 353,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9416262375671067e-08,
+ "last_raw_normalized_gap": 0.14433005452156067,
+ "last_raw_score_gap": 2.8023503517715653e-09,
+ "layer_index": 0,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "c49c7ac2dd0390655ecb7cbe4f27a4b24943526c7ca75b9d5bf94825fe895e21",
+ "raw_normalized_churn": 0.01946975973487987,
+ "raw_xor_churn_total": 470,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 174,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ed114a98d04049c52107f2f799644d4a366da5a3c0a4428517023a4b528f166b",
+ "committed_normalized_churn": 0.01346749226006192,
+ "committed_xor_churn_total": 348,
+ "confirmation_two": true,
+ "current_mask_sha256": "ed114a98d04049c52107f2f799644d4a366da5a3c0a4428517023a4b528f166b",
+ "current_selected_count": 380,
+ "dwell_total": 12746,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.335492389760052e-11,
+ "last_committed_normalized_gap": -0.9977933764457703,
+ "last_committed_score_gap": -1.056052845171962e-08,
+ "last_cutoff_score_margin": 1.5920154083914895e-11,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 379,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7905233679348385e-09,
+ "last_raw_normalized_gap": 0.005705078132450581,
+ "last_raw_score_gap": 1.5920154083914895e-11,
+ "layer_index": 1,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "d2a536afcd6937bbc0d0b41d6be1c4e208373be7cb7ab453ac45db5ba088f2ad",
+ "raw_normalized_churn": 0.10270897832817337,
+ "raw_xor_churn_total": 2654,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 39,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "86e96d2a22e220b12d07ed3d790aa1138536df05f0ae9822379c8f01cb1563a2",
+ "committed_normalized_churn": 0.004264159195276624,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": true,
+ "current_mask_sha256": "86e96d2a22e220b12d07ed3d790aa1138536df05f0ae9822379c8f01cb1563a2",
+ "current_selected_count": 269,
+ "dwell_total": 9107,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3153902411744411e-09,
+ "last_committed_normalized_gap": -0.9285539984703064,
+ "last_committed_score_gap": -1.7095580062687077e-08,
+ "last_cutoff_score_margin": 5.405187408769052e-11,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 268,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.558539654757169e-09,
+ "last_raw_normalized_gap": 0.006315548904240131,
+ "last_raw_score_gap": 5.405187408769052e-11,
+ "layer_index": 2,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "07250f49009c5b9272f549dca13dde7e69b14334a8ef28ce77179ffbc42875f5",
+ "raw_normalized_churn": 0.035643997375902035,
+ "raw_xor_churn_total": 652,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "99781e795d07ac0d47cd643d33e7e2339e008ee2040f4a1f61a187f296946824",
+ "committed_normalized_churn": 0.000821557673348669,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "99781e795d07ac0d47cd643d33e7e2339e008ee2040f4a1f61a187f296946824",
+ "current_selected_count": 179,
+ "dwell_total": 6081,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5283842458302388e-07,
+ "last_committed_normalized_gap": -0.14898066222667694,
+ "last_committed_score_gap": -2.675611199265404e-08,
+ "last_cutoff_score_margin": 2.675611199265404e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7959453657567792e-07,
+ "last_raw_normalized_gap": 0.14898066222667694,
+ "last_raw_score_gap": 2.675611199265404e-08,
+ "layer_index": 4,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "bbaf44fead5a59f555b7ec7098c8872f9b45c5a9fa38b2ddd1dd9a9278a7cb18",
+ "raw_normalized_churn": 0.010680249753532697,
+ "raw_xor_churn_total": 130,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 15,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "62707d78e4fbaef211036fd0dead549f9daf8f9b515ccc7ed662995a3c33d0be",
+ "committed_normalized_churn": 0.0023847376788553257,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_mask_sha256": "62707d78e4fbaef211036fd0dead549f9daf8f9b515ccc7ed662995a3c33d0be",
+ "current_selected_count": 185,
+ "dwell_total": 6275,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.322663009290409e-08,
+ "last_committed_normalized_gap": -0.09944576025009155,
+ "last_committed_score_gap": -8.086217917480099e-09,
+ "last_cutoff_score_margin": 6.320533429970965e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 183,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.131284801038419e-08,
+ "last_raw_normalized_gap": 0.07773105800151825,
+ "last_raw_score_gap": 6.320533429970965e-09,
+ "layer_index": 5,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "79880654e064c3719016115709afb8dc69d80e3fd5065a119917b51a35189a41",
+ "raw_normalized_churn": 0.009538950715421303,
+ "raw_xor_churn_total": 120,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 35,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8160379f4ab3605f67b97fdfc0167cde51f66effc0ca00065dcaf3348c28613e",
+ "committed_normalized_churn": 0.00980392156862745,
+ "committed_xor_churn_total": 70,
+ "confirmation_two": true,
+ "current_mask_sha256": "8160379f4ab3605f67b97fdfc0167cde51f66effc0ca00065dcaf3348c28613e",
+ "current_selected_count": 105,
+ "dwell_total": 3535,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.670742560439976e-08,
+ "last_committed_normalized_gap": -0.741285502910614,
+ "last_committed_score_gap": -7.652384681477997e-08,
+ "last_cutoff_score_margin": 8.081073588073195e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.28532223647926e-08,
+ "last_raw_normalized_gap": 0.02459750697016716,
+ "last_raw_score_gap": 8.081073588073195e-10,
+ "layer_index": 6,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "d3647fd0fe885530261f8fd1359f4aa43ca54b9b4a1905912065e7df18317b4e",
+ "raw_normalized_churn": 0.04733893557422969,
+ "raw_xor_churn_total": 338,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "631859f6574036658169af942a69c0b8378476e12ecdc8fd9a422df5fcb40a2b",
+ "committed_normalized_churn": 0.0011029411764705882,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "631859f6574036658169af942a69c0b8378476e12ecdc8fd9a422df5fcb40a2b",
+ "current_selected_count": 80,
+ "dwell_total": 2717,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8863648421074686e-08,
+ "last_committed_normalized_gap": -0.9048296213150024,
+ "last_committed_score_gap": -1.79345590822777e-07,
+ "last_cutoff_score_margin": 7.680780811369914e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2324535703100992e-07,
+ "last_raw_normalized_gap": 0.6232105493545532,
+ "last_raw_score_gap": 7.680780811369914e-08,
+ "layer_index": 8,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "6e76e4e2ab0369949d5581c26bb4cc3e072887cb7f3628e4b4ba04f8a84d5fc4",
+ "raw_normalized_churn": 0.01213235294117647,
+ "raw_xor_churn_total": 66,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "526581881c652648720352e70a8cf23b40994fdab78b8543ae60fc1b9db6ac79",
+ "committed_normalized_churn": 0.005471956224350205,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "526581881c652648720352e70a8cf23b40994fdab78b8543ae60fc1b9db6ac79",
+ "current_selected_count": 43,
+ "dwell_total": 1454,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.524556704969655e-08,
+ "last_committed_normalized_gap": -0.6446191668510437,
+ "last_committed_score_gap": -1.546254964068794e-07,
+ "last_cutoff_score_margin": 3.888331434609427e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.550766577604008e-08,
+ "last_raw_normalized_gap": 0.04071224480867386,
+ "last_raw_score_gap": 3.888331434609427e-09,
+ "layer_index": 9,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "12318d58ab0bc61a5cf9b587a4c5bed92163a8e0b7d1a118113f7b64a2b6747a",
+ "raw_normalized_churn": 0.029411764705882353,
+ "raw_xor_churn_total": 86,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 24,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7273f43106ed831fd5039d29a4c8aefe66e709a65211871614c8db43447dabeb",
+ "committed_normalized_churn": 0.008403361344537815,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_mask_sha256": "7273f43106ed831fd5039d29a4c8aefe66e709a65211871614c8db43447dabeb",
+ "current_selected_count": 84,
+ "dwell_total": 2832,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.669033769668431e-09,
+ "last_committed_normalized_gap": -0.8454755544662476,
+ "last_committed_score_gap": -3.648939639333548e-08,
+ "last_cutoff_score_margin": 1.0266569816508309e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2621659273293062e-08,
+ "last_raw_normalized_gap": 0.08134088665246964,
+ "last_raw_score_gap": 1.0266569816508309e-09,
+ "layer_index": 10,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "1fd8b7e6fdb5304d69df5316bc0b181c3ca6153ea893ca718872fd06872988f0",
+ "raw_normalized_churn": 0.07247899159663866,
+ "raw_xor_churn_total": 414,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a204eaf2388aa73ffeed8c863ca0fba138c40cfd84895985b598b933c08f4b7e",
+ "committed_normalized_churn": 0.00980392156862745,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "a204eaf2388aa73ffeed8c863ca0fba138c40cfd84895985b598b933c08f4b7e",
+ "current_selected_count": 30,
+ "dwell_total": 1010,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0160102874579025e-06,
+ "last_committed_normalized_gap": -0.2918199896812439,
+ "last_committed_score_gap": -4.1866769606713206e-07,
+ "last_cutoff_score_margin": 1.460675775888376e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2914122180518461e-06,
+ "last_raw_normalized_gap": 0.1131068542599678,
+ "last_raw_score_gap": 1.460675775888376e-07,
+ "layer_index": 12,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "36ba7093322463941d5994c1b91578b92128372aaeec450d8427ad8b4c553af8",
+ "raw_normalized_churn": 0.05196078431372549,
+ "raw_xor_churn_total": 106,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 25,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "733ad31412b92e37617f4a2262280dd18cde4e84c3d251e0a7073a444c9d54f0",
+ "committed_normalized_churn": 0.011859582542694497,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_mask_sha256": "733ad31412b92e37617f4a2262280dd18cde4e84c3d251e0a7073a444c9d54f0",
+ "current_selected_count": 62,
+ "dwell_total": 2083,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.65309241850764e-08,
+ "last_committed_normalized_gap": -0.8944956064224243,
+ "last_committed_score_gap": -1.4015377303167043e-07,
+ "last_cutoff_score_margin": 9.389502508838632e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9669662282572062e-08,
+ "last_raw_normalized_gap": 0.031646814197301865,
+ "last_raw_score_gap": 9.389502508838632e-10,
+ "layer_index": 13,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "bdcd5471d4f4be6fa9fcbf21831484a1c5a8aec24154ebece279d492562ef31e",
+ "raw_normalized_churn": 0.075426944971537,
+ "raw_xor_churn_total": 318,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 17,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8af18677c1851b75d0b9cef5b22a58c2ea3efed09961404e9e3a92c9f02bd378",
+ "committed_normalized_churn": 0.009259259259259259,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_mask_sha256": "8af18677c1851b75d0b9cef5b22a58c2ea3efed09961404e9e3a92c9f02bd378",
+ "current_selected_count": 54,
+ "dwell_total": 1819,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.305010095772559e-09,
+ "last_committed_normalized_gap": -0.8600849509239197,
+ "last_committed_score_gap": -5.7199699199372844e-08,
+ "last_cutoff_score_margin": 6.7998264796642616e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2454366305501026e-08,
+ "last_raw_normalized_gap": 0.209519624710083,
+ "last_raw_score_gap": 6.7998264796642616e-09,
+ "layer_index": 14,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "8d9db4bf8f2e1e560fce9282f080a9e0050fbf45678fdf15756e4b7cadf80084",
+ "raw_normalized_churn": 0.08115468409586056,
+ "raw_xor_churn_total": 298,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ef2b903ca2ccfd6cb88124e551a92f0cca5ee9054ae6b3ae2c6c00e774d189c2",
+ "committed_normalized_churn": 0.00065359477124183,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "ef2b903ca2ccfd6cb88124e551a92f0cca5ee9054ae6b3ae2c6c00e774d189c2",
+ "current_selected_count": 45,
+ "dwell_total": 1529,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5225019751596847e-06,
+ "last_committed_normalized_gap": 0.8047659397125244,
+ "last_committed_score_gap": 1.2252577334948e-06,
+ "last_cutoff_score_margin": 1.2252577334948e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5225019751596847e-06,
+ "last_raw_normalized_gap": 0.8047659397125244,
+ "last_raw_score_gap": 1.2252577334948e-06,
+ "layer_index": 16,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "ef2b903ca2ccfd6cb88124e551a92f0cca5ee9054ae6b3ae2c6c00e774d189c2",
+ "raw_normalized_churn": 0.00065359477124183,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "committed_normalized_churn": 0.0032679738562091504,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "current_selected_count": 27,
+ "dwell_total": 915,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3847085256202263e-06,
+ "last_committed_normalized_gap": 0.6247804760932922,
+ "last_committed_score_gap": 8.65138872541138e-07,
+ "last_cutoff_score_margin": 8.65138872541138e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3847085256202263e-06,
+ "last_raw_normalized_gap": 0.6247804760932922,
+ "last_raw_score_gap": 8.65138872541138e-07,
+ "layer_index": 17,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "raw_normalized_churn": 0.00980392156862745,
+ "raw_xor_churn_total": 18,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "current_selected_count": 7,
+ "dwell_total": 238,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.856310235685669e-05,
+ "last_committed_normalized_gap": 0.9568685293197632,
+ "last_committed_score_gap": 5.6037188187474385e-05,
+ "last_cutoff_score_margin": 5.6037188187474385e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.856310235685669e-05,
+ "last_raw_normalized_gap": 0.9568685293197632,
+ "last_raw_score_gap": 5.6037188187474385e-05,
+ "layer_index": 18,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "committed_normalized_churn": 0.00980392156862745,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "current_selected_count": 9,
+ "dwell_total": 303,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3414328350336291e-05,
+ "last_committed_normalized_gap": 0.8465943336486816,
+ "last_committed_score_gap": 1.1356494724168442e-05,
+ "last_cutoff_score_margin": 1.1356494724168442e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3414328350336291e-05,
+ "last_raw_normalized_gap": 0.8465943336486816,
+ "last_raw_score_gap": 1.1356494724168442e-05,
+ "layer_index": 20,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "raw_normalized_churn": 0.05228758169934641,
+ "raw_xor_churn_total": 32,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "committed_normalized_churn": 0.004201680672268907,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "current_selected_count": 7,
+ "dwell_total": 237,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7151054635178298e-05,
+ "last_committed_normalized_gap": 0.9146240949630737,
+ "last_committed_score_gap": 1.5686768165323883e-05,
+ "last_cutoff_score_margin": 1.5686768165323883e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7151054635178298e-05,
+ "last_raw_normalized_gap": 0.9146240949630737,
+ "last_raw_score_gap": 1.5686768165323883e-05,
+ "layer_index": 21,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "raw_normalized_churn": 0.02100840336134454,
+ "raw_xor_churn_total": 10,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8d56de233c714081094dcaca0be5695523209ef94d7703deec4d03ce33f0d087",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "8d56de233c714081094dcaca0be5695523209ef94d7703deec4d03ce33f0d087",
+ "current_selected_count": 55,
+ "dwell_total": 1870,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.241842018222087e-07,
+ "last_committed_normalized_gap": 0.555128812789917,
+ "last_committed_score_gap": 2.909897602876299e-07,
+ "last_cutoff_score_margin": 2.909897602876299e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.241842018222087e-07,
+ "last_raw_normalized_gap": 0.555128812789917,
+ "last_raw_score_gap": 2.909897602876299e-07,
+ "layer_index": 22,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "8d56de233c714081094dcaca0be5695523209ef94d7703deec4d03ce33f0d087",
+ "raw_normalized_churn": 0.0042780748663101605,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ }
+ ],
+ "task_id": 795
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 19,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5808a8fbbc773245055d608e54fa6c5f9314aa58b2cc6751d5f8de018b698844",
+ "committed_normalized_churn": 0.002140845070422535,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_mask_sha256": "5808a8fbbc773245055d608e54fa6c5f9314aa58b2cc6751d5f8de018b698844",
+ "current_selected_count": 355,
+ "dwell_total": 8856,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.567845764327558e-08,
+ "last_committed_normalized_gap": -0.9921254515647888,
+ "last_committed_score_gap": -1.9753667857003165e-06,
+ "last_cutoff_score_margin": 1.7640999772083887e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 353,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.776651169573597e-08,
+ "last_raw_normalized_gap": 0.004671069327741861,
+ "last_raw_score_gap": 1.7640999772083887e-10,
+ "layer_index": 0,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "bfc65459aed93660981d2928a16b4e6588dfca5c99d12d2006d57b59cabd604e",
+ "raw_normalized_churn": 0.01892957746478873,
+ "raw_xor_churn_total": 336,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 210,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "df63b8dd9d3888605a8542c03ce4a34fe643b18beb11e40b830e088de04f8a8b",
+ "committed_normalized_churn": 0.022105263157894735,
+ "committed_xor_churn_total": 420,
+ "confirmation_two": true,
+ "current_mask_sha256": "df63b8dd9d3888605a8542c03ce4a34fe643b18beb11e40b830e088de04f8a8b",
+ "current_selected_count": 380,
+ "dwell_total": 9290,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.741659370173124e-10,
+ "last_committed_normalized_gap": -0.9980370998382568,
+ "last_committed_score_gap": -2.9194282546995964e-07,
+ "last_cutoff_score_margin": 4.2570391656227e-12,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 373,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.776179007848214e-09,
+ "last_raw_normalized_gap": 0.0008913064375519753,
+ "last_raw_score_gap": 4.2570391656227e-12,
+ "layer_index": 1,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "866fbe90d2fda12e2ef5773026fc24f882fbee094e6f5184484894576fa8f5af",
+ "raw_normalized_churn": 0.17926315789473685,
+ "raw_xor_churn_total": 3406,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 46,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8c9684b2f942679b212f311efdb6c061350f741198dda83960379519285a25a3",
+ "committed_normalized_churn": 0.006840148698884758,
+ "committed_xor_churn_total": 92,
+ "confirmation_two": true,
+ "current_mask_sha256": "8c9684b2f942679b212f311efdb6c061350f741198dda83960379519285a25a3",
+ "current_selected_count": 269,
+ "dwell_total": 6679,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.9408128133829905e-09,
+ "last_committed_normalized_gap": -0.7363186478614807,
+ "last_committed_score_gap": -1.9381916516181263e-08,
+ "last_cutoff_score_margin": 3.368301193518164e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 266,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3392940090284355e-08,
+ "last_raw_normalized_gap": 0.02514982596039772,
+ "last_raw_score_gap": 3.368301193518164e-10,
+ "layer_index": 2,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "359d8bb9240b2d282353ac9bc31a5b493dbca6c7ea00b3da640de8034bfc2923",
+ "raw_normalized_churn": 0.07672862453531598,
+ "raw_xor_churn_total": 1032,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "248139f0dea89c75e65dcc6e1949be9477e4eba7ffd435edf396b37cd964222b",
+ "committed_normalized_churn": 0.000893854748603352,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "248139f0dea89c75e65dcc6e1949be9477e4eba7ffd435edf396b37cd964222b",
+ "current_selected_count": 179,
+ "dwell_total": 4471,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1093549662509758e-07,
+ "last_committed_normalized_gap": -0.15367548167705536,
+ "last_committed_score_gap": -3.830163564089162e-08,
+ "last_cutoff_score_margin": 3.830163564089162e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.492371322659892e-07,
+ "last_raw_normalized_gap": 0.15367548167705536,
+ "last_raw_score_gap": 3.830163564089162e-08,
+ "layer_index": 4,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "738310d7d75b119d5a8b6a0d9914909d6ac49d1c852433cac114fa085172dd2d",
+ "raw_normalized_churn": 0.008938547486033519,
+ "raw_xor_churn_total": 80,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 12,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f4983fab423ad84234f7d5b52f34f27f0457b422fb3af14e7ce9805a952eeb1c",
+ "committed_normalized_churn": 0.0025945945945945945,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_mask_sha256": "f4983fab423ad84234f7d5b52f34f27f0457b422fb3af14e7ce9805a952eeb1c",
+ "current_selected_count": 185,
+ "dwell_total": 4613,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.061058938489623e-07,
+ "last_committed_normalized_gap": 0.05516793206334114,
+ "last_committed_score_gap": 5.8536429037303606e-09,
+ "last_cutoff_score_margin": 5.8536429037303606e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 183,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.061058938489623e-07,
+ "last_raw_normalized_gap": 0.05516793206334114,
+ "last_raw_score_gap": 5.8536429037303606e-09,
+ "layer_index": 5,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "f4983fab423ad84234f7d5b52f34f27f0457b422fb3af14e7ce9805a952eeb1c",
+ "raw_normalized_churn": 0.012324324324324324,
+ "raw_xor_churn_total": 114,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 32,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f3f4367a7bbac0b431a2ba201432584a66ec26230a8b54b85e1f4f0f7f4b62b5",
+ "committed_normalized_churn": 0.01219047619047619,
+ "committed_xor_churn_total": 64,
+ "confirmation_two": true,
+ "current_mask_sha256": "f3f4367a7bbac0b431a2ba201432584a66ec26230a8b54b85e1f4f0f7f4b62b5",
+ "current_selected_count": 105,
+ "dwell_total": 2593,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.057122555105707e-08,
+ "last_committed_normalized_gap": -0.25515511631965637,
+ "last_committed_score_gap": -1.0472522404825213e-08,
+ "last_cutoff_score_margin": 7.754284325756089e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.856934682744395e-08,
+ "last_raw_normalized_gap": 0.2010478526353836,
+ "last_raw_score_gap": 7.754284325756089e-09,
+ "layer_index": 6,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "724b5deb38c7b47c66708910f4cda31d5f654d0fc0786b40825e27ef6705ebbe",
+ "raw_normalized_churn": 0.06895238095238095,
+ "raw_xor_churn_total": 362,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f1b5669fd4857b75748ca0dab124929c6d65d3f4cc8ab91f674411019893cd95",
+ "committed_normalized_churn": 0.0005,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "f1b5669fd4857b75748ca0dab124929c6d65d3f4cc8ab91f674411019893cd95",
+ "current_selected_count": 80,
+ "dwell_total": 1999,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3891174432956177e-07,
+ "last_committed_normalized_gap": 0.28952041268348694,
+ "last_committed_score_gap": 4.021778465812531e-08,
+ "last_cutoff_score_margin": 4.021778465812531e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3891174432956177e-07,
+ "last_raw_normalized_gap": 0.28952041268348694,
+ "last_raw_score_gap": 4.021778465812531e-08,
+ "layer_index": 8,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "f1b5669fd4857b75748ca0dab124929c6d65d3f4cc8ab91f674411019893cd95",
+ "raw_normalized_churn": 0.012,
+ "raw_xor_churn_total": 48,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "866c3d858d038b6dcf9f2a05376bdeb890f778c1a2423c746bccc5018c0cae97",
+ "committed_normalized_churn": 0.0018604651162790699,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "866c3d858d038b6dcf9f2a05376bdeb890f778c1a2423c746bccc5018c0cae97",
+ "current_selected_count": 43,
+ "dwell_total": 1073,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.927191892851624e-08,
+ "last_committed_normalized_gap": 0.04289329797029495,
+ "last_committed_score_gap": 2.542368093827463e-09,
+ "last_cutoff_score_margin": 2.542368093827463e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.927191892851624e-08,
+ "last_raw_normalized_gap": 0.04289329797029495,
+ "last_raw_score_gap": 2.542368093827463e-09,
+ "layer_index": 9,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "866c3d858d038b6dcf9f2a05376bdeb890f778c1a2423c746bccc5018c0cae97",
+ "raw_normalized_churn": 0.03255813953488372,
+ "raw_xor_churn_total": 70,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0ed947036a96462adcea196878da392463d89feab4f07ee4412d4020df0a9a03",
+ "committed_normalized_churn": 0.014761904761904763,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "0ed947036a96462adcea196878da392463d89feab4f07ee4412d4020df0a9a03",
+ "current_selected_count": 84,
+ "dwell_total": 2069,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6730679064380638e-08,
+ "last_committed_normalized_gap": -0.2700972557067871,
+ "last_committed_score_gap": -6.191113399722781e-09,
+ "last_cutoff_score_margin": 2.331008275291424e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0868300865117817e-08,
+ "last_raw_normalized_gap": 0.11170091480016708,
+ "last_raw_score_gap": 2.331008275291424e-09,
+ "layer_index": 10,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "7452a1d14f9a82e340bd24450a1e5d9e14cd009756781378080a296cf14eb258",
+ "raw_normalized_churn": 0.12,
+ "raw_xor_churn_total": 504,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "20bf757b3174c4f744b8a086ff79aa6171aebe883c64613d1b3535d0ea014d81",
+ "committed_normalized_churn": 0.004,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "20bf757b3174c4f744b8a086ff79aa6171aebe883c64613d1b3535d0ea014d81",
+ "current_selected_count": 30,
+ "dwell_total": 747,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.560396172972105e-07,
+ "last_committed_normalized_gap": 0.31176602840423584,
+ "last_committed_score_gap": 2.0453086335692205e-07,
+ "last_cutoff_score_margin": 2.0453086335692205e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.560396172972105e-07,
+ "last_raw_normalized_gap": 0.31176602840423584,
+ "last_raw_score_gap": 2.0453086335692205e-07,
+ "layer_index": 12,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "20bf757b3174c4f744b8a086ff79aa6171aebe883c64613d1b3535d0ea014d81",
+ "raw_normalized_churn": 0.04533333333333334,
+ "raw_xor_churn_total": 68,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 27,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e2b19e0a247be83858631a918007d5c0b031678352fa63816e4b21a9ddc9a8fb",
+ "committed_normalized_churn": 0.017419354838709676,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_mask_sha256": "e2b19e0a247be83858631a918007d5c0b031678352fa63816e4b21a9ddc9a8fb",
+ "current_selected_count": 62,
+ "dwell_total": 1523,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4030175183042957e-08,
+ "last_committed_normalized_gap": -0.29546794295310974,
+ "last_committed_score_gap": -1.0077819467824156e-08,
+ "last_cutoff_score_margin": 1.219406797758893e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7614499131800585e-08,
+ "last_raw_normalized_gap": 0.0441582091152668,
+ "last_raw_score_gap": 1.219406797758893e-09,
+ "layer_index": 13,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "23a8a9ff4740e12d49ed6ab265f0f75767f25c74d178ae83993821e8e617fbfa",
+ "raw_normalized_churn": 0.12903225806451613,
+ "raw_xor_churn_total": 400,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 12,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "72104b9da2be161eca7f764a87d3b6c30905f593fdc055b4cea495d7e36289fa",
+ "committed_normalized_churn": 0.008888888888888889,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_mask_sha256": "72104b9da2be161eca7f764a87d3b6c30905f593fdc055b4cea495d7e36289fa",
+ "current_selected_count": 54,
+ "dwell_total": 1338,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.130129541290444e-08,
+ "last_committed_normalized_gap": -0.17358215153217316,
+ "last_committed_score_gap": -1.9177072374532145e-08,
+ "last_cutoff_score_margin": 4.305185541397805e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.560648095430224e-08,
+ "last_raw_normalized_gap": 0.045030269771814346,
+ "last_raw_score_gap": 4.305185541397805e-09,
+ "layer_index": 14,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "486185bbf7d7914f3edb3b1f92c646a8033271d607787f337f279fa56dda635b",
+ "raw_normalized_churn": 0.06,
+ "raw_xor_churn_total": 162,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5bb5dd0a03ab46d57be5f7c104cab91279d36403b6dd8808a340ceb1280b461b",
+ "committed_normalized_churn": 0.0017777777777777779,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "5bb5dd0a03ab46d57be5f7c104cab91279d36403b6dd8808a340ceb1280b461b",
+ "current_selected_count": 45,
+ "dwell_total": 1123,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0166897936869645e-06,
+ "last_committed_normalized_gap": 0.3344857096672058,
+ "last_committed_score_gap": 3.4006819760179496e-07,
+ "last_cutoff_score_margin": 3.4006819760179496e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0166897936869645e-06,
+ "last_raw_normalized_gap": 0.3344857096672058,
+ "last_raw_score_gap": 3.4006819760179496e-07,
+ "layer_index": 16,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "5bb5dd0a03ab46d57be5f7c104cab91279d36403b6dd8808a340ceb1280b461b",
+ "raw_normalized_churn": 0.006222222222222222,
+ "raw_xor_churn_total": 14,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5060b6ea69d1f1770dcf4c2c7e5ee786ffcf1404dc406b850c2ff67bb3b61848",
+ "committed_normalized_churn": 0.0014814814814814814,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "5060b6ea69d1f1770dcf4c2c7e5ee786ffcf1404dc406b850c2ff67bb3b61848",
+ "current_selected_count": 27,
+ "dwell_total": 674,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.8276551802264294e-06,
+ "last_committed_normalized_gap": 0.636661946773529,
+ "last_committed_score_gap": 1.800260406525922e-06,
+ "last_cutoff_score_margin": 1.800260406525922e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.8276551802264294e-06,
+ "last_raw_normalized_gap": 0.636661946773529,
+ "last_raw_score_gap": 1.800260406525922e-06,
+ "layer_index": 17,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "5060b6ea69d1f1770dcf4c2c7e5ee786ffcf1404dc406b850c2ff67bb3b61848",
+ "raw_normalized_churn": 0.016296296296296295,
+ "raw_xor_churn_total": 22,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "current_selected_count": 7,
+ "dwell_total": 175,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.2556744776666164e-05,
+ "last_committed_normalized_gap": 0.9316623210906982,
+ "last_committed_score_gap": 4.896513928542845e-05,
+ "last_cutoff_score_margin": 4.896513928542845e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.2556744776666164e-05,
+ "last_raw_normalized_gap": 0.9316623210906982,
+ "last_raw_score_gap": 4.896513928542845e-05,
+ "layer_index": 18,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "917918882bdd872c2147a355371cf0d0c10fdee7bdb43c0068301aa1e10745ef",
+ "committed_normalized_churn": 0.008888888888888889,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "917918882bdd872c2147a355371cf0d0c10fdee7bdb43c0068301aa1e10745ef",
+ "current_selected_count": 9,
+ "dwell_total": 223,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.8847372959717177e-05,
+ "last_committed_normalized_gap": 0.6805850863456726,
+ "last_committed_score_gap": 1.963309114216827e-05,
+ "last_cutoff_score_margin": 1.963309114216827e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.8847372959717177e-05,
+ "last_raw_normalized_gap": 0.6805850863456726,
+ "last_raw_score_gap": 1.963309114216827e-05,
+ "layer_index": 20,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "917918882bdd872c2147a355371cf0d0c10fdee7bdb43c0068301aa1e10745ef",
+ "raw_normalized_churn": 0.035555555555555556,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "committed_normalized_churn": 0.005714285714285714,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "current_selected_count": 7,
+ "dwell_total": 174,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2455729524372146e-05,
+ "last_committed_normalized_gap": 0.9215488433837891,
+ "last_committed_score_gap": 2.9909539080108516e-05,
+ "last_cutoff_score_margin": 2.9909539080108516e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2455729524372146e-05,
+ "last_raw_normalized_gap": 0.9215488433837891,
+ "last_raw_score_gap": 2.9909539080108516e-05,
+ "layer_index": 21,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "raw_normalized_churn": 0.005714285714285714,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fcfcd2c513aece10e323400c7d7f8b00c7ad6e389a9d8ea173f46e60845b95e0",
+ "committed_normalized_churn": 0.002909090909090909,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "fcfcd2c513aece10e323400c7d7f8b00c7ad6e389a9d8ea173f46e60845b95e0",
+ "current_selected_count": 55,
+ "dwell_total": 1371,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1087093909623036e-08,
+ "last_committed_normalized_gap": -0.9301942586898804,
+ "last_committed_score_gap": -1.477406925687319e-07,
+ "last_cutoff_score_margin": 2.427327672194224e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5882778825471178e-07,
+ "last_raw_normalized_gap": 0.015282764099538326,
+ "last_raw_score_gap": 2.427327672194224e-09,
+ "layer_index": 22,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "f7cd2d6a826f75c636ae95fd8137d70a9a486d60ffa5a9f4a7be181b94d3c00b",
+ "raw_normalized_churn": 0.01890909090909091,
+ "raw_xor_churn_total": 52,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ }
+ ],
+ "task_id": 944
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 37,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fc94a4515da07bf25c5fee5280399c07c899a22252861867745d97d445d2b548",
+ "committed_normalized_churn": 0.0028169014084507044,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": true,
+ "current_mask_sha256": "fc94a4515da07bf25c5fee5280399c07c899a22252861867745d97d445d2b548",
+ "current_selected_count": 355,
+ "dwell_total": 13098,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.419388602438517e-10,
+ "last_committed_normalized_gap": -0.9964268803596497,
+ "last_committed_score_gap": -2.6267906605426106e-07,
+ "last_cutoff_score_margin": 1.5755219351376581e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4626858835242729e-08,
+ "last_raw_normalized_gap": 0.010771430097520351,
+ "last_raw_score_gap": 1.5755219351376581e-10,
+ "layer_index": 0,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "7c25a60eaefac052a5fbce3fc5f876ae919a35a7b592e29ceb2ff1b8e3443359",
+ "raw_normalized_churn": 0.017967263037685574,
+ "raw_xor_churn_total": 472,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 208,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fd683f1f0f6d8722d785066d3b2dbcaed880a31f6ca4fe83ef6df1a36075927f",
+ "committed_normalized_churn": 0.014793741109530583,
+ "committed_xor_churn_total": 416,
+ "confirmation_two": true,
+ "current_mask_sha256": "fd683f1f0f6d8722d785066d3b2dbcaed880a31f6ca4fe83ef6df1a36075927f",
+ "current_selected_count": 380,
+ "dwell_total": 13852,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.417472389464436e-10,
+ "last_committed_normalized_gap": -0.9738508462905884,
+ "last_committed_score_gap": -5.278965709010208e-09,
+ "last_cutoff_score_margin": 5.1772142128925225e-11,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 375,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.6424232780804e-10,
+ "last_raw_normalized_gap": 0.0779416486620903,
+ "last_raw_score_gap": 5.1772142128925225e-11,
+ "layer_index": 1,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "511fb5c62bf7b262238dbfb5a9486900c447263db72fda320b55a58b7a6af47d",
+ "raw_normalized_churn": 0.1221194879089616,
+ "raw_xor_churn_total": 3434,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 39,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "01befbca57359a691eef225b7f51b43cd99e76182af450795cdcd20278f44744",
+ "committed_normalized_churn": 0.003918416557821762,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": true,
+ "current_mask_sha256": "01befbca57359a691eef225b7f51b43cd99e76182af450795cdcd20278f44744",
+ "current_selected_count": 269,
+ "dwell_total": 9914,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.240766045462749e-09,
+ "last_committed_normalized_gap": -0.9237114787101746,
+ "last_committed_score_gap": -1.5023349675402642e-08,
+ "last_cutoff_score_margin": 6.506395422434252e-11,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 267,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.272062703591928e-09,
+ "last_raw_normalized_gap": 0.015230102464556694,
+ "last_raw_score_gap": 6.506395422434252e-11,
+ "layer_index": 2,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "910fd684d1e2d1d3a1d58d36b0f36a13f1c4253d614c14e2d59d5758baf6d762",
+ "raw_normalized_churn": 0.03868180448106099,
+ "raw_xor_churn_total": 770,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7342c092e527b2d027e2bbbe031871b06b16388036a8519d8906c7a0faca4380",
+ "committed_normalized_churn": 0.0004529669334138608,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "7342c092e527b2d027e2bbbe031871b06b16388036a8519d8906c7a0faca4380",
+ "current_selected_count": 179,
+ "dwell_total": 6620,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3761162165337737e-07,
+ "last_committed_normalized_gap": 0.2992125153541565,
+ "last_committed_score_gap": 4.1175120202296966e-08,
+ "last_cutoff_score_margin": 4.1175120202296966e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3761162165337737e-07,
+ "last_raw_normalized_gap": 0.2992125153541565,
+ "last_raw_score_gap": 4.1175120202296966e-08,
+ "layer_index": 4,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "7342c092e527b2d027e2bbbe031871b06b16388036a8519d8906c7a0faca4380",
+ "raw_normalized_churn": 0.009059338668277215,
+ "raw_xor_churn_total": 120,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b1f3ed5e4b2f0bc624d75e4061645b87de9a1beac546839f303ee9dfaf60003a",
+ "committed_normalized_churn": 0.0010226442658875091,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "b1f3ed5e4b2f0bc624d75e4061645b87de9a1beac546839f303ee9dfaf60003a",
+ "current_selected_count": 185,
+ "dwell_total": 6838,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.2776349573614425e-08,
+ "last_committed_normalized_gap": -0.5935273170471191,
+ "last_committed_score_gap": -6.246158790190748e-08,
+ "last_cutoff_score_margin": 8.23074941536106e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.232210919028148e-08,
+ "last_raw_normalized_gap": 0.1138068214058876,
+ "last_raw_score_gap": 8.23074941536106e-09,
+ "layer_index": 5,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "adfbef9239f339ac41bc3303ab4ca65622040812e346a1c6609ef85c26cbec25",
+ "raw_normalized_churn": 0.01139517896274653,
+ "raw_xor_churn_total": 156,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 41,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "40ca19f39f9c99bea4bee19ab0da56422847c4a42ceb5710da1d3e87a77036b6",
+ "committed_normalized_churn": 0.010553410553410553,
+ "committed_xor_churn_total": 82,
+ "confirmation_two": true,
+ "current_mask_sha256": "40ca19f39f9c99bea4bee19ab0da56422847c4a42ceb5710da1d3e87a77036b6",
+ "current_selected_count": 105,
+ "dwell_total": 3844,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.9890485702944716e-08,
+ "last_committed_normalized_gap": -0.2587410509586334,
+ "last_committed_score_gap": -6.9428978122232365e-09,
+ "last_cutoff_score_margin": 6.136904318054803e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.178388669449305e-08,
+ "last_raw_normalized_gap": 0.028171760961413383,
+ "last_raw_score_gap": 6.136904318054803e-10,
+ "layer_index": 6,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "d426c43b799608cc9dd099f8359a96c0aeb666176a9802790d08f4b333471f6f",
+ "raw_normalized_churn": 0.04993564993564994,
+ "raw_xor_churn_total": 388,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6d411ef3e7dc19ccdb731d830369cffb569f4baa41bd41585932b114f98688d5",
+ "committed_normalized_churn": 0.0013513513513513514,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "6d411ef3e7dc19ccdb731d830369cffb569f4baa41bd41585932b114f98688d5",
+ "current_selected_count": 80,
+ "dwell_total": 2956,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2338411181644915e-07,
+ "last_committed_normalized_gap": -0.4674293100833893,
+ "last_committed_score_gap": -1.0829238306087063e-07,
+ "last_cutoff_score_margin": 9.588063676346792e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2979387520317687e-07,
+ "last_raw_normalized_gap": 0.007387146353721619,
+ "last_raw_score_gap": 9.588063676346792e-10,
+ "layer_index": 8,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "d251b3e4fcdee644c483fc2ed8b485dac34afdddfa64f4c6e194d348f3a3ab89",
+ "raw_normalized_churn": 0.01722972972972973,
+ "raw_xor_churn_total": 102,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "452fbc04c9f81457783e485c6f68abe2b933f7ffbf4b62b6bb27c5c0f0793677",
+ "committed_normalized_churn": 0.00251414204902577,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "452fbc04c9f81457783e485c6f68abe2b933f7ffbf4b62b6bb27c5c0f0793677",
+ "current_selected_count": 43,
+ "dwell_total": 1587,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.064579866598251e-08,
+ "last_committed_normalized_gap": 0.17566318809986115,
+ "last_committed_score_gap": 8.89660256575553e-09,
+ "last_cutoff_score_margin": 8.89660256575553e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.064579866598251e-08,
+ "last_raw_normalized_gap": 0.17566318809986115,
+ "last_raw_score_gap": 8.89660256575553e-09,
+ "layer_index": 9,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "452fbc04c9f81457783e485c6f68abe2b933f7ffbf4b62b6bb27c5c0f0793677",
+ "raw_normalized_churn": 0.01759899434318039,
+ "raw_xor_churn_total": 56,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 30,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3ef778e980a8c57777b679964f5eda3820ae85297acd6f2767c07b15c9e38961",
+ "committed_normalized_churn": 0.009652509652509652,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_mask_sha256": "3ef778e980a8c57777b679964f5eda3820ae85297acd6f2767c07b15c9e38961",
+ "current_selected_count": 84,
+ "dwell_total": 3078,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0548368400975505e-08,
+ "last_committed_normalized_gap": -0.5709992051124573,
+ "last_committed_score_gap": -1.4039856388592398e-08,
+ "last_cutoff_score_margin": 3.594813335894287e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.792224857410929e-08,
+ "last_raw_normalized_gap": 0.02005782537162304,
+ "last_raw_score_gap": 3.594813335894287e-10,
+ "layer_index": 10,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "d9ff376a572991a70e2b2bf282937d83659b8374b6bf14c5f6f37cc79daa3992",
+ "raw_normalized_churn": 0.05791505791505792,
+ "raw_xor_churn_total": 360,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d2f898221d2c125ace2a2dd5992372245c86233cfc36eea7b22a7da3253863cd",
+ "committed_normalized_churn": 0.0018018018018018018,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "d2f898221d2c125ace2a2dd5992372245c86233cfc36eea7b22a7da3253863cd",
+ "current_selected_count": 30,
+ "dwell_total": 1108,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.907636015464959e-07,
+ "last_committed_normalized_gap": 0.4904058575630188,
+ "last_committed_score_gap": 4.368356769646198e-07,
+ "last_cutoff_score_margin": 4.368356769646198e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.907636015464959e-07,
+ "last_raw_normalized_gap": 0.4904058575630188,
+ "last_raw_score_gap": 4.368356769646198e-07,
+ "layer_index": 12,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "d2f898221d2c125ace2a2dd5992372245c86233cfc36eea7b22a7da3253863cd",
+ "raw_normalized_churn": 0.02972972972972973,
+ "raw_xor_churn_total": 66,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 26,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "42a3c8d01c74954569b628244659ebc7285f9af726384f6eca51beca68bb7151",
+ "committed_normalized_churn": 0.011333914559721011,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_mask_sha256": "42a3c8d01c74954569b628244659ebc7285f9af726384f6eca51beca68bb7151",
+ "current_selected_count": 62,
+ "dwell_total": 2268,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2253543957285729e-08,
+ "last_committed_normalized_gap": -0.7320432662963867,
+ "last_committed_score_gap": -3.347601662540001e-08,
+ "last_cutoff_score_margin": 1.5757191107468316e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7230947335633573e-08,
+ "last_raw_normalized_gap": 0.09144704043865204,
+ "last_raw_score_gap": 1.5757191107468316e-09,
+ "layer_index": 13,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "cc5272086eeca4e28cd20d3a171e5e7bd340ce0e31719b2ddc13d1d290d6e8c9",
+ "raw_normalized_churn": 0.08718395815170009,
+ "raw_xor_churn_total": 400,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "281c5d50a10eb462c68361d250903bb59cb2237a50faf4dad982f5689e85b9e3",
+ "committed_normalized_churn": 0.0045045045045045045,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "281c5d50a10eb462c68361d250903bb59cb2237a50faf4dad982f5689e85b9e3",
+ "current_selected_count": 54,
+ "dwell_total": 1989,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8278010216477014e-08,
+ "last_committed_normalized_gap": 0.08244533836841583,
+ "last_committed_score_gap": 1.5069367975684145e-09,
+ "last_cutoff_score_margin": 1.5069367975684145e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8278010216477014e-08,
+ "last_raw_normalized_gap": 0.08244533836841583,
+ "last_raw_score_gap": 1.5069367975684145e-09,
+ "layer_index": 14,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "281c5d50a10eb462c68361d250903bb59cb2237a50faf4dad982f5689e85b9e3",
+ "raw_normalized_churn": 0.03553553553553553,
+ "raw_xor_churn_total": 142,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8b517eba5df7c821a6b02dcf259bf0eebbf1628e6e9989c742e6abf8304cee55",
+ "committed_normalized_churn": 0.0006006006006006006,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "8b517eba5df7c821a6b02dcf259bf0eebbf1628e6e9989c742e6abf8304cee55",
+ "current_selected_count": 45,
+ "dwell_total": 1664,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6914888192332e-06,
+ "last_committed_normalized_gap": -0.059978023171424866,
+ "last_committed_score_gap": -1.0792530247272225e-07,
+ "last_cutoff_score_margin": 7.77798732087831e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7994141217059223e-06,
+ "last_raw_normalized_gap": 0.043225109577178955,
+ "last_raw_score_gap": 7.77798732087831e-08,
+ "layer_index": 16,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "4910e5fa9c709c208e2d154c250215411ca2f3ad5de48f3b77f8798ebb05e133",
+ "raw_normalized_churn": 0.0012012012012012011,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5f62608cd31d75ef6804459849fa8f7f385e407ecea44937b5bc7d775449c433",
+ "committed_normalized_churn": 0.001001001001001001,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "5f62608cd31d75ef6804459849fa8f7f385e407ecea44937b5bc7d775449c433",
+ "current_selected_count": 27,
+ "dwell_total": 998,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.7860144200531067e-06,
+ "last_committed_normalized_gap": 0.77060866355896,
+ "last_committed_score_gap": 2.146926817658823e-06,
+ "last_cutoff_score_margin": 2.146926817658823e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7860144200531067e-06,
+ "last_raw_normalized_gap": 0.77060866355896,
+ "last_raw_score_gap": 2.146926817658823e-06,
+ "layer_index": 17,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "5f62608cd31d75ef6804459849fa8f7f385e407ecea44937b5bc7d775449c433",
+ "raw_normalized_churn": 0.003003003003003003,
+ "raw_xor_churn_total": 6,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "current_selected_count": 7,
+ "dwell_total": 259,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.691562596941367e-05,
+ "last_committed_normalized_gap": 0.40703514218330383,
+ "last_committed_score_gap": 1.5025956599856727e-05,
+ "last_cutoff_score_margin": 1.5025956599856727e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.691562596941367e-05,
+ "last_raw_normalized_gap": 0.40703514218330383,
+ "last_raw_score_gap": 1.5025956599856727e-05,
+ "layer_index": 18,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "committed_normalized_churn": 0.003003003003003003,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "current_selected_count": 9,
+ "dwell_total": 332,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4947113413654733e-05,
+ "last_committed_normalized_gap": -0.7868244051933289,
+ "last_committed_score_gap": -5.51693192392122e-05,
+ "last_cutoff_score_margin": 1.519107991043711e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.0138193324091844e-05,
+ "last_raw_normalized_gap": 0.5040474534034729,
+ "last_raw_score_gap": 1.519107991043711e-05,
+ "layer_index": 20,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "raw_normalized_churn": 0.024024024024024024,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "committed_normalized_churn": 0.003861003861003861,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "current_selected_count": 7,
+ "dwell_total": 258,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3490761375578586e-05,
+ "last_committed_normalized_gap": 0.8838837146759033,
+ "last_committed_score_gap": 1.1924264072149526e-05,
+ "last_cutoff_score_margin": 1.1924264072149526e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3490761375578586e-05,
+ "last_raw_normalized_gap": 0.8838837146759033,
+ "last_raw_score_gap": 1.1924264072149526e-05,
+ "layer_index": 21,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "raw_normalized_churn": 0.003861003861003861,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "63bb3066ad011657b10d6e61926cc12fe665a9130b586df42d68347a6343a0b1",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "63bb3066ad011657b10d6e61926cc12fe665a9130b586df42d68347a6343a0b1",
+ "current_selected_count": 55,
+ "dwell_total": 2035,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.874979365216859e-07,
+ "last_committed_normalized_gap": 0.7524713277816772,
+ "last_committed_score_gap": 4.420753612066619e-07,
+ "last_cutoff_score_margin": 4.420753612066619e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.874979365216859e-07,
+ "last_raw_normalized_gap": 0.7524713277816772,
+ "last_raw_score_gap": 4.420753612066619e-07,
+ "layer_index": 22,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "63bb3066ad011657b10d6e61926cc12fe665a9130b586df42d68347a6343a0b1",
+ "raw_normalized_churn": 0.0019656019656019656,
+ "raw_xor_churn_total": 8,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ }
+ ],
+ "task_id": 653
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 20,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "94e117a599e09856ff0d9e46fe4cdc631cfbe4f05637e31f7139daacd3b84550",
+ "committed_normalized_churn": 0.0026827632461435278,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_mask_sha256": "94e117a599e09856ff0d9e46fe4cdc631cfbe4f05637e31f7139daacd3b84550",
+ "current_selected_count": 355,
+ "dwell_total": 7435,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.091179946399734e-08,
+ "last_committed_normalized_gap": -0.888258695602417,
+ "last_committed_score_gap": -8.67405489657358e-08,
+ "last_cutoff_score_margin": 3.182615060381977e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.91913578362346e-08,
+ "last_raw_normalized_gap": 0.16583584249019623,
+ "last_raw_score_gap": 3.182615060381977e-09,
+ "layer_index": 0,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "e0d3d086829dca60884f7599ac09e45da4eb12489249620b58efbfd75889262f",
+ "raw_normalized_churn": 0.01596244131455399,
+ "raw_xor_churn_total": 238,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 142,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1a44365be3e1c418ad9f398c070e8c432db8200971cdf3947e026a97021ad465",
+ "committed_normalized_churn": 0.017794486215538845,
+ "committed_xor_churn_total": 284,
+ "confirmation_two": true,
+ "current_mask_sha256": "1a44365be3e1c418ad9f398c070e8c432db8200971cdf3947e026a97021ad465",
+ "current_selected_count": 380,
+ "dwell_total": 7838,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0496818692029564e-10,
+ "last_committed_normalized_gap": -0.9877015352249146,
+ "last_committed_score_gap": -8.430119713409567e-09,
+ "last_cutoff_score_margin": 9.828804437006511e-12,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 378,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1469255262474007e-09,
+ "last_raw_normalized_gap": 0.004578083753585815,
+ "last_raw_score_gap": 9.828804437006511e-12,
+ "layer_index": 1,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "cc75bdb4f68e80f0dc67a4ffc3002d3eda49ea438863ebeea65761d848389ef3",
+ "raw_normalized_churn": 0.1449874686716792,
+ "raw_xor_churn_total": 2314,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 29,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2fe011b20ea6ea42550abc38f16949b2da449e8fb4abe5e90b8eced466483717",
+ "committed_normalized_churn": 0.005133651973800672,
+ "committed_xor_churn_total": 58,
+ "confirmation_two": true,
+ "current_mask_sha256": "2fe011b20ea6ea42550abc38f16949b2da449e8fb4abe5e90b8eced466483717",
+ "current_selected_count": 269,
+ "dwell_total": 5620,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1752000201047395e-09,
+ "last_committed_normalized_gap": -0.9880784153938293,
+ "last_committed_score_gap": -1.8028389092705766e-07,
+ "last_cutoff_score_margin": 1.5898393712632242e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 266,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.936897444300484e-09,
+ "last_raw_normalized_gap": 0.0017789611592888832,
+ "last_raw_score_gap": 1.5898393712632242e-11,
+ "layer_index": 2,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "c0ce960782505b242e182a6a61a365b90c54aefcb2ee6437742504dc19480e6a",
+ "raw_normalized_churn": 0.03558151885289432,
+ "raw_xor_churn_total": 402,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "174424b114bf47931855da162c2a0b697ef0e71a5b73f040877a6b2135223399",
+ "committed_normalized_churn": 0.0005320563979781857,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "174424b114bf47931855da162c2a0b697ef0e71a5b73f040877a6b2135223399",
+ "current_selected_count": 179,
+ "dwell_total": 3757,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.6553121301731153e-07,
+ "last_committed_normalized_gap": -0.38275808095932007,
+ "last_committed_score_gap": -1.646586440529063e-07,
+ "last_cutoff_score_margin": 5.414364068201394e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.914664207764872e-07,
+ "last_raw_normalized_gap": 0.018576286733150482,
+ "last_raw_score_gap": 5.414364068201394e-09,
+ "layer_index": 4,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "90ac21a79752153376f984c61339ac799d2791ffbffb23a0ed85410bd9dac6bb",
+ "raw_normalized_churn": 0.0074487895716946,
+ "raw_xor_churn_total": 56,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "86b9668b990ee016a2923393958806f12df57ba091a8040e4e7567787d004f14",
+ "committed_normalized_churn": 0.002059202059202059,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "86b9668b990ee016a2923393958806f12df57ba091a8040e4e7567787d004f14",
+ "current_selected_count": 185,
+ "dwell_total": 3877,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.948858555233528e-08,
+ "last_committed_normalized_gap": -0.8480835556983948,
+ "last_committed_score_gap": -3.879245298321621e-07,
+ "last_cutoff_score_margin": 2.845084168257017e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0120958648940359e-07,
+ "last_raw_normalized_gap": 0.0028110817074775696,
+ "last_raw_score_gap": 2.845084168257017e-10,
+ "layer_index": 5,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "a9856b48175e3269a297a9d8b0055d28096cf1007aca5475c033bcb5ad38143b",
+ "raw_normalized_churn": 0.008494208494208495,
+ "raw_xor_churn_total": 66,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 18,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "dff4675dc4359fc66523220928995becd677c9092a706d43228e42dfe9244875",
+ "committed_normalized_churn": 0.00816326530612245,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_mask_sha256": "dff4675dc4359fc66523220928995becd677c9092a706d43228e42dfe9244875",
+ "current_selected_count": 105,
+ "dwell_total": 2187,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3987681174730824e-08,
+ "last_committed_normalized_gap": -0.7987373471260071,
+ "last_committed_score_gap": -9.519826704718071e-08,
+ "last_cutoff_score_margin": 5.937653924092956e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.695969041928038e-08,
+ "last_raw_normalized_gap": 0.16065216064453125,
+ "last_raw_score_gap": 5.937653924092956e-09,
+ "layer_index": 6,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "7c324ea07b6e349265b93e79df334104e4ce31da5a7f462d19c13a4c09124bfa",
+ "raw_normalized_churn": 0.04126984126984127,
+ "raw_xor_churn_total": 182,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "30cdfa43291eec672c25f373902eec1efa9887cd7715c2cffbb867880e3c8e17",
+ "committed_normalized_churn": 0.002380952380952381,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "30cdfa43291eec672c25f373902eec1efa9887cd7715c2cffbb867880e3c8e17",
+ "current_selected_count": 80,
+ "dwell_total": 1676,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.354738163987349e-08,
+ "last_committed_normalized_gap": -0.5893843770027161,
+ "last_committed_score_gap": -7.686017511332466e-08,
+ "last_cutoff_score_margin": 5.012886461486232e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.05844343067929e-07,
+ "last_raw_normalized_gap": 0.4736092984676361,
+ "last_raw_score_gap": 5.012886461486232e-08,
+ "layer_index": 8,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "d51c67c99ce6588ab0c887ff3d607350ce5c3959938d444b43f9e642727cf509",
+ "raw_normalized_churn": 0.009523809523809525,
+ "raw_xor_churn_total": 32,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b9f65c2181d47875e6b31c6142692ab3fbfab9422ad4834d7270dce1e0bcf99a",
+ "committed_normalized_churn": 0.004429678848283499,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "b9f65c2181d47875e6b31c6142692ab3fbfab9422ad4834d7270dce1e0bcf99a",
+ "current_selected_count": 43,
+ "dwell_total": 899,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.116151496371458e-08,
+ "last_committed_normalized_gap": -0.37559768557548523,
+ "last_committed_score_gap": -3.6790581248169474e-08,
+ "last_cutoff_score_margin": 1.9247110571996018e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.795209621188405e-08,
+ "last_raw_normalized_gap": 0.019649513065814972,
+ "last_raw_score_gap": 1.9247110571996018e-09,
+ "layer_index": 9,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "23e45e3015d7881ee052a22925be1036207b93d69e1321e9b38e0f04b138888e",
+ "raw_normalized_churn": 0.026578073089700997,
+ "raw_xor_churn_total": 48,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 24,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e5801bc6f739c73ccd0b412ad18f74677b848638cd838c18860b41af0ae6b74c",
+ "committed_normalized_churn": 0.013605442176870748,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_mask_sha256": "e5801bc6f739c73ccd0b412ad18f74677b848638cd838c18860b41af0ae6b74c",
+ "current_selected_count": 84,
+ "dwell_total": 1740,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.705167336448994e-09,
+ "last_committed_normalized_gap": -0.5654757618904114,
+ "last_committed_score_gap": -1.262999038686985e-08,
+ "last_cutoff_score_margin": 9.823253321883385e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4762761679776304e-08,
+ "last_raw_normalized_gap": 0.06654075533151627,
+ "last_raw_score_gap": 9.823253321883385e-10,
+ "layer_index": 10,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "befa1ff6a8b3cbac43d393de8bc80d67bb672f6b2061642fbeed4dde757b6b65",
+ "raw_normalized_churn": 0.08843537414965986,
+ "raw_xor_churn_total": 312,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cc9936ab2626ce6914bcd82f827ec04f8a2956f491be51a89c8684e682d7d90a",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "cc9936ab2626ce6914bcd82f827ec04f8a2956f491be51a89c8684e682d7d90a",
+ "current_selected_count": 30,
+ "dwell_total": 625,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.15207000009832e-07,
+ "last_committed_normalized_gap": 0.15475499629974365,
+ "last_committed_score_gap": 9.520636012894101e-08,
+ "last_cutoff_score_margin": 9.520636012894101e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.15207000009832e-07,
+ "last_raw_normalized_gap": 0.15475499629974365,
+ "last_raw_score_gap": 9.520636012894101e-08,
+ "layer_index": 12,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "cc9936ab2626ce6914bcd82f827ec04f8a2956f491be51a89c8684e682d7d90a",
+ "raw_normalized_churn": 0.04285714285714286,
+ "raw_xor_churn_total": 54,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 20,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b31557971848a0412f0a5a7888eb5e496c045e12065dbd424fe541c2384a7e38",
+ "committed_normalized_churn": 0.015360983102918587,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_mask_sha256": "b31557971848a0412f0a5a7888eb5e496c045e12065dbd424fe541c2384a7e38",
+ "current_selected_count": 62,
+ "dwell_total": 1282,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.869801699200707e-09,
+ "last_committed_normalized_gap": -0.8131631016731262,
+ "last_committed_score_gap": -3.425143901836236e-08,
+ "last_cutoff_score_margin": 7.282849878720299e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1021204332782872e-08,
+ "last_raw_normalized_gap": 0.03464525565505028,
+ "last_raw_score_gap": 7.282849878720299e-10,
+ "layer_index": 13,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "622d3e34c0f09cbe26b1bf367031d2ceb47553ab68c0fd5561a566d7822dcac4",
+ "raw_normalized_churn": 0.0706605222734255,
+ "raw_xor_churn_total": 184,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b4cb20c0249ca7c87a6f25e6ad472f8e289a6ae103908a2b4d58c6b403ac7deb",
+ "committed_normalized_churn": 0.009700176366843033,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "b4cb20c0249ca7c87a6f25e6ad472f8e289a6ae103908a2b4d58c6b403ac7deb",
+ "current_selected_count": 54,
+ "dwell_total": 1123,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0541323308975734e-08,
+ "last_committed_normalized_gap": -0.6310195326805115,
+ "last_committed_score_gap": -3.5129168907133135e-08,
+ "last_cutoff_score_margin": 2.1252510862268537e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.76440754731766e-08,
+ "last_raw_normalized_gap": 0.07687907665967941,
+ "last_raw_score_gap": 2.1252510862268537e-09,
+ "layer_index": 14,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "bc5804d972977ebd134f48d627d055c43b3c1e5ed5cbeaeff80df6a6b73bd6d5",
+ "raw_normalized_churn": 0.0582010582010582,
+ "raw_xor_churn_total": 132,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "current_selected_count": 45,
+ "dwell_total": 945,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3235465960169677e-06,
+ "last_committed_normalized_gap": 0.5020927786827087,
+ "last_committed_score_gap": 1.1666360251183505e-06,
+ "last_cutoff_score_margin": 1.1666360251183505e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3235465960169677e-06,
+ "last_raw_normalized_gap": 0.5020927786827087,
+ "last_raw_score_gap": 1.1666360251183505e-06,
+ "layer_index": 16,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2e74e5fb69de6ebf2adf1a6a8a374025d1437d923a1b4d24c4dcd0e90299df55",
+ "committed_normalized_churn": 0.001763668430335097,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "2e74e5fb69de6ebf2adf1a6a8a374025d1437d923a1b4d24c4dcd0e90299df55",
+ "current_selected_count": 27,
+ "dwell_total": 566,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.654469426488504e-06,
+ "last_committed_normalized_gap": 0.5151748657226562,
+ "last_committed_score_gap": 1.3675158925252617e-06,
+ "last_cutoff_score_margin": 1.3675158925252617e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.654469426488504e-06,
+ "last_raw_normalized_gap": 0.5151748657226562,
+ "last_raw_score_gap": 1.3675158925252617e-06,
+ "layer_index": 17,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "2e74e5fb69de6ebf2adf1a6a8a374025d1437d923a1b4d24c4dcd0e90299df55",
+ "raw_normalized_churn": 0.003527336860670194,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.834786134073511e-05,
+ "last_committed_normalized_gap": 0.9060350656509399,
+ "last_committed_score_gap": 5.286520899971947e-05,
+ "last_cutoff_score_margin": 5.286520899971947e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.834786134073511e-05,
+ "last_raw_normalized_gap": 0.9060350656509399,
+ "last_raw_score_gap": 5.286520899971947e-05,
+ "layer_index": 18,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "current_selected_count": 9,
+ "dwell_total": 189,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.787912959931418e-05,
+ "last_committed_normalized_gap": 0.8971387147903442,
+ "last_committed_score_gap": 5.192560638533905e-05,
+ "last_cutoff_score_margin": 5.192560638533905e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.787912959931418e-05,
+ "last_raw_normalized_gap": 0.8971387147903442,
+ "last_raw_score_gap": 5.192560638533905e-05,
+ "layer_index": 20,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "raw_normalized_churn": 0.010582010582010581,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.7879419576493092e-05,
+ "last_committed_normalized_gap": 0.9584416747093201,
+ "last_committed_score_gap": 2.6720797904999927e-05,
+ "last_cutoff_score_margin": 2.6720797904999927e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7879419576493092e-05,
+ "last_raw_normalized_gap": 0.9584416747093201,
+ "last_raw_score_gap": 2.6720797904999927e-05,
+ "layer_index": 21,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ef0aadec36cafce3a3df8bf66471aef6aa6b2473f0b3e8a70dbf6bbd9baf7684",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "ef0aadec36cafce3a3df8bf66471aef6aa6b2473f0b3e8a70dbf6bbd9baf7684",
+ "current_selected_count": 55,
+ "dwell_total": 1155,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5250727730963263e-07,
+ "last_committed_normalized_gap": 0.2585107386112213,
+ "last_committed_score_gap": 6.527584162085986e-08,
+ "last_cutoff_score_margin": 6.527584162085986e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5250727730963263e-07,
+ "last_raw_normalized_gap": 0.2585107386112213,
+ "last_raw_score_gap": 6.527584162085986e-08,
+ "layer_index": 22,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "ef0aadec36cafce3a3df8bf66471aef6aa6b2473f0b3e8a70dbf6bbd9baf7684",
+ "raw_normalized_churn": 0.003463203463203463,
+ "raw_xor_churn_total": 8,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ }
+ ],
+ "task_id": 857
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 63,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9287bdd33d96c738621f2b4e7ea7bf6b349eddc036f21d3924d2745d45b442e3",
+ "committed_normalized_churn": 0.0026487281900357366,
+ "committed_xor_churn_total": 126,
+ "confirmation_two": true,
+ "current_mask_sha256": "9287bdd33d96c738621f2b4e7ea7bf6b349eddc036f21d3924d2745d45b442e3",
+ "current_selected_count": 355,
+ "dwell_total": 23722,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.951276221300873e-10,
+ "last_committed_normalized_gap": -0.9975318312644958,
+ "last_committed_score_gap": -2.8094359549868386e-07,
+ "last_cutoff_score_margin": 1.0290701624171561e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 353,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.826837121806875e-09,
+ "last_raw_normalized_gap": 0.010472038760781288,
+ "last_raw_score_gap": 1.0290701624171561e-10,
+ "layer_index": 0,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "e51093af8532ac6cca3ff2f96a85085d2bee87e770138ce308ec77922c02a027",
+ "raw_normalized_churn": 0.020306916123607317,
+ "raw_xor_churn_total": 966,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 419,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4d4795f0c8f88f7728d1894841eabc4ede6b49452fce8da78238bb42ca77ff8e",
+ "committed_normalized_churn": 0.01645718774548311,
+ "committed_xor_churn_total": 838,
+ "confirmation_two": true,
+ "current_mask_sha256": "4d4795f0c8f88f7728d1894841eabc4ede6b49452fce8da78238bb42ca77ff8e",
+ "current_selected_count": 380,
+ "dwell_total": 25041,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3413922750338259e-10,
+ "last_committed_normalized_gap": -0.9937372803688049,
+ "last_committed_score_gap": -2.1284558116008157e-08,
+ "last_cutoff_score_margin": 3.2480129696921267e-12,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 377,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.65929311693958e-10,
+ "last_raw_normalized_gap": 0.004877414088696241,
+ "last_raw_score_gap": 3.2480129696921267e-12,
+ "layer_index": 1,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "b9d864aff64214471a5c28272a63403d73ee082ad7f661be968297d80644ce90",
+ "raw_normalized_churn": 0.1289080911233307,
+ "raw_xor_churn_total": 6564,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 99,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f06418711b7a7d7a3d6ffb844340e97d5df5f9f2922dcdf7754655e2d4082313",
+ "committed_normalized_churn": 0.005492981190700771,
+ "committed_xor_churn_total": 198,
+ "confirmation_two": true,
+ "current_mask_sha256": "f06418711b7a7d7a3d6ffb844340e97d5df5f9f2922dcdf7754655e2d4082313",
+ "current_selected_count": 269,
+ "dwell_total": 17924,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8612043850563253e-10,
+ "last_committed_normalized_gap": -0.987464964389801,
+ "last_committed_score_gap": -1.4661919678360391e-08,
+ "last_cutoff_score_margin": 2.4687585309379756e-11,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 268,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.3985609881881373e-09,
+ "last_raw_normalized_gap": 0.007264128886163235,
+ "last_raw_score_gap": 2.4687585309379756e-11,
+ "layer_index": 2,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "3167cc0f552c10659eb3b1cbe3437d41db3947c346b75f9217d7a9bf062112cf",
+ "raw_normalized_churn": 0.05232203295788714,
+ "raw_xor_churn_total": 1886,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d3b6890ada3764c5025a174b5cb465d58c1a7529c1510f41f33752ec53d07c6a",
+ "committed_normalized_churn": 0.0009172017009922455,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "d3b6890ada3764c5025a174b5cb465d58c1a7529c1510f41f33752ec53d07c6a",
+ "current_selected_count": 179,
+ "dwell_total": 11982,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3488000522320363e-07,
+ "last_committed_normalized_gap": 0.4027631878852844,
+ "last_committed_score_gap": 9.460102035063755e-08,
+ "last_cutoff_score_margin": 9.460102035063755e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3488000522320363e-07,
+ "last_raw_normalized_gap": 0.4027631878852844,
+ "last_raw_score_gap": 9.460102035063755e-08,
+ "layer_index": 4,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "d3b6890ada3764c5025a174b5cb465d58c1a7529c1510f41f33752ec53d07c6a",
+ "raw_normalized_churn": 0.00925539898273993,
+ "raw_xor_churn_total": 222,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 18,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "84b0a2ddced22b1f4951a5c46c8d6f7be0379ced03c191b4f89e7d8dcd8cf683",
+ "committed_normalized_churn": 0.0014521984671238403,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_mask_sha256": "84b0a2ddced22b1f4951a5c46c8d6f7be0379ced03c191b4f89e7d8dcd8cf683",
+ "current_selected_count": 185,
+ "dwell_total": 12377,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0287250990236316e-08,
+ "last_committed_normalized_gap": -0.008006335236132145,
+ "last_committed_score_gap": -1.6373746802855749e-10,
+ "last_cutoff_score_margin": 1.1255174570123927e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0450988458264874e-08,
+ "last_raw_normalized_gap": 0.005503486841917038,
+ "last_raw_score_gap": 1.1255174570123927e-10,
+ "layer_index": 5,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "c8c0902df51e01e60a328f6669a7c1ec83cf226ca5241949e763aba3670f555c",
+ "raw_normalized_churn": 0.007745058491327148,
+ "raw_xor_churn_total": 192,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 56,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "84e65bb960ed0822928e35ff8306e16643d46c3be3c5472189be77076bdfb8ac",
+ "committed_normalized_churn": 0.007960199004975124,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": true,
+ "current_mask_sha256": "84e65bb960ed0822928e35ff8306e16643d46c3be3c5472189be77076bdfb8ac",
+ "current_selected_count": 105,
+ "dwell_total": 6979,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4069521487035672e-08,
+ "last_committed_normalized_gap": -0.15054874122142792,
+ "last_committed_score_gap": -4.265855224616644e-09,
+ "last_cutoff_score_margin": 5.156248761295501e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4585146363165222e-08,
+ "last_raw_normalized_gap": 0.020973024889826775,
+ "last_raw_score_gap": 5.156248761295501e-10,
+ "layer_index": 6,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "93c450b30824bad99bdd6b7ddfc132784d966a480d06601969f57d09c4b89405",
+ "raw_normalized_churn": 0.03994314143567875,
+ "raw_xor_churn_total": 562,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "72bae740cdf2870b63eb4a16c0d32876e1342b2ab894ff4457b5de00b72651b2",
+ "committed_normalized_churn": 0.0016791044776119403,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "72bae740cdf2870b63eb4a16c0d32876e1342b2ab894ff4457b5de00b72651b2",
+ "current_selected_count": 80,
+ "dwell_total": 5351,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5794567786997504e-07,
+ "last_committed_normalized_gap": -0.4060863256454468,
+ "last_committed_score_gap": -1.0799477934142487e-07,
+ "last_cutoff_score_margin": 6.811887942603789e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6475756581257883e-07,
+ "last_raw_normalized_gap": 0.04134491831064224,
+ "last_raw_score_gap": 6.811887942603789e-09,
+ "layer_index": 8,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "4ec9f8ab04772d4e45f346b0945fa32c5b2f9373575ba1d20892b05ef94867cb",
+ "raw_normalized_churn": 0.008395522388059701,
+ "raw_xor_churn_total": 90,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "881d03b8edcbdec2de927b8024236cd93181a33de9553a0ccd56434585daa237",
+ "committed_normalized_churn": 0.0020826102047900035,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "881d03b8edcbdec2de927b8024236cd93181a33de9553a0ccd56434585daa237",
+ "current_selected_count": 43,
+ "dwell_total": 2875,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.110330978501224e-08,
+ "last_committed_normalized_gap": 0.33585605025291443,
+ "last_committed_score_gap": 3.0597597344694805e-08,
+ "last_cutoff_score_margin": 3.0597597344694805e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.110330978501224e-08,
+ "last_raw_normalized_gap": 0.33585605025291443,
+ "last_raw_score_gap": 3.0597597344694805e-08,
+ "layer_index": 9,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "881d03b8edcbdec2de927b8024236cd93181a33de9553a0ccd56434585daa237",
+ "raw_normalized_churn": 0.016660881638320028,
+ "raw_xor_churn_total": 96,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 48,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "21ebb0eaf7a2e8a558022e5a3b8a007ad054cd8284e8980ad9da7b8f68470ea1",
+ "committed_normalized_churn": 0.008528784648187633,
+ "committed_xor_churn_total": 96,
+ "confirmation_two": true,
+ "current_mask_sha256": "21ebb0eaf7a2e8a558022e5a3b8a007ad054cd8284e8980ad9da7b8f68470ea1",
+ "current_selected_count": 84,
+ "dwell_total": 5580,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3423972156090258e-08,
+ "last_committed_normalized_gap": -0.640726625919342,
+ "last_committed_score_gap": -2.3940252447118837e-08,
+ "last_cutoff_score_margin": 2.3700144069493945e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6724607476703568e-08,
+ "last_raw_normalized_gap": 0.14170822501182556,
+ "last_raw_score_gap": 2.3700144069493945e-09,
+ "layer_index": 10,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "216e3f9b604a80b03c93cb335979af5b73f71a3d3c7904d52dd926995e66964f",
+ "raw_normalized_churn": 0.05863539445628998,
+ "raw_xor_churn_total": 660,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "97008020d6ffba9c951be9241a18e133f76308e71d98d99af4f18fb8d3f96def",
+ "committed_normalized_churn": 0.005472636815920398,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "97008020d6ffba9c951be9241a18e133f76308e71d98d99af4f18fb8d3f96def",
+ "current_selected_count": 30,
+ "dwell_total": 1999,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.819610914339137e-07,
+ "last_committed_normalized_gap": 0.614456057548523,
+ "last_committed_score_gap": 4.804807076652651e-07,
+ "last_cutoff_score_margin": 4.804807076652651e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.819610914339137e-07,
+ "last_raw_normalized_gap": 0.614456057548523,
+ "last_raw_score_gap": 4.804807076652651e-07,
+ "layer_index": 12,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "97008020d6ffba9c951be9241a18e133f76308e71d98d99af4f18fb8d3f96def",
+ "raw_normalized_churn": 0.030845771144278607,
+ "raw_xor_churn_total": 124,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 46,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "79883b3da757c075afa75866e9f7bddb40ba8061a8756d2d620d5a00a338a03f",
+ "committed_normalized_churn": 0.011073663938372653,
+ "committed_xor_churn_total": 92,
+ "confirmation_two": true,
+ "current_mask_sha256": "79883b3da757c075afa75866e9f7bddb40ba8061a8756d2d620d5a00a338a03f",
+ "current_selected_count": 62,
+ "dwell_total": 4108,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4383227053826886e-08,
+ "last_committed_normalized_gap": 0.20483900606632233,
+ "last_committed_score_gap": 2.946245913904022e-09,
+ "last_cutoff_score_margin": 2.946245913904022e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4383227053826886e-08,
+ "last_raw_normalized_gap": 0.20483900606632233,
+ "last_raw_score_gap": 2.946245913904022e-09,
+ "layer_index": 13,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "79883b3da757c075afa75866e9f7bddb40ba8061a8756d2d620d5a00a338a03f",
+ "raw_normalized_churn": 0.065479056331247,
+ "raw_xor_churn_total": 544,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 18,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "881ed300b5274261500f97f02fa955999c311f088087ef5107ba0305591d644c",
+ "committed_normalized_churn": 0.004975124378109453,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_mask_sha256": "881ed300b5274261500f97f02fa955999c311f088087ef5107ba0305591d644c",
+ "current_selected_count": 54,
+ "dwell_total": 3600,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4464533510126785e-08,
+ "last_committed_normalized_gap": -0.08839787542819977,
+ "last_committed_score_gap": -2.3723210063053557e-09,
+ "last_cutoff_score_margin": 2.3723210063053557e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.683685451643214e-08,
+ "last_raw_normalized_gap": 0.08839787542819977,
+ "last_raw_score_gap": 2.3723210063053557e-09,
+ "layer_index": 14,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "85d583ae06afc9a9e58791561822b06824e4bfdc97c480669124628d444ff633",
+ "raw_normalized_churn": 0.0406301824212272,
+ "raw_xor_churn_total": 294,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "848d0673fd56a86524b5180a45df7acd8af0c1e19f6df2d123b0dc542c77b136",
+ "committed_normalized_churn": 0.0009950248756218905,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "848d0673fd56a86524b5180a45df7acd8af0c1e19f6df2d123b0dc542c77b136",
+ "current_selected_count": 45,
+ "dwell_total": 3012,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.112311439210316e-07,
+ "last_committed_normalized_gap": 0.504382848739624,
+ "last_committed_score_gap": 3.0829448860458797e-07,
+ "last_cutoff_score_margin": 3.0829448860458797e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.112311439210316e-07,
+ "last_raw_normalized_gap": 0.504382848739624,
+ "last_raw_score_gap": 3.0829448860458797e-07,
+ "layer_index": 16,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "848d0673fd56a86524b5180a45df7acd8af0c1e19f6df2d123b0dc542c77b136",
+ "raw_normalized_churn": 0.004975124378109453,
+ "raw_xor_churn_total": 30,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "112de2dde592cfc9f117a4c81eb2ef1d3511f577c28311323589cbd2b50983be",
+ "committed_normalized_churn": 0.001658374792703151,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "112de2dde592cfc9f117a4c81eb2ef1d3511f577c28311323589cbd2b50983be",
+ "current_selected_count": 27,
+ "dwell_total": 1806,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6356482319679344e-06,
+ "last_committed_normalized_gap": 0.7139694094657898,
+ "last_committed_score_gap": 1.1678027931338875e-06,
+ "last_cutoff_score_margin": 1.1678027931338875e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6356482319679344e-06,
+ "last_raw_normalized_gap": 0.7139694094657898,
+ "last_raw_score_gap": 1.1678027931338875e-06,
+ "layer_index": 17,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "112de2dde592cfc9f117a4c81eb2ef1d3511f577c28311323589cbd2b50983be",
+ "raw_normalized_churn": 0.004975124378109453,
+ "raw_xor_churn_total": 18,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "current_selected_count": 7,
+ "dwell_total": 469,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.239256617845967e-05,
+ "last_committed_normalized_gap": 0.8238052129745483,
+ "last_committed_score_gap": 5.1399321819189936e-05,
+ "last_cutoff_score_margin": 5.1399321819189936e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.239256617845967e-05,
+ "last_raw_normalized_gap": 0.8238052129745483,
+ "last_raw_score_gap": 5.1399321819189936e-05,
+ "layer_index": 18,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "committed_normalized_churn": 0.001658374792703151,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "current_selected_count": 9,
+ "dwell_total": 602,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5778723536641337e-05,
+ "last_committed_normalized_gap": 0.8158631920814514,
+ "last_committed_score_gap": 1.2873279956693295e-05,
+ "last_cutoff_score_margin": 1.2873279956693295e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5778723536641337e-05,
+ "last_raw_normalized_gap": 0.8158631920814514,
+ "last_raw_score_gap": 1.2873279956693295e-05,
+ "layer_index": 20,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "raw_normalized_churn": 0.014925373134328358,
+ "raw_xor_churn_total": 18,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "current_selected_count": 7,
+ "dwell_total": 469,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.43609723233385e-06,
+ "last_committed_normalized_gap": 0.917253315448761,
+ "last_committed_score_gap": 7.738038220850285e-06,
+ "last_cutoff_score_margin": 7.738038220850285e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.43609723233385e-06,
+ "last_raw_normalized_gap": 0.917253315448761,
+ "last_raw_score_gap": 7.738038220850285e-06,
+ "layer_index": 21,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ff2b6ab440c41ce3aa6bbacc10a579fb5c032a6e65b508fa5908bcf5bddf966b",
+ "committed_normalized_churn": 0.0008141112618724559,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "ff2b6ab440c41ce3aa6bbacc10a579fb5c032a6e65b508fa5908bcf5bddf966b",
+ "current_selected_count": 55,
+ "dwell_total": 3682,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.141056990647485e-07,
+ "last_committed_normalized_gap": 0.5593439936637878,
+ "last_committed_score_gap": 2.316275384828259e-07,
+ "last_cutoff_score_margin": 2.316275384828259e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.141056990647485e-07,
+ "last_raw_normalized_gap": 0.5593439936637878,
+ "last_raw_score_gap": 2.316275384828259e-07,
+ "layer_index": 22,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "ff2b6ab440c41ce3aa6bbacc10a579fb5c032a6e65b508fa5908bcf5bddf966b",
+ "raw_normalized_churn": 0.0035278154681139757,
+ "raw_xor_churn_total": 26,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ }
+ ],
+ "task_id": 884
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 24,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ea61981be3d4b30ef3e4f5173e5ffff853ff6184c9e1b7ba789055f663fe6977",
+ "committed_normalized_churn": 0.002414486921529175,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_mask_sha256": "ea61981be3d4b30ef3e4f5173e5ffff853ff6184c9e1b7ba789055f663fe6977",
+ "current_selected_count": 355,
+ "dwell_total": 9916,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.782077984126886e-10,
+ "last_committed_normalized_gap": -0.9899848699569702,
+ "last_committed_score_gap": -3.7385312623428035e-08,
+ "last_cutoff_score_margin": 1.9178578725131956e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 355,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.806841254392566e-08,
+ "last_raw_normalized_gap": 0.10614423453807831,
+ "last_raw_score_gap": 1.9178578725131956e-09,
+ "layer_index": 0,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "2a0bc93c0a213fad4c5dac98e3d5a7e0f505a9dcbac56894cb8152f3e435d23c",
+ "raw_normalized_churn": 0.018309859154929577,
+ "raw_xor_churn_total": 364,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 152,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "63f4951223781873e86b6378c50ce1984325d7b26ff93bc9c958261c46731a73",
+ "committed_normalized_churn": 0.014285714285714285,
+ "committed_xor_churn_total": 304,
+ "confirmation_two": true,
+ "current_mask_sha256": "63f4951223781873e86b6378c50ce1984325d7b26ff93bc9c958261c46731a73",
+ "current_selected_count": 380,
+ "dwell_total": 10488,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.591034216827055e-11,
+ "last_committed_normalized_gap": -0.9944819211959839,
+ "last_committed_score_gap": -1.7285344711126527e-08,
+ "last_cutoff_score_margin": 4.32542890393961e-12,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 380,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.227211304273169e-09,
+ "last_raw_normalized_gap": 0.0019420828903093934,
+ "last_raw_score_gap": 4.32542890393961e-12,
+ "layer_index": 1,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "683ae2e21b3f574a81622c2edac7f21a8104730c992b67f5499ed69e19c7446f",
+ "raw_normalized_churn": 0.10610902255639097,
+ "raw_xor_churn_total": 2258,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 63,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "543052a1a74d737f8c28f9086bbb6536bd25cfb5b2b96821640356bf7b699c0d",
+ "committed_normalized_churn": 0.008364312267657992,
+ "committed_xor_churn_total": 126,
+ "confirmation_two": true,
+ "current_mask_sha256": "543052a1a74d737f8c28f9086bbb6536bd25cfb5b2b96821640356bf7b699c0d",
+ "current_selected_count": 269,
+ "dwell_total": 7469,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.7787470930084055e-09,
+ "last_committed_normalized_gap": -0.7877312302589417,
+ "last_committed_score_gap": -1.4022961458692862e-08,
+ "last_cutoff_score_margin": 1.574163022155517e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 269,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.013366053522986e-09,
+ "last_raw_normalized_gap": 0.017464762553572655,
+ "last_raw_score_gap": 1.574163022155517e-10,
+ "layer_index": 2,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "f9c2371d43eafddf79c9665b9d2b1037e5121fc569d674d8bb770d3e4e2abf00",
+ "raw_normalized_churn": 0.05934678704195433,
+ "raw_xor_churn_total": 894,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "243d4a3daeccb38bf75c1f91f098fe08fe7e9d861e443c4995c1054a8cdfca79",
+ "committed_normalized_churn": 0.0009976057462090981,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "243d4a3daeccb38bf75c1f91f098fe08fe7e9d861e443c4995c1054a8cdfca79",
+ "current_selected_count": 179,
+ "dwell_total": 5007,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7774794969227514e-07,
+ "last_committed_normalized_gap": 0.1059669479727745,
+ "last_committed_score_gap": 1.88354079000419e-08,
+ "last_cutoff_score_margin": 1.88354079000419e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7774794969227514e-07,
+ "last_raw_normalized_gap": 0.1059669479727745,
+ "last_raw_score_gap": 1.88354079000419e-08,
+ "layer_index": 4,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "243d4a3daeccb38bf75c1f91f098fe08fe7e9d861e443c4995c1054a8cdfca79",
+ "raw_normalized_churn": 0.006983240223463687,
+ "raw_xor_churn_total": 70,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "962dbe3362da998ee72a9ac9e549de01de84f0f61dd1c6f8e29b67776ce5eb78",
+ "committed_normalized_churn": 0.0017374517374517374,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "962dbe3362da998ee72a9ac9e549de01de84f0f61dd1c6f8e29b67776ce5eb78",
+ "current_selected_count": 185,
+ "dwell_total": 5171,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.562714898767808e-08,
+ "last_committed_normalized_gap": -0.29702821373939514,
+ "last_committed_score_gap": -3.195490450025318e-08,
+ "last_cutoff_score_margin": 2.0550984913825232e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.94377273855207e-08,
+ "last_raw_normalized_gap": 0.20667190849781036,
+ "last_raw_score_gap": 2.0550984913825232e-08,
+ "layer_index": 5,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "bc6cfa86bf481c528665909296cd9849f539a767600c0cfe5473fea13fe7a196",
+ "raw_normalized_churn": 0.00945945945945946,
+ "raw_xor_churn_total": 98,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 26,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "149c7b3f05d15f36e2b208aaaf12f10073d38fce4fc246c7294cde8c40615590",
+ "committed_normalized_churn": 0.008843537414965987,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_mask_sha256": "149c7b3f05d15f36e2b208aaaf12f10073d38fce4fc246c7294cde8c40615590",
+ "current_selected_count": 105,
+ "dwell_total": 2914,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4490187655601403e-08,
+ "last_committed_normalized_gap": -0.49587592482566833,
+ "last_committed_score_gap": -2.408949484333789e-08,
+ "last_cutoff_score_margin": 4.9501984733524296e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.367099393220997e-08,
+ "last_raw_normalized_gap": 0.11335209012031555,
+ "last_raw_score_gap": 4.9501984733524296e-09,
+ "layer_index": 6,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "8a894ea8bb99387e2ca855b082273998d1cfe289220ad9ca079e4e81f442330e",
+ "raw_normalized_churn": 0.05714285714285714,
+ "raw_xor_churn_total": 336,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "812dd3b1bc42f7d9c280ecd19c83edcc340fb379780db94a5cc33da31ad84f0a",
+ "committed_normalized_churn": 0.0008928571428571428,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "812dd3b1bc42f7d9c280ecd19c83edcc340fb379780db94a5cc33da31ad84f0a",
+ "current_selected_count": 80,
+ "dwell_total": 2238,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.296697728837898e-08,
+ "last_committed_normalized_gap": 0.11275680363178253,
+ "last_committed_score_gap": 9.35509092414577e-09,
+ "last_cutoff_score_margin": 9.35509092414577e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.296697728837898e-08,
+ "last_raw_normalized_gap": 0.11275680363178253,
+ "last_raw_score_gap": 9.35509092414577e-09,
+ "layer_index": 8,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "812dd3b1bc42f7d9c280ecd19c83edcc340fb379780db94a5cc33da31ad84f0a",
+ "raw_normalized_churn": 0.011160714285714286,
+ "raw_xor_churn_total": 50,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8ba7ab6136a5fbc6da3f5b079e022a84fa1c1a39056a532345ae8433d34d24e5",
+ "committed_normalized_churn": 0.004152823920265781,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "8ba7ab6136a5fbc6da3f5b079e022a84fa1c1a39056a532345ae8433d34d24e5",
+ "current_selected_count": 43,
+ "dwell_total": 1199,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.612585679022231e-08,
+ "last_committed_normalized_gap": 0.5715174674987793,
+ "last_committed_score_gap": 3.779208412879598e-08,
+ "last_cutoff_score_margin": 3.779208412879598e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.612585679022231e-08,
+ "last_raw_normalized_gap": 0.5715174674987793,
+ "last_raw_score_gap": 3.779208412879598e-08,
+ "layer_index": 9,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "8ba7ab6136a5fbc6da3f5b079e022a84fa1c1a39056a532345ae8433d34d24e5",
+ "raw_normalized_churn": 0.020764119601328904,
+ "raw_xor_churn_total": 50,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a14f50937d0c26fd8ec7b01c4a9553731fcca7da8413dca565af8f6762557488",
+ "committed_normalized_churn": 0.013180272108843538,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "a14f50937d0c26fd8ec7b01c4a9553731fcca7da8413dca565af8f6762557488",
+ "current_selected_count": 84,
+ "dwell_total": 2321,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.107114091160383e-09,
+ "last_committed_normalized_gap": -0.8112906217575073,
+ "last_committed_score_gap": -3.485373056832941e-08,
+ "last_cutoff_score_margin": 1.8971491044794675e-11,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5802150699073536e-08,
+ "last_raw_normalized_gap": 0.0012005638564005494,
+ "last_raw_score_gap": 1.8971491044794675e-11,
+ "layer_index": 10,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "13bcaae7dcc19314715731bc12067963e82f07990013d3cd5bfb60d7d5cdc181",
+ "raw_normalized_churn": 0.0820578231292517,
+ "raw_xor_churn_total": 386,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "29440d8e4a33b9d2697a28a1dec79697a3c6787ffebecf14d9d4d493804d41de",
+ "committed_normalized_churn": 0.002380952380952381,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "29440d8e4a33b9d2697a28a1dec79697a3c6787ffebecf14d9d4d493804d41de",
+ "current_selected_count": 30,
+ "dwell_total": 838,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.8546232872249675e-07,
+ "last_committed_normalized_gap": -0.6743587255477905,
+ "last_committed_score_gap": -7.982400234141096e-07,
+ "last_cutoff_score_margin": 1.808554657145578e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.021288297437422e-07,
+ "last_raw_normalized_gap": 0.25758159160614014,
+ "last_raw_score_gap": 1.808554657145578e-07,
+ "layer_index": 12,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "1701a2b11bb4626a79076f4799fc3cef0044498b7912116d457b35ce156e3768",
+ "raw_normalized_churn": 0.0380952380952381,
+ "raw_xor_churn_total": 64,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 22,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bea916a100ae8a94cdf076ef4dc231d5f33aa01a57390350189a490053c906bf",
+ "committed_normalized_churn": 0.012672811059907835,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_mask_sha256": "bea916a100ae8a94cdf076ef4dc231d5f33aa01a57390350189a490053c906bf",
+ "current_selected_count": 62,
+ "dwell_total": 1714,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.9173834076013918e-08,
+ "last_committed_normalized_gap": -0.3278263807296753,
+ "last_committed_score_gap": -9.351287744152614e-09,
+ "last_cutoff_score_margin": 5.363567368021904e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.297525192318517e-08,
+ "last_raw_normalized_gap": 0.02334497682750225,
+ "last_raw_score_gap": 5.363567368021904e-10,
+ "layer_index": 13,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "23942a17c2a4306d3fd092e01a142b9b584bf464d2ca8b1e1322e2304c539197",
+ "raw_normalized_churn": 0.07258064516129033,
+ "raw_xor_churn_total": 252,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d1eb3b9d0406924375c3b9dc4af150272b7f3aea0fd7e5bbdfc445999dd32e83",
+ "committed_normalized_churn": 0.005291005291005291,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "d1eb3b9d0406924375c3b9dc4af150272b7f3aea0fd7e5bbdfc445999dd32e83",
+ "current_selected_count": 54,
+ "dwell_total": 1504,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.9231956350249675e-08,
+ "last_committed_normalized_gap": 0.10892350226640701,
+ "last_committed_score_gap": 4.273282172562176e-09,
+ "last_cutoff_score_margin": 4.273282172562176e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.9231956350249675e-08,
+ "last_raw_normalized_gap": 0.10892350226640701,
+ "last_raw_score_gap": 4.273282172562176e-09,
+ "layer_index": 14,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d1eb3b9d0406924375c3b9dc4af150272b7f3aea0fd7e5bbdfc445999dd32e83",
+ "raw_normalized_churn": 0.062169312169312166,
+ "raw_xor_churn_total": 188,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "289485ac341764aa15544ab31d009f3609e2acb14192c86ce823985cf4a78437",
+ "committed_normalized_churn": 0.0007936507936507937,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "289485ac341764aa15544ab31d009f3609e2acb14192c86ce823985cf4a78437",
+ "current_selected_count": 45,
+ "dwell_total": 1259,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0845250219281297e-06,
+ "last_committed_normalized_gap": 0.7762221097946167,
+ "last_committed_score_gap": 1.6180543980226503e-06,
+ "last_cutoff_score_margin": 1.6180543980226503e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0845250219281297e-06,
+ "last_raw_normalized_gap": 0.7762221097946167,
+ "last_raw_score_gap": 1.6180543980226503e-06,
+ "layer_index": 16,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "289485ac341764aa15544ab31d009f3609e2acb14192c86ce823985cf4a78437",
+ "raw_normalized_churn": 0.00873015873015873,
+ "raw_xor_churn_total": 22,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "committed_normalized_churn": 0.0013227513227513227,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "current_selected_count": 27,
+ "dwell_total": 755,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.98632585327141e-06,
+ "last_committed_normalized_gap": 0.8695526719093323,
+ "last_committed_score_gap": 2.5967676720028976e-06,
+ "last_cutoff_score_margin": 2.5967676720028976e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.98632585327141e-06,
+ "last_raw_normalized_gap": 0.8695526719093323,
+ "last_raw_score_gap": 2.5967676720028976e-06,
+ "layer_index": 17,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "raw_normalized_churn": 0.0013227513227513227,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5529145204927772e-05,
+ "last_committed_normalized_gap": 0.7348328828811646,
+ "last_committed_score_gap": 1.8759656086331233e-05,
+ "last_cutoff_score_margin": 1.8759656086331233e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5529145204927772e-05,
+ "last_raw_normalized_gap": 0.7348328828811646,
+ "last_raw_score_gap": 1.8759656086331233e-05,
+ "layer_index": 18,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "current_selected_count": 9,
+ "dwell_total": 252,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.93996854958823e-06,
+ "last_committed_normalized_gap": 0.7609079480171204,
+ "last_committed_score_gap": 7.5634011409420054e-06,
+ "last_cutoff_score_margin": 7.5634011409420054e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.93996854958823e-06,
+ "last_raw_normalized_gap": 0.7609079480171204,
+ "last_raw_score_gap": 7.5634011409420054e-06,
+ "layer_index": 20,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0381436368334107e-05,
+ "last_committed_normalized_gap": 0.7520419359207153,
+ "last_committed_score_gap": 7.807275324012153e-06,
+ "last_cutoff_score_margin": 7.807275324012153e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0381436368334107e-05,
+ "last_raw_normalized_gap": 0.7520419359207153,
+ "last_raw_score_gap": 7.807275324012153e-06,
+ "layer_index": 21,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "02b468383d901239efd9186ce76abce1d374f1113d9c952cd46610a625f4edbc",
+ "committed_normalized_churn": 0.0006493506493506494,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "02b468383d901239efd9186ce76abce1d374f1113d9c952cd46610a625f4edbc",
+ "current_selected_count": 55,
+ "dwell_total": 1539,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.169327662064461e-07,
+ "last_committed_normalized_gap": 0.4962574541568756,
+ "last_committed_score_gap": 3.061574886942253e-07,
+ "last_cutoff_score_margin": 3.061574886942253e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.169327662064461e-07,
+ "last_raw_normalized_gap": 0.4962574541568756,
+ "last_raw_score_gap": 3.061574886942253e-07,
+ "layer_index": 22,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "02b468383d901239efd9186ce76abce1d374f1113d9c952cd46610a625f4edbc",
+ "raw_normalized_churn": 0.005194805194805195,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ }
+ ],
+ "task_id": 878
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 148,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "440331e682b0881029b949438a0e9c1bcf45d478ca0f5b10769d0f371fa4b011",
+ "committed_normalized_churn": 0.003182453499623696,
+ "committed_xor_churn_total": 296,
+ "confirmation_two": true,
+ "current_mask_sha256": "440331e682b0881029b949438a0e9c1bcf45d478ca0f5b10769d0f371fa4b011",
+ "current_selected_count": 355,
+ "dwell_total": 46357,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2779318431531692e-09,
+ "last_committed_normalized_gap": -0.9986295104026794,
+ "last_committed_score_gap": -1.6598364709352609e-06,
+ "last_cutoff_score_margin": 3.189812858295227e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2547065608714547e-08,
+ "last_raw_normalized_gap": 0.025422779843211174,
+ "last_raw_score_gap": 3.189812858295227e-10,
+ "layer_index": 0,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "560931505f973b77b130596b22b4e6809104c4504d1a7baf325238732cde7a87",
+ "raw_normalized_churn": 0.030813890979464572,
+ "raw_xor_churn_total": 2866,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 795,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "165d7585e6449405434460663eb86b0042e43e23922c959bc20e29788a69af63",
+ "committed_normalized_churn": 0.01597026918441141,
+ "committed_xor_churn_total": 1590,
+ "confirmation_two": true,
+ "current_mask_sha256": "165d7585e6449405434460663eb86b0042e43e23922c959bc20e29788a69af63",
+ "current_selected_count": 380,
+ "dwell_total": 48985,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.601855437853409e-11,
+ "last_committed_normalized_gap": -0.9939656853675842,
+ "last_committed_score_gap": -9.227308694903513e-09,
+ "last_cutoff_score_margin": 5.112177348109981e-11,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 379,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.759404147516079e-10,
+ "last_raw_normalized_gap": 0.07563059031963348,
+ "last_raw_score_gap": 5.112177348109981e-11,
+ "layer_index": 1,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "06c3b3ed15c23c69050e0d0c937b81c0fe75aff6d250cfa350e616fc8946441a",
+ "raw_normalized_churn": 0.15052229811169143,
+ "raw_xor_churn_total": 14986,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 299,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6595b8c268391d5204107174635b78d148cbfd65dc68b8a442204eb4ee98acfe",
+ "committed_normalized_churn": 0.00848491727915094,
+ "committed_xor_churn_total": 598,
+ "confirmation_two": true,
+ "current_mask_sha256": "6595b8c268391d5204107174635b78d148cbfd65dc68b8a442204eb4ee98acfe",
+ "current_selected_count": 269,
+ "dwell_total": 34940,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0989914533965361e-10,
+ "last_committed_normalized_gap": -0.9948010444641113,
+ "last_committed_score_gap": -2.102885687804701e-08,
+ "last_cutoff_score_margin": 3.815125992900903e-11,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 269,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.027246009423834e-09,
+ "last_raw_normalized_gap": 0.012602629140019417,
+ "last_raw_score_gap": 3.815125992900903e-11,
+ "layer_index": 2,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "d963c33603a073fe966ae885b17b22a7fbf78d4e8ba1adad68251f35c79a17f5",
+ "raw_normalized_churn": 0.07537103777065184,
+ "raw_xor_churn_total": 5312,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "43deb0eb554639e0617859c85871e848863d0126b14e47a970ca4a5e5990d991",
+ "committed_normalized_churn": 0.0013220179965030491,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "43deb0eb554639e0617859c85871e848863d0126b14e47a970ca4a5e5990d991",
+ "current_selected_count": 179,
+ "dwell_total": 23418,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1869142585728696e-07,
+ "last_committed_normalized_gap": 0.4978652000427246,
+ "last_committed_score_gap": 1.088788508241123e-07,
+ "last_cutoff_score_margin": 1.088788508241123e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1869142585728696e-07,
+ "last_raw_normalized_gap": 0.4978652000427246,
+ "last_raw_score_gap": 1.088788508241123e-07,
+ "layer_index": 4,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "43deb0eb554639e0617859c85871e848863d0126b14e47a970ca4a5e5990d991",
+ "raw_normalized_churn": 0.01411574054330675,
+ "raw_xor_churn_total": 662,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 33,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "923c0702103efd6b6a75f2e5aaacb697cfbe6226c1276ea31798c7d592281578",
+ "committed_normalized_churn": 0.0013616670105219724,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_mask_sha256": "923c0702103efd6b6a75f2e5aaacb697cfbe6226c1276ea31798c7d592281578",
+ "current_selected_count": 185,
+ "dwell_total": 24202,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.97430852672187e-08,
+ "last_committed_normalized_gap": 0.2650887370109558,
+ "last_committed_score_gap": 1.0535444516790449e-08,
+ "last_cutoff_score_margin": 1.0535444516790449e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.97430852672187e-08,
+ "last_raw_normalized_gap": 0.2650887370109558,
+ "last_raw_score_gap": 1.0535444516790449e-08,
+ "layer_index": 5,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "923c0702103efd6b6a75f2e5aaacb697cfbe6226c1276ea31798c7d592281578",
+ "raw_normalized_churn": 0.012585104188157623,
+ "raw_xor_churn_total": 610,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 142,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9d554b44b15dba4ba3a75e96b752798b16091c1efbef75d15056a21b8c1f7c5d",
+ "committed_normalized_churn": 0.010323518720465285,
+ "committed_xor_churn_total": 284,
+ "confirmation_two": true,
+ "current_mask_sha256": "9d554b44b15dba4ba3a75e96b752798b16091c1efbef75d15056a21b8c1f7c5d",
+ "current_selected_count": 105,
+ "dwell_total": 13613,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1440732805567677e-08,
+ "last_committed_normalized_gap": -0.2050294131040573,
+ "last_committed_score_gap": -2.9506583842930922e-09,
+ "last_cutoff_score_margin": 4.261551111994777e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2098412938144065e-08,
+ "last_raw_normalized_gap": 0.03522405028343201,
+ "last_raw_score_gap": 4.261551111994777e-10,
+ "layer_index": 6,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "aa54f91bb01566b72d1dada68c56150823ace39f65b33650bce0caf2e2af7347",
+ "raw_normalized_churn": 0.06317702653580516,
+ "raw_xor_churn_total": 1738,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 20,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "eaf8e946ef242ef060a3e8e14bd319bdc9382e40d35ee431fffd15c52958375b",
+ "committed_normalized_churn": 0.0019083969465648854,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_mask_sha256": "eaf8e946ef242ef060a3e8e14bd319bdc9382e40d35ee431fffd15c52958375b",
+ "current_selected_count": 80,
+ "dwell_total": 10460,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3753850680586766e-07,
+ "last_committed_normalized_gap": 0.458806574344635,
+ "last_committed_score_gap": 6.310357036909409e-08,
+ "last_cutoff_score_margin": 6.310357036909409e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3753850680586766e-07,
+ "last_raw_normalized_gap": 0.458806574344635,
+ "last_raw_score_gap": 6.310357036909409e-08,
+ "layer_index": 8,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "eaf8e946ef242ef060a3e8e14bd319bdc9382e40d35ee431fffd15c52958375b",
+ "raw_normalized_churn": 0.014026717557251909,
+ "raw_xor_churn_total": 294,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 22,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ae8771f94b3a93f58998435d53d2697745f90ee0b49efae49ed59e747bc08c5d",
+ "committed_normalized_churn": 0.0039055565418072077,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_mask_sha256": "ae8771f94b3a93f58998435d53d2697745f90ee0b49efae49ed59e747bc08c5d",
+ "current_selected_count": 43,
+ "dwell_total": 5611,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.3242450570014626e-08,
+ "last_committed_normalized_gap": 0.44051432609558105,
+ "last_committed_score_gap": 1.4643775969602757e-08,
+ "last_cutoff_score_margin": 1.4643775969602757e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.3242450570014626e-08,
+ "last_raw_normalized_gap": 0.44051432609558105,
+ "last_raw_score_gap": 1.4643775969602757e-08,
+ "layer_index": 9,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "ae8771f94b3a93f58998435d53d2697745f90ee0b49efae49ed59e747bc08c5d",
+ "raw_normalized_churn": 0.028226522279424817,
+ "raw_xor_churn_total": 318,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 75,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ffe3c7ba4f5d838ded6dc80e6e66c88cca3c10a000a62644cd723ce2cce10141",
+ "committed_normalized_churn": 0.006815703380588877,
+ "committed_xor_churn_total": 150,
+ "confirmation_two": true,
+ "current_mask_sha256": "ffe3c7ba4f5d838ded6dc80e6e66c88cca3c10a000a62644cd723ce2cce10141",
+ "current_selected_count": 84,
+ "dwell_total": 10929,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.867382383925815e-09,
+ "last_committed_normalized_gap": -0.19518505036830902,
+ "last_committed_score_gap": -2.150532196765198e-09,
+ "last_cutoff_score_margin": 1.2185008557707988e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.16150444396635e-09,
+ "last_raw_normalized_gap": 0.013300227001309395,
+ "last_raw_score_gap": 1.2185008557707988e-10,
+ "layer_index": 10,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "11dbdba9bcc9559396fb096e9fcac4986f7fa5f816b35b376d7fbd2c569fb050",
+ "raw_normalized_churn": 0.06397673573246092,
+ "raw_xor_churn_total": 1408,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 14,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2618ea7ed462ee057cef2705f21376ba659a37c5fa309ac00942238786b1095d",
+ "committed_normalized_churn": 0.0035623409669211198,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_mask_sha256": "2618ea7ed462ee057cef2705f21376ba659a37c5fa309ac00942238786b1095d",
+ "current_selected_count": 30,
+ "dwell_total": 3916,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.38725520427397e-07,
+ "last_committed_normalized_gap": -0.08279305696487427,
+ "last_committed_score_gap": -8.473546131426701e-08,
+ "last_cutoff_score_margin": 8.473546131426701e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.023460981741664e-06,
+ "last_raw_normalized_gap": 0.08279305696487427,
+ "last_raw_score_gap": 8.473546131426701e-08,
+ "layer_index": 12,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "e38545b688f62e0380dec46d47521d46093fd3af78b36b7144815cc22561bf05",
+ "raw_normalized_churn": 0.031806615776081425,
+ "raw_xor_churn_total": 250,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 87,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "50f71b372ca82c665cd352e898d40d3793e44233d14f3cdd49b6ba20e1f9e594",
+ "committed_normalized_churn": 0.010711647377493229,
+ "committed_xor_churn_total": 174,
+ "confirmation_two": true,
+ "current_mask_sha256": "50f71b372ca82c665cd352e898d40d3793e44233d14f3cdd49b6ba20e1f9e594",
+ "current_selected_count": 62,
+ "dwell_total": 8035,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.803971372282831e-08,
+ "last_committed_normalized_gap": -0.05010532587766647,
+ "last_committed_score_gap": -9.515641608004444e-10,
+ "last_cutoff_score_margin": 9.515641608004444e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8991277883628754e-08,
+ "last_raw_normalized_gap": 0.05010532587766647,
+ "last_raw_score_gap": 9.515641608004444e-10,
+ "layer_index": 13,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b6c56ad5635202862cf0ed181c6866c349926860c92667cfa79a7281977d0b0d",
+ "raw_normalized_churn": 0.07867520315193302,
+ "raw_xor_churn_total": 1278,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 28,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fe1d9d4c0b26fbc5ac6c1c576e82ea3d776bbe6c873da281538076337642fdf3",
+ "committed_normalized_churn": 0.003958156629912355,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": true,
+ "current_mask_sha256": "fe1d9d4c0b26fbc5ac6c1c576e82ea3d776bbe6c873da281538076337642fdf3",
+ "current_selected_count": 54,
+ "dwell_total": 7046,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.9674121887192086e-08,
+ "last_committed_normalized_gap": 0.019366629421710968,
+ "last_committed_score_gap": 3.810214366239961e-10,
+ "last_cutoff_score_margin": 3.810214366239961e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9674121887192086e-08,
+ "last_raw_normalized_gap": 0.019366629421710968,
+ "last_raw_score_gap": 3.810214366239961e-10,
+ "layer_index": 14,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "fe1d9d4c0b26fbc5ac6c1c576e82ea3d776bbe6c873da281538076337642fdf3",
+ "raw_normalized_churn": 0.03958156629912355,
+ "raw_xor_churn_total": 560,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 12,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5322c985c56af1e7657757452b31ff0f06a0b0ca18b0126cb8415e6929856d96",
+ "committed_normalized_churn": 0.002035623409669211,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_mask_sha256": "5322c985c56af1e7657757452b31ff0f06a0b0ca18b0126cb8415e6929856d96",
+ "current_selected_count": 45,
+ "dwell_total": 5883,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5329983682477177e-07,
+ "last_committed_normalized_gap": -0.7348368763923645,
+ "last_committed_score_gap": -4.2483418383199023e-07,
+ "last_cutoff_score_margin": 2.9478798069249024e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2204016520154255e-07,
+ "last_raw_normalized_gap": 0.09153764694929123,
+ "last_raw_score_gap": 2.9478798069249024e-08,
+ "layer_index": 16,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "c0c859a889cd99128f8c59378fa2131d80123f363e1633a36424fbd29f8a8c2f",
+ "raw_normalized_churn": 0.02357930449533503,
+ "raw_xor_churn_total": 278,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 17,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cbbb0538d11f6e697e25ed90878691fed17bff929e78c244bc325076b90648cf",
+ "committed_normalized_churn": 0.004806333050607859,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_mask_sha256": "cbbb0538d11f6e697e25ed90878691fed17bff929e78c244bc325076b90648cf",
+ "current_selected_count": 27,
+ "dwell_total": 3520,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.222648165821738e-06,
+ "last_committed_normalized_gap": 0.41018977761268616,
+ "last_committed_score_gap": 5.015177748646238e-07,
+ "last_cutoff_score_margin": 5.015177748646238e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.222648165821738e-06,
+ "last_raw_normalized_gap": 0.41018977761268616,
+ "last_raw_score_gap": 5.015177748646238e-07,
+ "layer_index": 17,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "cbbb0538d11f6e697e25ed90878691fed17bff929e78c244bc325076b90648cf",
+ "raw_normalized_churn": 0.02374893977947413,
+ "raw_xor_churn_total": 168,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "committed_normalized_churn": 0.0010905125408942203,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "current_selected_count": 7,
+ "dwell_total": 916,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.162924157455564e-05,
+ "last_committed_normalized_gap": 0.7384529113769531,
+ "last_committed_score_gap": 5.28948221472092e-05,
+ "last_cutoff_score_margin": 5.28948221472092e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.162924157455564e-05,
+ "last_raw_normalized_gap": 0.7384529113769531,
+ "last_raw_score_gap": 5.28948221472092e-05,
+ "layer_index": 18,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "raw_normalized_churn": 0.003271537622682661,
+ "raw_xor_churn_total": 6,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "committed_normalized_churn": 0.0016963528413910093,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "current_selected_count": 9,
+ "dwell_total": 1177,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.1163024434354156e-05,
+ "last_committed_normalized_gap": 0.9112750887870789,
+ "last_committed_score_gap": 3.751083932002075e-05,
+ "last_cutoff_score_margin": 3.751083932002075e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.1163024434354156e-05,
+ "last_raw_normalized_gap": 0.9112750887870789,
+ "last_raw_score_gap": 3.751083932002075e-05,
+ "layer_index": 20,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "raw_normalized_churn": 0.03816793893129771,
+ "raw_xor_churn_total": 90,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2f03fe4f24575e56d08a917de737dd56d874031ac12b95d53d5d26b011e3117f",
+ "committed_normalized_churn": 0.0021810250817884407,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "2f03fe4f24575e56d08a917de737dd56d874031ac12b95d53d5d26b011e3117f",
+ "current_selected_count": 7,
+ "dwell_total": 915,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.631686791370157e-05,
+ "last_committed_normalized_gap": 0.955549955368042,
+ "last_committed_score_gap": 1.5591582268825732e-05,
+ "last_cutoff_score_margin": 1.5591582268825732e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.631686791370157e-05,
+ "last_raw_normalized_gap": 0.955549955368042,
+ "last_raw_score_gap": 1.5591582268825732e-05,
+ "layer_index": 21,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "2f03fe4f24575e56d08a917de737dd56d874031ac12b95d53d5d26b011e3117f",
+ "raw_normalized_churn": 0.0054525627044711015,
+ "raw_xor_churn_total": 10,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ce230197965ce3dec0f1c00bf43a117b945d11b0215261a814dd734c7b9d63c9",
+ "committed_normalized_churn": 0.0013879250520471894,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "ce230197965ce3dec0f1c00bf43a117b945d11b0215261a814dd734c7b9d63c9",
+ "current_selected_count": 55,
+ "dwell_total": 7195,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0192359784232394e-07,
+ "last_committed_normalized_gap": 0.5494354367256165,
+ "last_committed_score_gap": 1.1094397933675282e-07,
+ "last_cutoff_score_margin": 1.1094397933675282e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0192359784232394e-07,
+ "last_raw_normalized_gap": 0.5494354367256165,
+ "last_raw_score_gap": 1.1094397933675282e-07,
+ "layer_index": 22,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "ce230197965ce3dec0f1c00bf43a117b945d11b0215261a814dd734c7b9d63c9",
+ "raw_normalized_churn": 0.014295628036086052,
+ "raw_xor_churn_total": 206,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ }
+ ],
+ "task_id": 822
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 72,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "66a6e9ce605e91e00ce29e6b6922e075b2798bfa5e8a73df677fa142991c28de",
+ "committed_normalized_churn": 0.0032193158953722333,
+ "committed_xor_churn_total": 144,
+ "confirmation_two": true,
+ "current_mask_sha256": "66a6e9ce605e91e00ce29e6b6922e075b2798bfa5e8a73df677fa142991c28de",
+ "current_selected_count": 355,
+ "dwell_total": 22293,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6775419942050007e-09,
+ "last_committed_normalized_gap": -0.9496857523918152,
+ "last_committed_score_gap": -3.166372408713869e-08,
+ "last_cutoff_score_margin": 1.2546319538842e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 355,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2653798009409911e-08,
+ "last_raw_normalized_gap": 0.009915062226355076,
+ "last_raw_score_gap": 1.2546319538842e-10,
+ "layer_index": 0,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "17abb137c91ecade3eb6164d8ff91b9a94b11111f9ff3b9a5aeba06a8a6f6238",
+ "raw_normalized_churn": 0.02629107981220657,
+ "raw_xor_churn_total": 1176,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 439,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e305a9c2e23abcf343581fbc10241acc00b7148e0461f9c436e2c15534714a8e",
+ "committed_normalized_churn": 0.0183375104427736,
+ "committed_xor_churn_total": 878,
+ "confirmation_two": true,
+ "current_mask_sha256": "e305a9c2e23abcf343581fbc10241acc00b7148e0461f9c436e2c15534714a8e",
+ "current_selected_count": 380,
+ "dwell_total": 23501,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4423628957871415e-09,
+ "last_committed_normalized_gap": -0.9663209915161133,
+ "last_committed_score_gap": -4.138439635426039e-08,
+ "last_cutoff_score_margin": 3.3217872896784684e-13,
+ "last_mask_churn": 22,
+ "last_mask_overlap": 369,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.627049993681908e-09,
+ "last_raw_normalized_gap": 9.158372267847881e-05,
+ "last_raw_score_gap": 3.3217872896784684e-13,
+ "layer_index": 1,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "46c01fbc79bd0d2d4e3756a41cd8627a8fe56e1e68e1e065791b61095de45a9c",
+ "raw_normalized_churn": 0.12573099415204678,
+ "raw_xor_churn_total": 6020,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 113,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4f79684f96f5ff060a1af5f4d1bd4650406a04ad5e73b3078aaa7ee625aa2014",
+ "committed_normalized_churn": 0.0066678468165457016,
+ "committed_xor_churn_total": 226,
+ "confirmation_two": true,
+ "current_mask_sha256": "4f79684f96f5ff060a1af5f4d1bd4650406a04ad5e73b3078aaa7ee625aa2014",
+ "current_selected_count": 269,
+ "dwell_total": 16834,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.976428963881062e-09,
+ "last_committed_normalized_gap": -0.9301413297653198,
+ "last_committed_score_gap": -5.294459270999141e-08,
+ "last_cutoff_score_margin": 3.141984450394375e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 267,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3296491907510699e-08,
+ "last_raw_normalized_gap": 0.02363017573952675,
+ "last_raw_score_gap": 3.141984450394375e-10,
+ "layer_index": 2,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "69183bce4522e14ae7cd05677053fcf8d41910b14ad203241005bba7a906c721",
+ "raw_normalized_churn": 0.06396412344367734,
+ "raw_xor_churn_total": 2168,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "692501147a610b0286acff95c23b9ab067f6b0b6d015fbfde940e322df92e82f",
+ "committed_normalized_churn": 0.0005320563979781857,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "692501147a610b0286acff95c23b9ab067f6b0b6d015fbfde940e322df92e82f",
+ "current_selected_count": 179,
+ "dwell_total": 11271,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0702631786662096e-07,
+ "last_committed_normalized_gap": -0.6691491007804871,
+ "last_committed_score_gap": -4.1871274447657925e-07,
+ "last_cutoff_score_margin": 2.7279156711301766e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.706053976453404e-07,
+ "last_raw_normalized_gap": 0.0010080788051709533,
+ "last_raw_score_gap": 2.7279156711301766e-10,
+ "layer_index": 4,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "19a1590db2cffdc7df965f9983acf97d68f90d5b6a51d7d7a7e8fe76c4c93903",
+ "raw_normalized_churn": 0.012059945020838875,
+ "raw_xor_churn_total": 272,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 13,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1160c188949f06f35348b6a8241dbdfcf76f1b3f3bc29277e6e15b69f912376b",
+ "committed_normalized_churn": 0.0011154011154011153,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_mask_sha256": "1160c188949f06f35348b6a8241dbdfcf76f1b3f3bc29277e6e15b69f912376b",
+ "current_selected_count": 185,
+ "dwell_total": 11642,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.509687094398032e-08,
+ "last_committed_normalized_gap": 0.0476752407848835,
+ "last_committed_score_gap": 3.58026142066592e-09,
+ "last_cutoff_score_margin": 3.58026142066592e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 183,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.509687094398032e-08,
+ "last_raw_normalized_gap": 0.0476752407848835,
+ "last_raw_score_gap": 3.58026142066592e-09,
+ "layer_index": 5,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "1160c188949f06f35348b6a8241dbdfcf76f1b3f3bc29277e6e15b69f912376b",
+ "raw_normalized_churn": 0.009952809952809952,
+ "raw_xor_churn_total": 232,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 38,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0545ef5d320f4c48040604224a77a226161fd0f349f8be24c0dd967afcc2eaf3",
+ "committed_normalized_churn": 0.005744520030234316,
+ "committed_xor_churn_total": 76,
+ "confirmation_two": true,
+ "current_mask_sha256": "0545ef5d320f4c48040604224a77a226161fd0f349f8be24c0dd967afcc2eaf3",
+ "current_selected_count": 105,
+ "dwell_total": 6577,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0112188419952872e-08,
+ "last_committed_normalized_gap": -0.8426657915115356,
+ "last_committed_score_gap": -5.4159848161816626e-08,
+ "last_cutoff_score_margin": 2.4375346185934177e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.846790974648684e-08,
+ "last_raw_normalized_gap": 0.0633653998374939,
+ "last_raw_score_gap": 2.4375346185934177e-09,
+ "layer_index": 6,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "5a16c914c20f1e64f6c21f4cd264f8c1cdc557afb4689989656aac68469c0341",
+ "raw_normalized_churn": 0.053514739229024944,
+ "raw_xor_churn_total": 708,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4fc32e67be3442032089dfe9baff027d5320a7f7b5ae7951e5a4b969c8b9f4da",
+ "committed_normalized_churn": 0.001388888888888889,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "4fc32e67be3442032089dfe9baff027d5320a7f7b5ae7951e5a4b969c8b9f4da",
+ "current_selected_count": 80,
+ "dwell_total": 5033,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.006930502484465e-08,
+ "last_committed_normalized_gap": -0.6595281958580017,
+ "last_committed_score_gap": -1.3573131241173542e-07,
+ "last_cutoff_score_margin": 3.2420786055809003e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2473483934627438e-07,
+ "last_raw_normalized_gap": 0.025991763919591904,
+ "last_raw_score_gap": 3.2420786055809003e-09,
+ "layer_index": 8,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "c2702f3365cbe92db92b1add999214b7b2fbba65d88eb732172c3e9191be00f1",
+ "raw_normalized_churn": 0.011507936507936509,
+ "raw_xor_churn_total": 116,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9e4785f003c79e0f8cc567dbe8ef8a44cfaa74178b7169ec0262263d0a8c5fd6",
+ "committed_normalized_churn": 0.0018456995201181247,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "9e4785f003c79e0f8cc567dbe8ef8a44cfaa74178b7169ec0262263d0a8c5fd6",
+ "current_selected_count": 43,
+ "dwell_total": 2704,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.322671122101383e-08,
+ "last_committed_normalized_gap": -0.4725608229637146,
+ "last_committed_score_gap": -2.0810045242569686e-08,
+ "last_cutoff_score_margin": 8.114668048619933e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.4036756463583515e-08,
+ "last_raw_normalized_gap": 0.18427033722400665,
+ "last_raw_score_gap": 8.114668048619933e-09,
+ "layer_index": 9,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "12236eee8853d1d64cd31db03ad93e40366283a9c215cea17bc27e6551d2dccd",
+ "raw_normalized_churn": 0.019933554817275746,
+ "raw_xor_churn_total": 108,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 32,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8f7923ab64cfe094474b561ed650f584a74e8793c2d0d7698cf18b2ed0fa00f5",
+ "committed_normalized_churn": 0.006046863189720333,
+ "committed_xor_churn_total": 64,
+ "confirmation_two": true,
+ "current_mask_sha256": "8f7923ab64cfe094474b561ed650f584a74e8793c2d0d7698cf18b2ed0fa00f5",
+ "current_selected_count": 84,
+ "dwell_total": 5260,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.130044916119459e-09,
+ "last_committed_normalized_gap": -0.7990303635597229,
+ "last_committed_score_gap": -2.4372294404884087e-08,
+ "last_cutoff_score_margin": 4.525464447624472e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7250011197234016e-08,
+ "last_raw_normalized_gap": 0.02623455971479416,
+ "last_raw_score_gap": 4.525464447624472e-10,
+ "layer_index": 10,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "db9b82d2fd0cc44128ec2b5659209168f7eff61084c9dab0407ec4b6bb529aaf",
+ "raw_normalized_churn": 0.0691609977324263,
+ "raw_xor_churn_total": 732,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3c5fee2683fc2223a4c1b50b90b23e4f60f043240645e5c926be0079a9aef3e2",
+ "committed_normalized_churn": 0.0031746031746031746,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "3c5fee2683fc2223a4c1b50b90b23e4f60f043240645e5c926be0079a9aef3e2",
+ "current_selected_count": 30,
+ "dwell_total": 1884,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.370101684500696e-07,
+ "last_committed_normalized_gap": -0.6765431761741638,
+ "last_committed_score_gap": -1.5415323559864191e-06,
+ "last_cutoff_score_margin": 1.6900651189644122e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.060590989254706e-06,
+ "last_raw_normalized_gap": 0.15935125946998596,
+ "last_raw_score_gap": 1.6900651189644122e-07,
+ "layer_index": 12,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "eb23df2129487c3d153240268e9ecfd0717a1c2a3be2c8f89803930c0b136c20",
+ "raw_normalized_churn": 0.02328042328042328,
+ "raw_xor_churn_total": 88,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 44,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c464e2cdf51299a59126df18cd9912ffaa6ada093b12409f0a91819f51b76ae6",
+ "committed_normalized_churn": 0.011264720942140297,
+ "committed_xor_churn_total": 88,
+ "confirmation_two": true,
+ "current_mask_sha256": "c464e2cdf51299a59126df18cd9912ffaa6ada093b12409f0a91819f51b76ae6",
+ "current_selected_count": 62,
+ "dwell_total": 3862,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2451828901305362e-08,
+ "last_committed_normalized_gap": -0.5894312262535095,
+ "last_committed_score_gap": -1.7876413238582245e-08,
+ "last_cutoff_score_margin": 7.43197503538795e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7919474732129856e-08,
+ "last_raw_normalized_gap": 0.2661932110786438,
+ "last_raw_score_gap": 7.43197503538795e-09,
+ "layer_index": 13,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b3bff6b622fa49af08e039734e8b5c209c9c43830ac51bd61dcff40ab49ec5c0",
+ "raw_normalized_churn": 0.08243727598566308,
+ "raw_xor_churn_total": 644,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 12,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ae69772a6d88502ec8969c47967ce75a4531e7cd5989164e1afe9d07af67e1d3",
+ "committed_normalized_churn": 0.003527336860670194,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_mask_sha256": "ae69772a6d88502ec8969c47967ce75a4531e7cd5989164e1afe9d07af67e1d3",
+ "current_selected_count": 54,
+ "dwell_total": 3390,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.335261394317058e-08,
+ "last_committed_normalized_gap": -0.2989695370197296,
+ "last_committed_score_gap": -1.8488655939563614e-08,
+ "last_cutoff_score_margin": 1.7277628217016172e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.2991971699611895e-08,
+ "last_raw_normalized_gap": 0.03260423615574837,
+ "last_raw_score_gap": 1.7277628217016172e-09,
+ "layer_index": 14,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "8c0527a1c6658ef11ff159665f56d3da659b77c8ae525fc26b4b6d483c4dabda",
+ "raw_normalized_churn": 0.04409171075837742,
+ "raw_xor_churn_total": 300,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "058a8e8fff4473cb2e6230efbc217c55b3037710bb920d4a397124ca7d66966a",
+ "committed_normalized_churn": 0.001763668430335097,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "058a8e8fff4473cb2e6230efbc217c55b3037710bb920d4a397124ca7d66966a",
+ "current_selected_count": 45,
+ "dwell_total": 2830,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.471400754686329e-07,
+ "last_committed_normalized_gap": 0.18323735892772675,
+ "last_committed_score_gap": 1.0025649999079178e-07,
+ "last_cutoff_score_margin": 1.0025649999079178e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 44,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.471400754686329e-07,
+ "last_raw_normalized_gap": 0.18323735892772675,
+ "last_raw_score_gap": 1.0025649999079178e-07,
+ "layer_index": 16,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "058a8e8fff4473cb2e6230efbc217c55b3037710bb920d4a397124ca7d66966a",
+ "raw_normalized_churn": 0.016225749559082892,
+ "raw_xor_churn_total": 92,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "85f6c86e931d37d7e2a5c1dacd398ba862c53993b0050ffed03d482c9012bff8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "85f6c86e931d37d7e2a5c1dacd398ba862c53993b0050ffed03d482c9012bff8",
+ "current_selected_count": 27,
+ "dwell_total": 1701,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.616873745064368e-07,
+ "last_committed_normalized_gap": -0.02931826002895832,
+ "last_committed_score_gap": -2.3005839011602802e-08,
+ "last_cutoff_score_margin": 2.3005839011602802e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.846932135180396e-07,
+ "last_raw_normalized_gap": 0.02931826002895832,
+ "last_raw_score_gap": 2.3005839011602802e-08,
+ "layer_index": 17,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "cf0b5977913baaac2f6e660899c5dafafe1862efbaf3ef3b4bfccfd4b65b0549",
+ "raw_normalized_churn": 0.01763668430335097,
+ "raw_xor_churn_total": 60,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "current_selected_count": 7,
+ "dwell_total": 441,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2786905901739374e-05,
+ "last_committed_normalized_gap": 0.8209406137466431,
+ "last_committed_score_gap": 1.8706696209846996e-05,
+ "last_cutoff_score_margin": 1.8706696209846996e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.2786905901739374e-05,
+ "last_raw_normalized_gap": 0.8209406137466431,
+ "last_raw_score_gap": 1.8706696209846996e-05,
+ "layer_index": 18,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "raw_normalized_churn": 0.0045351473922902496,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f02f37f3a13d4e2ef976017d402d84e39a7853079aea2aeee5b2c7f133386980",
+ "committed_normalized_churn": 0.001763668430335097,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "f02f37f3a13d4e2ef976017d402d84e39a7853079aea2aeee5b2c7f133386980",
+ "current_selected_count": 9,
+ "dwell_total": 566,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2735896234516986e-05,
+ "last_committed_normalized_gap": 0.8329399824142456,
+ "last_committed_score_gap": 1.0608237062115222e-05,
+ "last_cutoff_score_margin": 1.0608237062115222e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2735896234516986e-05,
+ "last_raw_normalized_gap": 0.8329399824142456,
+ "last_raw_score_gap": 1.0608237062115222e-05,
+ "layer_index": 20,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "f02f37f3a13d4e2ef976017d402d84e39a7853079aea2aeee5b2c7f133386980",
+ "raw_normalized_churn": 0.012345679012345678,
+ "raw_xor_churn_total": 14,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "current_selected_count": 7,
+ "dwell_total": 441,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.245966455433518e-06,
+ "last_committed_normalized_gap": 0.7534671425819397,
+ "last_committed_score_gap": 6.21306480752537e-06,
+ "last_cutoff_score_margin": 6.21306480752537e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.245966455433518e-06,
+ "last_raw_normalized_gap": 0.7534671425819397,
+ "last_raw_score_gap": 6.21306480752537e-06,
+ "layer_index": 21,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0045351473922902496,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c55d1e87cde338eaf15492e10e80081f34db650997deda15334520c3ced7dc3d",
+ "committed_normalized_churn": 0.00202020202020202,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "c55d1e87cde338eaf15492e10e80081f34db650997deda15334520c3ced7dc3d",
+ "current_selected_count": 55,
+ "dwell_total": 3458,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.3538344723638147e-07,
+ "last_committed_normalized_gap": 0.6510587334632874,
+ "last_committed_score_gap": 2.1835433017258765e-07,
+ "last_cutoff_score_margin": 2.1835433017258765e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.3538344723638147e-07,
+ "last_raw_normalized_gap": 0.6510587334632874,
+ "last_raw_score_gap": 2.1835433017258765e-07,
+ "layer_index": 22,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "c55d1e87cde338eaf15492e10e80081f34db650997deda15334520c3ced7dc3d",
+ "raw_normalized_churn": 0.015007215007215007,
+ "raw_xor_churn_total": 104,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 687
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 33,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8ea85cb7d3afa1abeb9f6526e0c3a37dfa5ca105fcb1edaf8dcc092acc588072",
+ "committed_normalized_churn": 0.0030985915492957746,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_mask_sha256": "8ea85cb7d3afa1abeb9f6526e0c3a37dfa5ca105fcb1edaf8dcc092acc588072",
+ "current_selected_count": 355,
+ "dwell_total": 10617,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.818292679928618e-10,
+ "last_committed_normalized_gap": -0.9993811249732971,
+ "last_committed_score_gap": -1.2624904002223047e-06,
+ "last_cutoff_score_margin": 5.430056404520656e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3406895977018394e-08,
+ "last_raw_normalized_gap": 0.023198531940579414,
+ "last_raw_score_gap": 5.430056404520656e-10,
+ "layer_index": 0,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "215876176a8fac2111c47b13223e804efbe0940b7276889c106e6e21268f5bde",
+ "raw_normalized_churn": 0.019906103286384976,
+ "raw_xor_churn_total": 424,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 223,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f70c7a92436d4799e1f145a6075656dfc52e7bffadbf20b1982c725deff010e9",
+ "committed_normalized_churn": 0.01956140350877193,
+ "committed_xor_churn_total": 446,
+ "confirmation_two": true,
+ "current_mask_sha256": "f70c7a92436d4799e1f145a6075656dfc52e7bffadbf20b1982c725deff010e9",
+ "current_selected_count": 380,
+ "dwell_total": 11177,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1996045262984154e-10,
+ "last_committed_normalized_gap": -0.993145227432251,
+ "last_committed_score_gap": -3.186846697644796e-08,
+ "last_cutoff_score_margin": 1.2596590437397026e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 377,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0468637068328235e-09,
+ "last_raw_normalized_gap": 0.012032694183290005,
+ "last_raw_score_gap": 1.2596590437397026e-11,
+ "layer_index": 1,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "95f410802dda66948d9c920d0ee6dc588a46376321333f1ce2c38845d83e1f92",
+ "raw_normalized_churn": 0.12578947368421053,
+ "raw_xor_churn_total": 2868,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 60,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c26e03ffd93e7c247ef15224227351326ebe89333de17de8164e41432fc517b6",
+ "committed_normalized_churn": 0.007434944237918215,
+ "committed_xor_churn_total": 120,
+ "confirmation_two": true,
+ "current_mask_sha256": "c26e03ffd93e7c247ef15224227351326ebe89333de17de8164e41432fc517b6",
+ "current_selected_count": 269,
+ "dwell_total": 8010,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1665755028644753e-09,
+ "last_committed_normalized_gap": -0.9617853760719299,
+ "last_committed_score_gap": -2.936039322776196e-08,
+ "last_cutoff_score_margin": 1.2490142253795966e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 267,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.443162365281751e-09,
+ "last_raw_normalized_gap": 0.02294648066163063,
+ "last_raw_score_gap": 1.2490142253795966e-10,
+ "layer_index": 2,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "845c244782a71b72d14411cabd91742ae467e7777e2502d46a6e581f5336fe12",
+ "raw_normalized_churn": 0.06802973977695168,
+ "raw_xor_churn_total": 1098,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e6938b60acfb340b8b3ab86398cb5e8492e5cbd4b80fa39ddab7ef38ed8dfc59",
+ "committed_normalized_churn": 0.00037243947858472997,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "e6938b60acfb340b8b3ab86398cb5e8492e5cbd4b80fa39ddab7ef38ed8dfc59",
+ "current_selected_count": 179,
+ "dwell_total": 5368,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.732415029209733e-07,
+ "last_committed_normalized_gap": 0.23120902478694916,
+ "last_committed_score_gap": 4.005499931736267e-08,
+ "last_cutoff_score_margin": 4.005499931736267e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.732415029209733e-07,
+ "last_raw_normalized_gap": 0.23120902478694916,
+ "last_raw_score_gap": 4.005499931736267e-08,
+ "layer_index": 4,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "e6938b60acfb340b8b3ab86398cb5e8492e5cbd4b80fa39ddab7ef38ed8dfc59",
+ "raw_normalized_churn": 0.005772811918063315,
+ "raw_xor_churn_total": 62,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8796569d41ba471ca8161380d1d5cef773bdd52d70c425918e3c0001b6943606",
+ "committed_normalized_churn": 0.0016216216216216215,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "8796569d41ba471ca8161380d1d5cef773bdd52d70c425918e3c0001b6943606",
+ "current_selected_count": 185,
+ "dwell_total": 5541,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.583632590675734e-08,
+ "last_committed_normalized_gap": -0.37287449836730957,
+ "last_committed_score_gap": -2.1307460684738544e-08,
+ "last_cutoff_score_margin": 1.9577868215492344e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.604489317079242e-08,
+ "last_raw_normalized_gap": 0.03493247553706169,
+ "last_raw_score_gap": 1.9577868215492344e-09,
+ "layer_index": 5,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "aa862d02ab9bd52cca16efb60609ddc397dceb8abd27853ab5b95fa5665fde96",
+ "raw_normalized_churn": 0.01009009009009009,
+ "raw_xor_churn_total": 112,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 20,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "10848177d1be40369eb036c5201e90a8efcbac762a191b3e3e1d54b1537fb76b",
+ "committed_normalized_churn": 0.006349206349206349,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_mask_sha256": "10848177d1be40369eb036c5201e90a8efcbac762a191b3e3e1d54b1537fb76b",
+ "current_selected_count": 105,
+ "dwell_total": 3130,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9410296420451232e-08,
+ "last_committed_normalized_gap": 0.1489318609237671,
+ "last_committed_score_gap": 4.380130036452101e-09,
+ "last_cutoff_score_margin": 4.380130036452101e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9410296420451232e-08,
+ "last_raw_normalized_gap": 0.1489318609237671,
+ "last_raw_score_gap": 4.380130036452101e-09,
+ "layer_index": 6,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "10848177d1be40369eb036c5201e90a8efcbac762a191b3e3e1d54b1537fb76b",
+ "raw_normalized_churn": 0.06349206349206349,
+ "raw_xor_churn_total": 400,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0064fd7de3d82ae1bf175e5e681ef0e3d27708f4d768487780111957b6689e13",
+ "committed_normalized_churn": 0.0016666666666666668,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "0064fd7de3d82ae1bf175e5e681ef0e3d27708f4d768487780111957b6689e13",
+ "current_selected_count": 80,
+ "dwell_total": 2396,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2410085048486508e-07,
+ "last_committed_normalized_gap": -0.16098132729530334,
+ "last_committed_score_gap": -2.3811054461475578e-08,
+ "last_cutoff_score_margin": 1.723554987620446e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4791190494634066e-07,
+ "last_raw_normalized_gap": 0.11652577668428421,
+ "last_raw_score_gap": 1.723554987620446e-08,
+ "layer_index": 8,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "75bf3964e0a469fd13a9aef4285bcb5f5cb737bc938947ca5accbb20083b49f4",
+ "raw_normalized_churn": 0.0125,
+ "raw_xor_churn_total": 60,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "dbc1842e51e35db2e5cf6c34f59a2ba129735cfdbbb835bea1d747ffb213dbc6",
+ "committed_normalized_churn": 0.0015503875968992248,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "dbc1842e51e35db2e5cf6c34f59a2ba129735cfdbbb835bea1d747ffb213dbc6",
+ "current_selected_count": 43,
+ "dwell_total": 1288,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.8498814802778725e-08,
+ "last_committed_normalized_gap": 0.5998033881187439,
+ "last_committed_score_gap": 2.3091720535717286e-08,
+ "last_cutoff_score_margin": 2.3091720535717286e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.8498814802778725e-08,
+ "last_raw_normalized_gap": 0.5998033881187439,
+ "last_raw_score_gap": 2.3091720535717286e-08,
+ "layer_index": 9,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "dbc1842e51e35db2e5cf6c34f59a2ba129735cfdbbb835bea1d747ffb213dbc6",
+ "raw_normalized_churn": 0.02868217054263566,
+ "raw_xor_churn_total": 74,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 30,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "290d110f2214a048952e6c14a9f1d1e3bd14c10c5016a11644ff2f35c0088009",
+ "committed_normalized_churn": 0.011904761904761904,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_mask_sha256": "290d110f2214a048952e6c14a9f1d1e3bd14c10c5016a11644ff2f35c0088009",
+ "current_selected_count": 84,
+ "dwell_total": 2490,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0573009962276956e-08,
+ "last_committed_normalized_gap": -0.16139818727970123,
+ "last_committed_score_gap": -3.959502947736837e-09,
+ "last_cutoff_score_margin": 2.2102533137058344e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.278326327598279e-08,
+ "last_raw_normalized_gap": 0.09701214730739594,
+ "last_raw_score_gap": 2.2102533137058344e-09,
+ "layer_index": 10,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "a869cc0e93ee3f4466503dde42a563793944d4a249a280443f35ed9585ab8fd7",
+ "raw_normalized_churn": 0.06984126984126984,
+ "raw_xor_churn_total": 352,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ad3a0d1431829a8f7e72f5c0422bee8f6ce5159a74fad6552e70df568089071a",
+ "committed_normalized_churn": 0.0044444444444444444,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "ad3a0d1431829a8f7e72f5c0422bee8f6ce5159a74fad6552e70df568089071a",
+ "current_selected_count": 30,
+ "dwell_total": 896,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.111528586596251e-07,
+ "last_committed_normalized_gap": 0.7044513821601868,
+ "last_committed_score_gap": 5.714177291338274e-07,
+ "last_cutoff_score_margin": 5.714177291338274e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.111528586596251e-07,
+ "last_raw_normalized_gap": 0.7044513821601868,
+ "last_raw_score_gap": 5.714177291338274e-07,
+ "layer_index": 12,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "ad3a0d1431829a8f7e72f5c0422bee8f6ce5159a74fad6552e70df568089071a",
+ "raw_normalized_churn": 0.04555555555555556,
+ "raw_xor_churn_total": 82,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 21,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "07876647d38d88a8fd96b21154703d5b4d7b77d0d604c0dd107c1986ac2ee644",
+ "committed_normalized_churn": 0.01129032258064516,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": true,
+ "current_mask_sha256": "07876647d38d88a8fd96b21154703d5b4d7b77d0d604c0dd107c1986ac2ee644",
+ "current_selected_count": 62,
+ "dwell_total": 1839,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.8581866590448044e-08,
+ "last_committed_normalized_gap": 0.35883185267448425,
+ "last_committed_score_gap": 1.3844402957374768e-08,
+ "last_cutoff_score_margin": 1.3844402957374768e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.8581866590448044e-08,
+ "last_raw_normalized_gap": 0.35883185267448425,
+ "last_raw_score_gap": 1.3844402957374768e-08,
+ "layer_index": 13,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "07876647d38d88a8fd96b21154703d5b4d7b77d0d604c0dd107c1986ac2ee644",
+ "raw_normalized_churn": 0.08333333333333333,
+ "raw_xor_churn_total": 310,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d218c22a0cca8053147c7ddef2852c74868f5731eb7230bfb10784dc922691ee",
+ "committed_normalized_churn": 0.0030864197530864196,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "d218c22a0cca8053147c7ddef2852c74868f5731eb7230bfb10784dc922691ee",
+ "current_selected_count": 54,
+ "dwell_total": 1615,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.248158257449177e-08,
+ "last_committed_normalized_gap": 0.3202119469642639,
+ "last_committed_score_gap": 2.000734866669518e-08,
+ "last_cutoff_score_margin": 2.000734866669518e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.248158257449177e-08,
+ "last_raw_normalized_gap": 0.3202119469642639,
+ "last_raw_score_gap": 2.000734866669518e-08,
+ "layer_index": 14,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d218c22a0cca8053147c7ddef2852c74868f5731eb7230bfb10784dc922691ee",
+ "raw_normalized_churn": 0.04938271604938271,
+ "raw_xor_churn_total": 160,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0599d66ce9661ce70237b7525fdcde790b0a3c89f00b1a8c8ab9bf87f2765549",
+ "committed_normalized_churn": 0.0022222222222222222,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "0599d66ce9661ce70237b7525fdcde790b0a3c89f00b1a8c8ab9bf87f2765549",
+ "current_selected_count": 45,
+ "dwell_total": 1347,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1419909924370586e-06,
+ "last_committed_normalized_gap": 0.5956863164901733,
+ "last_committed_score_gap": 6.802683856221847e-07,
+ "last_cutoff_score_margin": 6.802683856221847e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1419909924370586e-06,
+ "last_raw_normalized_gap": 0.5956863164901733,
+ "last_raw_score_gap": 6.802683856221847e-07,
+ "layer_index": 16,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "0599d66ce9661ce70237b7525fdcde790b0a3c89f00b1a8c8ab9bf87f2765549",
+ "raw_normalized_churn": 0.014814814814814815,
+ "raw_xor_churn_total": 40,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ba3733872b18630fcf6e01dc89782de5082a0cdeeac20cbdbf24b491960794f1",
+ "committed_normalized_churn": 0.0012345679012345679,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "ba3733872b18630fcf6e01dc89782de5082a0cdeeac20cbdbf24b491960794f1",
+ "current_selected_count": 27,
+ "dwell_total": 809,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.167735146940686e-06,
+ "last_committed_normalized_gap": 0.6552579998970032,
+ "last_committed_score_gap": 1.4204258604877396e-06,
+ "last_cutoff_score_margin": 1.4204258604877396e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.167735146940686e-06,
+ "last_raw_normalized_gap": 0.6552579998970032,
+ "last_raw_score_gap": 1.4204258604877396e-06,
+ "layer_index": 17,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "ba3733872b18630fcf6e01dc89782de5082a0cdeeac20cbdbf24b491960794f1",
+ "raw_normalized_churn": 0.012345679012345678,
+ "raw_xor_churn_total": 20,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.0734208343783394e-05,
+ "last_committed_normalized_gap": 0.8109501600265503,
+ "last_committed_score_gap": 4.114291368750855e-05,
+ "last_cutoff_score_margin": 4.114291368750855e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.0734208343783394e-05,
+ "last_raw_normalized_gap": 0.8109501600265503,
+ "last_raw_score_gap": 4.114291368750855e-05,
+ "layer_index": 18,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "572afa92c8cc3acf06fb1e7dd47b32a72d17ddabdb8c60ae5b82d1d399e0188f",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "572afa92c8cc3acf06fb1e7dd47b32a72d17ddabdb8c60ae5b82d1d399e0188f",
+ "current_selected_count": 9,
+ "dwell_total": 270,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.839294211298693e-05,
+ "last_committed_normalized_gap": -0.0757366493344307,
+ "last_committed_score_gap": -2.3265947675099596e-06,
+ "last_cutoff_score_margin": 1.3533826859202236e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9746324798907153e-05,
+ "last_raw_normalized_gap": 0.04549747705459595,
+ "last_raw_score_gap": 1.3533826859202236e-06,
+ "layer_index": 20,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "0322656ee28f3e3ce84ea96ee9c72b26565e6107f39ea0b503b801c399756715",
+ "raw_normalized_churn": 0.011111111111111112,
+ "raw_xor_churn_total": 6,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.03143338492373e-05,
+ "last_committed_normalized_gap": 0.7352576851844788,
+ "last_committed_score_gap": 7.583693331980612e-06,
+ "last_cutoff_score_margin": 7.583693331980612e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.03143338492373e-05,
+ "last_raw_normalized_gap": 0.7352576851844788,
+ "last_raw_score_gap": 7.583693331980612e-06,
+ "layer_index": 21,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d6a360433e94089e3f67c6506619744fe5200837655aa643eb9d5b7ab498055e",
+ "committed_normalized_churn": 0.0024242424242424242,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "d6a360433e94089e3f67c6506619744fe5200837655aa643eb9d5b7ab498055e",
+ "current_selected_count": 55,
+ "dwell_total": 1646,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.519597248034188e-07,
+ "last_committed_normalized_gap": -0.3498995900154114,
+ "last_committed_score_gap": -8.178835742000956e-08,
+ "last_cutoff_score_margin": 8.007177143554145e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3374808222342836e-07,
+ "last_raw_normalized_gap": 0.34255585074424744,
+ "last_raw_score_gap": 8.007177143554145e-08,
+ "layer_index": 22,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "3f1e8a0efcabec6b28f7e409dae63e93a4b3cfa2b532e1944970107d53bc1457",
+ "raw_normalized_churn": 0.017575757575757574,
+ "raw_xor_churn_total": 58,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ }
+ ],
+ "task_id": 820
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 27,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3f71dbdd1f78b2189902b5b17855905a8436c59225eed5ee0e0dc08051233c97",
+ "committed_normalized_churn": 0.0021730382293762575,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_mask_sha256": "3f71dbdd1f78b2189902b5b17855905a8436c59225eed5ee0e0dc08051233c97",
+ "current_selected_count": 355,
+ "dwell_total": 12398,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.0463861988572205e-10,
+ "last_committed_normalized_gap": -0.9925501942634583,
+ "last_committed_score_gap": -4.058744806911818e-08,
+ "last_cutoff_score_margin": 2.519834119141251e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3231058915152971e-08,
+ "last_raw_normalized_gap": 0.19044840335845947,
+ "last_raw_score_gap": 2.519834119141251e-09,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "f52bae731ea87b04395e7696748563092c82822525502c2d84b8dfd2d8f1bd6f",
+ "raw_normalized_churn": 0.014164989939637827,
+ "raw_xor_churn_total": 352,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 207,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5e18673bb6cf55ce976904bcac709b9892243a17da7984ef0be0c34d1ce59167",
+ "committed_normalized_churn": 0.01556390977443609,
+ "committed_xor_churn_total": 414,
+ "confirmation_two": true,
+ "current_mask_sha256": "5e18673bb6cf55ce976904bcac709b9892243a17da7984ef0be0c34d1ce59167",
+ "current_selected_count": 380,
+ "dwell_total": 13093,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3039322399599484e-10,
+ "last_committed_normalized_gap": -0.9396018981933594,
+ "last_committed_score_gap": -2.0285029211919436e-09,
+ "last_cutoff_score_margin": 2.3352986211477855e-12,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 371,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.630749365716838e-10,
+ "last_raw_normalized_gap": 0.0030603790655732155,
+ "last_raw_score_gap": 2.3352986211477855e-12,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "92d2a852457e0809e05fb9d7b14dd3dede7ea499221026fda3aa9f7bc62f0183",
+ "raw_normalized_churn": 0.1181203007518797,
+ "raw_xor_churn_total": 3142,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 52,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7e66fbad1a401589dc877fca9c106b805a9006a327f912ec42ac752e61210176",
+ "committed_normalized_churn": 0.005523101433882103,
+ "committed_xor_churn_total": 104,
+ "confirmation_two": true,
+ "current_mask_sha256": "7e66fbad1a401589dc877fca9c106b805a9006a327f912ec42ac752e61210176",
+ "current_selected_count": 269,
+ "dwell_total": 9363,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.450563277444644e-09,
+ "last_committed_normalized_gap": -0.9070008993148804,
+ "last_committed_score_gap": -7.26638447190453e-08,
+ "last_cutoff_score_margin": 1.4932410863366385e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 267,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.539902118798182e-09,
+ "last_raw_normalized_gap": 0.01748545840382576,
+ "last_raw_score_gap": 1.4932410863366385e-10,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "041743d16cb7d51db70b1eed3f61de415e9079f150bc16bed27d41f1c9b334cb",
+ "raw_normalized_churn": 0.033988316516197555,
+ "raw_xor_churn_total": 640,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1e232738aa01bb7ffc87fb175945dfce5a617dcbd6974822f1d1fe8511de76d2",
+ "committed_normalized_churn": 0.0007980845969672786,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "1e232738aa01bb7ffc87fb175945dfce5a617dcbd6974822f1d1fe8511de76d2",
+ "current_selected_count": 179,
+ "dwell_total": 6260,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0617730456251593e-07,
+ "last_committed_normalized_gap": -0.606057345867157,
+ "last_committed_score_gap": -3.1719153525955335e-07,
+ "last_cutoff_score_margin": 5.0328310408076504e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.985013622947008e-07,
+ "last_raw_normalized_gap": 0.01686032861471176,
+ "last_raw_score_gap": 5.0328310408076504e-09,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "0cce5301a57b492d2c9f42ebd111fc6399215cdfb461b99ea74937516b90d23d",
+ "raw_normalized_churn": 0.008619313647246609,
+ "raw_xor_churn_total": 108,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "040824d6481bddbbec6a6c510e17e80a385248316726794eb4ba2462b8a0a1a5",
+ "committed_normalized_churn": 0.0012355212355212356,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "040824d6481bddbbec6a6c510e17e80a385248316726794eb4ba2462b8a0a1a5",
+ "current_selected_count": 185,
+ "dwell_total": 6467,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.627813485873048e-08,
+ "last_committed_normalized_gap": 0.35642877221107483,
+ "last_committed_score_gap": 3.075200893931651e-08,
+ "last_cutoff_score_margin": 3.075200893931651e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.627813485873048e-08,
+ "last_raw_normalized_gap": 0.35642877221107483,
+ "last_raw_score_gap": 3.075200893931651e-08,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "040824d6481bddbbec6a6c510e17e80a385248316726794eb4ba2462b8a0a1a5",
+ "raw_normalized_churn": 0.0069498069498069494,
+ "raw_xor_churn_total": 90,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 33,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a68717a54f1fe3499d51be8c72b5c9dbbc4b9a2ee0a5061ba7534f70a1aa8e85",
+ "committed_normalized_churn": 0.008979591836734694,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_mask_sha256": "a68717a54f1fe3499d51be8c72b5c9dbbc4b9a2ee0a5061ba7534f70a1aa8e85",
+ "current_selected_count": 105,
+ "dwell_total": 3642,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.9370774135582e-09,
+ "last_committed_normalized_gap": -0.8184522986412048,
+ "last_committed_score_gap": -2.2257296450334252e-08,
+ "last_cutoff_score_margin": 5.206430842008558e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0433247982509783e-08,
+ "last_raw_normalized_gap": 0.02548019215464592,
+ "last_raw_score_gap": 5.206430842008558e-10,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "6c43ee8c77845f1a2744f8e0619c538eee686a60ee4b462075e67934a8c437c7",
+ "raw_normalized_churn": 0.05523809523809524,
+ "raw_xor_churn_total": 406,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e94b1149819ab1eed67c5cb04ddde822035745854c8b2f0a29edd9f4927814c8",
+ "committed_normalized_churn": 0.0010714285714285715,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "e94b1149819ab1eed67c5cb04ddde822035745854c8b2f0a29edd9f4927814c8",
+ "current_selected_count": 80,
+ "dwell_total": 2797,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.529490003184037e-08,
+ "last_committed_normalized_gap": 0.07256124913692474,
+ "last_committed_score_gap": 6.189104340137419e-09,
+ "last_cutoff_score_margin": 6.189104340137419e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.529490003184037e-08,
+ "last_raw_normalized_gap": 0.07256124913692474,
+ "last_raw_score_gap": 6.189104340137419e-09,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "e94b1149819ab1eed67c5cb04ddde822035745854c8b2f0a29edd9f4927814c8",
+ "raw_normalized_churn": 0.019642857142857142,
+ "raw_xor_churn_total": 110,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "77b3a50a3ce3b312d0b2627b2393b4afa9c0bd0174a44eba84d4170cdd4a0942",
+ "committed_normalized_churn": 0.0033222591362126247,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "77b3a50a3ce3b312d0b2627b2393b4afa9c0bd0174a44eba84d4170cdd4a0942",
+ "current_selected_count": 43,
+ "dwell_total": 1500,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.21911072534931e-08,
+ "last_committed_normalized_gap": 0.3405044972896576,
+ "last_committed_score_gap": 2.7986441608618406e-08,
+ "last_cutoff_score_margin": 2.7986441608618406e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.21911072534931e-08,
+ "last_raw_normalized_gap": 0.3405044972896576,
+ "last_raw_score_gap": 2.7986441608618406e-08,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "77b3a50a3ce3b312d0b2627b2393b4afa9c0bd0174a44eba84d4170cdd4a0942",
+ "raw_normalized_churn": 0.02458471760797342,
+ "raw_xor_churn_total": 74,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 30,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3eda8da0746f013a97f043b83ac5ff37682cc80916d78d5966c3127a3485c618",
+ "committed_normalized_churn": 0.01020408163265306,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_mask_sha256": "3eda8da0746f013a97f043b83ac5ff37682cc80916d78d5966c3127a3485c618",
+ "current_selected_count": 84,
+ "dwell_total": 2910,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0020071883332093e-08,
+ "last_committed_normalized_gap": -0.31321486830711365,
+ "last_committed_score_gap": -4.56974902363072e-09,
+ "last_cutoff_score_margin": 3.9039793620077035e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3521357367096698e-08,
+ "last_raw_normalized_gap": 0.028872687369585037,
+ "last_raw_score_gap": 3.9039793620077035e-10,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "d31cee02e12b5ad04fdb6815890518e46bc3812b93d3ddb89565c99c4a1df0a8",
+ "raw_normalized_churn": 0.06224489795918367,
+ "raw_xor_churn_total": 366,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0f4eae3c1eab25f6e3d101484e20f5de4747b5feb0a5669b54df46610f4d0143",
+ "committed_normalized_churn": 0.007619047619047619,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "0f4eae3c1eab25f6e3d101484e20f5de4747b5feb0a5669b54df46610f4d0143",
+ "current_selected_count": 30,
+ "dwell_total": 1042,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.352842198495637e-07,
+ "last_committed_normalized_gap": 0.1259176880121231,
+ "last_committed_score_gap": 1.1776882047342951e-07,
+ "last_cutoff_score_margin": 1.1776882047342951e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.352842198495637e-07,
+ "last_raw_normalized_gap": 0.1259176880121231,
+ "last_raw_score_gap": 1.1776882047342951e-07,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "0f4eae3c1eab25f6e3d101484e20f5de4747b5feb0a5669b54df46610f4d0143",
+ "raw_normalized_churn": 0.04,
+ "raw_xor_churn_total": 84,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 32,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "639e9e08c748a99ab424fdb83a647bff357d7f5076eb8616cf49a873341d68d4",
+ "committed_normalized_churn": 0.014746543778801843,
+ "committed_xor_churn_total": 64,
+ "confirmation_two": true,
+ "current_mask_sha256": "639e9e08c748a99ab424fdb83a647bff357d7f5076eb8616cf49a873341d68d4",
+ "current_selected_count": 62,
+ "dwell_total": 2138,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.19758157729666e-08,
+ "last_committed_normalized_gap": -0.3766595721244812,
+ "last_committed_score_gap": -1.9321699795682434e-08,
+ "last_cutoff_score_margin": 1.6755556941916439e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.422413996645446e-08,
+ "last_raw_normalized_gap": 0.048958297818899155,
+ "last_raw_score_gap": 1.6755556941916439e-09,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "d4d567306512b00e10dbab06a9b5255317e58230f109986af74716ec5f9511e9",
+ "raw_normalized_churn": 0.0695852534562212,
+ "raw_xor_churn_total": 302,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 19,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c03360d1b205f0ed801c5a629ef67828e9fd88f1572e621d28994462aeb4bba4",
+ "committed_normalized_churn": 0.010052910052910053,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_mask_sha256": "c03360d1b205f0ed801c5a629ef67828e9fd88f1572e621d28994462aeb4bba4",
+ "current_selected_count": 54,
+ "dwell_total": 1871,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1212312855946038e-08,
+ "last_committed_normalized_gap": -0.695751428604126,
+ "last_committed_score_gap": -2.5640163769935498e-08,
+ "last_cutoff_score_margin": 9.285752611276621e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.0216916968583973e-08,
+ "last_raw_normalized_gap": 0.3073031008243561,
+ "last_raw_score_gap": 9.285752611276621e-09,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "c52611eef026afb158c05c265cdb539d811686b17fee48b7db309fc5ddb991c9",
+ "raw_normalized_churn": 0.059788359788359786,
+ "raw_xor_churn_total": 226,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4afeb0fab53b120665b490e6c78aed6ea3d767a3c394a03101eca4c5603a248f",
+ "committed_normalized_churn": 0.0006349206349206349,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "4afeb0fab53b120665b490e6c78aed6ea3d767a3c394a03101eca4c5603a248f",
+ "current_selected_count": 45,
+ "dwell_total": 1574,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.038581214947044e-06,
+ "last_committed_normalized_gap": 0.566250741481781,
+ "last_committed_score_gap": 1.1543481832632096e-06,
+ "last_cutoff_score_margin": 1.1543481832632096e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.038581214947044e-06,
+ "last_raw_normalized_gap": 0.566250741481781,
+ "last_raw_score_gap": 1.1543481832632096e-06,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "4afeb0fab53b120665b490e6c78aed6ea3d767a3c394a03101eca4c5603a248f",
+ "raw_normalized_churn": 0.0044444444444444444,
+ "raw_xor_churn_total": 14,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d1f80e085042fb71aeabc4b2b32260458d0a74f4aa3cd8b69ea75d04b0ac4a2b",
+ "committed_normalized_churn": 0.0010582010582010583,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "d1f80e085042fb71aeabc4b2b32260458d0a74f4aa3cd8b69ea75d04b0ac4a2b",
+ "current_selected_count": 27,
+ "dwell_total": 944,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1116670723131392e-06,
+ "last_committed_normalized_gap": 0.7677232623100281,
+ "last_committed_score_gap": 1.6211758975259727e-06,
+ "last_cutoff_score_margin": 1.6211758975259727e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1116670723131392e-06,
+ "last_raw_normalized_gap": 0.7677232623100281,
+ "last_raw_score_gap": 1.6211758975259727e-06,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "d1f80e085042fb71aeabc4b2b32260458d0a74f4aa3cd8b69ea75d04b0ac4a2b",
+ "raw_normalized_churn": 0.014814814814814815,
+ "raw_xor_churn_total": 28,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.4634573239600286e-05,
+ "last_committed_normalized_gap": 0.7226845622062683,
+ "last_committed_score_gap": 2.502987081243191e-05,
+ "last_cutoff_score_margin": 2.502987081243191e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.4634573239600286e-05,
+ "last_raw_normalized_gap": 0.7226845622062683,
+ "last_raw_score_gap": 2.502987081243191e-05,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "raw_normalized_churn": 0.00816326530612245,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "750f874c45da9a09629d79ea89eda5c0370a0973711d7851516e4a66e9054408",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "750f874c45da9a09629d79ea89eda5c0370a0973711d7851516e4a66e9054408",
+ "current_selected_count": 9,
+ "dwell_total": 315,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.06349180493271e-06,
+ "last_committed_normalized_gap": -0.1448672115802765,
+ "last_committed_score_gap": -1.3660283002536744e-06,
+ "last_cutoff_score_margin": 1.3660283002536744e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.429520105186384e-06,
+ "last_raw_normalized_gap": 0.1448672115802765,
+ "last_raw_score_gap": 1.3660283002536744e-06,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "906558b120cc04590e36da06c67b5c766139e4eede40471e78c199051624b91a",
+ "raw_normalized_churn": 0.009523809523809525,
+ "raw_xor_churn_total": 6,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.771991628629621e-05,
+ "last_committed_normalized_gap": 0.37024709582328796,
+ "last_committed_score_gap": 6.560747351613827e-06,
+ "last_cutoff_score_margin": 6.560747351613827e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.771991628629621e-05,
+ "last_raw_normalized_gap": 0.37024709582328796,
+ "last_raw_score_gap": 6.560747351613827e-06,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e3dc8eec1ccec9a152d39c9dc8f9f6c018789019b021e995ae07004a67ca7e8a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "e3dc8eec1ccec9a152d39c9dc8f9f6c018789019b021e995ae07004a67ca7e8a",
+ "current_selected_count": 55,
+ "dwell_total": 1925,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.7335152569539787e-07,
+ "last_committed_normalized_gap": 0.02210969291627407,
+ "last_committed_score_gap": 8.254687600128818e-09,
+ "last_cutoff_score_margin": 8.254687600128818e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.7335152569539787e-07,
+ "last_raw_normalized_gap": 0.02210969291627407,
+ "last_raw_score_gap": 8.254687600128818e-09,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "e3dc8eec1ccec9a152d39c9dc8f9f6c018789019b021e995ae07004a67ca7e8a",
+ "raw_normalized_churn": 0.001038961038961039,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ }
+ ],
+ "task_id": 920
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 133,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f9a9ae2f424fa0ea1a8fe0d51a22c69800abdc9f3dff764e387eb23617839222",
+ "committed_normalized_churn": 0.0027958797561488335,
+ "committed_xor_churn_total": 266,
+ "confirmation_two": true,
+ "current_mask_sha256": "f9a9ae2f424fa0ea1a8fe0d51a22c69800abdc9f3dff764e387eb23617839222",
+ "current_selected_count": 355,
+ "dwell_total": 47437,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6619952081242673e-09,
+ "last_committed_normalized_gap": -0.8820701241493225,
+ "last_committed_score_gap": -1.2431086382491685e-08,
+ "last_cutoff_score_margin": 4.524185470700104e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.177240218287807e-09,
+ "last_raw_normalized_gap": 0.05532655864953995,
+ "last_raw_score_gap": 4.524185470700104e-10,
+ "layer_index": 0,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "c044d4bfcec6752f230a07ab41ec839888434c32af18e01ea20672b8fc37a913",
+ "raw_normalized_churn": 0.025919697288206853,
+ "raw_xor_churn_total": 2466,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 927,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "62ea8d447373f61f32f9de2b55b55ad3a85a4f14215bdd6bbb5d0969fef85d02",
+ "committed_normalized_churn": 0.018205027494108406,
+ "committed_xor_churn_total": 1854,
+ "confirmation_two": true,
+ "current_mask_sha256": "62ea8d447373f61f32f9de2b55b55ad3a85a4f14215bdd6bbb5d0969fef85d02",
+ "current_selected_count": 380,
+ "dwell_total": 49993,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.1930549870828884e-10,
+ "last_committed_normalized_gap": -0.9905545711517334,
+ "last_committed_score_gap": -3.348615962295298e-08,
+ "last_cutoff_score_margin": 4.314326673693358e-12,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 376,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.4536598025880494e-09,
+ "last_raw_normalized_gap": 0.0012492042733356357,
+ "last_raw_score_gap": 4.314326673693358e-12,
+ "layer_index": 1,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "dd98a0ec5c38ada0972205be50c48617744f9a241b9648e132c12f89ed1b9894",
+ "raw_normalized_churn": 0.12344854673998429,
+ "raw_xor_churn_total": 12572,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 244,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fb8fad4ad7f07ee0d971639c8d931ab2b42a8bc7ade83f3ae89addb3579550e6",
+ "committed_normalized_churn": 0.006769128336015092,
+ "committed_xor_churn_total": 488,
+ "confirmation_two": true,
+ "current_mask_sha256": "fb8fad4ad7f07ee0d971639c8d931ab2b42a8bc7ade83f3ae89addb3579550e6",
+ "current_selected_count": 269,
+ "dwell_total": 35802,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7491456061335953e-09,
+ "last_committed_normalized_gap": -0.9374240636825562,
+ "last_committed_score_gap": -2.6203220926390713e-08,
+ "last_cutoff_score_margin": 3.0218627600220316e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 268,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.2496785524501774e-09,
+ "last_raw_normalized_gap": 0.04835228994488716,
+ "last_raw_score_gap": 3.0218627600220316e-10,
+ "layer_index": 2,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "1fe7d67c02bf3efca0535e587265fd6cecaedfcf9b2b190f9320540d260bf772",
+ "raw_normalized_churn": 0.06022859679298674,
+ "raw_xor_churn_total": 4342,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 19,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "90ac9d48cbb5627f0dff20acadd767c20af110adae58ae5ce09b8f483e3d746b",
+ "committed_normalized_churn": 0.0007921287417660302,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_mask_sha256": "90ac9d48cbb5627f0dff20acadd767c20af110adae58ae5ce09b8f483e3d746b",
+ "current_selected_count": 179,
+ "dwell_total": 23967,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.361179187142625e-07,
+ "last_committed_normalized_gap": -0.5164521336555481,
+ "last_committed_score_gap": -1.45380411709084e-07,
+ "last_cutoff_score_margin": 2.672972243544791e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7436082089261618e-07,
+ "last_raw_normalized_gap": 0.1533011943101883,
+ "last_raw_score_gap": 2.672972243544791e-08,
+ "layer_index": 4,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "61256fa192c49fa2947edec36f9160ac1200c1b06ead45770790e0a36ace8a74",
+ "raw_normalized_churn": 0.010964729425498207,
+ "raw_xor_churn_total": 526,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 29,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "db5f165ecffdf2d33039f1483fae8213cf045f0b42c58cacc6c9cea3de68469a",
+ "committed_normalized_churn": 0.0011698265429608713,
+ "committed_xor_churn_total": 58,
+ "confirmation_two": true,
+ "current_mask_sha256": "db5f165ecffdf2d33039f1483fae8213cf045f0b42c58cacc6c9cea3de68469a",
+ "current_selected_count": 185,
+ "dwell_total": 24761,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5519656670903714e-08,
+ "last_committed_normalized_gap": -0.8455042243003845,
+ "last_committed_score_gap": -8.493397274378367e-08,
+ "last_cutoff_score_margin": 5.486207044214098e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.719870716485275e-08,
+ "last_raw_normalized_gap": 0.011623638682067394,
+ "last_raw_score_gap": 5.486207044214098e-10,
+ "layer_index": 5,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "d9ef534424d589a948134af45762eccfcfd793f4d7c96b5e944af6dad3a33988",
+ "raw_normalized_churn": 0.010609116579265833,
+ "raw_xor_churn_total": 526,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 122,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3d8412d9bb19d8dec264056f84783c0866504b277198f8c7293264f58d854a3b",
+ "committed_normalized_churn": 0.00867093105899076,
+ "committed_xor_churn_total": 244,
+ "confirmation_two": true,
+ "current_mask_sha256": "3d8412d9bb19d8dec264056f84783c0866504b277198f8c7293264f58d854a3b",
+ "current_selected_count": 105,
+ "dwell_total": 13948,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7177658406808405e-08,
+ "last_committed_normalized_gap": -0.356836199760437,
+ "last_committed_score_gap": -9.53040313333986e-09,
+ "last_cutoff_score_margin": 8.486065183888059e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 101,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9354333247179056e-08,
+ "last_raw_normalized_gap": 0.04384581372141838,
+ "last_raw_score_gap": 8.486065183888059e-10,
+ "layer_index": 6,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "d3985db2136be92995756939ea9d5aa7751a4fb89a9f628a91b6577eb7131e8b",
+ "raw_normalized_churn": 0.05906183368869936,
+ "raw_xor_churn_total": 1662,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c935352c0581d29fc6e0a9be4320f6eb0b6f5098a6aaff19bf5d18dc8595700d",
+ "committed_normalized_churn": 0.0010261194029850746,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "c935352c0581d29fc6e0a9be4320f6eb0b6f5098a6aaff19bf5d18dc8595700d",
+ "current_selected_count": 80,
+ "dwell_total": 10709,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.148098398104594e-08,
+ "last_committed_normalized_gap": -0.4767281115055084,
+ "last_committed_score_gap": -3.7791348717064466e-08,
+ "last_cutoff_score_margin": 4.18631174170514e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.546831343712256e-08,
+ "last_raw_normalized_gap": 0.06394409388303757,
+ "last_raw_score_gap": 4.18631174170514e-09,
+ "layer_index": 8,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "99ad8274023a6f3321e22eefd3e202d46e890b48c2bcdbc258250bb688f74bc0",
+ "raw_normalized_churn": 0.007649253731343284,
+ "raw_xor_churn_total": 164,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 25,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f9ff28956e40e720caac7f7a526291de4d1b5f31d64eb968823a99914de2771f",
+ "committed_normalized_churn": 0.0043387712599791736,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_mask_sha256": "f9ff28956e40e720caac7f7a526291de4d1b5f31d64eb968823a99914de2771f",
+ "current_selected_count": 43,
+ "dwell_total": 5737,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.478139897263645e-08,
+ "last_committed_normalized_gap": -0.6952144503593445,
+ "last_committed_score_gap": -1.2495610235419008e-07,
+ "last_cutoff_score_margin": 4.2801318045349035e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.924866617438965e-08,
+ "last_raw_normalized_gap": 0.04312533140182495,
+ "last_raw_score_gap": 4.2801318045349035e-09,
+ "layer_index": 9,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "3f4c0bfe4f82c775f65615897f2c9c620c4bd9810fd991ac2bb131613355b15f",
+ "raw_normalized_churn": 0.026379729260673376,
+ "raw_xor_churn_total": 304,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 101,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "49d1ce48b84547beae77904b09a3862847d98b849997a15335bb5963eae16350",
+ "committed_normalized_churn": 0.008972992181947406,
+ "committed_xor_churn_total": 202,
+ "confirmation_two": true,
+ "current_mask_sha256": "49d1ce48b84547beae77904b09a3862847d98b849997a15335bb5963eae16350",
+ "current_selected_count": 84,
+ "dwell_total": 11155,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.093127945585366e-09,
+ "last_committed_normalized_gap": -0.5676195025444031,
+ "last_committed_score_gap": -1.0624477297938029e-08,
+ "last_cutoff_score_margin": 1.7792078921274879e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 82,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0342994016809826e-08,
+ "last_raw_normalized_gap": 0.01720205880701542,
+ "last_raw_score_gap": 1.7792078921274879e-10,
+ "layer_index": 10,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "60896003962a408c55fb6efbb62d765402e700416fcaf5a7444c2ef365404639",
+ "raw_normalized_churn": 0.05881307746979389,
+ "raw_xor_churn_total": 1324,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 16,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2fb460348b976f5e617fd41d06e29a392f88ec45c620075786114fe727d8e226",
+ "committed_normalized_churn": 0.003980099502487562,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": true,
+ "current_mask_sha256": "2fb460348b976f5e617fd41d06e29a392f88ec45c620075786114fe727d8e226",
+ "current_selected_count": 30,
+ "dwell_total": 4004,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2041454056088696e-06,
+ "last_committed_normalized_gap": 0.5270116925239563,
+ "last_committed_score_gap": 6.345986776068457e-07,
+ "last_cutoff_score_margin": 6.345986776068457e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2041454056088696e-06,
+ "last_raw_normalized_gap": 0.5270116925239563,
+ "last_raw_score_gap": 6.345986776068457e-07,
+ "layer_index": 12,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "2fb460348b976f5e617fd41d06e29a392f88ec45c620075786114fe727d8e226",
+ "raw_normalized_churn": 0.03233830845771144,
+ "raw_xor_churn_total": 260,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 94,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d23fe00175d287e382c8a15537807d129ba8fb3ed692889b6f4dba433e5f3810",
+ "committed_normalized_churn": 0.011314395763119885,
+ "committed_xor_churn_total": 188,
+ "confirmation_two": true,
+ "current_mask_sha256": "d23fe00175d287e382c8a15537807d129ba8fb3ed692889b6f4dba433e5f3810",
+ "current_selected_count": 62,
+ "dwell_total": 8214,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2507359592461853e-08,
+ "last_committed_normalized_gap": -0.7755441069602966,
+ "last_committed_score_gap": -4.32156603835665e-08,
+ "last_cutoff_score_margin": 1.2945733374181145e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 58,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9460939526538823e-08,
+ "last_raw_normalized_gap": 0.0066521624103188515,
+ "last_raw_score_gap": 1.2945733374181145e-10,
+ "layer_index": 13,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "f637a95844f416840aa39d7206f46ddf1eda6958f9432e78dc5ff067d4edfd48",
+ "raw_normalized_churn": 0.0784785748675975,
+ "raw_xor_churn_total": 1304,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ee8e3c250305562a7151e7d4b6c9a7c4ebf5c755430310a82a591326d212269b",
+ "committed_normalized_churn": 0.004284134881149806,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "ee8e3c250305562a7151e7d4b6c9a7c4ebf5c755430310a82a591326d212269b",
+ "current_selected_count": 54,
+ "dwell_total": 7205,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.031680246261658e-08,
+ "last_committed_normalized_gap": -0.288496732711792,
+ "last_committed_score_gap": -8.237954318701668e-09,
+ "last_cutoff_score_margin": 6.81286138615178e-11,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.772733331823929e-08,
+ "last_raw_normalized_gap": 0.002457092283293605,
+ "last_raw_score_gap": 6.81286138615178e-11,
+ "layer_index": 14,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "9dee65a1566acc1bba2ca08b3c45564919ae087cb9e4cfe360bd084c6792269c",
+ "raw_normalized_churn": 0.04588170259812051,
+ "raw_xor_churn_total": 664,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 16,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7059ef2229f86d82ca5aa000152ad589d7189de0274584133f5164de5745526e",
+ "committed_normalized_churn": 0.0026533996683250414,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": true,
+ "current_mask_sha256": "7059ef2229f86d82ca5aa000152ad589d7189de0274584133f5164de5745526e",
+ "current_selected_count": 45,
+ "dwell_total": 6014,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9054052674837294e-07,
+ "last_committed_normalized_gap": 0.13166826963424683,
+ "last_committed_score_gap": 3.8254967194006895e-08,
+ "last_cutoff_score_margin": 3.8254967194006895e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9054052674837294e-07,
+ "last_raw_normalized_gap": 0.13166826963424683,
+ "last_raw_score_gap": 3.8254967194006895e-08,
+ "layer_index": 16,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "7059ef2229f86d82ca5aa000152ad589d7189de0274584133f5164de5745526e",
+ "raw_normalized_churn": 0.020895522388059702,
+ "raw_xor_churn_total": 252,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8e787ea2a3baab33c885c6386dc2fd2e12de01d2ec44d4af2b440b51176fbdbe",
+ "committed_normalized_churn": 0.0019347705914870095,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "8e787ea2a3baab33c885c6386dc2fd2e12de01d2ec44d4af2b440b51176fbdbe",
+ "current_selected_count": 27,
+ "dwell_total": 3611,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.5732684712857e-07,
+ "last_committed_normalized_gap": 0.5345708727836609,
+ "last_committed_score_gap": 5.117590262671001e-07,
+ "last_cutoff_score_margin": 5.117590262671001e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.5732684712857e-07,
+ "last_raw_normalized_gap": 0.5345708727836609,
+ "last_raw_score_gap": 5.117590262671001e-07,
+ "layer_index": 17,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "8e787ea2a3baab33c885c6386dc2fd2e12de01d2ec44d4af2b440b51176fbdbe",
+ "raw_normalized_churn": 0.01630735212824765,
+ "raw_xor_churn_total": 118,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d065310e417ed8ba830ab4fc1e29c37ac948c1567cbb1d6efb36a371267c4824",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "d065310e417ed8ba830ab4fc1e29c37ac948c1567cbb1d6efb36a371267c4824",
+ "current_selected_count": 7,
+ "dwell_total": 938,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.94460652791895e-06,
+ "last_committed_normalized_gap": 0.06569924205541611,
+ "last_committed_score_gap": 3.905561243300326e-07,
+ "last_cutoff_score_margin": 3.905561243300326e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.94460652791895e-06,
+ "last_raw_normalized_gap": 0.06569924205541611,
+ "last_raw_score_gap": 3.905561243300326e-07,
+ "layer_index": 18,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d065310e417ed8ba830ab4fc1e29c37ac948c1567cbb1d6efb36a371267c4824",
+ "raw_normalized_churn": 0.005330490405117271,
+ "raw_xor_churn_total": 10,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "committed_normalized_churn": 0.0024875621890547263,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "current_selected_count": 9,
+ "dwell_total": 1203,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.467236860567937e-06,
+ "last_committed_normalized_gap": 0.05282684415578842,
+ "last_committed_score_gap": 2.8881686375825666e-07,
+ "last_cutoff_score_margin": 2.8881686375825666e-07,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.467236860567937e-06,
+ "last_raw_normalized_gap": 0.05282684415578842,
+ "last_raw_score_gap": 2.8881686375825666e-07,
+ "layer_index": 20,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "raw_normalized_churn": 0.03067993366500829,
+ "raw_xor_churn_total": 74,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "04883c87a0f4b42e30df9c653dcfdfeda23785262d25c6ba37fea5c8eb4590cf",
+ "committed_normalized_churn": 0.0021321961620469083,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "04883c87a0f4b42e30df9c653dcfdfeda23785262d25c6ba37fea5c8eb4590cf",
+ "current_selected_count": 7,
+ "dwell_total": 936,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1029434062947985e-05,
+ "last_committed_normalized_gap": 0.9409765601158142,
+ "last_committed_score_gap": 1.0378438673797064e-05,
+ "last_cutoff_score_margin": 1.0378438673797064e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1029434062947985e-05,
+ "last_raw_normalized_gap": 0.9409765601158142,
+ "last_raw_score_gap": 1.0378438673797064e-05,
+ "layer_index": 21,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "04883c87a0f4b42e30df9c653dcfdfeda23785262d25c6ba37fea5c8eb4590cf",
+ "raw_normalized_churn": 0.006396588486140725,
+ "raw_xor_churn_total": 12,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 15,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9ea9fa43428cdd9bec0e548894f00a8ff2ac27498aa436f68ae8b2459e5cf1a6",
+ "committed_normalized_churn": 0.0020352781546811396,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_mask_sha256": "9ea9fa43428cdd9bec0e548894f00a8ff2ac27498aa436f68ae8b2459e5cf1a6",
+ "current_selected_count": 55,
+ "dwell_total": 7355,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3855563452125352e-07,
+ "last_committed_normalized_gap": -0.41040071845054626,
+ "last_committed_score_gap": -9.64440260986521e-08,
+ "last_cutoff_score_margin": 2.5298788841610076e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9442769882971334e-07,
+ "last_raw_normalized_gap": 0.13011926412582397,
+ "last_raw_score_gap": 2.5298788841610076e-08,
+ "layer_index": 22,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "cadadeffefacbf2ee31a52502c5a5549b1292998d66de9070a5793b3c907b6d5",
+ "raw_normalized_churn": 0.012211668928086838,
+ "raw_xor_churn_total": 180,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ }
+ ],
+ "task_id": 771
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 50,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8e5c429c504aae2eac4ea228d115d7f26cf5e27772cfa97f8b117671b702413c",
+ "committed_normalized_churn": 0.003061849357011635,
+ "committed_xor_churn_total": 100,
+ "confirmation_two": true,
+ "current_mask_sha256": "8e5c429c504aae2eac4ea228d115d7f26cf5e27772cfa97f8b117671b702413c",
+ "current_selected_count": 355,
+ "dwell_total": 16280,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.449837442965787e-10,
+ "last_committed_normalized_gap": -0.9996181130409241,
+ "last_committed_score_gap": -1.1646559414657531e-06,
+ "last_cutoff_score_margin": 3.6709568718151786e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 355,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4926184732644288e-08,
+ "last_raw_normalized_gap": 0.024594074115157127,
+ "last_raw_score_gap": 3.6709568718151786e-10,
+ "layer_index": 0,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "a6186ec795e318fdfab258c240c75fe6c1d913f8d5fce5e6d1dd1022c2ad180e",
+ "raw_normalized_churn": 0.019902020820575628,
+ "raw_xor_churn_total": 650,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 329,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "59be71de5e7e1d4500152d7b0ed266ff4fa507115e0cd9b2cf2cf31aa03b40a8",
+ "committed_normalized_churn": 0.018821510297482837,
+ "committed_xor_churn_total": 658,
+ "confirmation_two": true,
+ "current_mask_sha256": "59be71de5e7e1d4500152d7b0ed266ff4fa507115e0cd9b2cf2cf31aa03b40a8",
+ "current_selected_count": 380,
+ "dwell_total": 17151,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0963992908008535e-10,
+ "last_committed_normalized_gap": -0.9755423069000244,
+ "last_committed_score_gap": -4.373197803886342e-09,
+ "last_cutoff_score_margin": 4.912459328210161e-12,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 371,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.202115322371469e-10,
+ "last_raw_normalized_gap": 0.011690444312989712,
+ "last_raw_score_gap": 4.912459328210161e-12,
+ "layer_index": 1,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "48a9a5d079685297830e76dd6a1677a746fb8c35e7dcd3a27ca477e0bf519fff",
+ "raw_normalized_churn": 0.15263157894736842,
+ "raw_xor_churn_total": 5336,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 47,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c26073e9e090d2d3baaed05bb557852ba53282ef8e73ebbe27d4ade62985c099",
+ "committed_normalized_churn": 0.0037982867302408276,
+ "committed_xor_churn_total": 94,
+ "confirmation_two": true,
+ "current_mask_sha256": "c26073e9e090d2d3baaed05bb557852ba53282ef8e73ebbe27d4ade62985c099",
+ "current_selected_count": 269,
+ "dwell_total": 12327,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0671794559158343e-09,
+ "last_committed_normalized_gap": -0.9021041393280029,
+ "last_committed_score_gap": -9.8339887344423e-09,
+ "last_cutoff_score_margin": 1.400546345564635e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 268,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.0555267205301107e-09,
+ "last_raw_normalized_gap": 0.045836493372917175,
+ "last_raw_score_gap": 1.400546345564635e-10,
+ "layer_index": 2,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "8167983ccb6a8b9215a2b5343ea1b606174d20f6c93f1f9750dc9c0644a668ff",
+ "raw_normalized_churn": 0.03297236140294165,
+ "raw_xor_churn_total": 816,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "dce3cb14242403bfe3d0f57ff82292d56508eed0e375d24d66502a3b068a7a2d",
+ "committed_normalized_churn": 0.0013359242166626185,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "dce3cb14242403bfe3d0f57ff82292d56508eed0e375d24d66502a3b068a7a2d",
+ "current_selected_count": 179,
+ "dwell_total": 8223,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9776654741908715e-07,
+ "last_committed_normalized_gap": 0.49714377522468567,
+ "last_committed_score_gap": 1.4803278247654816e-07,
+ "last_cutoff_score_margin": 1.4803278247654816e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9776654741908715e-07,
+ "last_raw_normalized_gap": 0.49714377522468567,
+ "last_raw_score_gap": 1.4803278247654816e-07,
+ "layer_index": 4,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "dce3cb14242403bfe3d0f57ff82292d56508eed0e375d24d66502a3b068a7a2d",
+ "raw_normalized_churn": 0.009472917172698566,
+ "raw_xor_churn_total": 156,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 13,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e41c4390701d14dc2c787a7d234883bf7bf442ce867b04da3d47184a204d764f",
+ "committed_normalized_churn": 0.001527614571092832,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_mask_sha256": "e41c4390701d14dc2c787a7d234883bf7bf442ce867b04da3d47184a204d764f",
+ "current_selected_count": 185,
+ "dwell_total": 8497,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3008355281840522e-08,
+ "last_committed_normalized_gap": -0.6837520003318787,
+ "last_committed_score_gap": -2.812504540372629e-08,
+ "last_cutoff_score_margin": 6.993058576654221e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.113340068556681e-08,
+ "last_raw_normalized_gap": 0.17000925540924072,
+ "last_raw_score_gap": 6.993058576654221e-09,
+ "layer_index": 5,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "96c66a156ebc2d5796f2607a7ea62485331e93d9942d6cb3b76a1f8af31b57fe",
+ "raw_normalized_churn": 0.00881316098707403,
+ "raw_xor_churn_total": 150,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 34,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a3700cb3f0633a2a215205c4b5527b649c637b057957946cf46956cb39e28db4",
+ "committed_normalized_churn": 0.007039337474120083,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_mask_sha256": "a3700cb3f0633a2a215205c4b5527b649c637b057957946cf46956cb39e28db4",
+ "current_selected_count": 105,
+ "dwell_total": 4796,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.030543898636552e-09,
+ "last_committed_normalized_gap": -0.8758398294448853,
+ "last_committed_score_gap": -2.8431909271375844e-08,
+ "last_cutoff_score_margin": 2.803126619710383e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7529107054770066e-08,
+ "last_raw_normalized_gap": 0.015991268679499626,
+ "last_raw_score_gap": 2.803126619710383e-10,
+ "layer_index": 6,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "91b4659cc175101faad970335296fc0432ba05cfbfba8f5b806f1f498647d69e",
+ "raw_normalized_churn": 0.04927536231884058,
+ "raw_xor_churn_total": 476,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9c0516fbce151a6317bfdaa1834b1b19f9b3f1f617cf49620fee1f638376e831",
+ "committed_normalized_churn": 0.001358695652173913,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "9c0516fbce151a6317bfdaa1834b1b19f9b3f1f617cf49620fee1f638376e831",
+ "current_selected_count": 80,
+ "dwell_total": 3675,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.969579166427593e-08,
+ "last_committed_normalized_gap": -0.8767987489700317,
+ "last_committed_score_gap": -1.401710392201494e-07,
+ "last_cutoff_score_margin": 3.1070833017565747e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2306600183364935e-07,
+ "last_raw_normalized_gap": 0.2524729073047638,
+ "last_raw_score_gap": 3.1070833017565747e-08,
+ "layer_index": 8,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "e2d9c195be5952b2b3502fb0c265e2243cc02b43f4cc4952629bc89ffdf30943",
+ "raw_normalized_churn": 0.015217391304347827,
+ "raw_xor_churn_total": 112,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fddfec55dd63c620acbecf7b7f85edcbb565eec1aedf915a436775ab9fd43c23",
+ "committed_normalized_churn": 0.004044489383215369,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "fddfec55dd63c620acbecf7b7f85edcbb565eec1aedf915a436775ab9fd43c23",
+ "current_selected_count": 43,
+ "dwell_total": 1970,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.220899706477212e-08,
+ "last_committed_normalized_gap": -0.08557561039924622,
+ "last_committed_score_gap": -5.82177506203152e-09,
+ "last_cutoff_score_margin": 4.190937374914938e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.639993443968706e-08,
+ "last_raw_normalized_gap": 0.06311658769845963,
+ "last_raw_score_gap": 4.190937374914938e-09,
+ "layer_index": 9,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "f06b8a2c03027901cf1abc81705021846dcc3ae8f29c4e96035053c7bc35738f",
+ "raw_normalized_churn": 0.024266936299292215,
+ "raw_xor_churn_total": 96,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 36,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2fffe79a2147fcef641a5eb6c04cd6ef00a8eed023bf33139b09bf61ded917ac",
+ "committed_normalized_churn": 0.009316770186335404,
+ "committed_xor_churn_total": 72,
+ "confirmation_two": true,
+ "current_mask_sha256": "2fffe79a2147fcef641a5eb6c04cd6ef00a8eed023bf33139b09bf61ded917ac",
+ "current_selected_count": 84,
+ "dwell_total": 3828,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.225087498113453e-08,
+ "last_committed_normalized_gap": -0.5136226415634155,
+ "last_committed_score_gap": -1.293712958982951e-08,
+ "last_cutoff_score_margin": 6.221965165309484e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4045017593389275e-08,
+ "last_raw_normalized_gap": 0.04430015757679939,
+ "last_raw_score_gap": 6.221965165309484e-10,
+ "layer_index": 10,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "5685911432cfcd3e2cd08157cb63ff015dbf97822eccc8667fc7795d42751b9d",
+ "raw_normalized_churn": 0.06262939958592133,
+ "raw_xor_churn_total": 484,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f50fb68d7526e2d0a0adbdee745b6e4477155d02f4af3b35294e4dda0617af92",
+ "committed_normalized_churn": 0.005072463768115942,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "f50fb68d7526e2d0a0adbdee745b6e4477155d02f4af3b35294e4dda0617af92",
+ "current_selected_count": 30,
+ "dwell_total": 1373,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.813718869125296e-07,
+ "last_committed_normalized_gap": -0.05314946547150612,
+ "last_committed_score_gap": -3.824737859758898e-08,
+ "last_cutoff_score_margin": 3.824737859758898e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.196192655101186e-07,
+ "last_raw_normalized_gap": 0.05314946547150612,
+ "last_raw_score_gap": 3.824737859758898e-08,
+ "layer_index": 12,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "e78a675cfa008caa50971d44d631b2a06cfcf86943ef88330dd8bcdae9a2add1",
+ "raw_normalized_churn": 0.0463768115942029,
+ "raw_xor_churn_total": 128,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 42,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "081b6b850a4672e07a4eab2fb8203fef8a60783c970028cf3924888913b9cfd4",
+ "committed_normalized_churn": 0.014726507713884993,
+ "committed_xor_churn_total": 84,
+ "confirmation_two": true,
+ "current_mask_sha256": "081b6b850a4672e07a4eab2fb8203fef8a60783c970028cf3924888913b9cfd4",
+ "current_selected_count": 62,
+ "dwell_total": 2810,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.944508327919266e-09,
+ "last_committed_normalized_gap": -0.4623658359050751,
+ "last_committed_score_gap": -8.55228510232564e-09,
+ "last_cutoff_score_margin": 5.049018980685105e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 60,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3329212400492452e-08,
+ "last_raw_normalized_gap": 0.037879351526498795,
+ "last_raw_score_gap": 5.049018980685105e-10,
+ "layer_index": 13,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "95c620cfea0f56bddcbb300ea92eb60d5e7d45ecc047acd756086426879ecd68",
+ "raw_normalized_churn": 0.06276297335203367,
+ "raw_xor_churn_total": 358,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8681a80b38ceb34671baf3206856abe7b5295ed78ed5575ec61139eec66e86ee",
+ "committed_normalized_churn": 0.0036231884057971015,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "8681a80b38ceb34671baf3206856abe7b5295ed78ed5575ec61139eec66e86ee",
+ "current_selected_count": 54,
+ "dwell_total": 2475,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.759509565297691e-10,
+ "last_committed_normalized_gap": -0.9910925030708313,
+ "last_committed_score_gap": -3.070363518986596e-08,
+ "last_cutoff_score_margin": 1.056292830980965e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.992548526175142e-08,
+ "last_raw_normalized_gap": 0.005301215220242739,
+ "last_raw_score_gap": 1.056292830980965e-10,
+ "layer_index": 14,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "aee565d0245d675578ca4bb371d9a0f51cb60bb9d8c754d352a4c1b18bfe674e",
+ "raw_normalized_churn": 0.0430756843800322,
+ "raw_xor_churn_total": 214,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6014e4dbc1e699e1cb2fca136e51fcb3c8af7f7d72066c2c096ca1b0d243ff80",
+ "committed_normalized_churn": 0.0004830917874396135,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "6014e4dbc1e699e1cb2fca136e51fcb3c8af7f7d72066c2c096ca1b0d243ff80",
+ "current_selected_count": 45,
+ "dwell_total": 2069,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6566253862038138e-06,
+ "last_committed_normalized_gap": 0.5552512407302856,
+ "last_committed_score_gap": 9.198433303936326e-07,
+ "last_cutoff_score_margin": 9.198433303936326e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6566253862038138e-06,
+ "last_raw_normalized_gap": 0.5552512407302856,
+ "last_raw_score_gap": 9.198433303936326e-07,
+ "layer_index": 16,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "6014e4dbc1e699e1cb2fca136e51fcb3c8af7f7d72066c2c096ca1b0d243ff80",
+ "raw_normalized_churn": 0.0024154589371980675,
+ "raw_xor_churn_total": 10,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "aba1f6336dd6b022f669c3aaaebcfc99b82482418c92e5abcd3e9e4bf33bff6b",
+ "committed_normalized_churn": 0.0008051529790660225,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "aba1f6336dd6b022f669c3aaaebcfc99b82482418c92e5abcd3e9e4bf33bff6b",
+ "current_selected_count": 27,
+ "dwell_total": 1241,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1119617485965136e-06,
+ "last_committed_normalized_gap": 0.7897310853004456,
+ "last_committed_score_gap": 1.6678818610671442e-06,
+ "last_cutoff_score_margin": 1.6678818610671442e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1119617485965136e-06,
+ "last_raw_normalized_gap": 0.7897310853004456,
+ "last_raw_score_gap": 1.6678818610671442e-06,
+ "layer_index": 17,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "aba1f6336dd6b022f669c3aaaebcfc99b82482418c92e5abcd3e9e4bf33bff6b",
+ "raw_normalized_churn": 0.00644122383252818,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "current_selected_count": 7,
+ "dwell_total": 322,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.392442158656195e-05,
+ "last_committed_normalized_gap": 0.7221270799636841,
+ "last_committed_score_gap": 2.4497743652318604e-05,
+ "last_cutoff_score_margin": 2.4497743652318604e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.392442158656195e-05,
+ "last_raw_normalized_gap": 0.7221270799636841,
+ "last_raw_score_gap": 2.4497743652318604e-05,
+ "layer_index": 18,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "committed_normalized_churn": 0.0024154589371980675,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "current_selected_count": 9,
+ "dwell_total": 413,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2271055058808997e-05,
+ "last_committed_normalized_gap": 0.7154039740562439,
+ "last_committed_score_gap": 1.593280103406869e-05,
+ "last_cutoff_score_margin": 1.593280103406869e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.2271055058808997e-05,
+ "last_raw_normalized_gap": 0.7154039740562439,
+ "last_raw_score_gap": 1.593280103406869e-05,
+ "layer_index": 20,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "raw_normalized_churn": 0.021739130434782608,
+ "raw_xor_churn_total": 18,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "547790e8696634049b18ee3f444d48cf933480889d158b2d85991b93a78bbb70",
+ "committed_normalized_churn": 0.003105590062111801,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "547790e8696634049b18ee3f444d48cf933480889d158b2d85991b93a78bbb70",
+ "current_selected_count": 7,
+ "dwell_total": 321,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.240757956111338e-05,
+ "last_committed_normalized_gap": 0.8926661610603333,
+ "last_committed_score_gap": 1.107582647819072e-05,
+ "last_cutoff_score_margin": 1.107582647819072e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.240757956111338e-05,
+ "last_raw_normalized_gap": 0.8926661610603333,
+ "last_raw_score_gap": 1.107582647819072e-05,
+ "layer_index": 21,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "547790e8696634049b18ee3f444d48cf933480889d158b2d85991b93a78bbb70",
+ "raw_normalized_churn": 0.009316770186335404,
+ "raw_xor_churn_total": 6,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "de9126a5bd0eaffcc9b581ad20e147dcffa8376735c16be2c27db3450ae80118",
+ "committed_normalized_churn": 0.0003952569169960474,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "de9126a5bd0eaffcc9b581ad20e147dcffa8376735c16be2c27db3450ae80118",
+ "current_selected_count": 55,
+ "dwell_total": 2529,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4808817638822802e-07,
+ "last_committed_normalized_gap": 0.3405814468860626,
+ "last_committed_score_gap": 5.0436085530236596e-08,
+ "last_cutoff_score_margin": 5.0436085530236596e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4808817638822802e-07,
+ "last_raw_normalized_gap": 0.3405814468860626,
+ "last_raw_score_gap": 5.0436085530236596e-08,
+ "layer_index": 22,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "de9126a5bd0eaffcc9b581ad20e147dcffa8376735c16be2c27db3450ae80118",
+ "raw_normalized_churn": 0.002766798418972332,
+ "raw_xor_churn_total": 14,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ }
+ ],
+ "task_id": 869
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "24c7a1aa401295e425f16c15d3582fa66e76019a14e7d1280db7a7dfb68550a6",
+ "committed_normalized_churn": 0.002494969818913481,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "24c7a1aa401295e425f16c15d3582fa66e76019a14e7d1280db7a7dfb68550a6",
+ "current_selected_count": 355,
+ "dwell_total": 12394,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.435934038340747e-08,
+ "last_committed_normalized_gap": -0.38790035247802734,
+ "last_committed_score_gap": -9.099814235469239e-09,
+ "last_cutoff_score_margin": 1.3924825736921775e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3231557122471713e-08,
+ "last_raw_normalized_gap": 0.059939268976449966,
+ "last_raw_score_gap": 1.3924825736921775e-09,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "8155c5f4e5911fc0b55bb1dd319eb6feeb5782f570881c0a2308a0e6cf311ec0",
+ "raw_normalized_churn": 0.015935613682092554,
+ "raw_xor_churn_total": 396,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 243,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a11036392f0cf12df01c69f16dd13a77ef724ae8d955aca83c226d1ae9cbb595",
+ "committed_normalized_churn": 0.018270676691729323,
+ "committed_xor_churn_total": 486,
+ "confirmation_two": true,
+ "current_mask_sha256": "a11036392f0cf12df01c69f16dd13a77ef724ae8d955aca83c226d1ae9cbb595",
+ "current_selected_count": 380,
+ "dwell_total": 13057,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.426302492253285e-10,
+ "last_committed_normalized_gap": -0.9741989970207214,
+ "last_committed_score_gap": -9.161261971257773e-09,
+ "last_cutoff_score_margin": 2.5142110615661295e-12,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 377,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.018821162636414e-10,
+ "last_raw_normalized_gap": 0.003135387320071459,
+ "last_raw_score_gap": 2.5142110615661295e-12,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "a0ee609e7e6848c80ff91262c67a03fa648ec5e156ca6d615c20a4fea45090f8",
+ "raw_normalized_churn": 0.13526315789473684,
+ "raw_xor_churn_total": 3598,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 78,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fa8e3a965efe0892b9f5dda83ddfae87a6d98f3f2eefa1fa0ddd98fe065af488",
+ "committed_normalized_churn": 0.008284652150823154,
+ "committed_xor_churn_total": 156,
+ "confirmation_two": true,
+ "current_mask_sha256": "fa8e3a965efe0892b9f5dda83ddfae87a6d98f3f2eefa1fa0ddd98fe065af488",
+ "current_selected_count": 269,
+ "dwell_total": 9337,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4007748294631028e-09,
+ "last_committed_normalized_gap": -0.9444530606269836,
+ "last_committed_score_gap": -2.38170922983727e-08,
+ "last_cutoff_score_margin": 8.143574703467493e-11,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 269,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.1317353982606164e-09,
+ "last_raw_normalized_gap": 0.019709816202521324,
+ "last_raw_score_gap": 8.143574703467493e-11,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "9f74c578bd1a0a41edfab7cbdf90e0965324660584759874c588a5054ac92aba",
+ "raw_normalized_churn": 0.060754115772703135,
+ "raw_xor_churn_total": 1144,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1c37eb906d19916d27e5d029c91662f0d501610d3ee7dddcc75a33778832b79a",
+ "committed_normalized_churn": 0.0015961691939345571,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "1c37eb906d19916d27e5d029c91662f0d501610d3ee7dddcc75a33778832b79a",
+ "current_selected_count": 179,
+ "dwell_total": 6255,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.769048990103329e-07,
+ "last_committed_normalized_gap": -0.27431556582450867,
+ "last_committed_score_gap": -1.0467266520208796e-07,
+ "last_cutoff_score_margin": 3.239108536945423e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.921769350905379e-07,
+ "last_raw_normalized_gap": 0.011086120270192623,
+ "last_raw_score_gap": 3.239108536945423e-09,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "7b53e2dde1e6889b19e1c0dd752d52fbda29c14fe03c2f052fbbe6baa2f1ae08",
+ "raw_normalized_churn": 0.013088587390263367,
+ "raw_xor_churn_total": 164,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bd931a940a06e0e8c3643152dbbe068f583044dfec93d5113e9e9286dc2b3cef",
+ "committed_normalized_churn": 0.0012355212355212356,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "bd931a940a06e0e8c3643152dbbe068f583044dfec93d5113e9e9286dc2b3cef",
+ "current_selected_count": 185,
+ "dwell_total": 6467,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3718010666584632e-08,
+ "last_committed_normalized_gap": -0.4518771767616272,
+ "last_committed_score_gap": -1.955333139846971e-08,
+ "last_cutoff_score_margin": 8.030337284026245e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.5737738102170624e-08,
+ "last_raw_normalized_gap": 0.2247018963098526,
+ "last_raw_score_gap": 8.030337284026245e-09,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "1f8d63a1558311dd4c6cbe1aadf801b15ca34758c9cf094fc944f4522a6ff576",
+ "raw_normalized_churn": 0.009884169884169885,
+ "raw_xor_churn_total": 128,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 25,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4472c36b12a96b10344059d5a70602379a9793148a226c4c62b50f8f1b2164ea",
+ "committed_normalized_churn": 0.006802721088435374,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_mask_sha256": "4472c36b12a96b10344059d5a70602379a9793148a226c4c62b50f8f1b2164ea",
+ "current_selected_count": 105,
+ "dwell_total": 3650,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5860451557946362e-08,
+ "last_committed_normalized_gap": 0.004033756908029318,
+ "last_committed_score_gap": 1.0431477903694031e-10,
+ "last_cutoff_score_margin": 1.0431477903694031e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5860451557946362e-08,
+ "last_raw_normalized_gap": 0.004033756908029318,
+ "last_raw_score_gap": 1.0431477903694031e-10,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "4472c36b12a96b10344059d5a70602379a9793148a226c4c62b50f8f1b2164ea",
+ "raw_normalized_churn": 0.052244897959183675,
+ "raw_xor_churn_total": 384,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2c979e836075b7232f4517aadc7d20b93785e780c7347af828a2e97699b617b1",
+ "committed_normalized_churn": 0.0025,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "2c979e836075b7232f4517aadc7d20b93785e780c7347af828a2e97699b617b1",
+ "current_selected_count": 80,
+ "dwell_total": 2793,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.992228117676859e-08,
+ "last_committed_normalized_gap": 0.2743975818157196,
+ "last_committed_score_gap": 2.467445625597975e-08,
+ "last_cutoff_score_margin": 2.467445625597975e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.992228117676859e-08,
+ "last_raw_normalized_gap": 0.2743975818157196,
+ "last_raw_score_gap": 2.467445625597975e-08,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "2c979e836075b7232f4517aadc7d20b93785e780c7347af828a2e97699b617b1",
+ "raw_normalized_churn": 0.016785714285714286,
+ "raw_xor_churn_total": 94,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6f6f421c2e53f851aa8646c76036e948f7f11cb707103c353f409a44d639ff9e",
+ "committed_normalized_churn": 0.00132890365448505,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "6f6f421c2e53f851aa8646c76036e948f7f11cb707103c353f409a44d639ff9e",
+ "current_selected_count": 43,
+ "dwell_total": 1503,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.334516307518243e-08,
+ "last_committed_normalized_gap": 0.29033806920051575,
+ "last_committed_score_gap": 9.681370372049969e-09,
+ "last_cutoff_score_margin": 9.681370372049969e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.334516307518243e-08,
+ "last_raw_normalized_gap": 0.29033806920051575,
+ "last_raw_score_gap": 9.681370372049969e-09,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "6f6f421c2e53f851aa8646c76036e948f7f11cb707103c353f409a44d639ff9e",
+ "raw_normalized_churn": 0.0212624584717608,
+ "raw_xor_churn_total": 64,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 24,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6163fdfc10839b16aecb49eab5e5d8256cc06ad619bb7b145b97eab2bebb2ef7",
+ "committed_normalized_churn": 0.00816326530612245,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_mask_sha256": "6163fdfc10839b16aecb49eab5e5d8256cc06ad619bb7b145b97eab2bebb2ef7",
+ "current_selected_count": 84,
+ "dwell_total": 2916,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1133126420759254e-08,
+ "last_committed_normalized_gap": -0.6912023425102234,
+ "last_committed_score_gap": -2.492001449638792e-08,
+ "last_cutoff_score_margin": 8.994831546260684e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.953031869561528e-08,
+ "last_raw_normalized_gap": 0.046055734157562256,
+ "last_raw_score_gap": 8.994831546260684e-10,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "08d774e1ec34b8889d572e20f0bc2e88cff0d12931f3dc5ba5666de6c84213f7",
+ "raw_normalized_churn": 0.07551020408163266,
+ "raw_xor_churn_total": 444,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "95477129484dd4a8013a2d7b6bb33235a8f19e3489149ba57a9fde3dacde8fea",
+ "committed_normalized_churn": 0.007619047619047619,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "95477129484dd4a8013a2d7b6bb33235a8f19e3489149ba57a9fde3dacde8fea",
+ "current_selected_count": 30,
+ "dwell_total": 1042,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.669626711503952e-07,
+ "last_committed_normalized_gap": 0.42555952072143555,
+ "last_committed_score_gap": 3.263882604187529e-07,
+ "last_cutoff_score_margin": 3.263882604187529e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.669626711503952e-07,
+ "last_raw_normalized_gap": 0.42555952072143555,
+ "last_raw_score_gap": 3.263882604187529e-07,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "95477129484dd4a8013a2d7b6bb33235a8f19e3489149ba57a9fde3dacde8fea",
+ "raw_normalized_churn": 0.03619047619047619,
+ "raw_xor_churn_total": 76,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 22,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "961aa29044d205e0723fb65bfe98ad6cbd45a685df5aa93f47f5d8201b216bfe",
+ "committed_normalized_churn": 0.010138248847926268,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_mask_sha256": "961aa29044d205e0723fb65bfe98ad6cbd45a685df5aa93f47f5d8201b216bfe",
+ "current_selected_count": 62,
+ "dwell_total": 2148,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9304795035045572e-08,
+ "last_committed_normalized_gap": 0.13476571440696716,
+ "last_committed_score_gap": 3.949281790482928e-09,
+ "last_cutoff_score_margin": 3.949281790482928e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9304795035045572e-08,
+ "last_raw_normalized_gap": 0.13476571440696716,
+ "last_raw_score_gap": 3.949281790482928e-09,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "961aa29044d205e0723fb65bfe98ad6cbd45a685df5aa93f47f5d8201b216bfe",
+ "raw_normalized_churn": 0.0815668202764977,
+ "raw_xor_churn_total": 354,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "60e98d90847165257708234db853c04dd587a40b52ffc362431cd674736f2c9d",
+ "committed_normalized_churn": 0.004761904761904762,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "60e98d90847165257708234db853c04dd587a40b52ffc362431cd674736f2c9d",
+ "current_selected_count": 54,
+ "dwell_total": 1881,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.70869166488319e-08,
+ "last_committed_normalized_gap": -0.41497379541397095,
+ "last_committed_score_gap": -2.630668305414474e-08,
+ "last_cutoff_score_margin": 9.1918082034681e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.745806236883254e-08,
+ "last_raw_normalized_gap": 0.19368276000022888,
+ "last_raw_score_gap": 9.1918082034681e-09,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "078e727c94a487d5088ce7286185f0e6957d12dfcbdb08988daad2f363b6a334",
+ "raw_normalized_churn": 0.05026455026455026,
+ "raw_xor_churn_total": 190,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d1f0edf316b6d1728eac20d7304d6f31b0b8e1ca4c799f2b45777c055957aff7",
+ "committed_normalized_churn": 0.0031746031746031746,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "d1f0edf316b6d1728eac20d7304d6f31b0b8e1ca4c799f2b45777c055957aff7",
+ "current_selected_count": 45,
+ "dwell_total": 1570,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.015990940497431e-07,
+ "last_committed_normalized_gap": 0.5491647720336914,
+ "last_committed_score_gap": 4.951264713781711e-07,
+ "last_cutoff_score_margin": 4.951264713781711e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.015990940497431e-07,
+ "last_raw_normalized_gap": 0.5491647720336914,
+ "last_raw_score_gap": 4.951264713781711e-07,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "d1f0edf316b6d1728eac20d7304d6f31b0b8e1ca4c799f2b45777c055957aff7",
+ "raw_normalized_churn": 0.017777777777777778,
+ "raw_xor_churn_total": 56,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "258c2584e785aceb811dc4d86be305c542beb7781606ce06ab371fd71da13f4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "258c2584e785aceb811dc4d86be305c542beb7781606ce06ab371fd71da13f4c",
+ "current_selected_count": 27,
+ "dwell_total": 945,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5799292870942736e-06,
+ "last_committed_normalized_gap": 0.6691051125526428,
+ "last_committed_score_gap": 1.7262439087062376e-06,
+ "last_cutoff_score_margin": 1.7262439087062376e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5799292870942736e-06,
+ "last_raw_normalized_gap": 0.6691051125526428,
+ "last_raw_score_gap": 1.7262439087062376e-06,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "258c2584e785aceb811dc4d86be305c542beb7781606ce06ab371fd71da13f4c",
+ "raw_normalized_churn": 0.0021164021164021165,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.562578346347436e-05,
+ "last_committed_normalized_gap": 0.8946518301963806,
+ "last_committed_score_gap": 5.8712226746138185e-05,
+ "last_cutoff_score_margin": 5.8712226746138185e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.562578346347436e-05,
+ "last_raw_normalized_gap": 0.8946518301963806,
+ "last_raw_score_gap": 5.8712226746138185e-05,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c99ff900307cd42fd1992741fd875fb6669c6dbe7ae519635746e9c65b9c34c7",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "c99ff900307cd42fd1992741fd875fb6669c6dbe7ae519635746e9c65b9c34c7",
+ "current_selected_count": 9,
+ "dwell_total": 315,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.274945114157163e-06,
+ "last_committed_normalized_gap": 0.14652365446090698,
+ "last_committed_score_gap": 1.3589988157036714e-06,
+ "last_cutoff_score_margin": 1.3589988157036714e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.274945114157163e-06,
+ "last_raw_normalized_gap": 0.14652365446090698,
+ "last_raw_score_gap": 1.3589988157036714e-06,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "c99ff900307cd42fd1992741fd875fb6669c6dbe7ae519635746e9c65b9c34c7",
+ "raw_normalized_churn": 0.02857142857142857,
+ "raw_xor_churn_total": 18,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "committed_normalized_churn": 0.004081632653061225,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "current_selected_count": 7,
+ "dwell_total": 244,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4326185919344425e-05,
+ "last_committed_normalized_gap": 0.7304275035858154,
+ "last_committed_score_gap": 1.0464240403962322e-05,
+ "last_cutoff_score_margin": 1.0464240403962322e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4326185919344425e-05,
+ "last_raw_normalized_gap": 0.7304275035858154,
+ "last_raw_score_gap": 1.0464240403962322e-05,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "raw_normalized_churn": 0.004081632653061225,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c9d6c991d4249e66c0facd0d28be646eead530ac4435b191f8b62dca3f125ca4",
+ "committed_normalized_churn": 0.003116883116883117,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "c9d6c991d4249e66c0facd0d28be646eead530ac4435b191f8b62dca3f125ca4",
+ "current_selected_count": 55,
+ "dwell_total": 1919,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.813764462596737e-07,
+ "last_committed_normalized_gap": 0.3845207393169403,
+ "last_committed_score_gap": 1.8509922483644914e-07,
+ "last_cutoff_score_margin": 1.8509922483644914e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.813764462596737e-07,
+ "last_raw_normalized_gap": 0.3845207393169403,
+ "last_raw_score_gap": 1.8509922483644914e-07,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "c9d6c991d4249e66c0facd0d28be646eead530ac4435b191f8b62dca3f125ca4",
+ "raw_normalized_churn": 0.013506493506493506,
+ "raw_xor_churn_total": 52,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ }
+ ],
+ "task_id": 851
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 36,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d8e30057e9fa278f36f165c3f52c6640fb281804cf2afadabade6b709cf5ccb7",
+ "committed_normalized_churn": 0.0028169014084507044,
+ "committed_xor_churn_total": 72,
+ "confirmation_two": true,
+ "current_mask_sha256": "d8e30057e9fa278f36f165c3f52c6640fb281804cf2afadabade6b709cf5ccb7",
+ "current_selected_count": 355,
+ "dwell_total": 12744,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.347159159896364e-09,
+ "last_committed_normalized_gap": -0.9441199898719788,
+ "last_committed_score_gap": -9.034290826548386e-08,
+ "last_cutoff_score_margin": 3.015951932638927e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 352,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3321826308754225e-08,
+ "last_raw_normalized_gap": 0.02263917773962021,
+ "last_raw_score_gap": 3.015951932638927e-10,
+ "layer_index": 0,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "2664501dd06907cef59e6f41ac36e8359b705640e9ae0336bff8713d9ec08bfb",
+ "raw_normalized_churn": 0.01619718309859155,
+ "raw_xor_churn_total": 414,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 216,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a724ffc2bc124198bde9206fc73a9419659bcc937c8b4253afae226ce7a31346",
+ "committed_normalized_churn": 0.015789473684210527,
+ "committed_xor_churn_total": 432,
+ "confirmation_two": true,
+ "current_mask_sha256": "a724ffc2bc124198bde9206fc73a9419659bcc937c8b4253afae226ce7a31346",
+ "current_selected_count": 380,
+ "dwell_total": 13464,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.655512532616754e-10,
+ "last_committed_normalized_gap": -0.9917827248573303,
+ "last_committed_score_gap": -1.998116516688242e-08,
+ "last_cutoff_score_margin": 1.1900036511747203e-10,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 373,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2779370329194535e-09,
+ "last_raw_normalized_gap": 0.036303430795669556,
+ "last_raw_score_gap": 1.1900036511747203e-10,
+ "layer_index": 1,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "5bd2966293082f26899c3f4af037d1ca2bfc54c1ba152b80838b8f227e62c61c",
+ "raw_normalized_churn": 0.14714912280701756,
+ "raw_xor_churn_total": 4026,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 75,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "06dee164aa1fd6448d58179157a88da870d30a0c8205e7f7988933a649ca9106",
+ "committed_normalized_churn": 0.007744733581164808,
+ "committed_xor_churn_total": 150,
+ "confirmation_two": true,
+ "current_mask_sha256": "06dee164aa1fd6448d58179157a88da870d30a0c8205e7f7988933a649ca9106",
+ "current_selected_count": 269,
+ "dwell_total": 9609,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8724863881658393e-09,
+ "last_committed_normalized_gap": -0.9758009314537048,
+ "last_committed_score_gap": -7.550593750238477e-08,
+ "last_cutoff_score_margin": 2.7552182757517585e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 266,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1703652269545728e-08,
+ "last_raw_normalized_gap": 0.002354152500629425,
+ "last_raw_score_gap": 2.7552182757517585e-11,
+ "layer_index": 2,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "a8f1e2450596a27b8a57c2b460417317b94328fe7ee42c844dfb39a2797ce03d",
+ "raw_normalized_churn": 0.05245766212308963,
+ "raw_xor_churn_total": 1016,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "50e06a5d89a700b26e9c6a6b783560dbade232fc727ef0a27da696b25d31532e",
+ "committed_normalized_churn": 0.000931098696461825,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "50e06a5d89a700b26e9c6a6b783560dbade232fc727ef0a27da696b25d31532e",
+ "current_selected_count": 179,
+ "dwell_total": 6438,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2127578347408416e-07,
+ "last_committed_normalized_gap": -0.31229501962661743,
+ "last_committed_score_gap": -1.0048397314221802e-07,
+ "last_cutoff_score_margin": 3.399834724859829e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5527413072268246e-07,
+ "last_raw_normalized_gap": 0.13318367302417755,
+ "last_raw_score_gap": 3.399834724859829e-08,
+ "layer_index": 4,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "023e679a3c60d5f7a6c2d633f13731d182ae6b560757564b166f52dadeb5a525",
+ "raw_normalized_churn": 0.007138423339540658,
+ "raw_xor_churn_total": 92,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 13,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "419c1b782b07e3aed0c74d9d2da95c02f6e9b5c52d7036db94a13e2444077ab1",
+ "committed_normalized_churn": 0.001951951951951952,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_mask_sha256": "419c1b782b07e3aed0c74d9d2da95c02f6e9b5c52d7036db94a13e2444077ab1",
+ "current_selected_count": 185,
+ "dwell_total": 6647,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.700978781917001e-08,
+ "last_committed_normalized_gap": -0.14970527589321136,
+ "last_committed_score_gap": -1.531918769615004e-08,
+ "last_cutoff_score_margin": 4.156476052230573e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.408340417849104e-08,
+ "last_raw_normalized_gap": 0.04417863115668297,
+ "last_raw_score_gap": 4.156476052230573e-09,
+ "layer_index": 5,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "b000c30e3fab0721a26ccae5b905f1489916a9d7c06012f50851912f6836729a",
+ "raw_normalized_churn": 0.0076576576576576575,
+ "raw_xor_churn_total": 102,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 30,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f2d79666bd5778d3aa5ae88db2b9b2cd3cd42fb2f3e9c6ba38b2d2fe544bb12d",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_mask_sha256": "f2d79666bd5778d3aa5ae88db2b9b2cd3cd42fb2f3e9c6ba38b2d2fe544bb12d",
+ "current_selected_count": 105,
+ "dwell_total": 3750,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.4079818078680546e-08,
+ "last_committed_normalized_gap": -0.7643130421638489,
+ "last_committed_score_gap": -1.1051800186123728e-07,
+ "last_cutoff_score_margin": 3.2660807391948765e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.285918109303566e-08,
+ "last_raw_normalized_gap": 0.007620492484420538,
+ "last_raw_score_gap": 3.2660807391948765e-10,
+ "layer_index": 6,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "ef630407fe2c3d648846b91603aa9cdf6cc81d0433b24ec9d9a42d685121d1df",
+ "raw_normalized_churn": 0.04814814814814815,
+ "raw_xor_churn_total": 364,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "99262cc5f116d3aeb3bc0dc3a31247154e40ff6b7c26d94ddc72abbcbbcc6200",
+ "committed_normalized_churn": 0.001388888888888889,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "99262cc5f116d3aeb3bc0dc3a31247154e40ff6b7c26d94ddc72abbcbbcc6200",
+ "current_selected_count": 80,
+ "dwell_total": 2876,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1744331374075045e-07,
+ "last_committed_normalized_gap": -0.003438622923567891,
+ "last_committed_score_gap": -4.0523673305870034e-10,
+ "last_cutoff_score_margin": 4.0523673305870034e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1784855047380915e-07,
+ "last_raw_normalized_gap": 0.003438622923567891,
+ "last_raw_score_gap": 4.0523673305870034e-10,
+ "layer_index": 8,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "fcffccaf4367f4f446c99c75ce7d5e538c8544b28a0657bb60cb9c6c7f84d232",
+ "raw_normalized_churn": 0.012152777777777778,
+ "raw_xor_churn_total": 70,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7b0003f19159b52e712f2e8e685f957d75f791b7be3936ccc8d7ed5301e6b7ca",
+ "committed_normalized_churn": 0.003229974160206718,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "7b0003f19159b52e712f2e8e685f957d75f791b7be3936ccc8d7ed5301e6b7ca",
+ "current_selected_count": 43,
+ "dwell_total": 1543,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.991291622351127e-08,
+ "last_committed_normalized_gap": -0.020358683541417122,
+ "last_committed_score_gap": -1.8685497593651235e-09,
+ "last_cutoff_score_margin": 1.8685497593651235e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.17814659828764e-08,
+ "last_raw_normalized_gap": 0.020358683541417122,
+ "last_raw_score_gap": 1.8685497593651235e-09,
+ "layer_index": 9,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "438929a566f964d92590df783dbebfc351a1ac0feeb56a1d5ad8710b40efd4ed",
+ "raw_normalized_churn": 0.020671834625323,
+ "raw_xor_churn_total": 64,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 25,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f3a5e80dcffe5ee4dfa10b9956383a620c9ffb34fe82008217eabfd37ec83c9b",
+ "committed_normalized_churn": 0.008267195767195767,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_mask_sha256": "f3a5e80dcffe5ee4dfa10b9956383a620c9ffb34fe82008217eabfd37ec83c9b",
+ "current_selected_count": 84,
+ "dwell_total": 2999,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.173786009673222e-09,
+ "last_committed_normalized_gap": -0.7609436511993408,
+ "last_committed_score_gap": -2.283497479993457e-08,
+ "last_cutoff_score_margin": 9.915126497617166e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4238610290817633e-08,
+ "last_raw_normalized_gap": 0.06963549554347992,
+ "last_raw_score_gap": 9.915126497617166e-10,
+ "layer_index": 10,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "d68b06ae96ff91f57d929fdbc4327212ce30b75c5c664b802344814b35e41755",
+ "raw_normalized_churn": 0.06911375661375661,
+ "raw_xor_churn_total": 418,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d8d1d70d89de9de4d6eb405aa95aba3d5b47d4d7612f971591b1bc0430d662e4",
+ "committed_normalized_churn": 0.001851851851851852,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "d8d1d70d89de9de4d6eb405aa95aba3d5b47d4d7612f971591b1bc0430d662e4",
+ "current_selected_count": 30,
+ "dwell_total": 1078,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.573639433961944e-07,
+ "last_committed_normalized_gap": -0.01944180205464363,
+ "last_committed_score_gap": -1.699919494058122e-08,
+ "last_cutoff_score_margin": 1.699919494058122e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.743631383367756e-07,
+ "last_raw_normalized_gap": 0.01944180205464363,
+ "last_raw_score_gap": 1.699919494058122e-08,
+ "layer_index": 12,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "5983eebc0b47366d0b81c48743704975272043185f60932303fe44bd57ff7d7c",
+ "raw_normalized_churn": 0.027777777777777776,
+ "raw_xor_churn_total": 60,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 26,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "19e0b6a22734a1eac51e842652f6405d0e2a392f60af0ff2b6f61fcb9f326c95",
+ "committed_normalized_churn": 0.011648745519713262,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_mask_sha256": "19e0b6a22734a1eac51e842652f6405d0e2a392f60af0ff2b6f61fcb9f326c95",
+ "current_selected_count": 62,
+ "dwell_total": 2206,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7669462337721598e-08,
+ "last_committed_normalized_gap": -0.8402250409126282,
+ "last_committed_score_gap": -9.29202386146244e-08,
+ "last_cutoff_score_margin": 2.707665203161014e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.120056035754715e-08,
+ "last_raw_normalized_gap": 0.008678258396685123,
+ "last_raw_score_gap": 2.707665203161014e-10,
+ "layer_index": 13,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "e189d2a1357785c35bdee62ccf6a8458fa1160dc906c1470e183550de035943a",
+ "raw_normalized_churn": 0.08154121863799284,
+ "raw_xor_churn_total": 364,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3db8ed53ad6aa9fdad591e95a10b5a0a2f56bb5bdb829e30f7afc00cf85a0f2e",
+ "committed_normalized_churn": 0.00565843621399177,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "3db8ed53ad6aa9fdad591e95a10b5a0a2f56bb5bdb829e30f7afc00cf85a0f2e",
+ "current_selected_count": 54,
+ "dwell_total": 1933,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.6295055022274028e-08,
+ "last_committed_normalized_gap": -0.7626810669898987,
+ "last_committed_score_gap": -8.450543020899204e-08,
+ "last_cutoff_score_margin": 4.3232972757323296e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.383024515026591e-08,
+ "last_raw_normalized_gap": 0.00803135335445404,
+ "last_raw_score_gap": 4.3232972757323296e-10,
+ "layer_index": 14,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "5ec1ab338016f609b71b530c31f07f5db712c7567817817acf0b7460b4d65727",
+ "raw_normalized_churn": 0.0411522633744856,
+ "raw_xor_churn_total": 160,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "609d76b03b5f453bab070feabb2d2df9812b1db86933f5046e16ce6c18d91243",
+ "committed_normalized_churn": 0.0012345679012345679,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "609d76b03b5f453bab070feabb2d2df9812b1db86933f5046e16ce6c18d91243",
+ "current_selected_count": 45,
+ "dwell_total": 1618,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.261861825696542e-06,
+ "last_committed_normalized_gap": 0.42935317754745483,
+ "last_committed_score_gap": 5.417844022304052e-07,
+ "last_cutoff_score_margin": 5.417844022304052e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.261861825696542e-06,
+ "last_raw_normalized_gap": 0.42935317754745483,
+ "last_raw_score_gap": 5.417844022304052e-07,
+ "layer_index": 16,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "609d76b03b5f453bab070feabb2d2df9812b1db86933f5046e16ce6c18d91243",
+ "raw_normalized_churn": 0.004320987654320987,
+ "raw_xor_churn_total": 14,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "717609975c45da9551613f11fb817ef88819d2b4e0bd73ad64461b02214bb899",
+ "committed_normalized_churn": 0.00102880658436214,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "717609975c45da9551613f11fb817ef88819d2b4e0bd73ad64461b02214bb899",
+ "current_selected_count": 27,
+ "dwell_total": 971,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.391784619248938e-06,
+ "last_committed_normalized_gap": 0.40627434849739075,
+ "last_committed_score_gap": 9.717207376525039e-07,
+ "last_cutoff_score_margin": 9.717207376525039e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.391784619248938e-06,
+ "last_raw_normalized_gap": 0.40627434849739075,
+ "last_raw_score_gap": 9.717207376525039e-07,
+ "layer_index": 17,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "717609975c45da9551613f11fb817ef88819d2b4e0bd73ad64461b02214bb899",
+ "raw_normalized_churn": 0.00823045267489712,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.383991447160952e-05,
+ "last_committed_normalized_gap": 0.9740835428237915,
+ "last_committed_score_gap": 5.2444574976107106e-05,
+ "last_cutoff_score_margin": 5.2444574976107106e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.383991447160952e-05,
+ "last_raw_normalized_gap": 0.9740835428237915,
+ "last_raw_score_gap": 5.2444574976107106e-05,
+ "layer_index": 18,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "current_selected_count": 9,
+ "dwell_total": 324,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1984095181105658e-05,
+ "last_committed_normalized_gap": 0.8444151282310486,
+ "last_committed_score_gap": 1.01195510069374e-05,
+ "last_cutoff_score_margin": 1.01195510069374e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1984095181105658e-05,
+ "last_raw_normalized_gap": 0.8444151282310486,
+ "last_raw_score_gap": 1.01195510069374e-05,
+ "layer_index": 20,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3967879567644559e-05,
+ "last_committed_normalized_gap": 0.7050950527191162,
+ "last_committed_score_gap": 9.84868256637128e-06,
+ "last_cutoff_score_margin": 9.84868256637128e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3967879567644559e-05,
+ "last_raw_normalized_gap": 0.7050950527191162,
+ "last_raw_score_gap": 9.84868256637128e-06,
+ "layer_index": 21,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "318c6b05e774f173dec54d3b17b87035b5984334ae73b84c0e2f6a0c4b693f36",
+ "committed_normalized_churn": 0.00101010101010101,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "318c6b05e774f173dec54d3b17b87035b5984334ae73b84c0e2f6a0c4b693f36",
+ "current_selected_count": 55,
+ "dwell_total": 1978,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.0986915905705246e-07,
+ "last_committed_normalized_gap": 0.2538164258003235,
+ "last_committed_score_gap": 1.040315282807569e-07,
+ "last_cutoff_score_margin": 1.040315282807569e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.0986915905705246e-07,
+ "last_raw_normalized_gap": 0.2538164258003235,
+ "last_raw_score_gap": 1.040315282807569e-07,
+ "layer_index": 22,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "318c6b05e774f173dec54d3b17b87035b5984334ae73b84c0e2f6a0c4b693f36",
+ "raw_normalized_churn": 0.006060606060606061,
+ "raw_xor_churn_total": 24,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ }
+ ],
+ "task_id": 728
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 66,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3f56f6dcecca9e76f7dc834cbefb505184d8638920770b00d88a18ac4b454e6c",
+ "committed_normalized_churn": 0.004892512972572276,
+ "committed_xor_churn_total": 132,
+ "confirmation_two": true,
+ "current_mask_sha256": "3f56f6dcecca9e76f7dc834cbefb505184d8638920770b00d88a18ac4b454e6c",
+ "current_selected_count": 355,
+ "dwell_total": 13424,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.71173899896371e-09,
+ "last_committed_normalized_gap": -0.9863854050636292,
+ "last_committed_score_gap": -3.413691729292623e-07,
+ "last_cutoff_score_margin": 7.023732706556984e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 352,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7771332849747523e-08,
+ "last_raw_normalized_gap": 0.03952282294631004,
+ "last_raw_score_gap": 7.023732706556984e-10,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "302971a67c910e297da6d8cabd91e0d6d276e7f1b06409be5a5f75306d99eec4",
+ "raw_normalized_churn": 0.026612305411415862,
+ "raw_xor_churn_total": 718,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 252,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "488e00fbed90fac2680ae85d4ec6738169ffec85e751e624f3e3d8d79e055935",
+ "committed_normalized_churn": 0.017451523545706372,
+ "committed_xor_churn_total": 504,
+ "confirmation_two": true,
+ "current_mask_sha256": "488e00fbed90fac2680ae85d4ec6738169ffec85e751e624f3e3d8d79e055935",
+ "current_selected_count": 380,
+ "dwell_total": 14188,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1335124777976944e-09,
+ "last_committed_normalized_gap": -0.8476897478103638,
+ "last_committed_score_gap": -1.1874162098024499e-08,
+ "last_cutoff_score_margin": 6.898259741205948e-12,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 371,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.473200089170291e-09,
+ "last_raw_normalized_gap": 0.0027892040088772774,
+ "last_raw_score_gap": 6.898259741205948e-12,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "305cb021fdd0ce90dd0d368b14cc79da4cf5a951339507eefb36826be4ee6f37",
+ "raw_normalized_churn": 0.12894736842105264,
+ "raw_xor_churn_total": 3724,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 65,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d9e1e693180c483c14ab94dcd411d5d8f8adef903a17ce6cae542d4a7b6f19ee",
+ "committed_normalized_churn": 0.006358833887693211,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": true,
+ "current_mask_sha256": "d9e1e693180c483c14ab94dcd411d5d8f8adef903a17ce6cae542d4a7b6f19ee",
+ "current_selected_count": 269,
+ "dwell_total": 10157,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0077463308277856e-08,
+ "last_committed_normalized_gap": -0.6029555201530457,
+ "last_committed_score_gap": -1.5303729838933577e-08,
+ "last_cutoff_score_margin": 4.1869530065241634e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 266,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0605860190082694e-08,
+ "last_raw_normalized_gap": 0.03947773203253746,
+ "last_raw_score_gap": 4.1869530065241634e-10,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "96bbe1e1a1692cdfacdde9a0a8689041e27a49bb1a9d6ea4944e0c0b2d6dfdac",
+ "raw_normalized_churn": 0.06378399530424575,
+ "raw_xor_churn_total": 1304,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "470cdfb4738d3473224e1a8cc91854353cc1964ff58c49309a47a2bf7b6574c0",
+ "committed_normalized_churn": 0.00029403116730373417,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "470cdfb4738d3473224e1a8cc91854353cc1964ff58c49309a47a2bf7b6574c0",
+ "current_selected_count": 179,
+ "dwell_total": 6800,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0662084548584971e-07,
+ "last_committed_normalized_gap": -0.7644529342651367,
+ "last_committed_score_gap": -3.460311290837126e-07,
+ "last_cutoff_score_margin": 2.0208815953992598e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4088316763482e-07,
+ "last_raw_normalized_gap": 0.08389467746019363,
+ "last_raw_score_gap": 2.0208815953992598e-08,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "388312261575b59f86fd3ece46a5c2e9027ce3d4e6dd186f0bec831b5710d5c4",
+ "raw_normalized_churn": 0.006468685680682152,
+ "raw_xor_churn_total": 88,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a3a5d185a56fe472f728aaaebcb85b189180f6c698d3d695e077271b13c355ac",
+ "committed_normalized_churn": 0.001422475106685633,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "a3a5d185a56fe472f728aaaebcb85b189180f6c698d3d695e077271b13c355ac",
+ "current_selected_count": 185,
+ "dwell_total": 7020,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.493302144392146e-08,
+ "last_committed_normalized_gap": 0.592901885509491,
+ "last_committed_score_gap": 5.628596611018111e-08,
+ "last_cutoff_score_margin": 5.628596611018111e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.493302144392146e-08,
+ "last_raw_normalized_gap": 0.592901885509491,
+ "last_raw_score_gap": 5.628596611018111e-08,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "a3a5d185a56fe472f728aaaebcb85b189180f6c698d3d695e077271b13c355ac",
+ "raw_normalized_churn": 0.009246088193456615,
+ "raw_xor_churn_total": 130,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 39,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ce7268f9ed27732204403cbbfaea46fd85511581420ec347ab828baeee1a96d5",
+ "committed_normalized_churn": 0.009774436090225564,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": true,
+ "current_mask_sha256": "ce7268f9ed27732204403cbbfaea46fd85511581420ec347ab828baeee1a96d5",
+ "current_selected_count": 105,
+ "dwell_total": 3951,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5415273441353747e-08,
+ "last_committed_normalized_gap": 0.26155513525009155,
+ "last_committed_score_gap": 6.647494998901493e-09,
+ "last_cutoff_score_margin": 6.647494998901493e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5415273441353747e-08,
+ "last_raw_normalized_gap": 0.26155513525009155,
+ "last_raw_score_gap": 6.647494998901493e-09,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "ce7268f9ed27732204403cbbfaea46fd85511581420ec347ab828baeee1a96d5",
+ "raw_normalized_churn": 0.05513784461152882,
+ "raw_xor_churn_total": 440,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "306385ccb03bcb730cedc468d209bf9c4ef8c3ff8f4d7db8e744e5f1f89cb800",
+ "committed_normalized_churn": 0.0013157894736842105,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "306385ccb03bcb730cedc468d209bf9c4ef8c3ff8f4d7db8e744e5f1f89cb800",
+ "current_selected_count": 80,
+ "dwell_total": 3036,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3009791643980861e-07,
+ "last_committed_normalized_gap": 0.6387439370155334,
+ "last_committed_score_gap": 8.309925192406808e-08,
+ "last_cutoff_score_margin": 8.309925192406808e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3009791643980861e-07,
+ "last_raw_normalized_gap": 0.6387439370155334,
+ "last_raw_score_gap": 8.309925192406808e-08,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "306385ccb03bcb730cedc468d209bf9c4ef8c3ff8f4d7db8e744e5f1f89cb800",
+ "raw_normalized_churn": 0.014144736842105264,
+ "raw_xor_churn_total": 86,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f17b62de126d464fcd865bb71a1dc4d08b1cce734503218bce2b214d764be16b",
+ "committed_normalized_churn": 0.0030599755201958386,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "f17b62de126d464fcd865bb71a1dc4d08b1cce734503218bce2b214d764be16b",
+ "current_selected_count": 43,
+ "dwell_total": 1629,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.340033754601791e-08,
+ "last_committed_normalized_gap": 0.7994612455368042,
+ "last_committed_score_gap": 3.4696888917551405e-08,
+ "last_cutoff_score_margin": 3.4696888917551405e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.340033754601791e-08,
+ "last_raw_normalized_gap": 0.7994612455368042,
+ "last_raw_score_gap": 3.4696888917551405e-08,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "f17b62de126d464fcd865bb71a1dc4d08b1cce734503218bce2b214d764be16b",
+ "raw_normalized_churn": 0.014687882496940025,
+ "raw_xor_churn_total": 48,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 24,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8788208a455fb011ded0e4668591a4a91f55d819540b35e22d2cdcb852282ed8",
+ "committed_normalized_churn": 0.007518796992481203,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_mask_sha256": "8788208a455fb011ded0e4668591a4a91f55d819540b35e22d2cdcb852282ed8",
+ "current_selected_count": 84,
+ "dwell_total": 3168,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2945861271873582e-08,
+ "last_committed_normalized_gap": 0.5093001127243042,
+ "last_committed_score_gap": 6.593328549797661e-09,
+ "last_cutoff_score_margin": 6.593328549797661e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2945861271873582e-08,
+ "last_raw_normalized_gap": 0.5093001127243042,
+ "last_raw_score_gap": 6.593328549797661e-09,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "8788208a455fb011ded0e4668591a4a91f55d819540b35e22d2cdcb852282ed8",
+ "raw_normalized_churn": 0.06798245614035088,
+ "raw_xor_churn_total": 434,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ee358c9b20176124716f99e887fcfdad1fd1bb3a6fc80e07a4af028ae0bf5c58",
+ "committed_normalized_churn": 0.0017543859649122807,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "ee358c9b20176124716f99e887fcfdad1fd1bb3a6fc80e07a4af028ae0bf5c58",
+ "current_selected_count": 30,
+ "dwell_total": 1138,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.68865914374328e-07,
+ "last_committed_normalized_gap": 0.08457636088132858,
+ "last_committed_score_gap": 4.811261078430107e-08,
+ "last_cutoff_score_margin": 4.811261078430107e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.68865914374328e-07,
+ "last_raw_normalized_gap": 0.08457636088132858,
+ "last_raw_score_gap": 4.811261078430107e-08,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "ee358c9b20176124716f99e887fcfdad1fd1bb3a6fc80e07a4af028ae0bf5c58",
+ "raw_normalized_churn": 0.0412280701754386,
+ "raw_xor_churn_total": 94,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 22,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cbdb582d5640730f725df70194db2524551ee3cdd8b73ba06b3d4b49090fc711",
+ "committed_normalized_churn": 0.00933786078098472,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_mask_sha256": "cbdb582d5640730f725df70194db2524551ee3cdd8b73ba06b3d4b49090fc711",
+ "current_selected_count": 62,
+ "dwell_total": 2334,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4647896168517036e-08,
+ "last_committed_normalized_gap": 0.6387981176376343,
+ "last_committed_score_gap": 1.574503016854578e-08,
+ "last_cutoff_score_margin": 1.574503016854578e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4647896168517036e-08,
+ "last_raw_normalized_gap": 0.6387981176376343,
+ "last_raw_score_gap": 1.574503016854578e-08,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "cbdb582d5640730f725df70194db2524551ee3cdd8b73ba06b3d4b49090fc711",
+ "raw_normalized_churn": 0.08361629881154499,
+ "raw_xor_churn_total": 394,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 12,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d9b2aeda360a51003050649f8dbed233ea3f1135246c35d7ea194a7bfaad46c0",
+ "committed_normalized_churn": 0.005847953216374269,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_mask_sha256": "d9b2aeda360a51003050649f8dbed233ea3f1135246c35d7ea194a7bfaad46c0",
+ "current_selected_count": 54,
+ "dwell_total": 2040,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.627378220016908e-08,
+ "last_committed_normalized_gap": 0.43772703409194946,
+ "last_committed_score_gap": 1.5878015346970642e-08,
+ "last_cutoff_score_margin": 1.5878015346970642e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.627378220016908e-08,
+ "last_raw_normalized_gap": 0.43772703409194946,
+ "last_raw_score_gap": 1.5878015346970642e-08,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d9b2aeda360a51003050649f8dbed233ea3f1135246c35d7ea194a7bfaad46c0",
+ "raw_normalized_churn": 0.03996101364522417,
+ "raw_xor_churn_total": 164,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "74689014ed691ce775deea93782758aed950b7109c51e0a597f3e8d0a2dfdeb5",
+ "committed_normalized_churn": 0.0005847953216374269,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "74689014ed691ce775deea93782758aed950b7109c51e0a597f3e8d0a2dfdeb5",
+ "current_selected_count": 45,
+ "dwell_total": 1709,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1928825642826268e-06,
+ "last_committed_normalized_gap": 0.801872193813324,
+ "last_committed_score_gap": 9.565393384036724e-07,
+ "last_cutoff_score_margin": 9.565393384036724e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1928825642826268e-06,
+ "last_raw_normalized_gap": 0.801872193813324,
+ "last_raw_score_gap": 9.565393384036724e-07,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "74689014ed691ce775deea93782758aed950b7109c51e0a597f3e8d0a2dfdeb5",
+ "raw_normalized_churn": 0.014619883040935672,
+ "raw_xor_churn_total": 50,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e77726bb76db73e07ef0b27e274b126bcc81ce9d3097bc5ee409522b12158fb8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "e77726bb76db73e07ef0b27e274b126bcc81ce9d3097bc5ee409522b12158fb8",
+ "current_selected_count": 27,
+ "dwell_total": 1026,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0166369267826667e-06,
+ "last_committed_normalized_gap": 0.6907773017883301,
+ "last_committed_score_gap": 1.393047000419756e-06,
+ "last_cutoff_score_margin": 1.393047000419756e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0166369267826667e-06,
+ "last_raw_normalized_gap": 0.6907773017883301,
+ "last_raw_score_gap": 1.393047000419756e-06,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "e77726bb76db73e07ef0b27e274b126bcc81ce9d3097bc5ee409522b12158fb8",
+ "raw_normalized_churn": 0.005847953216374269,
+ "raw_xor_churn_total": 12,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.639293522108346e-05,
+ "last_committed_normalized_gap": 0.9664140343666077,
+ "last_committed_score_gap": 5.449892341857776e-05,
+ "last_cutoff_score_margin": 5.449892341857776e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.639293522108346e-05,
+ "last_raw_normalized_gap": 0.9664140343666077,
+ "last_raw_score_gap": 5.449892341857776e-05,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c84cbad8455c7bb8362128e56c002d81411322ff56bc4d086f3358997e3ec408",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "c84cbad8455c7bb8362128e56c002d81411322ff56bc4d086f3358997e3ec408",
+ "current_selected_count": 9,
+ "dwell_total": 342,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1875154086737894e-05,
+ "last_committed_normalized_gap": 0.6740678548812866,
+ "last_committed_score_gap": 8.004659321159124e-06,
+ "last_cutoff_score_margin": 8.004659321159124e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1875154086737894e-05,
+ "last_raw_normalized_gap": 0.6740678548812866,
+ "last_raw_score_gap": 8.004659321159124e-06,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "c84cbad8455c7bb8362128e56c002d81411322ff56bc4d086f3358997e3ec408",
+ "raw_normalized_churn": 0.011695906432748537,
+ "raw_xor_churn_total": 8,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "committed_normalized_churn": 0.0037593984962406013,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "current_selected_count": 7,
+ "dwell_total": 265,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3010869224672206e-05,
+ "last_committed_normalized_gap": 0.9420481324195862,
+ "last_committed_score_gap": 1.2256865375093184e-05,
+ "last_cutoff_score_margin": 1.2256865375093184e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3010869224672206e-05,
+ "last_raw_normalized_gap": 0.9420481324195862,
+ "last_raw_score_gap": 1.2256865375093184e-05,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "raw_normalized_churn": 0.0037593984962406013,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5fac1df0f843ff83e84a90e7bcce1fdc5d3d3fb5af7786828376db90ed135547",
+ "committed_normalized_churn": 0.0023923444976076554,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "5fac1df0f843ff83e84a90e7bcce1fdc5d3d3fb5af7786828376db90ed135547",
+ "current_selected_count": 55,
+ "dwell_total": 2085,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.001419426913344e-07,
+ "last_committed_normalized_gap": 0.7785758972167969,
+ "last_committed_score_gap": 3.115408730991476e-07,
+ "last_cutoff_score_margin": 3.115408730991476e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.001419426913344e-07,
+ "last_raw_normalized_gap": 0.7785758972167969,
+ "last_raw_score_gap": 3.115408730991476e-07,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "5fac1df0f843ff83e84a90e7bcce1fdc5d3d3fb5af7786828376db90ed135547",
+ "raw_normalized_churn": 0.013875598086124402,
+ "raw_xor_churn_total": 58,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 704
+ }
+ ],
+ "query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "996da9a21d56ddcc3537b5c754564eefd42c7fdc211e4d3e7bfe3bb076b0ecd3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "996da9a21d56ddcc3537b5c754564eefd42c7fdc211e4d3e7bfe3bb076b0ecd3",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5556806448889802e-08,
+ "last_committed_normalized_gap": 0.010141095146536827,
+ "last_committed_score_gap": 2.5917401558217534e-10,
+ "last_cutoff_score_margin": 2.5917401558217534e-10,
+ "last_mask_churn": 22,
+ "last_mask_overlap": 344,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5556806448889802e-08,
+ "last_raw_normalized_gap": 0.010141095146536827,
+ "last_raw_score_gap": 2.5917401558217534e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "996da9a21d56ddcc3537b5c754564eefd42c7fdc211e4d3e7bfe3bb076b0ecd3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "eed3720a7f89e7493bb594bd43128dfea8b5be6ae00d12e6198ffc95f5aa058a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "eed3720a7f89e7493bb594bd43128dfea8b5be6ae00d12e6198ffc95f5aa058a",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2023924078619075e-09,
+ "last_committed_normalized_gap": 0.0028713259380310774,
+ "last_committed_score_gap": 3.4524605396768493e-12,
+ "last_cutoff_score_margin": 3.4524605396768493e-12,
+ "last_mask_churn": 116,
+ "last_mask_overlap": 322,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2023924078619075e-09,
+ "last_raw_normalized_gap": 0.0028713259380310774,
+ "last_raw_score_gap": 3.4524605396768493e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "eed3720a7f89e7493bb594bd43128dfea8b5be6ae00d12e6198ffc95f5aa058a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f05bf63dba879ad0983013f898a3f2c504da70ff280d1e5bfecfc3a63bd8e1d6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f05bf63dba879ad0983013f898a3f2c504da70ff280d1e5bfecfc3a63bd8e1d6",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.656691032778326e-09,
+ "last_committed_normalized_gap": 0.0016673761419951916,
+ "last_committed_score_gap": 7.764455745018495e-12,
+ "last_cutoff_score_margin": 7.764455745018495e-12,
+ "last_mask_churn": 74,
+ "last_mask_overlap": 232,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.656691032778326e-09,
+ "last_raw_normalized_gap": 0.0016673761419951916,
+ "last_raw_score_gap": 7.764455745018495e-12,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "f05bf63dba879ad0983013f898a3f2c504da70ff280d1e5bfecfc3a63bd8e1d6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1604539313102578e-07,
+ "last_committed_normalized_gap": 0.2588611841201782,
+ "last_committed_score_gap": 5.592576712842856e-08,
+ "last_cutoff_score_margin": 5.592576712842856e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1604539313102578e-07,
+ "last_raw_normalized_gap": 0.2588611841201782,
+ "last_raw_score_gap": 5.592576712842856e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "51487fdbc763bd9fffa17a4196333b0e84cd251e1acb2771c97d8f9d3018b91b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "51487fdbc763bd9fffa17a4196333b0e84cd251e1acb2771c97d8f9d3018b91b",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.193731501482944e-08,
+ "last_committed_normalized_gap": 0.014320285990834236,
+ "last_committed_score_gap": 4.573514900130249e-10,
+ "last_cutoff_score_margin": 4.573514900130249e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.193731501482944e-08,
+ "last_raw_normalized_gap": 0.014320285990834236,
+ "last_raw_score_gap": 4.573514900130249e-10,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "51487fdbc763bd9fffa17a4196333b0e84cd251e1acb2771c97d8f9d3018b91b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "069001eef479566e001bac52a2f21b6723e8b08d3ed5207f10f34eb199965719",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "069001eef479566e001bac52a2f21b6723e8b08d3ed5207f10f34eb199965719",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4639199125431333e-08,
+ "last_committed_normalized_gap": 0.029478028416633606,
+ "last_committed_score_gap": 7.26315008137135e-10,
+ "last_cutoff_score_margin": 7.26315008137135e-10,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 96,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4639199125431333e-08,
+ "last_raw_normalized_gap": 0.029478028416633606,
+ "last_raw_score_gap": 7.26315008137135e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "069001eef479566e001bac52a2f21b6723e8b08d3ed5207f10f34eb199965719",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "43be031fef3ef039e86118be66f85a46c58d850bdacb89c3f58bdeb34689deba",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "43be031fef3ef039e86118be66f85a46c58d850bdacb89c3f58bdeb34689deba",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.506385202304955e-08,
+ "last_committed_normalized_gap": 0.20905691385269165,
+ "last_committed_score_gap": 1.5692616983642438e-08,
+ "last_cutoff_score_margin": 1.5692616983642438e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.506385202304955e-08,
+ "last_raw_normalized_gap": 0.20905691385269165,
+ "last_raw_score_gap": 1.5692616983642438e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "43be031fef3ef039e86118be66f85a46c58d850bdacb89c3f58bdeb34689deba",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7b8c1d06b6f271886bcb057cd1397447fa01283c8ca107c6f90d4ebcf04d2b81",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7b8c1d06b6f271886bcb057cd1397447fa01283c8ca107c6f90d4ebcf04d2b81",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.030809629464784e-08,
+ "last_committed_normalized_gap": 0.0719054564833641,
+ "last_committed_score_gap": 4.336481396194358e-09,
+ "last_cutoff_score_margin": 4.336481396194358e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 41,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.030809629464784e-08,
+ "last_raw_normalized_gap": 0.0719054564833641,
+ "last_raw_score_gap": 4.336481396194358e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "7b8c1d06b6f271886bcb057cd1397447fa01283c8ca107c6f90d4ebcf04d2b81",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "80e59f62dbb6ab8d7f3febd9787af5f24908c6cfff1214ecb5465ad5edd0e300",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "80e59f62dbb6ab8d7f3febd9787af5f24908c6cfff1214ecb5465ad5edd0e300",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.049540093196356e-08,
+ "last_committed_normalized_gap": 0.0036231076810508966,
+ "last_committed_score_gap": 7.425704495744867e-11,
+ "last_cutoff_score_margin": 7.425704495744867e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 81,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.049540093196356e-08,
+ "last_raw_normalized_gap": 0.0036231076810508966,
+ "last_raw_score_gap": 7.425704495744867e-11,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "80e59f62dbb6ab8d7f3febd9787af5f24908c6cfff1214ecb5465ad5edd0e300",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fafe29ad0ea2ff634ae6f2bdd8290ca4f37e2decd96373377556317a9e307c05",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fafe29ad0ea2ff634ae6f2bdd8290ca4f37e2decd96373377556317a9e307c05",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.495617294101976e-07,
+ "last_committed_normalized_gap": 0.1854623556137085,
+ "last_committed_score_gap": 1.57561714786425e-07,
+ "last_cutoff_score_margin": 1.57561714786425e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.495617294101976e-07,
+ "last_raw_normalized_gap": 0.1854623556137085,
+ "last_raw_score_gap": 1.57561714786425e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "fafe29ad0ea2ff634ae6f2bdd8290ca4f37e2decd96373377556317a9e307c05",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "128c23927c85abea0d8026dc086ff201ec1ba61c7ea52a39d779c2fa2d38384b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "128c23927c85abea0d8026dc086ff201ec1ba61c7ea52a39d779c2fa2d38384b",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.597040188983101e-08,
+ "last_committed_normalized_gap": 0.019338222220540047,
+ "last_committed_score_gap": 3.0883917645496695e-10,
+ "last_cutoff_score_margin": 3.0883917645496695e-10,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.597040188983101e-08,
+ "last_raw_normalized_gap": 0.019338222220540047,
+ "last_raw_score_gap": 3.0883917645496695e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "128c23927c85abea0d8026dc086ff201ec1ba61c7ea52a39d779c2fa2d38384b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5713eb042d8790c592bd01fe43ad8411bb7243ce13fb92e2b91bfc81c7de6233",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5713eb042d8790c592bd01fe43ad8411bb7243ce13fb92e2b91bfc81c7de6233",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.118929801208651e-08,
+ "last_committed_normalized_gap": 0.16851258277893066,
+ "last_committed_score_gap": 1.1996291959803784e-08,
+ "last_cutoff_score_margin": 1.1996291959803784e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 52,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.118929801208651e-08,
+ "last_raw_normalized_gap": 0.16851258277893066,
+ "last_raw_score_gap": 1.1996291959803784e-08,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "5713eb042d8790c592bd01fe43ad8411bb7243ce13fb92e2b91bfc81c7de6233",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "84229d522ba9c63907173a06a0d7ddfe2c2401adcb6ff6a9fe281bceee5f72c9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "84229d522ba9c63907173a06a0d7ddfe2c2401adcb6ff6a9fe281bceee5f72c9",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.371622488477442e-06,
+ "last_committed_normalized_gap": 0.005243383813649416,
+ "last_committed_score_gap": 7.191943041107152e-09,
+ "last_cutoff_score_margin": 7.191943041107152e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.371622488477442e-06,
+ "last_raw_normalized_gap": 0.005243383813649416,
+ "last_raw_score_gap": 7.191943041107152e-09,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "84229d522ba9c63907173a06a0d7ddfe2c2401adcb6ff6a9fe281bceee5f72c9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c4adfb4b9682560c2bbbec83e6933042fe21a1ab2aaf933cf2a3c85435f624bd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c4adfb4b9682560c2bbbec83e6933042fe21a1ab2aaf933cf2a3c85435f624bd",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.898132483001973e-07,
+ "last_committed_normalized_gap": 0.16719917953014374,
+ "last_committed_score_gap": 1.1533620636328124e-07,
+ "last_cutoff_score_margin": 1.1533620636328124e-07,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 25,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.898132483001973e-07,
+ "last_raw_normalized_gap": 0.16719917953014374,
+ "last_raw_score_gap": 1.1533620636328124e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "c4adfb4b9682560c2bbbec83e6933042fe21a1ab2aaf933cf2a3c85435f624bd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.6703142288606614e-05,
+ "last_committed_normalized_gap": 0.5337585210800171,
+ "last_committed_score_gap": 2.4928200218710117e-05,
+ "last_cutoff_score_margin": 2.4928200218710117e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.6703142288606614e-05,
+ "last_raw_normalized_gap": 0.5337585210800171,
+ "last_raw_score_gap": 2.4928200218710117e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.552474688855e-05,
+ "last_committed_normalized_gap": 0.847438633441925,
+ "last_committed_score_gap": 2.1630656192428432e-05,
+ "last_cutoff_score_margin": 2.1630656192428432e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.552474688855e-05,
+ "last_raw_normalized_gap": 0.847438633441925,
+ "last_raw_score_gap": 2.1630656192428432e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.597691334609408e-05,
+ "last_committed_normalized_gap": 0.8653373718261719,
+ "last_committed_score_gap": 1.3825419955537654e-05,
+ "last_cutoff_score_margin": 1.3825419955537654e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.597691334609408e-05,
+ "last_raw_normalized_gap": 0.8653373718261719,
+ "last_raw_score_gap": 1.3825419955537654e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ae89d2228261ddae07798540f6e751d232361d5ab04e79a5d2ed1a2ea3330258",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ae89d2228261ddae07798540f6e751d232361d5ab04e79a5d2ed1a2ea3330258",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8787646638429578e-07,
+ "last_committed_normalized_gap": 0.16151657700538635,
+ "last_committed_score_gap": 3.0345162826961314e-08,
+ "last_cutoff_score_margin": 3.0345162826961314e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8787646638429578e-07,
+ "last_raw_normalized_gap": 0.16151657700538635,
+ "last_raw_score_gap": 3.0345162826961314e-08,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "ae89d2228261ddae07798540f6e751d232361d5ab04e79a5d2ed1a2ea3330258",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ],
+ "task_id": 666
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1efcfb80e7dfd8118b47ad2e1911dce22dab62df62e034cc91a2610619837ec6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1efcfb80e7dfd8118b47ad2e1911dce22dab62df62e034cc91a2610619837ec6",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1410260231391476e-08,
+ "last_committed_normalized_gap": 0.086061991751194,
+ "last_committed_score_gap": 1.8426096204393616e-09,
+ "last_cutoff_score_margin": 1.8426096204393616e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 352,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1410260231391476e-08,
+ "last_raw_normalized_gap": 0.086061991751194,
+ "last_raw_score_gap": 1.8426096204393616e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "1efcfb80e7dfd8118b47ad2e1911dce22dab62df62e034cc91a2610619837ec6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "664c050ec2bda267c8ca0b71a8aebcd5c4daa25d36258978cd62de20c84d8590",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "664c050ec2bda267c8ca0b71a8aebcd5c4daa25d36258978cd62de20c84d8590",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6088319565454867e-09,
+ "last_committed_normalized_gap": 0.007532570045441389,
+ "last_committed_score_gap": 1.2118639425295896e-11,
+ "last_cutoff_score_margin": 1.2118639425295896e-11,
+ "last_mask_churn": 132,
+ "last_mask_overlap": 314,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6088319565454867e-09,
+ "last_raw_normalized_gap": 0.007532570045441389,
+ "last_raw_score_gap": 1.2118639425295896e-11,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "664c050ec2bda267c8ca0b71a8aebcd5c4daa25d36258978cd62de20c84d8590",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7065dc94c1a9aae437fb273f101ee0596d175b55f42e0209d07a990a668cdf1d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7065dc94c1a9aae437fb273f101ee0596d175b55f42e0209d07a990a668cdf1d",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.46230641116108e-09,
+ "last_committed_normalized_gap": 0.016341807320713997,
+ "last_committed_score_gap": 1.382893799473095e-10,
+ "last_cutoff_score_margin": 1.382893799473095e-10,
+ "last_mask_churn": 40,
+ "last_mask_overlap": 249,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.46230641116108e-09,
+ "last_raw_normalized_gap": 0.016341807320713997,
+ "last_raw_score_gap": 1.382893799473095e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "7065dc94c1a9aae437fb273f101ee0596d175b55f42e0209d07a990a668cdf1d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fa4845d68e7aaa71f5fd0b9d40545abe13360e01026ee2e86440925db1d8819c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fa4845d68e7aaa71f5fd0b9d40545abe13360e01026ee2e86440925db1d8819c",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6233512667440664e-07,
+ "last_committed_normalized_gap": 0.1176426038146019,
+ "last_committed_score_gap": 1.90975271152638e-08,
+ "last_cutoff_score_margin": 1.90975271152638e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 177,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6233512667440664e-07,
+ "last_raw_normalized_gap": 0.1176426038146019,
+ "last_raw_score_gap": 1.90975271152638e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "fa4845d68e7aaa71f5fd0b9d40545abe13360e01026ee2e86440925db1d8819c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d65c71938c6fa1c1f99dd246b15c2ee5092a961a8ec525cbea07ae6c3e31e9fb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d65c71938c6fa1c1f99dd246b15c2ee5092a961a8ec525cbea07ae6c3e31e9fb",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.123467244378844e-08,
+ "last_committed_normalized_gap": 0.05571730434894562,
+ "last_committed_score_gap": 3.411830817867667e-09,
+ "last_cutoff_score_margin": 3.411830817867667e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 182,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.123467244378844e-08,
+ "last_raw_normalized_gap": 0.05571730434894562,
+ "last_raw_score_gap": 3.411830817867667e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "d65c71938c6fa1c1f99dd246b15c2ee5092a961a8ec525cbea07ae6c3e31e9fb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "302cc7b87015bf9bf69abd190dc1e74318d307e681b57df3929205cca210c67a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "302cc7b87015bf9bf69abd190dc1e74318d307e681b57df3929205cca210c67a",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.005757065466241e-08,
+ "last_committed_normalized_gap": 0.009832214564085007,
+ "last_committed_score_gap": 2.9553248737101967e-10,
+ "last_cutoff_score_margin": 2.9553248737101967e-10,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 100,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.005757065466241e-08,
+ "last_raw_normalized_gap": 0.009832214564085007,
+ "last_raw_score_gap": 2.9553248737101967e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "302cc7b87015bf9bf69abd190dc1e74318d307e681b57df3929205cca210c67a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f33ada315db56d72d200891c464cbdbd2d2ba1e1e363504f3ed67caf16d45e69",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f33ada315db56d72d200891c464cbdbd2d2ba1e1e363504f3ed67caf16d45e69",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2574848540225503e-07,
+ "last_committed_normalized_gap": 0.012121467851102352,
+ "last_committed_score_gap": 1.524256276752567e-09,
+ "last_cutoff_score_margin": 1.524256276752567e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2574848540225503e-07,
+ "last_raw_normalized_gap": 0.012121467851102352,
+ "last_raw_score_gap": 1.524256276752567e-09,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "f33ada315db56d72d200891c464cbdbd2d2ba1e1e363504f3ed67caf16d45e69",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "259e35b6d71e45f7fa6563cbffdb1f8211480e2e6e3cf341fb785b15beb3b0ec",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "259e35b6d71e45f7fa6563cbffdb1f8211480e2e6e3cf341fb785b15beb3b0ec",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.897178188111866e-08,
+ "last_committed_normalized_gap": 0.009224900044500828,
+ "last_committed_score_gap": 9.130047828875831e-10,
+ "last_cutoff_score_margin": 9.130047828875831e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 41,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.897178188111866e-08,
+ "last_raw_normalized_gap": 0.009224900044500828,
+ "last_raw_score_gap": 9.130047828875831e-10,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "259e35b6d71e45f7fa6563cbffdb1f8211480e2e6e3cf341fb785b15beb3b0ec",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "11514480d8264781a23fb393749e00209587906320ecd9e35e9412eb99d94053",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "11514480d8264781a23fb393749e00209587906320ecd9e35e9412eb99d94053",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.976177976814597e-08,
+ "last_committed_normalized_gap": 0.08317194879055023,
+ "last_committed_score_gap": 1.6436256800034243e-09,
+ "last_cutoff_score_margin": 1.6436256800034243e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.976177976814597e-08,
+ "last_raw_normalized_gap": 0.08317194879055023,
+ "last_raw_score_gap": 1.6436256800034243e-09,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "11514480d8264781a23fb393749e00209587906320ecd9e35e9412eb99d94053",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "68d0a9e8b5c9d3b87a12d46f408c8f15127e0866d7c85f0b62ebd763851f1aef",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "68d0a9e8b5c9d3b87a12d46f408c8f15127e0866d7c85f0b62ebd763851f1aef",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2600403351825662e-06,
+ "last_committed_normalized_gap": 0.05298466980457306,
+ "last_committed_score_gap": 6.676282282569446e-08,
+ "last_cutoff_score_margin": 6.676282282569446e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2600403351825662e-06,
+ "last_raw_normalized_gap": 0.05298466980457306,
+ "last_raw_score_gap": 6.676282282569446e-08,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "68d0a9e8b5c9d3b87a12d46f408c8f15127e0866d7c85f0b62ebd763851f1aef",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0f8631419f194e8423d1e07541525e0baca2b8cac038eddd37bb620c604f5ccb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0f8631419f194e8423d1e07541525e0baca2b8cac038eddd37bb620c604f5ccb",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2587120557536764e-08,
+ "last_committed_normalized_gap": 0.005417849402874708,
+ "last_committed_score_gap": 1.765521062679909e-10,
+ "last_cutoff_score_margin": 1.765521062679909e-10,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2587120557536764e-08,
+ "last_raw_normalized_gap": 0.005417849402874708,
+ "last_raw_score_gap": 1.765521062679909e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "0f8631419f194e8423d1e07541525e0baca2b8cac038eddd37bb620c604f5ccb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0f4854e7fefbb7351221e935d576e2d8e31b5c3f324837362e7cd4cfd0cff628",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0f4854e7fefbb7351221e935d576e2d8e31b5c3f324837362e7cd4cfd0cff628",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.5785483021300024e-08,
+ "last_committed_normalized_gap": 0.12340830266475677,
+ "last_committed_score_gap": 4.416225607428714e-09,
+ "last_cutoff_score_margin": 4.416225607428714e-09,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 50,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.5785483021300024e-08,
+ "last_raw_normalized_gap": 0.12340830266475677,
+ "last_raw_score_gap": 4.416225607428714e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "0f4854e7fefbb7351221e935d576e2d8e31b5c3f324837362e7cd4cfd0cff628",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f318a2f36eb5bcf2e9b9dce3711dc205010b385379f046764c4576f1b5b169e9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f318a2f36eb5bcf2e9b9dce3711dc205010b385379f046764c4576f1b5b169e9",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7637983091844944e-06,
+ "last_committed_normalized_gap": 0.7116138339042664,
+ "last_committed_score_gap": 1.2551432746477076e-06,
+ "last_cutoff_score_margin": 1.2551432746477076e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7637983091844944e-06,
+ "last_raw_normalized_gap": 0.7116138339042664,
+ "last_raw_score_gap": 1.2551432746477076e-06,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "f318a2f36eb5bcf2e9b9dce3711dc205010b385379f046764c4576f1b5b169e9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4924394236004446e-06,
+ "last_committed_normalized_gap": 0.27905380725860596,
+ "last_committed_score_gap": 4.1647092530183727e-07,
+ "last_cutoff_score_margin": 4.1647092530183727e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4924394236004446e-06,
+ "last_raw_normalized_gap": 0.27905380725860596,
+ "last_raw_score_gap": 4.1647092530183727e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.704828436137177e-05,
+ "last_committed_normalized_gap": 0.9573695063591003,
+ "last_committed_score_gap": 5.4616288252873346e-05,
+ "last_cutoff_score_margin": 5.4616288252873346e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.704828436137177e-05,
+ "last_raw_normalized_gap": 0.9573695063591003,
+ "last_raw_score_gap": 5.4616288252873346e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "399403ae12106905a3f0c5ca6b0a3ded0c53508d2f3805441379286d0a335110",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "399403ae12106905a3f0c5ca6b0a3ded0c53508d2f3805441379286d0a335110",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.638124194869306e-05,
+ "last_committed_normalized_gap": 0.7490537762641907,
+ "last_committed_score_gap": 1.227043139806483e-05,
+ "last_cutoff_score_margin": 1.227043139806483e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.638124194869306e-05,
+ "last_raw_normalized_gap": 0.7490537762641907,
+ "last_raw_score_gap": 1.227043139806483e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "399403ae12106905a3f0c5ca6b0a3ded0c53508d2f3805441379286d0a335110",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.650657577556558e-05,
+ "last_committed_normalized_gap": 0.886065661907196,
+ "last_committed_score_gap": 1.4625909898313694e-05,
+ "last_cutoff_score_margin": 1.4625909898313694e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.650657577556558e-05,
+ "last_raw_normalized_gap": 0.886065661907196,
+ "last_raw_score_gap": 1.4625909898313694e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "033bc0cdfafea18e6484870cf9344159077de046814d5e2874d314263c34d89d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "033bc0cdfafea18e6484870cf9344159077de046814d5e2874d314263c34d89d",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.48852733320382e-07,
+ "last_committed_normalized_gap": 0.5634461045265198,
+ "last_committed_score_gap": 3.655935358892748e-07,
+ "last_cutoff_score_margin": 3.655935358892748e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.48852733320382e-07,
+ "last_raw_normalized_gap": 0.5634461045265198,
+ "last_raw_score_gap": 3.655935358892748e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "033bc0cdfafea18e6484870cf9344159077de046814d5e2874d314263c34d89d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ }
+ ],
+ "task_id": 795
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "47ea06e038c4e7a3d8400b5be3f6ca55bd1ea9ff9d06d7568fc27f24bec1a1db",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "47ea06e038c4e7a3d8400b5be3f6ca55bd1ea9ff9d06d7568fc27f24bec1a1db",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.0970700609932464e-08,
+ "last_committed_normalized_gap": 0.0332300066947937,
+ "last_committed_score_gap": 1.3614567251352128e-09,
+ "last_cutoff_score_margin": 1.3614567251352128e-09,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 346,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.0970700609932464e-08,
+ "last_raw_normalized_gap": 0.0332300066947937,
+ "last_raw_score_gap": 1.3614567251352128e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "47ea06e038c4e7a3d8400b5be3f6ca55bd1ea9ff9d06d7568fc27f24bec1a1db",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "53b7005dd2cea2ef44827ec8d68de65732dc0c706d8a719cf401ff5376a9bb9d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "53b7005dd2cea2ef44827ec8d68de65732dc0c706d8a719cf401ff5376a9bb9d",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.995726416405887e-09,
+ "last_committed_normalized_gap": 0.009357297793030739,
+ "last_committed_score_gap": 3.738920284490632e-11,
+ "last_cutoff_score_margin": 3.738920284490632e-11,
+ "last_mask_churn": 190,
+ "last_mask_overlap": 285,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.995726416405887e-09,
+ "last_raw_normalized_gap": 0.009357297793030739,
+ "last_raw_score_gap": 3.738920284490632e-11,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "53b7005dd2cea2ef44827ec8d68de65732dc0c706d8a719cf401ff5376a9bb9d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0b890c1977a3b9a3bb356e3f50dc0e50cf61195ca73e2afc1ac10e32d9dd7369",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0b890c1977a3b9a3bb356e3f50dc0e50cf61195ca73e2afc1ac10e32d9dd7369",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4922068913847397e-08,
+ "last_committed_normalized_gap": 0.0025136368349194527,
+ "last_committed_score_gap": 3.750866284235599e-11,
+ "last_cutoff_score_margin": 3.750866284235599e-11,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 262,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4922068913847397e-08,
+ "last_raw_normalized_gap": 0.0025136368349194527,
+ "last_raw_score_gap": 3.750866284235599e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "0b890c1977a3b9a3bb356e3f50dc0e50cf61195ca73e2afc1ac10e32d9dd7369",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d5456ff45170650210fd0766cc024466db9289a64d7d865564fea0799a52e1b4",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d5456ff45170650210fd0766cc024466db9289a64d7d865564fea0799a52e1b4",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.040815670374286e-07,
+ "last_committed_normalized_gap": 0.08593419939279556,
+ "last_committed_score_gap": 2.6131004915441736e-08,
+ "last_cutoff_score_margin": 2.6131004915441736e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.040815670374286e-07,
+ "last_raw_normalized_gap": 0.08593419939279556,
+ "last_raw_score_gap": 2.6131004915441736e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "d5456ff45170650210fd0766cc024466db9289a64d7d865564fea0799a52e1b4",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fdf38a9d504f244f92a48537ce48baf5321aa8b156943cc655bec28df3d06d3c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fdf38a9d504f244f92a48537ce48baf5321aa8b156943cc655bec28df3d06d3c",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0859553611908268e-07,
+ "last_committed_normalized_gap": 0.15689381957054138,
+ "last_committed_score_gap": 1.7037969257671648e-08,
+ "last_cutoff_score_margin": 1.7037969257671648e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0859553611908268e-07,
+ "last_raw_normalized_gap": 0.15689381957054138,
+ "last_raw_score_gap": 1.7037969257671648e-08,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "fdf38a9d504f244f92a48537ce48baf5321aa8b156943cc655bec28df3d06d3c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7aba8b8e6c3beb38f3369d4ab833547bdacc48c6cce9365c85dbb66186072f1f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7aba8b8e6c3beb38f3369d4ab833547bdacc48c6cce9365c85dbb66186072f1f",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.070492127221769e-08,
+ "last_committed_normalized_gap": 0.10160718113183975,
+ "last_committed_score_gap": 3.1198403860344115e-09,
+ "last_cutoff_score_margin": 3.1198403860344115e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.070492127221769e-08,
+ "last_raw_normalized_gap": 0.10160718113183975,
+ "last_raw_score_gap": 3.1198403860344115e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "7aba8b8e6c3beb38f3369d4ab833547bdacc48c6cce9365c85dbb66186072f1f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "dd61fe14d677bce758ae1cf42418cee157a86a64f0a09799180f9d2ade5b4a51",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "dd61fe14d677bce758ae1cf42418cee157a86a64f0a09799180f9d2ade5b4a51",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5462498481610965e-07,
+ "last_committed_normalized_gap": 0.10197167843580246,
+ "last_committed_score_gap": 1.576736963215808e-08,
+ "last_cutoff_score_margin": 1.576736963215808e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5462498481610965e-07,
+ "last_raw_normalized_gap": 0.10197167843580246,
+ "last_raw_score_gap": 1.576736963215808e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "dd61fe14d677bce758ae1cf42418cee157a86a64f0a09799180f9d2ade5b4a51",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "83112e4ac437edf30d7a926319810ff8b5d331feeea2fe89575b1cf0778c4e36",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "83112e4ac437edf30d7a926319810ff8b5d331feeea2fe89575b1cf0778c4e36",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.389701378064274e-08,
+ "last_committed_normalized_gap": 0.37659698724746704,
+ "last_committed_score_gap": 3.159536277053121e-08,
+ "last_cutoff_score_margin": 3.159536277053121e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.389701378064274e-08,
+ "last_raw_normalized_gap": 0.37659698724746704,
+ "last_raw_score_gap": 3.159536277053121e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "83112e4ac437edf30d7a926319810ff8b5d331feeea2fe89575b1cf0778c4e36",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0c1b17e838cffc523b939ecab1b2230094f6cb583f9b5d400367fb060b36d415",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0c1b17e838cffc523b939ecab1b2230094f6cb583f9b5d400367fb060b36d415",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.6857568613536387e-08,
+ "last_committed_normalized_gap": 0.11157893389463425,
+ "last_committed_score_gap": 2.996738857063974e-09,
+ "last_cutoff_score_margin": 2.996738857063974e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.6857568613536387e-08,
+ "last_raw_normalized_gap": 0.11157893389463425,
+ "last_raw_score_gap": 2.996738857063974e-09,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "0c1b17e838cffc523b939ecab1b2230094f6cb583f9b5d400367fb060b36d415",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "63e84acf83d4c8ecc6c16e0a306901664300513552bc459067ebe698def6a47e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "63e84acf83d4c8ecc6c16e0a306901664300513552bc459067ebe698def6a47e",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0065898550237762e-06,
+ "last_committed_normalized_gap": 0.0024707315023988485,
+ "last_committed_score_gap": 2.4870132619980723e-09,
+ "last_cutoff_score_margin": 2.4870132619980723e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0065898550237762e-06,
+ "last_raw_normalized_gap": 0.0024707315023988485,
+ "last_raw_score_gap": 2.4870132619980723e-09,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "63e84acf83d4c8ecc6c16e0a306901664300513552bc459067ebe698def6a47e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a01e21dd81c9bfe421a358ff69d00593b9e37e580069c5b7fd6951c9d1e733bf",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a01e21dd81c9bfe421a358ff69d00593b9e37e580069c5b7fd6951c9d1e733bf",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.829651262776679e-08,
+ "last_committed_normalized_gap": 0.013779754750430584,
+ "last_committed_score_gap": 5.277165371353476e-10,
+ "last_cutoff_score_margin": 5.277165371353476e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.829651262776679e-08,
+ "last_raw_normalized_gap": 0.013779754750430584,
+ "last_raw_score_gap": 5.277165371353476e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "a01e21dd81c9bfe421a358ff69d00593b9e37e580069c5b7fd6951c9d1e733bf",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7bf521ccf882a9dc7067dcb9a21bdcb8ebb70146777d8c88a6f1b5e6d3d656e0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7bf521ccf882a9dc7067dcb9a21bdcb8ebb70146777d8c88a6f1b5e6d3d656e0",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0117292248423837e-07,
+ "last_committed_normalized_gap": 0.38007158041000366,
+ "last_committed_score_gap": 3.845295282189909e-08,
+ "last_cutoff_score_margin": 3.845295282189909e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0117292248423837e-07,
+ "last_raw_normalized_gap": 0.38007158041000366,
+ "last_raw_score_gap": 3.845295282189909e-08,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "7bf521ccf882a9dc7067dcb9a21bdcb8ebb70146777d8c88a6f1b5e6d3d656e0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0c99e7c9059d37e73104baa831a4f73891b371bbbf4c9624b988186ad39ed42a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0c99e7c9059d37e73104baa831a4f73891b371bbbf4c9624b988186ad39ed42a",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.727483529786696e-07,
+ "last_committed_normalized_gap": 0.5773272514343262,
+ "last_committed_score_gap": 5.615941063297214e-07,
+ "last_cutoff_score_margin": 5.615941063297214e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.727483529786696e-07,
+ "last_raw_normalized_gap": 0.5773272514343262,
+ "last_raw_score_gap": 5.615941063297214e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "0c99e7c9059d37e73104baa831a4f73891b371bbbf4c9624b988186ad39ed42a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f5dfb78e35bbd306c247307a13d186a5116eb8730225c5c444a2ac8e98e6d50b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f5dfb78e35bbd306c247307a13d186a5116eb8730225c5c444a2ac8e98e6d50b",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.8235263016540557e-06,
+ "last_committed_normalized_gap": 0.6672714352607727,
+ "last_committed_score_gap": 1.8840585198631743e-06,
+ "last_cutoff_score_margin": 1.8840585198631743e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.8235263016540557e-06,
+ "last_raw_normalized_gap": 0.6672714352607727,
+ "last_raw_score_gap": 1.8840585198631743e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "f5dfb78e35bbd306c247307a13d186a5116eb8730225c5c444a2ac8e98e6d50b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.814203905174509e-05,
+ "last_committed_normalized_gap": 0.956450879573822,
+ "last_committed_score_gap": 5.5610005802009255e-05,
+ "last_cutoff_score_margin": 5.5610005802009255e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.814203905174509e-05,
+ "last_raw_normalized_gap": 0.956450879573822,
+ "last_raw_score_gap": 5.5610005802009255e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ba3a829a1e87f150951c8c169720224eb14a39509492bdf801e67d9c57fcf8bd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ba3a829a1e87f150951c8c169720224eb14a39509492bdf801e67d9c57fcf8bd",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.11113144562114e-05,
+ "last_committed_normalized_gap": 0.5827355980873108,
+ "last_committed_score_gap": 1.812967093428597e-05,
+ "last_cutoff_score_margin": 1.812967093428597e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.11113144562114e-05,
+ "last_raw_normalized_gap": 0.5827355980873108,
+ "last_raw_score_gap": 1.812967093428597e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "ba3a829a1e87f150951c8c169720224eb14a39509492bdf801e67d9c57fcf8bd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9203649319242686e-05,
+ "last_committed_normalized_gap": 0.9259187579154968,
+ "last_committed_score_gap": 2.704020698729437e-05,
+ "last_cutoff_score_margin": 2.704020698729437e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9203649319242686e-05,
+ "last_raw_normalized_gap": 0.9259187579154968,
+ "last_raw_score_gap": 2.704020698729437e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "156b7b3c4dfc57e8e1fd7a380223314624d7dd9448210c45b1746ee513c71130",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "156b7b3c4dfc57e8e1fd7a380223314624d7dd9448210c45b1746ee513c71130",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.285350089754502e-07,
+ "last_committed_normalized_gap": 0.46964403986930847,
+ "last_committed_score_gap": 1.5429451138970762e-07,
+ "last_cutoff_score_margin": 1.5429451138970762e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.285350089754502e-07,
+ "last_raw_normalized_gap": 0.46964403986930847,
+ "last_raw_score_gap": 1.5429451138970762e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "156b7b3c4dfc57e8e1fd7a380223314624d7dd9448210c45b1746ee513c71130",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ }
+ ],
+ "task_id": 944
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "24c3f31fd1192c691f3cc1bc0b4da10094b403d054b7fa4afc6df15e5d541837",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "24c3f31fd1192c691f3cc1bc0b4da10094b403d054b7fa4afc6df15e5d541837",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4611002185915822e-08,
+ "last_committed_normalized_gap": 0.08333326131105423,
+ "last_committed_score_gap": 1.2175824792848289e-09,
+ "last_cutoff_score_margin": 1.2175824792848289e-09,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 346,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4611002185915822e-08,
+ "last_raw_normalized_gap": 0.08333326131105423,
+ "last_raw_score_gap": 1.2175824792848289e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "24c3f31fd1192c691f3cc1bc0b4da10094b403d054b7fa4afc6df15e5d541837",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "aecb16fdada6950aaa87ea3abb9ca58742ac1be3992918f4172d2adc7134598a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "aecb16fdada6950aaa87ea3abb9ca58742ac1be3992918f4172d2adc7134598a",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.808189041887289e-10,
+ "last_committed_normalized_gap": 0.005118127912282944,
+ "last_committed_score_gap": 1.949079786456309e-12,
+ "last_cutoff_score_margin": 1.949079786456309e-12,
+ "last_mask_churn": 66,
+ "last_mask_overlap": 347,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.808189041887289e-10,
+ "last_raw_normalized_gap": 0.005118127912282944,
+ "last_raw_score_gap": 1.949079786456309e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "aecb16fdada6950aaa87ea3abb9ca58742ac1be3992918f4172d2adc7134598a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "da3a4c8bbc2d726f6b747f2d6e34eabd93be0be7a7e84ae196e369a3d26040e5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "da3a4c8bbc2d726f6b747f2d6e34eabd93be0be7a7e84ae196e369a3d26040e5",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4723700864370812e-09,
+ "last_committed_normalized_gap": 0.0033542397432029247,
+ "last_committed_score_gap": 8.29292190474007e-12,
+ "last_cutoff_score_margin": 8.29292190474007e-12,
+ "last_mask_churn": 20,
+ "last_mask_overlap": 259,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4723700864370812e-09,
+ "last_raw_normalized_gap": 0.0033542397432029247,
+ "last_raw_score_gap": 8.29292190474007e-12,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "da3a4c8bbc2d726f6b747f2d6e34eabd93be0be7a7e84ae196e369a3d26040e5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "05514c217ce7ea7c70bb07c11076e3571bd4d3c0f3c0c0301346a1903377fe86",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "05514c217ce7ea7c70bb07c11076e3571bd4d3c0f3c0c0301346a1903377fe86",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5472437553398777e-07,
+ "last_committed_normalized_gap": 0.37326717376708984,
+ "last_committed_score_gap": 5.7753531734761054e-08,
+ "last_cutoff_score_margin": 5.7753531734761054e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5472437553398777e-07,
+ "last_raw_normalized_gap": 0.37326717376708984,
+ "last_raw_score_gap": 5.7753531734761054e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "05514c217ce7ea7c70bb07c11076e3571bd4d3c0f3c0c0301346a1903377fe86",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ab7c09efa880c464c8abed72e5b5db68bd9e399aac9972d04a59590cbb6eb804",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ab7c09efa880c464c8abed72e5b5db68bd9e399aac9972d04a59590cbb6eb804",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.9334527574274034e-08,
+ "last_committed_normalized_gap": 0.21168673038482666,
+ "last_committed_score_gap": 1.0443464759646304e-08,
+ "last_cutoff_score_margin": 1.0443464759646304e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 183,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.9334527574274034e-08,
+ "last_raw_normalized_gap": 0.21168673038482666,
+ "last_raw_score_gap": 1.0443464759646304e-08,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "ab7c09efa880c464c8abed72e5b5db68bd9e399aac9972d04a59590cbb6eb804",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a6285aa61eeb043274a824413105bb6fe1d2010bd74f042699ede90b5a18afe0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a6285aa61eeb043274a824413105bb6fe1d2010bd74f042699ede90b5a18afe0",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2189788612413395e-08,
+ "last_committed_normalized_gap": 0.03183027356863022,
+ "last_committed_score_gap": 1.024609730393422e-09,
+ "last_cutoff_score_margin": 1.024609730393422e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2189788612413395e-08,
+ "last_raw_normalized_gap": 0.03183027356863022,
+ "last_raw_score_gap": 1.024609730393422e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "a6285aa61eeb043274a824413105bb6fe1d2010bd74f042699ede90b5a18afe0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fdbf58cc5079a35a2556246cf5901d7f0a6da3488e3129d56906882406789983",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fdbf58cc5079a35a2556246cf5901d7f0a6da3488e3129d56906882406789983",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.249013479309724e-07,
+ "last_committed_normalized_gap": 0.6575588583946228,
+ "last_committed_score_gap": 8.212998636736302e-08,
+ "last_cutoff_score_margin": 8.212998636736302e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.249013479309724e-07,
+ "last_raw_normalized_gap": 0.6575588583946228,
+ "last_raw_score_gap": 8.212998636736302e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "fdbf58cc5079a35a2556246cf5901d7f0a6da3488e3129d56906882406789983",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9f8b74dfd326bad13684076e2d92b1e2201b82c857dbe0ad8869fba26db95a71",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9f8b74dfd326bad13684076e2d92b1e2201b82c857dbe0ad8869fba26db95a71",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.8462236890145505e-08,
+ "last_committed_normalized_gap": 0.125451922416687,
+ "last_committed_score_gap": 6.079680758830364e-09,
+ "last_cutoff_score_margin": 6.079680758830364e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.8462236890145505e-08,
+ "last_raw_normalized_gap": 0.125451922416687,
+ "last_raw_score_gap": 6.079680758830364e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "9f8b74dfd326bad13684076e2d92b1e2201b82c857dbe0ad8869fba26db95a71",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e71137e6d088b6fcfa29d2b8b1f2f9df07649d8dab366c26444eeb1a63ca9b3a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e71137e6d088b6fcfa29d2b8b1f2f9df07649d8dab366c26444eeb1a63ca9b3a",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.817642747425907e-08,
+ "last_committed_normalized_gap": 0.026862269267439842,
+ "last_committed_score_gap": 4.882600990185892e-10,
+ "last_cutoff_score_margin": 4.882600990185892e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 82,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.817642747425907e-08,
+ "last_raw_normalized_gap": 0.026862269267439842,
+ "last_raw_score_gap": 4.882600990185892e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "e71137e6d088b6fcfa29d2b8b1f2f9df07649d8dab366c26444eeb1a63ca9b3a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "04f72b15c811cd2950ec3824aa67242cd5e8a877122672b85de3041bc39127f0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "04f72b15c811cd2950ec3824aa67242cd5e8a877122672b85de3041bc39127f0",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0624289643601514e-06,
+ "last_committed_normalized_gap": 0.4661794602870941,
+ "last_committed_score_gap": 4.952825634063629e-07,
+ "last_cutoff_score_margin": 4.952825634063629e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0624289643601514e-06,
+ "last_raw_normalized_gap": 0.4661794602870941,
+ "last_raw_score_gap": 4.952825634063629e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "04f72b15c811cd2950ec3824aa67242cd5e8a877122672b85de3041bc39127f0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "985d8ff91ecd8adc591177daf1e737341314d4a0d99d5e0f903b2f0044652ba9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "985d8ff91ecd8adc591177daf1e737341314d4a0d99d5e0f903b2f0044652ba9",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7697363574598057e-08,
+ "last_committed_normalized_gap": 0.04550640285015106,
+ "last_committed_score_gap": 8.053433475652128e-10,
+ "last_cutoff_score_margin": 8.053433475652128e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 60,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7697363574598057e-08,
+ "last_raw_normalized_gap": 0.04550640285015106,
+ "last_raw_score_gap": 8.053433475652128e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "985d8ff91ecd8adc591177daf1e737341314d4a0d99d5e0f903b2f0044652ba9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8e6665b27235852570ae48b768727a6fbef18a8879e7e6467e6813f71a4476b5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8e6665b27235852570ae48b768727a6fbef18a8879e7e6467e6813f71a4476b5",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8819484637333517e-08,
+ "last_committed_normalized_gap": 0.12269780039787292,
+ "last_committed_score_gap": 2.3091093481752978e-09,
+ "last_cutoff_score_margin": 2.3091093481752978e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8819484637333517e-08,
+ "last_raw_normalized_gap": 0.12269780039787292,
+ "last_raw_score_gap": 2.3091093481752978e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "8e6665b27235852570ae48b768727a6fbef18a8879e7e6467e6813f71a4476b5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8b517eba5df7c821a6b02dcf259bf0eebbf1628e6e9989c742e6abf8304cee55",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8b517eba5df7c821a6b02dcf259bf0eebbf1628e6e9989c742e6abf8304cee55",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6453816442663083e-06,
+ "last_committed_normalized_gap": 0.08039871603250504,
+ "last_committed_score_gap": 1.3228657280706102e-07,
+ "last_cutoff_score_margin": 1.3228657280706102e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6453816442663083e-06,
+ "last_raw_normalized_gap": 0.08039871603250504,
+ "last_raw_score_gap": 1.3228657280706102e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "8b517eba5df7c821a6b02dcf259bf0eebbf1628e6e9989c742e6abf8304cee55",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e620ff69b5ef2037d993e20bbfbbe3d6bb148f8f4c841d4595a56f0a6af831c5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e620ff69b5ef2037d993e20bbfbbe3d6bb148f8f4c841d4595a56f0a6af831c5",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.899130878286087e-07,
+ "last_committed_normalized_gap": 0.4640218913555145,
+ "last_committed_score_gap": 3.665369661121076e-07,
+ "last_cutoff_score_margin": 3.665369661121076e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.899130878286087e-07,
+ "last_raw_normalized_gap": 0.4640218913555145,
+ "last_raw_score_gap": 3.665369661121076e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "e620ff69b5ef2037d993e20bbfbbe3d6bb148f8f4c841d4595a56f0a6af831c5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.663120514829643e-05,
+ "last_committed_normalized_gap": 0.7394846081733704,
+ "last_committed_score_gap": 2.7088211936643347e-05,
+ "last_cutoff_score_margin": 2.7088211936643347e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.663120514829643e-05,
+ "last_raw_normalized_gap": 0.7394846081733704,
+ "last_raw_score_gap": 2.7088211936643347e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.540343459462747e-05,
+ "last_committed_normalized_gap": 0.9318877458572388,
+ "last_committed_score_gap": 3.299202580819838e-05,
+ "last_cutoff_score_margin": 3.299202580819838e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.540343459462747e-05,
+ "last_raw_normalized_gap": 0.9318877458572388,
+ "last_raw_score_gap": 3.299202580819838e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4328131328511517e-05,
+ "last_committed_normalized_gap": 0.9348424673080444,
+ "last_committed_score_gap": 1.3394545931078028e-05,
+ "last_cutoff_score_margin": 1.3394545931078028e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4328131328511517e-05,
+ "last_raw_normalized_gap": 0.9348424673080444,
+ "last_raw_score_gap": 1.3394545931078028e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b7eff36ace790cf41a2344b750d49b11b1c87a456a052d3efbe770c1a175dbc5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b7eff36ace790cf41a2344b750d49b11b1c87a456a052d3efbe770c1a175dbc5",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.2834645341827127e-07,
+ "last_committed_normalized_gap": 0.6495206952095032,
+ "last_committed_score_gap": 2.782198862405494e-07,
+ "last_cutoff_score_margin": 2.782198862405494e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.2834645341827127e-07,
+ "last_raw_normalized_gap": 0.6495206952095032,
+ "last_raw_score_gap": 2.782198862405494e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "b7eff36ace790cf41a2344b750d49b11b1c87a456a052d3efbe770c1a175dbc5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ }
+ ],
+ "task_id": 653
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9799652abdbcdb512185a2858c2ae9d2d29208d1ba4306884b3f1703d361d758",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9799652abdbcdb512185a2858c2ae9d2d29208d1ba4306884b3f1703d361d758",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5155551480461327e-08,
+ "last_committed_normalized_gap": 0.07343441247940063,
+ "last_committed_score_gap": 1.1129390742325995e-09,
+ "last_cutoff_score_margin": 1.1129390742325995e-09,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 349,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5155551480461327e-08,
+ "last_raw_normalized_gap": 0.07343441247940063,
+ "last_raw_score_gap": 1.1129390742325995e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "9799652abdbcdb512185a2858c2ae9d2d29208d1ba4306884b3f1703d361d758",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c1a1aee6e48eb45ea73de08b7f6ac1883da7c917e8169fce1a555839a726bdfc",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c1a1aee6e48eb45ea73de08b7f6ac1883da7c917e8169fce1a555839a726bdfc",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3436652901432922e-09,
+ "last_committed_normalized_gap": 0.004057454876601696,
+ "last_committed_score_gap": 5.451861184724294e-12,
+ "last_cutoff_score_margin": 5.451861184724294e-12,
+ "last_mask_churn": 146,
+ "last_mask_overlap": 307,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3436652901432922e-09,
+ "last_raw_normalized_gap": 0.004057454876601696,
+ "last_raw_score_gap": 5.451861184724294e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "c1a1aee6e48eb45ea73de08b7f6ac1883da7c917e8169fce1a555839a726bdfc",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "37e00e68caaec70e063041f3682633d70dfe24404a82a5480ce752227e3c5375",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "37e00e68caaec70e063041f3682633d70dfe24404a82a5480ce752227e3c5375",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.578660448677056e-09,
+ "last_committed_normalized_gap": 0.014669552445411682,
+ "last_committed_score_gap": 1.2584511210889104e-10,
+ "last_cutoff_score_margin": 1.2584511210889104e-10,
+ "last_mask_churn": 36,
+ "last_mask_overlap": 251,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.578660448677056e-09,
+ "last_raw_normalized_gap": 0.014669552445411682,
+ "last_raw_score_gap": 1.2584511210889104e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "37e00e68caaec70e063041f3682633d70dfe24404a82a5480ce752227e3c5375",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "53101fade943224c3511312ef7979d241ab7ade3dafc4d7b56402ddfa23f138b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "53101fade943224c3511312ef7979d241ab7ade3dafc4d7b56402ddfa23f138b",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.220126245651045e-07,
+ "last_committed_normalized_gap": 0.09914594888687134,
+ "last_committed_score_gap": 3.1926248311719974e-08,
+ "last_cutoff_score_margin": 3.1926248311719974e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 177,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.220126245651045e-07,
+ "last_raw_normalized_gap": 0.09914594888687134,
+ "last_raw_score_gap": 3.1926248311719974e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "53101fade943224c3511312ef7979d241ab7ade3dafc4d7b56402ddfa23f138b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8e51ee621ee4f2c152fcb149e6defef89064abda68af82862a6f75497fe89083",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8e51ee621ee4f2c152fcb149e6defef89064abda68af82862a6f75497fe89083",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0866330057979212e-07,
+ "last_committed_normalized_gap": 0.023064538836479187,
+ "last_committed_score_gap": 2.506268970137171e-09,
+ "last_cutoff_score_margin": 2.506268970137171e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0866330057979212e-07,
+ "last_raw_normalized_gap": 0.023064538836479187,
+ "last_raw_score_gap": 2.506268970137171e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "8e51ee621ee4f2c152fcb149e6defef89064abda68af82862a6f75497fe89083",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "be8e97eece7c3a3b3b02ea74c74f982528916a4211113db5a4eb6bd9d09e1d94",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "be8e97eece7c3a3b3b02ea74c74f982528916a4211113db5a4eb6bd9d09e1d94",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.9386975458910456e-08,
+ "last_committed_normalized_gap": 0.04958359897136688,
+ "last_committed_score_gap": 1.952948025518708e-09,
+ "last_cutoff_score_margin": 1.952948025518708e-09,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 100,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.9386975458910456e-08,
+ "last_raw_normalized_gap": 0.04958359897136688,
+ "last_raw_score_gap": 1.952948025518708e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "be8e97eece7c3a3b3b02ea74c74f982528916a4211113db5a4eb6bd9d09e1d94",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7748c45fe788d97048de48047d5d499a899d4dd31959f283f7941628c0c26c69",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7748c45fe788d97048de48047d5d499a899d4dd31959f283f7941628c0c26c69",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2591095810421393e-07,
+ "last_committed_normalized_gap": 0.2847839891910553,
+ "last_committed_score_gap": 3.5857425473295734e-08,
+ "last_cutoff_score_margin": 3.5857425473295734e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2591095810421393e-07,
+ "last_raw_normalized_gap": 0.2847839891910553,
+ "last_raw_score_gap": 3.5857425473295734e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "7748c45fe788d97048de48047d5d499a899d4dd31959f283f7941628c0c26c69",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1e37aa2939af8aafa324ca49bd0dac535b853eae01c6ee34be475c8fd96677f1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1e37aa2939af8aafa324ca49bd0dac535b853eae01c6ee34be475c8fd96677f1",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2198178467315302e-07,
+ "last_committed_normalized_gap": 0.15419530868530273,
+ "last_committed_score_gap": 1.880901834283577e-08,
+ "last_cutoff_score_margin": 1.880901834283577e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2198178467315302e-07,
+ "last_raw_normalized_gap": 0.15419530868530273,
+ "last_raw_score_gap": 1.880901834283577e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "1e37aa2939af8aafa324ca49bd0dac535b853eae01c6ee34be475c8fd96677f1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2a91618c99d6bbf27f67b7cd69481b8cbc89b7c554dac6a3b204ec32b38bdb41",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "2a91618c99d6bbf27f67b7cd69481b8cbc89b7c554dac6a3b204ec32b38bdb41",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7668584817442934e-08,
+ "last_committed_normalized_gap": 0.03832201287150383,
+ "last_committed_score_gap": 6.770957128310329e-10,
+ "last_cutoff_score_margin": 6.770957128310329e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7668584817442934e-08,
+ "last_raw_normalized_gap": 0.03832201287150383,
+ "last_raw_score_gap": 6.770957128310329e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "2a91618c99d6bbf27f67b7cd69481b8cbc89b7c554dac6a3b204ec32b38bdb41",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e816bc17d427ad7ffc15eed45884909552fd7b9df9692301a0a531981384e889",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e816bc17d427ad7ffc15eed45884909552fd7b9df9692301a0a531981384e889",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.660911134938942e-07,
+ "last_committed_normalized_gap": 0.4417448341846466,
+ "last_committed_score_gap": 3.8259128132267506e-07,
+ "last_cutoff_score_margin": 3.8259128132267506e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.660911134938942e-07,
+ "last_raw_normalized_gap": 0.4417448341846466,
+ "last_raw_score_gap": 3.8259128132267506e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "e816bc17d427ad7ffc15eed45884909552fd7b9df9692301a0a531981384e889",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b1887e9dfc02f117c4704e3dba73e3dec18b07bfd931f9c242dd1c78ec9b63ec",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b1887e9dfc02f117c4704e3dba73e3dec18b07bfd931f9c242dd1c78ec9b63ec",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.6951621379112112e-08,
+ "last_committed_normalized_gap": 0.016477074474096298,
+ "last_committed_score_gap": 4.440838807795444e-10,
+ "last_cutoff_score_margin": 4.440838807795444e-10,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.6951621379112112e-08,
+ "last_raw_normalized_gap": 0.016477074474096298,
+ "last_raw_score_gap": 4.440838807795444e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "b1887e9dfc02f117c4704e3dba73e3dec18b07bfd931f9c242dd1c78ec9b63ec",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8362367650ec7afa61855b8d0e4319b71bd55a5cba4c3a3c85df7bac45be5e7d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8362367650ec7afa61855b8d0e4319b71bd55a5cba4c3a3c85df7bac45be5e7d",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.346851329411038e-08,
+ "last_committed_normalized_gap": 0.029150424525141716,
+ "last_committed_score_gap": 9.75621361476442e-10,
+ "last_cutoff_score_margin": 9.75621361476442e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 50,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.346851329411038e-08,
+ "last_raw_normalized_gap": 0.029150424525141716,
+ "last_raw_score_gap": 9.75621361476442e-10,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "8362367650ec7afa61855b8d0e4319b71bd55a5cba4c3a3c85df7bac45be5e7d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1891512460570084e-06,
+ "last_committed_normalized_gap": 0.4686864912509918,
+ "last_committed_score_gap": 1.026025643113826e-06,
+ "last_cutoff_score_margin": 1.026025643113826e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1891512460570084e-06,
+ "last_raw_normalized_gap": 0.4686864912509918,
+ "last_raw_score_gap": 1.026025643113826e-06,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0dd56c5b0b5833c0b718c49f79b1028c15ef5bd628e6c3d3d6d167a916fa3362",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0dd56c5b0b5833c0b718c49f79b1028c15ef5bd628e6c3d3d6d167a916fa3362",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.7276350920146797e-06,
+ "last_committed_normalized_gap": 0.7134691476821899,
+ "last_committed_score_gap": 1.946083557413658e-06,
+ "last_cutoff_score_margin": 1.946083557413658e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7276350920146797e-06,
+ "last_raw_normalized_gap": 0.7134691476821899,
+ "last_raw_score_gap": 1.946083557413658e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "0dd56c5b0b5833c0b718c49f79b1028c15ef5bd628e6c3d3d6d167a916fa3362",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.983425216982141e-05,
+ "last_committed_normalized_gap": 0.9216602444648743,
+ "last_committed_score_gap": 5.51468510820996e-05,
+ "last_cutoff_score_margin": 5.51468510820996e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.983425216982141e-05,
+ "last_raw_normalized_gap": 0.9216602444648743,
+ "last_raw_score_gap": 5.51468510820996e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.243273335509002e-05,
+ "last_committed_normalized_gap": 0.8979597687721252,
+ "last_committed_score_gap": 4.708248525275849e-05,
+ "last_cutoff_score_margin": 4.708248525275849e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.243273335509002e-05,
+ "last_raw_normalized_gap": 0.8979597687721252,
+ "last_raw_score_gap": 4.708248525275849e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.356924960622564e-05,
+ "last_committed_normalized_gap": 0.9235311150550842,
+ "last_committed_score_gap": 2.1766934878542088e-05,
+ "last_cutoff_score_margin": 2.1766934878542088e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.356924960622564e-05,
+ "last_raw_normalized_gap": 0.9235311150550842,
+ "last_raw_score_gap": 2.1766934878542088e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d6b88d95279cbbafc19df286b4a67ba3132606b3a8c24aa41b5314a6503092d7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d6b88d95279cbbafc19df286b4a67ba3132606b3a8c24aa41b5314a6503092d7",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.743640821900044e-07,
+ "last_committed_normalized_gap": 0.745710551738739,
+ "last_committed_score_gap": 5.774514875156456e-07,
+ "last_cutoff_score_margin": 5.774514875156456e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.743640821900044e-07,
+ "last_raw_normalized_gap": 0.745710551738739,
+ "last_raw_score_gap": 5.774514875156456e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "d6b88d95279cbbafc19df286b4a67ba3132606b3a8c24aa41b5314a6503092d7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ }
+ ],
+ "task_id": 857
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6060d69fcc521858814126efb55de82ea014ee70a4944efd1d9e3aef06cd638c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6060d69fcc521858814126efb55de82ea014ee70a4944efd1d9e3aef06cd638c",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0795232202885927e-08,
+ "last_committed_normalized_gap": 0.262254923582077,
+ "last_committed_score_gap": 5.453651752418409e-09,
+ "last_cutoff_score_margin": 5.453651752418409e-09,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 348,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0795232202885927e-08,
+ "last_raw_normalized_gap": 0.262254923582077,
+ "last_raw_score_gap": 5.453651752418409e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "6060d69fcc521858814126efb55de82ea014ee70a4944efd1d9e3aef06cd638c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c8bf62c460f7f6cc09c3a78259c2a4422841ed74879ffc413f2aad2b38a6420e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c8bf62c460f7f6cc09c3a78259c2a4422841ed74879ffc413f2aad2b38a6420e",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.2552869561340856e-10,
+ "last_committed_normalized_gap": 0.003245063591748476,
+ "last_committed_score_gap": 1.380867642453154e-12,
+ "last_cutoff_score_margin": 1.380867642453154e-12,
+ "last_mask_churn": 72,
+ "last_mask_overlap": 344,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.2552869561340856e-10,
+ "last_raw_normalized_gap": 0.003245063591748476,
+ "last_raw_score_gap": 1.380867642453154e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "c8bf62c460f7f6cc09c3a78259c2a4422841ed74879ffc413f2aad2b38a6420e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f04c96c70c69e8dd348e2165ee4b21b137ab7b06412b926a24efb0ec1ce0dbb7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f04c96c70c69e8dd348e2165ee4b21b137ab7b06412b926a24efb0ec1ce0dbb7",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4406068277471604e-09,
+ "last_committed_normalized_gap": 0.005169805604964495,
+ "last_committed_score_gap": 1.2617462630259979e-11,
+ "last_cutoff_score_margin": 1.2617462630259979e-11,
+ "last_mask_churn": 28,
+ "last_mask_overlap": 255,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4406068277471604e-09,
+ "last_raw_normalized_gap": 0.005169805604964495,
+ "last_raw_score_gap": 1.2617462630259979e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "f04c96c70c69e8dd348e2165ee4b21b137ab7b06412b926a24efb0ec1ce0dbb7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f1b122e4590ab19d962ec113db82273e65fb6cb99d167c888fdfb096f0587381",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f1b122e4590ab19d962ec113db82273e65fb6cb99d167c888fdfb096f0587381",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3017280170734011e-07,
+ "last_committed_normalized_gap": 0.38300445675849915,
+ "last_committed_score_gap": 8.815720775601221e-08,
+ "last_cutoff_score_margin": 8.815720775601221e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3017280170734011e-07,
+ "last_raw_normalized_gap": 0.38300445675849915,
+ "last_raw_score_gap": 8.815720775601221e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "f1b122e4590ab19d962ec113db82273e65fb6cb99d167c888fdfb096f0587381",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bc6b4d628921f0a1ed78642108f605d63dc6f4d0ecbafd53c23cc31e389ac2d1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "bc6b4d628921f0a1ed78642108f605d63dc6f4d0ecbafd53c23cc31e389ac2d1",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.9653310090461673e-08,
+ "last_committed_normalized_gap": 0.005464563146233559,
+ "last_committed_score_gap": 1.0739675815329974e-10,
+ "last_cutoff_score_margin": 1.0739675815329974e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9653310090461673e-08,
+ "last_raw_normalized_gap": 0.005464563146233559,
+ "last_raw_score_gap": 1.0739675815329974e-10,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "bc6b4d628921f0a1ed78642108f605d63dc6f4d0ecbafd53c23cc31e389ac2d1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9c051f7d9e6ed5d7402ea3c3872d41924b70140da9f6ab32fb146f6149686158",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9c051f7d9e6ed5d7402ea3c3872d41924b70140da9f6ab32fb146f6149686158",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4290850220154425e-08,
+ "last_committed_normalized_gap": 0.045851510018110275,
+ "last_committed_score_gap": 1.1137721855902782e-09,
+ "last_cutoff_score_margin": 1.1137721855902782e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4290850220154425e-08,
+ "last_raw_normalized_gap": 0.045851510018110275,
+ "last_raw_score_gap": 1.1137721855902782e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "9c051f7d9e6ed5d7402ea3c3872d41924b70140da9f6ab32fb146f6149686158",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d64b25b6e24b927f91a142534d6262b11f3c81ed9bbed38edc52ad3143fd2749",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d64b25b6e24b927f91a142534d6262b11f3c81ed9bbed38edc52ad3143fd2749",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7917579953063978e-07,
+ "last_committed_normalized_gap": 0.22127972543239594,
+ "last_committed_score_gap": 3.9647972016609856e-08,
+ "last_cutoff_score_margin": 3.9647972016609856e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7917579953063978e-07,
+ "last_raw_normalized_gap": 0.22127972543239594,
+ "last_raw_score_gap": 3.9647972016609856e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "d64b25b6e24b927f91a142534d6262b11f3c81ed9bbed38edc52ad3143fd2749",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3f436277e049625614e3f49845697577b5d2da48f6fd6ec5ea4e546882c65361",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3f436277e049625614e3f49845697577b5d2da48f6fd6ec5ea4e546882c65361",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0386482784952022e-07,
+ "last_committed_normalized_gap": 0.5079241394996643,
+ "last_committed_score_gap": 5.275545333915943e-08,
+ "last_cutoff_score_margin": 5.275545333915943e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0386482784952022e-07,
+ "last_raw_normalized_gap": 0.5079241394996643,
+ "last_raw_score_gap": 5.275545333915943e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "3f436277e049625614e3f49845697577b5d2da48f6fd6ec5ea4e546882c65361",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "de32d067e38d2329028c5ae83c59412703c807adbbe8b77062f55987a62a3634",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "de32d067e38d2329028c5ae83c59412703c807adbbe8b77062f55987a62a3634",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7154087927906403e-08,
+ "last_committed_normalized_gap": 0.046748265624046326,
+ "last_committed_score_gap": 8.019238606493673e-10,
+ "last_cutoff_score_margin": 8.019238606493673e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 81,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7154087927906403e-08,
+ "last_raw_normalized_gap": 0.046748265624046326,
+ "last_raw_score_gap": 8.019238606493673e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "de32d067e38d2329028c5ae83c59412703c807adbbe8b77062f55987a62a3634",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c270a9603d66f01368b7f4e9df1f690e096fd8b436a75d1ab368e59d29a7eba4",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c270a9603d66f01368b7f4e9df1f690e096fd8b436a75d1ab368e59d29a7eba4",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.967567168838286e-07,
+ "last_committed_normalized_gap": 0.3124620318412781,
+ "last_committed_score_gap": 2.802024141601578e-07,
+ "last_cutoff_score_margin": 2.802024141601578e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.967567168838286e-07,
+ "last_raw_normalized_gap": 0.3124620318412781,
+ "last_raw_score_gap": 2.802024141601578e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "c270a9603d66f01368b7f4e9df1f690e096fd8b436a75d1ab368e59d29a7eba4",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0343b17ee7b8fbf8af4b96064d5ab01090718313b8ed18ebb2cbdb3eef326bd6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0343b17ee7b8fbf8af4b96064d5ab01090718313b8ed18ebb2cbdb3eef326bd6",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5571482709096927e-08,
+ "last_committed_normalized_gap": 0.20020805299282074,
+ "last_committed_score_gap": 5.119616730553389e-09,
+ "last_cutoff_score_margin": 5.119616730553389e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 60,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5571482709096927e-08,
+ "last_raw_normalized_gap": 0.20020805299282074,
+ "last_raw_score_gap": 5.119616730553389e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "0343b17ee7b8fbf8af4b96064d5ab01090718313b8ed18ebb2cbdb3eef326bd6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "836991b7f703b039c273b39602813afba3ca62fce95799426e4647fded5592c3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "836991b7f703b039c273b39602813afba3ca62fce95799426e4647fded5592c3",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2492284418594863e-08,
+ "last_committed_normalized_gap": 0.07056380808353424,
+ "last_committed_score_gap": 2.2927792997506913e-09,
+ "last_cutoff_score_margin": 2.2927792997506913e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2492284418594863e-08,
+ "last_raw_normalized_gap": 0.07056380808353424,
+ "last_raw_score_gap": 2.2927792997506913e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "836991b7f703b039c273b39602813afba3ca62fce95799426e4647fded5592c3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a813408491e9e70dd25ad31ee80e34c6bc07ac57e9051f58f06032893488797d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a813408491e9e70dd25ad31ee80e34c6bc07ac57e9051f58f06032893488797d",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.486245744483313e-07,
+ "last_committed_normalized_gap": 0.24385805428028107,
+ "last_committed_score_gap": 2.3132975002226885e-07,
+ "last_cutoff_score_margin": 2.3132975002226885e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.486245744483313e-07,
+ "last_raw_normalized_gap": 0.24385805428028107,
+ "last_raw_score_gap": 2.3132975002226885e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "a813408491e9e70dd25ad31ee80e34c6bc07ac57e9051f58f06032893488797d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0540c17d8c151931ef89b7aed5bb2fb16da150bc2d55529e86e14bde0477ffec",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0540c17d8c151931ef89b7aed5bb2fb16da150bc2d55529e86e14bde0477ffec",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3113743736757897e-06,
+ "last_committed_normalized_gap": 0.8390069603919983,
+ "last_committed_score_gap": 1.939259163918905e-06,
+ "last_cutoff_score_margin": 1.939259163918905e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3113743736757897e-06,
+ "last_raw_normalized_gap": 0.8390069603919983,
+ "last_raw_score_gap": 1.939259163918905e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "0540c17d8c151931ef89b7aed5bb2fb16da150bc2d55529e86e14bde0477ffec",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.337174272630364e-05,
+ "last_committed_normalized_gap": 0.591202974319458,
+ "last_committed_score_gap": 3.746556103578769e-05,
+ "last_cutoff_score_margin": 3.746556103578769e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.337174272630364e-05,
+ "last_raw_normalized_gap": 0.591202974319458,
+ "last_raw_score_gap": 3.746556103578769e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5229757991619408e-05,
+ "last_committed_normalized_gap": 0.7345693111419678,
+ "last_committed_score_gap": 1.1187313248228747e-05,
+ "last_cutoff_score_margin": 1.1187313248228747e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5229757991619408e-05,
+ "last_raw_normalized_gap": 0.7345693111419678,
+ "last_raw_score_gap": 1.1187313248228747e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.61950423111557e-06,
+ "last_committed_normalized_gap": 0.8712666034698486,
+ "last_committed_score_gap": 6.638619652221678e-06,
+ "last_cutoff_score_margin": 6.638619652221678e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.61950423111557e-06,
+ "last_raw_normalized_gap": 0.8712666034698486,
+ "last_raw_score_gap": 6.638619652221678e-06,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a63f2edf5b049d31056e8af42cbaebedffc2fdd31a190b8f0c755d61d21cccb1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a63f2edf5b049d31056e8af42cbaebedffc2fdd31a190b8f0c755d61d21cccb1",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7435357335671142e-07,
+ "last_committed_normalized_gap": 0.5588741302490234,
+ "last_committed_score_gap": 9.744170625936022e-08,
+ "last_cutoff_score_margin": 9.744170625936022e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7435357335671142e-07,
+ "last_raw_normalized_gap": 0.5588741302490234,
+ "last_raw_score_gap": 9.744170625936022e-08,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "a63f2edf5b049d31056e8af42cbaebedffc2fdd31a190b8f0c755d61d21cccb1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ }
+ ],
+ "task_id": 884
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "355391428da6b4ec584629b0669ace407d231f692e78987f184db6d751efc2bf",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "355391428da6b4ec584629b0669ace407d231f692e78987f184db6d751efc2bf",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8251745004249642e-08,
+ "last_committed_normalized_gap": 0.09338636696338654,
+ "last_committed_score_gap": 1.7044641253960435e-09,
+ "last_cutoff_score_margin": 1.7044641253960435e-09,
+ "last_mask_churn": 16,
+ "last_mask_overlap": 347,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8251745004249642e-08,
+ "last_raw_normalized_gap": 0.09338636696338654,
+ "last_raw_score_gap": 1.7044641253960435e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "355391428da6b4ec584629b0669ace407d231f692e78987f184db6d751efc2bf",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e79447e9d0976f9f43ecceb625d81e8933e411adfd790c052c96b9f1058bcaf",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6e79447e9d0976f9f43ecceb625d81e8933e411adfd790c052c96b9f1058bcaf",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.314836405365895e-09,
+ "last_committed_normalized_gap": 0.0016213069902732968,
+ "last_committed_score_gap": 5.374367617605458e-12,
+ "last_cutoff_score_margin": 5.374367617605458e-12,
+ "last_mask_churn": 126,
+ "last_mask_overlap": 317,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.314836405365895e-09,
+ "last_raw_normalized_gap": 0.0016213069902732968,
+ "last_raw_score_gap": 5.374367617605458e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "6e79447e9d0976f9f43ecceb625d81e8933e411adfd790c052c96b9f1058bcaf",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4b5cc62380f3a2b0776b31734d034d1864b2c7fa79d6aae0fce8f5e566f9c4b9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4b5cc62380f3a2b0776b31734d034d1864b2c7fa79d6aae0fce8f5e566f9c4b9",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0785463189222355e-08,
+ "last_committed_normalized_gap": 0.01935841143131256,
+ "last_committed_score_gap": 2.0878943018942664e-10,
+ "last_cutoff_score_margin": 2.0878943018942664e-10,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 264,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0785463189222355e-08,
+ "last_raw_normalized_gap": 0.01935841143131256,
+ "last_raw_score_gap": 2.0878943018942664e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "4b5cc62380f3a2b0776b31734d034d1864b2c7fa79d6aae0fce8f5e566f9c4b9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "52d091980bce78cbc21656ac872b35524cc05bb98f6fc9152452db970e38a435",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "52d091980bce78cbc21656ac872b35524cc05bb98f6fc9152452db970e38a435",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.633746791185331e-07,
+ "last_committed_normalized_gap": 0.14666099846363068,
+ "last_committed_score_gap": 2.3960694761626655e-08,
+ "last_cutoff_score_margin": 2.3960694761626655e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.633746791185331e-07,
+ "last_raw_normalized_gap": 0.14666099846363068,
+ "last_raw_score_gap": 2.3960694761626655e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "52d091980bce78cbc21656ac872b35524cc05bb98f6fc9152452db970e38a435",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "df1d3a75d94969a71e27f5b68b52c38d871b9e7ddf98ae8bb972a3521aa90a6d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "df1d3a75d94969a71e27f5b68b52c38d871b9e7ddf98ae8bb972a3521aa90a6d",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0073338074789717e-07,
+ "last_committed_normalized_gap": 0.24517938494682312,
+ "last_committed_score_gap": 2.4697747846857965e-08,
+ "last_cutoff_score_margin": 2.4697747846857965e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0073338074789717e-07,
+ "last_raw_normalized_gap": 0.24517938494682312,
+ "last_raw_score_gap": 2.4697747846857965e-08,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "df1d3a75d94969a71e27f5b68b52c38d871b9e7ddf98ae8bb972a3521aa90a6d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f9538fe5eaf943f10742be32c23467116dfda484c9d27399eecd5c75a7426bdb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f9538fe5eaf943f10742be32c23467116dfda484c9d27399eecd5c75a7426bdb",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.939557752767996e-08,
+ "last_committed_normalized_gap": 0.08203217387199402,
+ "last_committed_score_gap": 2.411383093203767e-09,
+ "last_cutoff_score_margin": 2.411383093203767e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.939557752767996e-08,
+ "last_raw_normalized_gap": 0.08203217387199402,
+ "last_raw_score_gap": 2.411383093203767e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "f9538fe5eaf943f10742be32c23467116dfda484c9d27399eecd5c75a7426bdb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c51e113cd304d6abacb8261d470ac267ef4484199cb13f63da341f72795824fd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c51e113cd304d6abacb8261d470ac267ef4484199cb13f63da341f72795824fd",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4361000921780942e-07,
+ "last_committed_normalized_gap": 0.4240102171897888,
+ "last_committed_score_gap": 6.089211268545114e-08,
+ "last_cutoff_score_margin": 6.089211268545114e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4361000921780942e-07,
+ "last_raw_normalized_gap": 0.4240102171897888,
+ "last_raw_score_gap": 6.089211268545114e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "c51e113cd304d6abacb8261d470ac267ef4484199cb13f63da341f72795824fd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bb169ebe05c4042aa02d6da7f9e76c3807c03f68ecc8ff04b6bf772c8b26af1e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "bb169ebe05c4042aa02d6da7f9e76c3807c03f68ecc8ff04b6bf772c8b26af1e",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.274020674685744e-08,
+ "last_committed_normalized_gap": 0.06192517653107643,
+ "last_committed_score_gap": 4.504450146214367e-09,
+ "last_cutoff_score_margin": 4.504450146214367e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.274020674685744e-08,
+ "last_raw_normalized_gap": 0.06192517653107643,
+ "last_raw_score_gap": 4.504450146214367e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "bb169ebe05c4042aa02d6da7f9e76c3807c03f68ecc8ff04b6bf772c8b26af1e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b313ce543bcf47d9cc12f86d2973a8a5f2f528884358e33d649bba0b3a37e564",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b313ce543bcf47d9cc12f86d2973a8a5f2f528884358e33d649bba0b3a37e564",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6479049236295396e-08,
+ "last_committed_normalized_gap": 0.004943795967847109,
+ "last_committed_score_gap": 8.146905372541369e-11,
+ "last_cutoff_score_margin": 8.146905372541369e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 81,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6479049236295396e-08,
+ "last_raw_normalized_gap": 0.004943795967847109,
+ "last_raw_score_gap": 8.146905372541369e-11,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "b313ce543bcf47d9cc12f86d2973a8a5f2f528884358e33d649bba0b3a37e564",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "44db695cc5f7126dd5b392dbbfcaf5f4c48b9c2732d69efa08264871d1bbd57a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "44db695cc5f7126dd5b392dbbfcaf5f4c48b9c2732d69efa08264871d1bbd57a",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.605814064641891e-07,
+ "last_committed_normalized_gap": 0.1048072949051857,
+ "last_committed_score_gap": 6.923374940015492e-08,
+ "last_cutoff_score_margin": 6.923374940015492e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.605814064641891e-07,
+ "last_raw_normalized_gap": 0.1048072949051857,
+ "last_raw_score_gap": 6.923374940015492e-08,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "44db695cc5f7126dd5b392dbbfcaf5f4c48b9c2732d69efa08264871d1bbd57a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5bef1f969a0e3fbb9bda97abd02e348554d367ab01867897026c84e6b8ecb165",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5bef1f969a0e3fbb9bda97abd02e348554d367ab01867897026c84e6b8ecb165",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5813767123850084e-08,
+ "last_committed_normalized_gap": 0.041987400501966476,
+ "last_committed_score_gap": 1.0838530073442598e-09,
+ "last_cutoff_score_margin": 1.0838530073442598e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 59,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5813767123850084e-08,
+ "last_raw_normalized_gap": 0.041987400501966476,
+ "last_raw_score_gap": 1.0838530073442598e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "5bef1f969a0e3fbb9bda97abd02e348554d367ab01867897026c84e6b8ecb165",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "552fcdc9810aa2f18e313fb561dbf2830bd0f7a2c4cd01b247c58a483bda1e49",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "552fcdc9810aa2f18e313fb561dbf2830bd0f7a2c4cd01b247c58a483bda1e49",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.845910694939448e-08,
+ "last_committed_normalized_gap": 0.12843795120716095,
+ "last_committed_score_gap": 6.223988435749561e-09,
+ "last_cutoff_score_margin": 6.223988435749561e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.845910694939448e-08,
+ "last_raw_normalized_gap": 0.12843795120716095,
+ "last_raw_score_gap": 6.223988435749561e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "552fcdc9810aa2f18e313fb561dbf2830bd0f7a2c4cd01b247c58a483bda1e49",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b1e65c0d47dde664ab3ef34c1c44e194ceeb0aa7f03daac7dac51722331fecf9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b1e65c0d47dde664ab3ef34c1c44e194ceeb0aa7f03daac7dac51722331fecf9",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3966013057142845e-06,
+ "last_committed_normalized_gap": 0.6143339276313782,
+ "last_committed_score_gap": 8.579795576224569e-07,
+ "last_cutoff_score_margin": 8.579795576224569e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3966013057142845e-06,
+ "last_raw_normalized_gap": 0.6143339276313782,
+ "last_raw_score_gap": 8.579795576224569e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "b1e65c0d47dde664ab3ef34c1c44e194ceeb0aa7f03daac7dac51722331fecf9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.327071570107364e-06,
+ "last_committed_normalized_gap": 0.8292633295059204,
+ "last_committed_score_gap": 1.9297551716590533e-06,
+ "last_cutoff_score_margin": 1.9297551716590533e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.327071570107364e-06,
+ "last_raw_normalized_gap": 0.8292633295059204,
+ "last_raw_score_gap": 1.9297551716590533e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5868597731459886e-05,
+ "last_committed_normalized_gap": 0.6446385383605957,
+ "last_committed_score_gap": 1.6675894585205242e-05,
+ "last_cutoff_score_margin": 1.6675894585205242e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5868597731459886e-05,
+ "last_raw_normalized_gap": 0.6446385383605957,
+ "last_raw_score_gap": 1.6675894585205242e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.606169442122336e-06,
+ "last_committed_normalized_gap": 0.31474077701568604,
+ "last_committed_score_gap": 3.0234532459871843e-06,
+ "last_cutoff_score_margin": 3.0234532459871843e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.606169442122336e-06,
+ "last_raw_normalized_gap": 0.31474077701568604,
+ "last_raw_score_gap": 3.0234532459871843e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.853212991904002e-06,
+ "last_committed_normalized_gap": 0.6932235956192017,
+ "last_committed_score_gap": 5.444032467494253e-06,
+ "last_cutoff_score_margin": 5.444032467494253e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.853212991904002e-06,
+ "last_raw_normalized_gap": 0.6932235956192017,
+ "last_raw_score_gap": 5.444032467494253e-06,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "96588ebc8d1eac7e9b6495b99d0922f04669480db13a1449142a8c1bb712708c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "96588ebc8d1eac7e9b6495b99d0922f04669480db13a1449142a8c1bb712708c",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.274502197811671e-07,
+ "last_committed_normalized_gap": 0.43570470809936523,
+ "last_committed_score_gap": 2.7338302288626437e-07,
+ "last_cutoff_score_margin": 2.7338302288626437e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.274502197811671e-07,
+ "last_raw_normalized_gap": 0.43570470809936523,
+ "last_raw_score_gap": 2.7338302288626437e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "96588ebc8d1eac7e9b6495b99d0922f04669480db13a1449142a8c1bb712708c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ }
+ ],
+ "task_id": 878
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b96381d4ca0c748140be3d5e5fdd183fcfede41f9e57e01fcd1eb77916d8a911",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b96381d4ca0c748140be3d5e5fdd183fcfede41f9e57e01fcd1eb77916d8a911",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.85803519423689e-09,
+ "last_committed_normalized_gap": 0.002355999778956175,
+ "last_committed_score_gap": 2.0869528327693843e-11,
+ "last_cutoff_score_margin": 2.0869528327693843e-11,
+ "last_mask_churn": 26,
+ "last_mask_overlap": 342,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.85803519423689e-09,
+ "last_raw_normalized_gap": 0.002355999778956175,
+ "last_raw_score_gap": 2.0869528327693843e-11,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "b96381d4ca0c748140be3d5e5fdd183fcfede41f9e57e01fcd1eb77916d8a911",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "15b078b7d4b38dd3d2def3cedb99e50e763cd72707b4d1fc47c7fdac8988d1b8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "15b078b7d4b38dd3d2def3cedb99e50e763cd72707b4d1fc47c7fdac8988d1b8",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.7736397340282224e-10,
+ "last_committed_normalized_gap": 0.0031637316569685936,
+ "last_committed_score_gap": 1.193878329530662e-12,
+ "last_cutoff_score_margin": 1.193878329530662e-12,
+ "last_mask_churn": 102,
+ "last_mask_overlap": 329,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.7736397340282224e-10,
+ "last_raw_normalized_gap": 0.0031637316569685936,
+ "last_raw_score_gap": 1.193878329530662e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "15b078b7d4b38dd3d2def3cedb99e50e763cd72707b4d1fc47c7fdac8988d1b8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c2dbf3ef4d3e45c4f0c8bede6519a0a821dae7b3b3e881552a5ac38eb66d606f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c2dbf3ef4d3e45c4f0c8bede6519a0a821dae7b3b3e881552a5ac38eb66d606f",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.552974054381707e-09,
+ "last_committed_normalized_gap": 0.007679098751395941,
+ "last_committed_score_gap": 1.960454021343594e-11,
+ "last_cutoff_score_margin": 1.960454021343594e-11,
+ "last_mask_churn": 22,
+ "last_mask_overlap": 258,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.552974054381707e-09,
+ "last_raw_normalized_gap": 0.007679098751395941,
+ "last_raw_score_gap": 1.960454021343594e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "c2dbf3ef4d3e45c4f0c8bede6519a0a821dae7b3b3e881552a5ac38eb66d606f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "794f7b64d69c8c0a68b06ffec39fd2df66c810c411ce10fbedda753ea4c21741",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "794f7b64d69c8c0a68b06ffec39fd2df66c810c411ce10fbedda753ea4c21741",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.83229667275009e-07,
+ "last_committed_normalized_gap": 0.6164472699165344,
+ "last_committed_score_gap": 1.7459615264669992e-07,
+ "last_cutoff_score_margin": 1.7459615264669992e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.83229667275009e-07,
+ "last_raw_normalized_gap": 0.6164472699165344,
+ "last_raw_score_gap": 1.7459615264669992e-07,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "794f7b64d69c8c0a68b06ffec39fd2df66c810c411ce10fbedda753ea4c21741",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "566228b29869df31f35170fd515695285e8b28ca3cdaba91a72c7465dd3fab22",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "566228b29869df31f35170fd515695285e8b28ca3cdaba91a72c7465dd3fab22",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1367176472608662e-08,
+ "last_committed_normalized_gap": 0.28794458508491516,
+ "last_committed_score_gap": 6.1525629035941165e-09,
+ "last_cutoff_score_margin": 6.1525629035941165e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1367176472608662e-08,
+ "last_raw_normalized_gap": 0.28794458508491516,
+ "last_raw_score_gap": 6.1525629035941165e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "566228b29869df31f35170fd515695285e8b28ca3cdaba91a72c7465dd3fab22",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "eab49c5a385c69abb8f4e789ef6623fb88ba6f60390fa1f7f7b30f1abd4d7b7e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "eab49c5a385c69abb8f4e789ef6623fb88ba6f60390fa1f7f7b30f1abd4d7b7e",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.978384175544306e-09,
+ "last_committed_normalized_gap": 0.034910477697849274,
+ "last_committed_score_gap": 2.7852919970428047e-10,
+ "last_cutoff_score_margin": 2.7852919970428047e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.978384175544306e-09,
+ "last_raw_normalized_gap": 0.034910477697849274,
+ "last_raw_score_gap": 2.7852919970428047e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "eab49c5a385c69abb8f4e789ef6623fb88ba6f60390fa1f7f7b30f1abd4d7b7e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6f99d974fff3fbf07b2158d199cfb01625d968b599cb84fe361a40b7f93c6d76",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6f99d974fff3fbf07b2158d199cfb01625d968b599cb84fe361a40b7f93c6d76",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8931424961010634e-07,
+ "last_committed_normalized_gap": 0.508290708065033,
+ "last_committed_score_gap": 9.622667107578309e-08,
+ "last_cutoff_score_margin": 9.622667107578309e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8931424961010634e-07,
+ "last_raw_normalized_gap": 0.508290708065033,
+ "last_raw_score_gap": 9.622667107578309e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "6f99d974fff3fbf07b2158d199cfb01625d968b599cb84fe361a40b7f93c6d76",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e7958b52715b5773fe7e37e8f4bb87f0150fe32a3142a86a22293e55154c9379",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e7958b52715b5773fe7e37e8f4bb87f0150fe32a3142a86a22293e55154c9379",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.720915486837839e-08,
+ "last_committed_normalized_gap": 0.3839890956878662,
+ "last_committed_score_gap": 1.4287909522181508e-08,
+ "last_cutoff_score_margin": 1.4287909522181508e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.720915486837839e-08,
+ "last_raw_normalized_gap": 0.3839890956878662,
+ "last_raw_score_gap": 1.4287909522181508e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "e7958b52715b5773fe7e37e8f4bb87f0150fe32a3142a86a22293e55154c9379",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "67aa0f3bc2a8d3f6aedbaccac5b99295f2c26e656ce72d896d0529ef58afb864",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "67aa0f3bc2a8d3f6aedbaccac5b99295f2c26e656ce72d896d0529ef58afb864",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2115739522755575e-08,
+ "last_committed_normalized_gap": 0.04477370157837868,
+ "last_committed_score_gap": 5.424665161513076e-10,
+ "last_cutoff_score_margin": 5.424665161513076e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 81,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2115739522755575e-08,
+ "last_raw_normalized_gap": 0.04477370157837868,
+ "last_raw_score_gap": 5.424665161513076e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "67aa0f3bc2a8d3f6aedbaccac5b99295f2c26e656ce72d896d0529ef58afb864",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0605ca978d92b17819071c0fa5503b038af14aea851ffcf0c8a4aa01fde1d3e4",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0605ca978d92b17819071c0fa5503b038af14aea851ffcf0c8a4aa01fde1d3e4",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5667709476474556e-06,
+ "last_committed_normalized_gap": 0.21041496098041534,
+ "last_committed_score_gap": 3.296720478829229e-07,
+ "last_cutoff_score_margin": 3.296720478829229e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5667709476474556e-06,
+ "last_raw_normalized_gap": 0.21041496098041534,
+ "last_raw_score_gap": 3.296720478829229e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "0605ca978d92b17819071c0fa5503b038af14aea851ffcf0c8a4aa01fde1d3e4",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c3fc0f132bf24aaa3b272d309713afb2d330148ab4246b87e3405c0c1b7248ac",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c3fc0f132bf24aaa3b272d309713afb2d330148ab4246b87e3405c0c1b7248ac",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5441877110333735e-08,
+ "last_committed_normalized_gap": 0.289581298828125,
+ "last_committed_score_gap": 4.471679027062692e-09,
+ "last_cutoff_score_margin": 4.471679027062692e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5441877110333735e-08,
+ "last_raw_normalized_gap": 0.289581298828125,
+ "last_raw_score_gap": 4.471679027062692e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "c3fc0f132bf24aaa3b272d309713afb2d330148ab4246b87e3405c0c1b7248ac",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "55d828f180fe606e5b37c6b5943d335e2f1aead1362e270ebaa4bfa879b36d37",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "55d828f180fe606e5b37c6b5943d335e2f1aead1362e270ebaa4bfa879b36d37",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3868466375299704e-08,
+ "last_committed_normalized_gap": 0.058748386800289154,
+ "last_committed_score_gap": 8.147500452082568e-10,
+ "last_cutoff_score_margin": 8.147500452082568e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3868466375299704e-08,
+ "last_raw_normalized_gap": 0.058748386800289154,
+ "last_raw_score_gap": 8.147500452082568e-10,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "55d828f180fe606e5b37c6b5943d335e2f1aead1362e270ebaa4bfa879b36d37",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f181882bae222102551157675b05e56715cb33c2e7e59941d894e81af878fbcb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f181882bae222102551157675b05e56715cb33c2e7e59941d894e81af878fbcb",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.8077234876254806e-07,
+ "last_committed_normalized_gap": 0.33311864733695984,
+ "last_committed_score_gap": 1.268423659439577e-07,
+ "last_cutoff_score_margin": 1.268423659439577e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 44,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.8077234876254806e-07,
+ "last_raw_normalized_gap": 0.33311864733695984,
+ "last_raw_score_gap": 1.268423659439577e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "f181882bae222102551157675b05e56715cb33c2e7e59941d894e81af878fbcb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9ac8816f0c25f2fc37b6fd01a60f08e5b472867eb3b26a206580d7a36356af94",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9ac8816f0c25f2fc37b6fd01a60f08e5b472867eb3b26a206580d7a36356af94",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0839027027031989e-06,
+ "last_committed_normalized_gap": 0.6604455709457397,
+ "last_committed_score_gap": 7.15858732291963e-07,
+ "last_cutoff_score_margin": 7.15858732291963e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0839027027031989e-06,
+ "last_raw_normalized_gap": 0.6604455709457397,
+ "last_raw_score_gap": 7.15858732291963e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "9ac8816f0c25f2fc37b6fd01a60f08e5b472867eb3b26a206580d7a36356af94",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.62070742691867e-05,
+ "last_committed_normalized_gap": 0.7410372495651245,
+ "last_committed_score_gap": 4.906190952169709e-05,
+ "last_cutoff_score_margin": 4.906190952169709e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.62070742691867e-05,
+ "last_raw_normalized_gap": 0.7410372495651245,
+ "last_raw_score_gap": 4.906190952169709e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5941128114936873e-05,
+ "last_committed_normalized_gap": 0.8592604994773865,
+ "last_committed_score_gap": 2.2290187189355493e-05,
+ "last_cutoff_score_margin": 2.2290187189355493e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5941128114936873e-05,
+ "last_raw_normalized_gap": 0.8592604994773865,
+ "last_raw_score_gap": 2.2290187189355493e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8c3fd92734217809db61f0505ee2c24a879692d000505bc2b95db082bffa4b5e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8c3fd92734217809db61f0505ee2c24a879692d000505bc2b95db082bffa4b5e",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1574164091143757e-05,
+ "last_committed_normalized_gap": 0.9150680899620056,
+ "last_committed_score_gap": 1.059114856616361e-05,
+ "last_cutoff_score_margin": 1.059114856616361e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1574164091143757e-05,
+ "last_raw_normalized_gap": 0.9150680899620056,
+ "last_raw_score_gap": 1.059114856616361e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "8c3fd92734217809db61f0505ee2c24a879692d000505bc2b95db082bffa4b5e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "913c961af5b0a943f460626d8909a11caf19ab3d634dfebcbb8b941545a5a502",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "913c961af5b0a943f460626d8909a11caf19ab3d634dfebcbb8b941545a5a502",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0439614445422194e-07,
+ "last_committed_normalized_gap": 0.5667471289634705,
+ "last_committed_score_gap": 1.1584093329020106e-07,
+ "last_cutoff_score_margin": 1.1584093329020106e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0439614445422194e-07,
+ "last_raw_normalized_gap": 0.5667471289634705,
+ "last_raw_score_gap": 1.1584093329020106e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "913c961af5b0a943f460626d8909a11caf19ab3d634dfebcbb8b941545a5a502",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ }
+ ],
+ "task_id": 822
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "42fac47e17b395ca999628f45ff92b18a67c0a98ddb132fb1ac70c7e6d54c047",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "42fac47e17b395ca999628f45ff92b18a67c0a98ddb132fb1ac70c7e6d54c047",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4404930581690678e-08,
+ "last_committed_normalized_gap": 0.02620111219584942,
+ "last_committed_score_gap": 3.774252022026303e-10,
+ "last_cutoff_score_margin": 3.774252022026303e-10,
+ "last_mask_churn": 16,
+ "last_mask_overlap": 347,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4404930581690678e-08,
+ "last_raw_normalized_gap": 0.02620111219584942,
+ "last_raw_score_gap": 3.774252022026303e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "42fac47e17b395ca999628f45ff92b18a67c0a98ddb132fb1ac70c7e6d54c047",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "04e9912a7ab4a36db0a8daa8f987db80159a7e7fce32f0e679e5f629a44796db",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "04e9912a7ab4a36db0a8daa8f987db80159a7e7fce32f0e679e5f629a44796db",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.3932463505692567e-09,
+ "last_committed_normalized_gap": 0.02076421119272709,
+ "last_committed_score_gap": 7.045808381178631e-11,
+ "last_cutoff_score_margin": 7.045808381178631e-11,
+ "last_mask_churn": 124,
+ "last_mask_overlap": 318,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.3932463505692567e-09,
+ "last_raw_normalized_gap": 0.02076421119272709,
+ "last_raw_score_gap": 7.045808381178631e-11,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "04e9912a7ab4a36db0a8daa8f987db80159a7e7fce32f0e679e5f629a44796db",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b67f716897451d9088885112b77c3424934698b14a7dddaa4d57653bb955f27b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b67f716897451d9088885112b77c3424934698b14a7dddaa4d57653bb955f27b",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.302157226490408e-08,
+ "last_committed_normalized_gap": 0.02440640516579151,
+ "last_committed_score_gap": 3.178097784939382e-10,
+ "last_cutoff_score_margin": 3.178097784939382e-10,
+ "last_mask_churn": 32,
+ "last_mask_overlap": 253,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.302157226490408e-08,
+ "last_raw_normalized_gap": 0.02440640516579151,
+ "last_raw_score_gap": 3.178097784939382e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "b67f716897451d9088885112b77c3424934698b14a7dddaa4d57653bb955f27b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b3bbb48e0e5073cd1a1d5407c492d0ebaeb40692667a573f58e7fe28edfa6e93",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b3bbb48e0e5073cd1a1d5407c492d0ebaeb40692667a573f58e7fe28edfa6e93",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.82968301235087e-07,
+ "last_committed_normalized_gap": 0.0028269209433346987,
+ "last_committed_score_gap": 7.999290119187208e-10,
+ "last_cutoff_score_margin": 7.999290119187208e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 173,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.82968301235087e-07,
+ "last_raw_normalized_gap": 0.0028269209433346987,
+ "last_raw_score_gap": 7.999290119187208e-10,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "b3bbb48e0e5073cd1a1d5407c492d0ebaeb40692667a573f58e7fe28edfa6e93",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "657327ada575a06772a63db796e6f47d0f91505b04222a7dd4c0d2c5ed3acac7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "657327ada575a06772a63db796e6f47d0f91505b04222a7dd4c0d2c5ed3acac7",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.304930622036409e-08,
+ "last_committed_normalized_gap": 0.04311402142047882,
+ "last_committed_score_gap": 2.7183091333427e-09,
+ "last_cutoff_score_margin": 2.7183091333427e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.304930622036409e-08,
+ "last_raw_normalized_gap": 0.04311402142047882,
+ "last_raw_score_gap": 2.7183091333427e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "657327ada575a06772a63db796e6f47d0f91505b04222a7dd4c0d2c5ed3acac7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3b3309ea127bc8abdf1340aac5dd9e5fc6046b5df8ce735d06596d9ba09639bf",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3b3309ea127bc8abdf1340aac5dd9e5fc6046b5df8ce735d06596d9ba09639bf",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.462341879867381e-08,
+ "last_committed_normalized_gap": 0.060494113713502884,
+ "last_committed_score_gap": 2.0945130074778717e-09,
+ "last_cutoff_score_margin": 2.0945130074778717e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.462341879867381e-08,
+ "last_raw_normalized_gap": 0.060494113713502884,
+ "last_raw_score_gap": 2.0945130074778717e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "3b3309ea127bc8abdf1340aac5dd9e5fc6046b5df8ce735d06596d9ba09639bf",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9c41a7f2eea5ae639fb1365ab13ac8477d3344955dac450d08aba4495c05e510",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9c41a7f2eea5ae639fb1365ab13ac8477d3344955dac450d08aba4495c05e510",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.536290170633947e-07,
+ "last_committed_normalized_gap": 0.00295735290274024,
+ "last_committed_score_gap": 4.5433523609972326e-10,
+ "last_cutoff_score_margin": 4.5433523609972326e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.536290170633947e-07,
+ "last_raw_normalized_gap": 0.00295735290274024,
+ "last_raw_score_gap": 4.5433523609972326e-10,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "9c41a7f2eea5ae639fb1365ab13ac8477d3344955dac450d08aba4495c05e510",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c7fbc7c42c0e854c08c15a0d24f1b9b08f64cef48995a39d4600a3f5ef767618",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c7fbc7c42c0e854c08c15a0d24f1b9b08f64cef48995a39d4600a3f5ef767618",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.704327594140523e-08,
+ "last_committed_normalized_gap": 0.15558449923992157,
+ "last_committed_score_gap": 7.319204797795464e-09,
+ "last_cutoff_score_margin": 7.319204797795464e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.704327594140523e-08,
+ "last_raw_normalized_gap": 0.15558449923992157,
+ "last_raw_score_gap": 7.319204797795464e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "c7fbc7c42c0e854c08c15a0d24f1b9b08f64cef48995a39d4600a3f5ef767618",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4a8844166ab4485c8af2200be4945656f86da4ed560664a924425e474686a8de",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4a8844166ab4485c8af2200be4945656f86da4ed560664a924425e474686a8de",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.919787884219204e-08,
+ "last_committed_normalized_gap": 0.004430464468896389,
+ "last_committed_score_gap": 8.505551818416279e-11,
+ "last_cutoff_score_margin": 8.505551818416279e-11,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 78,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.919787884219204e-08,
+ "last_raw_normalized_gap": 0.004430464468896389,
+ "last_raw_score_gap": 8.505551818416279e-11,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "4a8844166ab4485c8af2200be4945656f86da4ed560664a924425e474686a8de",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f08de5f30d45924084ac93c2fa8eb5302d0f4188990dec36517ab5caf35379e0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f08de5f30d45924084ac93c2fa8eb5302d0f4188990dec36517ab5caf35379e0",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4413736835194868e-06,
+ "last_committed_normalized_gap": 0.017211558297276497,
+ "last_committed_score_gap": 2.4808286980260164e-08,
+ "last_cutoff_score_margin": 2.4808286980260164e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 28,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4413736835194868e-06,
+ "last_raw_normalized_gap": 0.017211558297276497,
+ "last_raw_score_gap": 2.4808286980260164e-08,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "f08de5f30d45924084ac93c2fa8eb5302d0f4188990dec36517ab5caf35379e0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "74383d5338b8670345765ede504f744d370e4c78fa63f67a889cf01e8a2a983a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "74383d5338b8670345765ede504f744d370e4c78fa63f67a889cf01e8a2a983a",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.092549588108341e-08,
+ "last_committed_normalized_gap": 0.1281416416168213,
+ "last_committed_score_gap": 5.244260137260426e-09,
+ "last_cutoff_score_margin": 5.244260137260426e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 59,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.092549588108341e-08,
+ "last_raw_normalized_gap": 0.1281416416168213,
+ "last_raw_score_gap": 5.244260137260426e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "74383d5338b8670345765ede504f744d370e4c78fa63f67a889cf01e8a2a983a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a2c0167329f69ab20e21c97d10d46022ec18722870371e3a78047783fded4564",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a2c0167329f69ab20e21c97d10d46022ec18722870371e3a78047783fded4564",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.857190015807646e-08,
+ "last_committed_normalized_gap": 0.1280481219291687,
+ "last_committed_score_gap": 8.780503435446008e-09,
+ "last_cutoff_score_margin": 8.780503435446008e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 51,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.857190015807646e-08,
+ "last_raw_normalized_gap": 0.1280481219291687,
+ "last_raw_score_gap": 8.780503435446008e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "a2c0167329f69ab20e21c97d10d46022ec18722870371e3a78047783fded4564",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ce217523b72495c04346d7242b214bc9be376b1faa907afc5909aaa735ad30f5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ce217523b72495c04346d7242b214bc9be376b1faa907afc5909aaa735ad30f5",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.982185259905236e-07,
+ "last_committed_normalized_gap": 0.12562692165374756,
+ "last_committed_score_gap": 6.258966323002824e-08,
+ "last_cutoff_score_margin": 6.258966323002824e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 44,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.982185259905236e-07,
+ "last_raw_normalized_gap": 0.12562692165374756,
+ "last_raw_score_gap": 6.258966323002824e-08,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "ce217523b72495c04346d7242b214bc9be376b1faa907afc5909aaa735ad30f5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "617f3e778f649f6a85a7fe30999125e429bcfb74fbe9b3595ee0c14d465a5530",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "617f3e778f649f6a85a7fe30999125e429bcfb74fbe9b3595ee0c14d465a5530",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.067039304165519e-06,
+ "last_committed_normalized_gap": 0.6887035369873047,
+ "last_committed_score_gap": 1.4235772596293828e-06,
+ "last_cutoff_score_margin": 1.4235772596293828e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.067039304165519e-06,
+ "last_raw_normalized_gap": 0.6887035369873047,
+ "last_raw_score_gap": 1.4235772596293828e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "617f3e778f649f6a85a7fe30999125e429bcfb74fbe9b3595ee0c14d465a5530",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.285790105815977e-05,
+ "last_committed_normalized_gap": 0.892177164554596,
+ "last_committed_score_gap": 2.039329774561338e-05,
+ "last_cutoff_score_margin": 2.039329774561338e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.285790105815977e-05,
+ "last_raw_normalized_gap": 0.892177164554596,
+ "last_raw_score_gap": 2.039329774561338e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2615120542468503e-05,
+ "last_committed_normalized_gap": 0.8793402314186096,
+ "last_committed_score_gap": 1.988638541661203e-05,
+ "last_cutoff_score_margin": 1.988638541661203e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.2615120542468503e-05,
+ "last_raw_normalized_gap": 0.8793402314186096,
+ "last_raw_score_gap": 1.988638541661203e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.31045599625213e-06,
+ "last_committed_normalized_gap": 0.5751775503158569,
+ "last_committed_score_gap": 4.779987648362294e-06,
+ "last_cutoff_score_margin": 4.779987648362294e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.31045599625213e-06,
+ "last_raw_normalized_gap": 0.5751775503158569,
+ "last_raw_score_gap": 4.779987648362294e-06,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ca196b932897d6c078220d5147f168b89b518f4d50b4a7b012f379370a1f2d27",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ca196b932897d6c078220d5147f168b89b518f4d50b4a7b012f379370a1f2d27",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1265364463497463e-07,
+ "last_committed_normalized_gap": 0.13228251039981842,
+ "last_committed_score_gap": 1.4902106215686217e-08,
+ "last_cutoff_score_margin": 1.4902106215686217e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1265364463497463e-07,
+ "last_raw_normalized_gap": 0.13228251039981842,
+ "last_raw_score_gap": 1.4902106215686217e-08,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "ca196b932897d6c078220d5147f168b89b518f4d50b4a7b012f379370a1f2d27",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 687
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9f63ff750e59ed40ed3dbcf8160f09ce379ca059b1ec10128159c9b47f9302a5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9f63ff750e59ed40ed3dbcf8160f09ce379ca059b1ec10128159c9b47f9302a5",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.445302449416431e-08,
+ "last_committed_normalized_gap": 0.04709763452410698,
+ "last_committed_score_gap": 1.1516796405430796e-09,
+ "last_cutoff_score_margin": 1.1516796405430796e-09,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 348,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.445302449416431e-08,
+ "last_raw_normalized_gap": 0.04709763452410698,
+ "last_raw_score_gap": 1.1516796405430796e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "9f63ff750e59ed40ed3dbcf8160f09ce379ca059b1ec10128159c9b47f9302a5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a5f2d73a278b1d66cd9e79baa2f86a7524e4debe6688d22ba833d9ddb79ada84",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a5f2d73a278b1d66cd9e79baa2f86a7524e4debe6688d22ba833d9ddb79ada84",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.867313467357917e-10,
+ "last_committed_normalized_gap": 0.0006912687094882131,
+ "last_committed_score_gap": 5.438427486126329e-13,
+ "last_cutoff_score_margin": 5.438427486126329e-13,
+ "last_mask_churn": 82,
+ "last_mask_overlap": 339,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.867313467357917e-10,
+ "last_raw_normalized_gap": 0.0006912687094882131,
+ "last_raw_score_gap": 5.438427486126329e-13,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "a5f2d73a278b1d66cd9e79baa2f86a7524e4debe6688d22ba833d9ddb79ada84",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f1ec0c1b1bb8143ba82aff2cf5d7f6c9791c51f28594a6faf594515ccf48d1c9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f1ec0c1b1bb8143ba82aff2cf5d7f6c9791c51f28594a6faf594515ccf48d1c9",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.476536030750822e-09,
+ "last_committed_normalized_gap": 0.06286849826574326,
+ "last_committed_score_gap": 2.8143309904749003e-10,
+ "last_cutoff_score_margin": 2.8143309904749003e-10,
+ "last_mask_churn": 38,
+ "last_mask_overlap": 250,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.476536030750822e-09,
+ "last_raw_normalized_gap": 0.06286849826574326,
+ "last_raw_score_gap": 2.8143309904749003e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "f1ec0c1b1bb8143ba82aff2cf5d7f6c9791c51f28594a6faf594515ccf48d1c9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8597ff460f25970bccf9ff4cb5c011b21beac73fb20339898ba10e97e77e7db8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8597ff460f25970bccf9ff4cb5c011b21beac73fb20339898ba10e97e77e7db8",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5924403840017476e-07,
+ "last_committed_normalized_gap": 0.14605674147605896,
+ "last_committed_score_gap": 2.325866432784096e-08,
+ "last_cutoff_score_margin": 2.325866432784096e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5924403840017476e-07,
+ "last_raw_normalized_gap": 0.14605674147605896,
+ "last_raw_score_gap": 2.325866432784096e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "8597ff460f25970bccf9ff4cb5c011b21beac73fb20339898ba10e97e77e7db8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2081d8dba0c404ae035b330b24ff4b831323132c954f05f63a9054cb3f51afc8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "2081d8dba0c404ae035b330b24ff4b831323132c954f05f63a9054cb3f51afc8",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.648409822673784e-08,
+ "last_committed_normalized_gap": 0.10665269941091537,
+ "last_committed_score_gap": 7.090708464829731e-09,
+ "last_cutoff_score_margin": 7.090708464829731e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.648409822673784e-08,
+ "last_raw_normalized_gap": 0.10665269941091537,
+ "last_raw_score_gap": 7.090708464829731e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "2081d8dba0c404ae035b330b24ff4b831323132c954f05f63a9054cb3f51afc8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3175660e74335bb66d9c499576483367b7797fb1d4ab302436d3ab79f8227018",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3175660e74335bb66d9c499576483367b7797fb1d4ab302436d3ab79f8227018",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2673856509291e-08,
+ "last_committed_normalized_gap": 0.09047509729862213,
+ "last_committed_score_gap": 2.9561704195657512e-09,
+ "last_cutoff_score_margin": 2.9561704195657512e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2673856509291e-08,
+ "last_raw_normalized_gap": 0.09047509729862213,
+ "last_raw_score_gap": 2.9561704195657512e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "3175660e74335bb66d9c499576483367b7797fb1d4ab302436d3ab79f8227018",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "69feeb30cc0ed49b671e67202ff4d246e6d1f324a8dedc9704d256645aa6bc40",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "69feeb30cc0ed49b671e67202ff4d246e6d1f324a8dedc9704d256645aa6bc40",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8301595616776467e-07,
+ "last_committed_normalized_gap": 0.6233994364738464,
+ "last_committed_score_gap": 1.1409203892753794e-07,
+ "last_cutoff_score_margin": 1.1409203892753794e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8301595616776467e-07,
+ "last_raw_normalized_gap": 0.6233994364738464,
+ "last_raw_score_gap": 1.1409203892753794e-07,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "69feeb30cc0ed49b671e67202ff4d246e6d1f324a8dedc9704d256645aa6bc40",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d670aef9377cd65f6e633516930a4607621c6f86486a7266f68b62bdcd6ab97c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d670aef9377cd65f6e633516930a4607621c6f86486a7266f68b62bdcd6ab97c",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.8001992663794226e-08,
+ "last_committed_normalized_gap": 0.07204104959964752,
+ "last_committed_score_gap": 2.737703397315272e-09,
+ "last_cutoff_score_margin": 2.737703397315272e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.8001992663794226e-08,
+ "last_raw_normalized_gap": 0.07204104959964752,
+ "last_raw_score_gap": 2.737703397315272e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "d670aef9377cd65f6e633516930a4607621c6f86486a7266f68b62bdcd6ab97c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a8c123a8ab5f0dc927890e74871d7b77141fef8b4fffd518369e7191da8b6fce",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a8c123a8ab5f0dc927890e74871d7b77141fef8b4fffd518369e7191da8b6fce",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9081142827180884e-08,
+ "last_committed_normalized_gap": 0.22027242183685303,
+ "last_committed_score_gap": 6.405773689266425e-09,
+ "last_cutoff_score_margin": 6.405773689266425e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9081142827180884e-08,
+ "last_raw_normalized_gap": 0.22027242183685303,
+ "last_raw_score_gap": 6.405773689266425e-09,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "a8c123a8ab5f0dc927890e74871d7b77141fef8b4fffd518369e7191da8b6fce",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "828c1423669dca356294c893078830083c1d619f6c36af74421b5962bb480c36",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "828c1423669dca356294c893078830083c1d619f6c36af74421b5962bb480c36",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7388460946676787e-06,
+ "last_committed_normalized_gap": 0.9116144776344299,
+ "last_committed_score_gap": 1.5851572925384971e-06,
+ "last_cutoff_score_margin": 1.5851572925384971e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7388460946676787e-06,
+ "last_raw_normalized_gap": 0.9116144776344299,
+ "last_raw_score_gap": 1.5851572925384971e-06,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "828c1423669dca356294c893078830083c1d619f6c36af74421b5962bb480c36",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a324f0ba1f1bb8001a026d0153b209637260514521ac97b539535c84874e63d6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a324f0ba1f1bb8001a026d0153b209637260514521ac97b539535c84874e63d6",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.175781498361175e-08,
+ "last_committed_normalized_gap": 0.1841215342283249,
+ "last_committed_score_gap": 7.688512937420455e-09,
+ "last_cutoff_score_margin": 7.688512937420455e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.175781498361175e-08,
+ "last_raw_normalized_gap": 0.1841215342283249,
+ "last_raw_score_gap": 7.688512937420455e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "a324f0ba1f1bb8001a026d0153b209637260514521ac97b539535c84874e63d6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "41e304506104a9a6cf5d8ad33969396c5d8b46147ae661cb94635cde81e1d81b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "41e304506104a9a6cf5d8ad33969396c5d8b46147ae661cb94635cde81e1d81b",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0840778230658543e-07,
+ "last_committed_normalized_gap": 0.14614997804164886,
+ "last_committed_score_gap": 1.5843795608816436e-08,
+ "last_cutoff_score_margin": 1.5843795608816436e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0840778230658543e-07,
+ "last_raw_normalized_gap": 0.14614997804164886,
+ "last_raw_score_gap": 1.5843795608816436e-08,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "41e304506104a9a6cf5d8ad33969396c5d8b46147ae661cb94635cde81e1d81b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a039044e28f09300d201482a1e7572a9534a9c5ad28152c08018cff81b9820a3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a039044e28f09300d201482a1e7572a9534a9c5ad28152c08018cff81b9820a3",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.907620324156596e-07,
+ "last_committed_normalized_gap": 0.3202653229236603,
+ "last_committed_score_gap": 3.173067284478748e-07,
+ "last_cutoff_score_margin": 3.173067284478748e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.907620324156596e-07,
+ "last_raw_normalized_gap": 0.3202653229236603,
+ "last_raw_score_gap": 3.173067284478748e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "a039044e28f09300d201482a1e7572a9534a9c5ad28152c08018cff81b9820a3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "98350086af8fb4c2cc96108b35b0bbef93e7b86640866ba005de4cde87c70584",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "98350086af8fb4c2cc96108b35b0bbef93e7b86640866ba005de4cde87c70584",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.731485081625578e-07,
+ "last_committed_normalized_gap": 0.20843982696533203,
+ "last_committed_score_gap": 1.819989279283618e-07,
+ "last_cutoff_score_margin": 1.819989279283618e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.731485081625578e-07,
+ "last_raw_normalized_gap": 0.20843982696533203,
+ "last_raw_score_gap": 1.819989279283618e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "98350086af8fb4c2cc96108b35b0bbef93e7b86640866ba005de4cde87c70584",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.0346137868473306e-05,
+ "last_committed_normalized_gap": 0.8781734704971313,
+ "last_committed_score_gap": 4.421264384291135e-05,
+ "last_cutoff_score_margin": 4.421264384291135e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.0346137868473306e-05,
+ "last_raw_normalized_gap": 0.8781734704971313,
+ "last_raw_score_gap": 4.421264384291135e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "572afa92c8cc3acf06fb1e7dd47b32a72d17ddabdb8c60ae5b82d1d399e0188f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "572afa92c8cc3acf06fb1e7dd47b32a72d17ddabdb8c60ae5b82d1d399e0188f",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.827802745741792e-05,
+ "last_committed_normalized_gap": 0.1471274048089981,
+ "last_committed_score_gap": 4.160472599323839e-06,
+ "last_cutoff_score_margin": 4.160472599323839e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.827802745741792e-05,
+ "last_raw_normalized_gap": 0.1471274048089981,
+ "last_raw_score_gap": 4.160472599323839e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "572afa92c8cc3acf06fb1e7dd47b32a72d17ddabdb8c60ae5b82d1d399e0188f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.891928129945882e-06,
+ "last_committed_normalized_gap": 0.6283012628555298,
+ "last_committed_score_gap": 6.215111170604359e-06,
+ "last_cutoff_score_margin": 6.215111170604359e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.891928129945882e-06,
+ "last_raw_normalized_gap": 0.6283012628555298,
+ "last_raw_score_gap": 6.215111170604359e-06,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9eac5e6bc4a49d06219ba527caf30569644c40db77d1d40ea5cb976be5723364",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9eac5e6bc4a49d06219ba527caf30569644c40db77d1d40ea5cb976be5723364",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.917088923164556e-07,
+ "last_committed_normalized_gap": 0.11193438619375229,
+ "last_committed_score_gap": 2.1458816945596482e-08,
+ "last_cutoff_score_margin": 2.1458816945596482e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.917088923164556e-07,
+ "last_raw_normalized_gap": 0.11193438619375229,
+ "last_raw_score_gap": 2.1458816945596482e-08,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "9eac5e6bc4a49d06219ba527caf30569644c40db77d1d40ea5cb976be5723364",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ }
+ ],
+ "task_id": 820
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "05ec28d9b8b40b036ba9e6549e7d52421298a502ee4893be9403e292c726fcd3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "05ec28d9b8b40b036ba9e6549e7d52421298a502ee4893be9403e292c726fcd3",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0706788344805318e-08,
+ "last_committed_normalized_gap": 0.027920976281166077,
+ "last_committed_score_gap": 2.9894398068108785e-10,
+ "last_cutoff_score_margin": 2.9894398068108785e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 352,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0706788344805318e-08,
+ "last_raw_normalized_gap": 0.027920976281166077,
+ "last_raw_score_gap": 2.9894398068108785e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "05ec28d9b8b40b036ba9e6549e7d52421298a502ee4893be9403e292c726fcd3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "305496266fe01573a404b86a362190ebb6c87336311a2fa26856078c4350d24a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "305496266fe01573a404b86a362190ebb6c87336311a2fa26856078c4350d24a",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.824730697767677e-10,
+ "last_committed_normalized_gap": 0.0019367377972230315,
+ "last_committed_score_gap": 1.1280976153216216e-12,
+ "last_cutoff_score_margin": 1.1280976153216216e-12,
+ "last_mask_churn": 50,
+ "last_mask_overlap": 355,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.824730697767677e-10,
+ "last_raw_normalized_gap": 0.0019367377972230315,
+ "last_raw_score_gap": 1.1280976153216216e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "305496266fe01573a404b86a362190ebb6c87336311a2fa26856078c4350d24a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7665cc59729ec911c115cfdb3a74016ca2e245ae75df55115ffacbf53b68e324",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7665cc59729ec911c115cfdb3a74016ca2e245ae75df55115ffacbf53b68e324",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.884093378152102e-09,
+ "last_committed_normalized_gap": 0.07935043424367905,
+ "last_committed_score_gap": 6.256062334841772e-10,
+ "last_cutoff_score_margin": 6.256062334841772e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 266,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.884093378152102e-09,
+ "last_raw_normalized_gap": 0.07935043424367905,
+ "last_raw_score_gap": 6.256062334841772e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "7665cc59729ec911c115cfdb3a74016ca2e245ae75df55115ffacbf53b68e324",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "05534e5c28c5b98b4031fb338213b43b264bd3b94628e274909834ad4b246e31",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "05534e5c28c5b98b4031fb338213b43b264bd3b94628e274909834ad4b246e31",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.134178996333503e-07,
+ "last_committed_normalized_gap": 0.03401033580303192,
+ "last_committed_score_gap": 1.0659448435035301e-08,
+ "last_cutoff_score_margin": 1.0659448435035301e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 177,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.134178996333503e-07,
+ "last_raw_normalized_gap": 0.03401033580303192,
+ "last_raw_score_gap": 1.0659448435035301e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "05534e5c28c5b98b4031fb338213b43b264bd3b94628e274909834ad4b246e31",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2a95629a230392e3e48d0da14d3c4f7b70a966382b5ba27efd6f40f8d26dc4a8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "2a95629a230392e3e48d0da14d3c4f7b70a966382b5ba27efd6f40f8d26dc4a8",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.170373285068308e-08,
+ "last_committed_normalized_gap": 0.17584703862667084,
+ "last_committed_score_gap": 9.091948527384375e-09,
+ "last_cutoff_score_margin": 9.091948527384375e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.170373285068308e-08,
+ "last_raw_normalized_gap": 0.17584703862667084,
+ "last_raw_score_gap": 9.091948527384375e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "2a95629a230392e3e48d0da14d3c4f7b70a966382b5ba27efd6f40f8d26dc4a8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cd062591104c098b376e14e3ca6c54e3460044066952a00db23246b747f13686",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "cd062591104c098b376e14e3ca6c54e3460044066952a00db23246b747f13686",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8042603855406014e-08,
+ "last_committed_normalized_gap": 0.18982453644275665,
+ "last_committed_score_gap": 3.424928785022985e-09,
+ "last_cutoff_score_margin": 3.424928785022985e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8042603855406014e-08,
+ "last_raw_normalized_gap": 0.18982453644275665,
+ "last_raw_score_gap": 3.424928785022985e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "cd062591104c098b376e14e3ca6c54e3460044066952a00db23246b747f13686",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7a357e522661c7a32d6fa8fdecce9539e0c82be14cf73cc0dcb915527aafaa10",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7a357e522661c7a32d6fa8fdecce9539e0c82be14cf73cc0dcb915527aafaa10",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2198628951409773e-07,
+ "last_committed_normalized_gap": 0.17012153565883636,
+ "last_committed_score_gap": 2.0752494833686796e-08,
+ "last_cutoff_score_margin": 2.0752494833686796e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2198628951409773e-07,
+ "last_raw_normalized_gap": 0.17012153565883636,
+ "last_raw_score_gap": 2.0752494833686796e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "7a357e522661c7a32d6fa8fdecce9539e0c82be14cf73cc0dcb915527aafaa10",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "53f93bb569ee489769862d8a8f318be104a68bc6579476b81e1e2a43f3154748",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "53f93bb569ee489769862d8a8f318be104a68bc6579476b81e1e2a43f3154748",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.365362826774799e-08,
+ "last_committed_normalized_gap": 0.5107656121253967,
+ "last_committed_score_gap": 2.2296772428376244e-08,
+ "last_cutoff_score_margin": 2.2296772428376244e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.365362826774799e-08,
+ "last_raw_normalized_gap": 0.5107656121253967,
+ "last_raw_score_gap": 2.2296772428376244e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "53f93bb569ee489769862d8a8f318be104a68bc6579476b81e1e2a43f3154748",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b9f74042e7df19660b94d048ddb4ae8aad43c80d1247341df31e9cd38e2f8823",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b9f74042e7df19660b94d048ddb4ae8aad43c80d1247341df31e9cd38e2f8823",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.853072539859113e-08,
+ "last_committed_normalized_gap": 0.009557345882058144,
+ "last_committed_score_gap": 1.7710455324504437e-10,
+ "last_cutoff_score_margin": 1.7710455324504437e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 82,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.853072539859113e-08,
+ "last_raw_normalized_gap": 0.009557345882058144,
+ "last_raw_score_gap": 1.7710455324504437e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "b9f74042e7df19660b94d048ddb4ae8aad43c80d1247341df31e9cd38e2f8823",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "da3634df4a62637aa3467a1838c8c60a7e32c860724924de281778836458e429",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "da3634df4a62637aa3467a1838c8c60a7e32c860724924de281778836458e429",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.074207127923728e-07,
+ "last_committed_normalized_gap": 0.4397937059402466,
+ "last_committed_score_gap": 3.9907791915538837e-07,
+ "last_cutoff_score_margin": 3.9907791915538837e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.074207127923728e-07,
+ "last_raw_normalized_gap": 0.4397937059402466,
+ "last_raw_score_gap": 3.9907791915538837e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "da3634df4a62637aa3467a1838c8c60a7e32c860724924de281778836458e429",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7bb89809b294e43765ff02404b96ea74b617719ec4edaba82c14ef41a04006a6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7bb89809b294e43765ff02404b96ea74b617719ec4edaba82c14ef41a04006a6",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9799997136592538e-08,
+ "last_committed_normalized_gap": 0.0010826836805790663,
+ "last_committed_score_gap": 3.226396927402675e-11,
+ "last_cutoff_score_margin": 3.226396927402675e-11,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 60,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9799997136592538e-08,
+ "last_raw_normalized_gap": 0.0010826836805790663,
+ "last_raw_score_gap": 3.226396927402675e-11,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "7bb89809b294e43765ff02404b96ea74b617719ec4edaba82c14ef41a04006a6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1e4d2270b74dff7d70cccc558b7d5299c371aec8e8c6e9a20b97d00b57db2631",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1e4d2270b74dff7d70cccc558b7d5299c371aec8e8c6e9a20b97d00b57db2631",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.1413073031671956e-08,
+ "last_committed_normalized_gap": 0.026260027661919594,
+ "last_committed_score_gap": 8.249081417943671e-10,
+ "last_cutoff_score_margin": 8.249081417943671e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.1413073031671956e-08,
+ "last_raw_normalized_gap": 0.026260027661919594,
+ "last_raw_score_gap": 8.249081417943671e-10,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "1e4d2270b74dff7d70cccc558b7d5299c371aec8e8c6e9a20b97d00b57db2631",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "23aa44b837b0cfabf4fd089c1c50ea877297c27c052683acaab6567263a7a551",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "23aa44b837b0cfabf4fd089c1c50ea877297c27c052683acaab6567263a7a551",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.164562490885146e-06,
+ "last_committed_normalized_gap": 0.5311687588691711,
+ "last_committed_score_gap": 6.185791789903305e-07,
+ "last_cutoff_score_margin": 6.185791789903305e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.164562490885146e-06,
+ "last_raw_normalized_gap": 0.5311687588691711,
+ "last_raw_score_gap": 6.185791789903305e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "23aa44b837b0cfabf4fd089c1c50ea877297c27c052683acaab6567263a7a551",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "00c95efcb193c6b6466cb25a24b9f0dc5a6458d275e99721724613429049fe30",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "00c95efcb193c6b6466cb25a24b9f0dc5a6458d275e99721724613429049fe30",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3943950964167016e-06,
+ "last_committed_normalized_gap": 0.8383795619010925,
+ "last_committed_score_gap": 2.007411922022584e-06,
+ "last_cutoff_score_margin": 2.007411922022584e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3943950964167016e-06,
+ "last_raw_normalized_gap": 0.8383795619010925,
+ "last_raw_score_gap": 2.007411922022584e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "00c95efcb193c6b6466cb25a24b9f0dc5a6458d275e99721724613429049fe30",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "09d03fa903a0916faca11cb9b20517501b4a9f76a288367d548de76bbbf3ad36",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "09d03fa903a0916faca11cb9b20517501b4a9f76a288367d548de76bbbf3ad36",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.395023228833452e-05,
+ "last_committed_normalized_gap": 0.9083080887794495,
+ "last_committed_score_gap": 5.8086512581212446e-05,
+ "last_cutoff_score_margin": 5.8086512581212446e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.395023228833452e-05,
+ "last_raw_normalized_gap": 0.9083080887794495,
+ "last_raw_score_gap": 5.8086512581212446e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "09d03fa903a0916faca11cb9b20517501b4a9f76a288367d548de76bbbf3ad36",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "70ed4cc41f06403f7823d477accf58b5b2057811f334e1b32a3009d3303c5ef0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "70ed4cc41f06403f7823d477accf58b5b2057811f334e1b32a3009d3303c5ef0",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3741399015998468e-05,
+ "last_committed_normalized_gap": 0.51740562915802,
+ "last_committed_score_gap": 7.109877515176777e-06,
+ "last_cutoff_score_margin": 7.109877515176777e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3741399015998468e-05,
+ "last_raw_normalized_gap": 0.51740562915802,
+ "last_raw_score_gap": 7.109877515176777e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "70ed4cc41f06403f7823d477accf58b5b2057811f334e1b32a3009d3303c5ef0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.807850640034303e-05,
+ "last_committed_normalized_gap": 0.5135214924812317,
+ "last_committed_score_gap": 9.283701729145832e-06,
+ "last_cutoff_score_margin": 9.283701729145832e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.807850640034303e-05,
+ "last_raw_normalized_gap": 0.5135214924812317,
+ "last_raw_score_gap": 9.283701729145832e-06,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d512f53725623b5bae18d429e6a6fbc09edb80e8a16bdb4cba47eea20486f49f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d512f53725623b5bae18d429e6a6fbc09edb80e8a16bdb4cba47eea20486f49f",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.306477070618712e-07,
+ "last_committed_normalized_gap": 0.5187519192695618,
+ "last_committed_score_gap": 4.309000871671742e-07,
+ "last_cutoff_score_margin": 4.309000871671742e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.306477070618712e-07,
+ "last_raw_normalized_gap": 0.5187519192695618,
+ "last_raw_score_gap": 4.309000871671742e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "d512f53725623b5bae18d429e6a6fbc09edb80e8a16bdb4cba47eea20486f49f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ }
+ ],
+ "task_id": 920
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3a366c3303e4acf9b6610685d52cbfa2bb4fc411bee4633d0144951cad7477b0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3a366c3303e4acf9b6610685d52cbfa2bb4fc411bee4633d0144951cad7477b0",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.714350935827952e-09,
+ "last_committed_normalized_gap": 0.03130899369716644,
+ "last_committed_score_gap": 2.4152857491799296e-10,
+ "last_cutoff_score_margin": 2.4152857491799296e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 349,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.714350935827952e-09,
+ "last_raw_normalized_gap": 0.03130899369716644,
+ "last_raw_score_gap": 2.4152857491799296e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "3a366c3303e4acf9b6610685d52cbfa2bb4fc411bee4633d0144951cad7477b0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "992c42f0f0f850bf9552bd0069b43f6ec4699b4d1adff7421f6feacc3f9d7c72",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "992c42f0f0f850bf9552bd0069b43f6ec4699b4d1adff7421f6feacc3f9d7c72",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.038075124806028e-09,
+ "last_committed_normalized_gap": 0.004054077435284853,
+ "last_committed_score_gap": 1.2316592190586562e-11,
+ "last_cutoff_score_margin": 1.2316592190586562e-11,
+ "last_mask_churn": 164,
+ "last_mask_overlap": 298,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.038075124806028e-09,
+ "last_raw_normalized_gap": 0.004054077435284853,
+ "last_raw_score_gap": 1.2316592190586562e-11,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "992c42f0f0f850bf9552bd0069b43f6ec4699b4d1adff7421f6feacc3f9d7c72",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a1e3fbddcb50bfd38420e7c3273ac4452565ceba0cf03823978f1eee54b09231",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a1e3fbddcb50bfd38420e7c3273ac4452565ceba0cf03823978f1eee54b09231",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.862686780488957e-09,
+ "last_committed_normalized_gap": 0.012549693696200848,
+ "last_committed_score_gap": 7.357492393111897e-11,
+ "last_cutoff_score_margin": 7.357492393111897e-11,
+ "last_mask_churn": 56,
+ "last_mask_overlap": 241,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.862686780488957e-09,
+ "last_raw_normalized_gap": 0.012549693696200848,
+ "last_raw_score_gap": 7.357492393111897e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "a1e3fbddcb50bfd38420e7c3273ac4452565ceba0cf03823978f1eee54b09231",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "25860de7ab9eb537e47a2475fdbb59e7a6b13717f58f2c79dd266abb2593b0c5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "25860de7ab9eb537e47a2475fdbb59e7a6b13717f58f2c79dd266abb2593b0c5",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0302374537095602e-07,
+ "last_committed_normalized_gap": 0.065794438123703,
+ "last_committed_score_gap": 1.3357833950067288e-08,
+ "last_cutoff_score_margin": 1.3357833950067288e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 177,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0302374537095602e-07,
+ "last_raw_normalized_gap": 0.065794438123703,
+ "last_raw_score_gap": 1.3357833950067288e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "25860de7ab9eb537e47a2475fdbb59e7a6b13717f58f2c79dd266abb2593b0c5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "eb9f27bc4008271d0c054e48e1ef84a9cbd11faf0e19c8828e235cdfef5be918",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "eb9f27bc4008271d0c054e48e1ef84a9cbd11faf0e19c8828e235cdfef5be918",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.5788207952691664e-08,
+ "last_committed_normalized_gap": 0.02480938844382763,
+ "last_committed_score_gap": 8.878835444647848e-10,
+ "last_cutoff_score_margin": 8.878835444647848e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.5788207952691664e-08,
+ "last_raw_normalized_gap": 0.02480938844382763,
+ "last_raw_score_gap": 8.878835444647848e-10,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "eb9f27bc4008271d0c054e48e1ef84a9cbd11faf0e19c8828e235cdfef5be918",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0852e345be6226535dd30bc7f8332350504d6133fa52dd2f577606cba3806c2c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0852e345be6226535dd30bc7f8332350504d6133fa52dd2f577606cba3806c2c",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3823231387609667e-08,
+ "last_committed_normalized_gap": 0.02795458771288395,
+ "last_committed_score_gap": 6.659686135890297e-10,
+ "last_cutoff_score_margin": 6.659686135890297e-10,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 100,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3823231387609667e-08,
+ "last_raw_normalized_gap": 0.02795458771288395,
+ "last_raw_score_gap": 6.659686135890297e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "0852e345be6226535dd30bc7f8332350504d6133fa52dd2f577606cba3806c2c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9350eeb55b8a7dcf1756167690afbee6305ff0fa4ec8cc38aac5351e71779082",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9350eeb55b8a7dcf1756167690afbee6305ff0fa4ec8cc38aac5351e71779082",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0310567688520678e-07,
+ "last_committed_normalized_gap": 0.2415555864572525,
+ "last_committed_score_gap": 2.4905752127324376e-08,
+ "last_cutoff_score_margin": 2.4905752127324376e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0310567688520678e-07,
+ "last_raw_normalized_gap": 0.2415555864572525,
+ "last_raw_score_gap": 2.4905752127324376e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "9350eeb55b8a7dcf1756167690afbee6305ff0fa4ec8cc38aac5351e71779082",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1dd748f71291a14f3e43b53606ae00f1c422c5397b8fcbcebfa412fe8046d852",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1dd748f71291a14f3e43b53606ae00f1c422c5397b8fcbcebfa412fe8046d852",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.33317133285982e-08,
+ "last_committed_normalized_gap": 0.10183931142091751,
+ "last_committed_score_gap": 4.412871845715927e-09,
+ "last_cutoff_score_margin": 4.412871845715927e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 41,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.33317133285982e-08,
+ "last_raw_normalized_gap": 0.10183931142091751,
+ "last_raw_score_gap": 4.412871845715927e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "1dd748f71291a14f3e43b53606ae00f1c422c5397b8fcbcebfa412fe8046d852",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "332b965b9fffeb8866587b2ce33369e0ed7f4a54f5e265afd032c44e30305435",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "332b965b9fffeb8866587b2ce33369e0ed7f4a54f5e265afd032c44e30305435",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.762911368227378e-09,
+ "last_committed_normalized_gap": 0.00964514259248972,
+ "last_committed_score_gap": 9.416467605660728e-11,
+ "last_cutoff_score_margin": 9.416467605660728e-11,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 77,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.762911368227378e-09,
+ "last_raw_normalized_gap": 0.00964514259248972,
+ "last_raw_score_gap": 9.416467605660728e-11,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "332b965b9fffeb8866587b2ce33369e0ed7f4a54f5e265afd032c44e30305435",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cce285b86269925bf73ff91d2d324074427ffaff217d9a9f85155d8e05eab114",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "cce285b86269925bf73ff91d2d324074427ffaff217d9a9f85155d8e05eab114",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1551148872968042e-06,
+ "last_committed_normalized_gap": 0.47814854979515076,
+ "last_committed_score_gap": 5.523165214071923e-07,
+ "last_cutoff_score_margin": 5.523165214071923e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1551148872968042e-06,
+ "last_raw_normalized_gap": 0.47814854979515076,
+ "last_raw_score_gap": 5.523165214071923e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "cce285b86269925bf73ff91d2d324074427ffaff217d9a9f85155d8e05eab114",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b0af7429ed66cab75d61baf9aa29c6da6b2e4bcdffe29cb9ee17428a97e186bc",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b0af7429ed66cab75d61baf9aa29c6da6b2e4bcdffe29cb9ee17428a97e186bc",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.637797891225091e-08,
+ "last_committed_normalized_gap": 0.017509903758764267,
+ "last_committed_score_gap": 4.618758708829773e-10,
+ "last_cutoff_score_margin": 4.618758708829773e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 60,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.637797891225091e-08,
+ "last_raw_normalized_gap": 0.017509903758764267,
+ "last_raw_score_gap": 4.618758708829773e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "b0af7429ed66cab75d61baf9aa29c6da6b2e4bcdffe29cb9ee17428a97e186bc",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7d102f0a1f434fbcf3dcba1bc2d7f0e3f2f79a4ae67cac4031b50d3061684ef8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7d102f0a1f434fbcf3dcba1bc2d7f0e3f2f79a4ae67cac4031b50d3061684ef8",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4007945853554702e-08,
+ "last_committed_normalized_gap": 0.03354937955737114,
+ "last_committed_score_gap": 8.054517053324162e-10,
+ "last_cutoff_score_margin": 8.054517053324162e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 52,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4007945853554702e-08,
+ "last_raw_normalized_gap": 0.03354937955737114,
+ "last_raw_score_gap": 8.054517053324162e-10,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "7d102f0a1f434fbcf3dcba1bc2d7f0e3f2f79a4ae67cac4031b50d3061684ef8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5cae14a7d10362c06e9868960be4f722fbb09a990e374661a26c763e1164a2bd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5cae14a7d10362c06e9868960be4f722fbb09a990e374661a26c763e1164a2bd",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.668249170616036e-07,
+ "last_committed_normalized_gap": 0.6435819268226624,
+ "last_committed_score_gap": 4.291564721370378e-07,
+ "last_cutoff_score_margin": 4.291564721370378e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.668249170616036e-07,
+ "last_raw_normalized_gap": 0.6435819268226624,
+ "last_raw_score_gap": 4.291564721370378e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "5cae14a7d10362c06e9868960be4f722fbb09a990e374661a26c763e1164a2bd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cc405dbd669a5d3a3ece2d82a2ddc14e4925e0b0313ec46aa24952f2910db8e7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "cc405dbd669a5d3a3ece2d82a2ddc14e4925e0b0313ec46aa24952f2910db8e7",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.932620178507932e-07,
+ "last_committed_normalized_gap": 0.041100699454545975,
+ "last_committed_score_gap": 3.260362291257479e-08,
+ "last_cutoff_score_margin": 3.260362291257479e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.932620178507932e-07,
+ "last_raw_normalized_gap": 0.041100699454545975,
+ "last_raw_score_gap": 3.260362291257479e-08,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "cc405dbd669a5d3a3ece2d82a2ddc14e4925e0b0313ec46aa24952f2910db8e7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "27a2f4d1ba46bb542ebff21bb0e0a5d6306b86dc6a6a34f3996c80cc06bc54e8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "27a2f4d1ba46bb542ebff21bb0e0a5d6306b86dc6a6a34f3996c80cc06bc54e8",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.873871512245387e-05,
+ "last_committed_normalized_gap": 0.9143625497817993,
+ "last_committed_score_gap": 4.456485476111993e-05,
+ "last_cutoff_score_margin": 4.456485476111993e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.873871512245387e-05,
+ "last_raw_normalized_gap": 0.9143625497817993,
+ "last_raw_score_gap": 4.456485476111993e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "27a2f4d1ba46bb542ebff21bb0e0a5d6306b86dc6a6a34f3996c80cc06bc54e8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4159427994163707e-05,
+ "last_committed_normalized_gap": 0.9201351404190063,
+ "last_committed_score_gap": 2.2229938622331247e-05,
+ "last_cutoff_score_margin": 2.2229938622331247e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4159427994163707e-05,
+ "last_raw_normalized_gap": 0.9201351404190063,
+ "last_raw_score_gap": 2.2229938622331247e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f0da7c7b3a633ad89e5a3c48ccebc6b6d8b0c9a0ad2ebd80258aee9273a6eb4c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f0da7c7b3a633ad89e5a3c48ccebc6b6d8b0c9a0ad2ebd80258aee9273a6eb4c",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.427690924378112e-05,
+ "last_committed_normalized_gap": 0.9300563931465149,
+ "last_committed_score_gap": 2.2578895368496887e-05,
+ "last_cutoff_score_margin": 2.2578895368496887e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.427690924378112e-05,
+ "last_raw_normalized_gap": 0.9300563931465149,
+ "last_raw_score_gap": 2.2578895368496887e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "f0da7c7b3a633ad89e5a3c48ccebc6b6d8b0c9a0ad2ebd80258aee9273a6eb4c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bda003c8811b5d96ef0120de917384250bc553b7801bba313c8fc196c28be0e1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "bda003c8811b5d96ef0120de917384250bc553b7801bba313c8fc196c28be0e1",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5835335887004476e-07,
+ "last_committed_normalized_gap": 0.3155190050601959,
+ "last_committed_score_gap": 4.9963496451255196e-08,
+ "last_cutoff_score_margin": 4.9963496451255196e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5835335887004476e-07,
+ "last_raw_normalized_gap": 0.3155190050601959,
+ "last_raw_score_gap": 4.9963496451255196e-08,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "bda003c8811b5d96ef0120de917384250bc553b7801bba313c8fc196c28be0e1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ }
+ ],
+ "task_id": 771
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "202ca06e1c810b498ce51180b4657b2c12d1d3a3ac12610a64eb3f6faef21da1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "202ca06e1c810b498ce51180b4657b2c12d1d3a3ac12610a64eb3f6faef21da1",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4021540373221342e-08,
+ "last_committed_normalized_gap": 0.055748358368873596,
+ "last_committed_score_gap": 7.816778335723029e-10,
+ "last_cutoff_score_margin": 7.816778335723029e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 349,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4021540373221342e-08,
+ "last_raw_normalized_gap": 0.055748358368873596,
+ "last_raw_score_gap": 7.816778335723029e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "202ca06e1c810b498ce51180b4657b2c12d1d3a3ac12610a64eb3f6faef21da1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e07d96047a3588704ce6b1cff91a8b50e1d4512e11c580bac10c10d25366d441",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e07d96047a3588704ce6b1cff91a8b50e1d4512e11c580bac10c10d25366d441",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9674485091391034e-10,
+ "last_committed_normalized_gap": 0.0010550575098022819,
+ "last_committed_score_gap": 3.1308289294429414e-13,
+ "last_cutoff_score_margin": 3.1308289294429414e-13,
+ "last_mask_churn": 94,
+ "last_mask_overlap": 333,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9674485091391034e-10,
+ "last_raw_normalized_gap": 0.0010550575098022819,
+ "last_raw_score_gap": 3.1308289294429414e-13,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "e07d96047a3588704ce6b1cff91a8b50e1d4512e11c580bac10c10d25366d441",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1245b7cd83a6f3d01215f4fa833ac250bda5c063262e0e0331b05417930b0c4c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1245b7cd83a6f3d01215f4fa833ac250bda5c063262e0e0331b05417930b0c4c",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3493260670193195e-09,
+ "last_committed_normalized_gap": 0.028517665341496468,
+ "last_committed_score_gap": 6.699729659942477e-11,
+ "last_cutoff_score_margin": 6.699729659942477e-11,
+ "last_mask_churn": 26,
+ "last_mask_overlap": 256,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3493260670193195e-09,
+ "last_raw_normalized_gap": 0.028517665341496468,
+ "last_raw_score_gap": 6.699729659942477e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "1245b7cd83a6f3d01215f4fa833ac250bda5c063262e0e0331b05417930b0c4c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "87559809a3c390272c580b45913cac89327e64c04000bc9e52f4fbda625777f5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "87559809a3c390272c580b45913cac89327e64c04000bc9e52f4fbda625777f5",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.949313397948572e-07,
+ "last_committed_normalized_gap": 0.2767092287540436,
+ "last_committed_score_gap": 8.16102243561545e-08,
+ "last_cutoff_score_margin": 8.16102243561545e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.949313397948572e-07,
+ "last_raw_normalized_gap": 0.2767092287540436,
+ "last_raw_score_gap": 8.16102243561545e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "87559809a3c390272c580b45913cac89327e64c04000bc9e52f4fbda625777f5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "664080463ce7449d6ac572425ac3059205ed53b319a0e3fab297f87da4cab98e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "664080463ce7449d6ac572425ac3059205ed53b319a0e3fab297f87da4cab98e",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.7484706066616127e-08,
+ "last_committed_normalized_gap": 0.16012020409107208,
+ "last_committed_score_gap": 4.400856568054223e-09,
+ "last_cutoff_score_margin": 4.400856568054223e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 182,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7484706066616127e-08,
+ "last_raw_normalized_gap": 0.16012020409107208,
+ "last_raw_score_gap": 4.400856568054223e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "664080463ce7449d6ac572425ac3059205ed53b319a0e3fab297f87da4cab98e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4eecac6d810b70fc158153434d12944f32da78d80b7c097069e3c9e2a9b61f2a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4eecac6d810b70fc158153434d12944f32da78d80b7c097069e3c9e2a9b61f2a",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.39381404196115e-08,
+ "last_committed_normalized_gap": 0.02492705173790455,
+ "last_committed_score_gap": 3.474367460398753e-10,
+ "last_cutoff_score_margin": 3.474367460398753e-10,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 98,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.39381404196115e-08,
+ "last_raw_normalized_gap": 0.02492705173790455,
+ "last_raw_score_gap": 3.474367460398753e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "4eecac6d810b70fc158153434d12944f32da78d80b7c097069e3c9e2a9b61f2a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e5a7b0b47bbe61df0e01a171024fdb088a497de912830f9bf2e5f0ba215a1ab1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e5a7b0b47bbe61df0e01a171024fdb088a497de912830f9bf2e5f0ba215a1ab1",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5766788408200227e-07,
+ "last_committed_normalized_gap": 0.37523362040519714,
+ "last_committed_score_gap": 5.916228928981582e-08,
+ "last_cutoff_score_margin": 5.916228928981582e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5766788408200227e-07,
+ "last_raw_normalized_gap": 0.37523362040519714,
+ "last_raw_score_gap": 5.916228928981582e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "e5a7b0b47bbe61df0e01a171024fdb088a497de912830f9bf2e5f0ba215a1ab1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e095ddd4bc870f9b06744daef444bd2e1009aff1cc3dba5a8248bedc98b8692d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e095ddd4bc870f9b06744daef444bd2e1009aff1cc3dba5a8248bedc98b8692d",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.2998430533079954e-08,
+ "last_committed_normalized_gap": 0.010296404361724854,
+ "last_committed_score_gap": 5.456932683500781e-10,
+ "last_cutoff_score_margin": 5.456932683500781e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.2998430533079954e-08,
+ "last_raw_normalized_gap": 0.010296404361724854,
+ "last_raw_score_gap": 5.456932683500781e-10,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "e095ddd4bc870f9b06744daef444bd2e1009aff1cc3dba5a8248bedc98b8692d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "082097fbd12ff55230a2d7b8da336444f0bc7f6f81c296f209af72eb0e49b1e5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "082097fbd12ff55230a2d7b8da336444f0bc7f6f81c296f209af72eb0e49b1e5",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0412896262200775e-08,
+ "last_committed_normalized_gap": 0.16614985466003418,
+ "last_committed_score_gap": 3.3915998898237376e-09,
+ "last_cutoff_score_margin": 3.3915998898237376e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0412896262200775e-08,
+ "last_raw_normalized_gap": 0.16614985466003418,
+ "last_raw_score_gap": 3.3915998898237376e-09,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "082097fbd12ff55230a2d7b8da336444f0bc7f6f81c296f209af72eb0e49b1e5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5871ccb616273e6de30efeb820bdff9716dbb636244f5584c6f5d24047b37847",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5871ccb616273e6de30efeb820bdff9716dbb636244f5584c6f5d24047b37847",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0438070603413507e-06,
+ "last_committed_normalized_gap": 0.5570882558822632,
+ "last_committed_score_gap": 5.81492656692717e-07,
+ "last_cutoff_score_margin": 5.81492656692717e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0438070603413507e-06,
+ "last_raw_normalized_gap": 0.5570882558822632,
+ "last_raw_score_gap": 5.81492656692717e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "5871ccb616273e6de30efeb820bdff9716dbb636244f5584c6f5d24047b37847",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5f1dce23aee3d6f513993e19790dd8e41c2de5d9d48c439cb9b4b1d78a959e90",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5f1dce23aee3d6f513993e19790dd8e41c2de5d9d48c439cb9b4b1d78a959e90",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6004157998850133e-08,
+ "last_committed_normalized_gap": 0.11563736945390701,
+ "last_committed_score_gap": 1.8506787213823372e-09,
+ "last_cutoff_score_margin": 1.8506787213823372e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 59,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6004157998850133e-08,
+ "last_raw_normalized_gap": 0.11563736945390701,
+ "last_raw_score_gap": 1.8506787213823372e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "5f1dce23aee3d6f513993e19790dd8e41c2de5d9d48c439cb9b4b1d78a959e90",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f3a8871eb67e82a2597768ef826b0cefaac944c6d616bb824dee77c629893882",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f3a8871eb67e82a2597768ef826b0cefaac944c6d616bb824dee77c629893882",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5356641231155663e-08,
+ "last_committed_normalized_gap": 0.08843008428812027,
+ "last_committed_score_gap": 2.242289909304418e-09,
+ "last_cutoff_score_margin": 2.242289909304418e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 52,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5356641231155663e-08,
+ "last_raw_normalized_gap": 0.08843008428812027,
+ "last_raw_score_gap": 2.242289909304418e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "f3a8871eb67e82a2597768ef826b0cefaac944c6d616bb824dee77c629893882",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b0dc44dae892c1f20da837db2a1542d03df09e30c7185d8f068f302751013122",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b0dc44dae892c1f20da837db2a1542d03df09e30c7185d8f068f302751013122",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7621761116970447e-06,
+ "last_committed_normalized_gap": 0.31725695729255676,
+ "last_committed_score_gap": 5.590626415141742e-07,
+ "last_cutoff_score_margin": 5.590626415141742e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7621761116970447e-06,
+ "last_raw_normalized_gap": 0.31725695729255676,
+ "last_raw_score_gap": 5.590626415141742e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "b0dc44dae892c1f20da837db2a1542d03df09e30c7185d8f068f302751013122",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "67daa2cd85bbbe354c5be3cbc1e9f54e02858da783d3ebb4db0f47da0432e6f1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "67daa2cd85bbbe354c5be3cbc1e9f54e02858da783d3ebb4db0f47da0432e6f1",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.033203708786459e-07,
+ "last_committed_normalized_gap": 0.2982300817966461,
+ "last_committed_score_gap": 1.2028226592519786e-07,
+ "last_cutoff_score_margin": 1.2028226592519786e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.033203708786459e-07,
+ "last_raw_normalized_gap": 0.2982300817966461,
+ "last_raw_score_gap": 1.2028226592519786e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "67daa2cd85bbbe354c5be3cbc1e9f54e02858da783d3ebb4db0f47da0432e6f1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.3221134546911344e-05,
+ "last_committed_normalized_gap": 0.6195588707923889,
+ "last_committed_score_gap": 2.6778037863550708e-05,
+ "last_cutoff_score_margin": 2.6778037863550708e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.3221134546911344e-05,
+ "last_raw_normalized_gap": 0.6195588707923889,
+ "last_raw_score_gap": 2.6778037863550708e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.84261677734321e-05,
+ "last_committed_normalized_gap": 0.1579212099313736,
+ "last_committed_score_gap": 4.4890948629472405e-06,
+ "last_cutoff_score_margin": 4.4890948629472405e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.84261677734321e-05,
+ "last_raw_normalized_gap": 0.1579212099313736,
+ "last_raw_score_gap": 4.4890948629472405e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "40dfc2f41cc60a96c9e7bcb7f5bec1bfc33fbfc5f4e29d3851ecdc772b59e987",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "40dfc2f41cc60a96c9e7bcb7f5bec1bfc33fbfc5f4e29d3851ecdc772b59e987",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2109143174020573e-05,
+ "last_committed_normalized_gap": 0.9685518741607666,
+ "last_committed_score_gap": 2.1413852664409205e-05,
+ "last_cutoff_score_margin": 2.1413852664409205e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.2109143174020573e-05,
+ "last_raw_normalized_gap": 0.9685518741607666,
+ "last_raw_score_gap": 2.1413852664409205e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "40dfc2f41cc60a96c9e7bcb7f5bec1bfc33fbfc5f4e29d3851ecdc772b59e987",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "366ef35be5490ec1997d38458e83cee17a6a5862ea89efa3caaf74f23b047698",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "366ef35be5490ec1997d38458e83cee17a6a5862ea89efa3caaf74f23b047698",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.832889087287185e-07,
+ "last_committed_normalized_gap": 0.7577385902404785,
+ "last_committed_score_gap": 4.4198051796229265e-07,
+ "last_cutoff_score_margin": 4.4198051796229265e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.832889087287185e-07,
+ "last_raw_normalized_gap": 0.7577385902404785,
+ "last_raw_score_gap": 4.4198051796229265e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "366ef35be5490ec1997d38458e83cee17a6a5862ea89efa3caaf74f23b047698",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ }
+ ],
+ "task_id": 869
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bb0fa66bde8110ab381a3743b0560485abfbd64cc23e4881977f336b1a31422f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "bb0fa66bde8110ab381a3743b0560485abfbd64cc23e4881977f336b1a31422f",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.345915461887671e-08,
+ "last_committed_normalized_gap": 0.005693860352039337,
+ "last_committed_score_gap": 1.3357315253870183e-10,
+ "last_cutoff_score_margin": 1.3357315253870183e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 351,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.345915461887671e-08,
+ "last_raw_normalized_gap": 0.005693860352039337,
+ "last_raw_score_gap": 1.3357315253870183e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "bb0fa66bde8110ab381a3743b0560485abfbd64cc23e4881977f336b1a31422f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d0536bf312f0f44e7bba0bbf3643e19b0fe39f2518d0f55d3a6047a8d94e7ed7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d0536bf312f0f44e7bba0bbf3643e19b0fe39f2518d0f55d3a6047a8d94e7ed7",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.272677460257171e-10,
+ "last_committed_normalized_gap": 0.004560390487313271,
+ "last_committed_score_gap": 3.3166247526139614e-12,
+ "last_cutoff_score_margin": 3.3166247526139614e-12,
+ "last_mask_churn": 66,
+ "last_mask_overlap": 347,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.272677460257171e-10,
+ "last_raw_normalized_gap": 0.004560390487313271,
+ "last_raw_score_gap": 3.3166247526139614e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "d0536bf312f0f44e7bba0bbf3643e19b0fe39f2518d0f55d3a6047a8d94e7ed7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "85a00dab3699e1c18ef8638d9078fbacbdbdfd2aa6b8c3c33bb9d1e19a1ffc2d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "85a00dab3699e1c18ef8638d9078fbacbdbdfd2aa6b8c3c33bb9d1e19a1ffc2d",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.7911069838969524e-09,
+ "last_committed_normalized_gap": 0.005402249749749899,
+ "last_committed_score_gap": 2.0480506179865188e-11,
+ "last_cutoff_score_margin": 2.0480506179865188e-11,
+ "last_mask_churn": 22,
+ "last_mask_overlap": 258,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.7911069838969524e-09,
+ "last_raw_normalized_gap": 0.005402249749749899,
+ "last_raw_score_gap": 2.0480506179865188e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "85a00dab3699e1c18ef8638d9078fbacbdbdfd2aa6b8c3c33bb9d1e19a1ffc2d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "97d05dd55d15c22abbc08e9727b2f6a2a52dda119dbf0415cf68b454b53eebc0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "97d05dd55d15c22abbc08e9727b2f6a2a52dda119dbf0415cf68b454b53eebc0",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.255191529660806e-07,
+ "last_committed_normalized_gap": 0.14765462279319763,
+ "last_committed_score_gap": 4.8064407565107103e-08,
+ "last_cutoff_score_margin": 4.8064407565107103e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.255191529660806e-07,
+ "last_raw_normalized_gap": 0.14765462279319763,
+ "last_raw_score_gap": 4.8064407565107103e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "97d05dd55d15c22abbc08e9727b2f6a2a52dda119dbf0415cf68b454b53eebc0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1e2a9311fc757280243da055d33861ffb23d9032e3256a3eda7ede3a4c7f0f60",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1e2a9311fc757280243da055d33861ffb23d9032e3256a3eda7ede3a4c7f0f60",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5512230550361892e-08,
+ "last_committed_normalized_gap": 0.006765719503164291,
+ "last_committed_score_gap": 1.7260859408452234e-10,
+ "last_cutoff_score_margin": 1.7260859408452234e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5512230550361892e-08,
+ "last_raw_normalized_gap": 0.006765719503164291,
+ "last_raw_score_gap": 1.7260859408452234e-10,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "1e2a9311fc757280243da055d33861ffb23d9032e3256a3eda7ede3a4c7f0f60",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fd5e2d54c49b9e08481399dc6e880c06aaf9e1ed2ade14fe23050e453ccaca9f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fd5e2d54c49b9e08481399dc6e880c06aaf9e1ed2ade14fe23050e453ccaca9f",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2133010091351935e-08,
+ "last_committed_normalized_gap": 0.021763551980257034,
+ "last_committed_score_gap": 4.816929077833265e-10,
+ "last_cutoff_score_margin": 4.816929077833265e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.2133010091351935e-08,
+ "last_raw_normalized_gap": 0.021763551980257034,
+ "last_raw_score_gap": 4.816929077833265e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "fd5e2d54c49b9e08481399dc6e880c06aaf9e1ed2ade14fe23050e453ccaca9f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c60366aa5920e8676b9c42450e391ea45656e17352ab2c5361b68d9ae447630a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c60366aa5920e8676b9c42450e391ea45656e17352ab2c5361b68d9ae447630a",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2302282925702457e-07,
+ "last_committed_normalized_gap": 0.02304815500974655,
+ "last_committed_score_gap": 2.83544920876011e-09,
+ "last_cutoff_score_margin": 2.83544920876011e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2302282925702457e-07,
+ "last_raw_normalized_gap": 0.02304815500974655,
+ "last_raw_score_gap": 2.83544920876011e-09,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "c60366aa5920e8676b9c42450e391ea45656e17352ab2c5361b68d9ae447630a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "dbef6700e8f9900e8c033ab44c208335e39ad65a8044e89130b5b5e976e127fe",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "dbef6700e8f9900e8c033ab44c208335e39ad65a8044e89130b5b5e976e127fe",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.533802121566623e-08,
+ "last_committed_normalized_gap": 0.4308236241340637,
+ "last_committed_score_gap": 2.8149163000534827e-08,
+ "last_cutoff_score_margin": 2.8149163000534827e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.533802121566623e-08,
+ "last_raw_normalized_gap": 0.4308236241340637,
+ "last_raw_score_gap": 2.8149163000534827e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "dbef6700e8f9900e8c033ab44c208335e39ad65a8044e89130b5b5e976e127fe",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5dbcde57775f6538cfe8cd7cab7af7151803a2b0ce9a745698a10fb0b9d9ba45",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5dbcde57775f6538cfe8cd7cab7af7151803a2b0ce9a745698a10fb0b9d9ba45",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8104561405607456e-08,
+ "last_committed_normalized_gap": 0.01990853250026703,
+ "last_committed_score_gap": 3.604352372121866e-10,
+ "last_cutoff_score_margin": 3.604352372121866e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8104561405607456e-08,
+ "last_raw_normalized_gap": 0.01990853250026703,
+ "last_raw_score_gap": 3.604352372121866e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "5dbcde57775f6538cfe8cd7cab7af7151803a2b0ce9a745698a10fb0b9d9ba45",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "908f279910af5661b3cd4041588a4c3c1d93e4a48440bbdc9faa41192d28f862",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "908f279910af5661b3cd4041588a4c3c1d93e4a48440bbdc9faa41192d28f862",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1125262062705588e-06,
+ "last_committed_normalized_gap": 0.717017412185669,
+ "last_committed_score_gap": 7.977006362125394e-07,
+ "last_cutoff_score_margin": 7.977006362125394e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1125262062705588e-06,
+ "last_raw_normalized_gap": 0.717017412185669,
+ "last_raw_score_gap": 7.977006362125394e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "908f279910af5661b3cd4041588a4c3c1d93e4a48440bbdc9faa41192d28f862",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ddba514ea6173bd0ca442f5553b1afd07a9cb2a38f2be1b85b4e357a37eca03d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ddba514ea6173bd0ca442f5553b1afd07a9cb2a38f2be1b85b4e357a37eca03d",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.921656326928314e-08,
+ "last_committed_normalized_gap": 0.03207258880138397,
+ "last_committed_score_gap": 1.5785026619141718e-09,
+ "last_cutoff_score_margin": 1.5785026619141718e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.921656326928314e-08,
+ "last_raw_normalized_gap": 0.03207258880138397,
+ "last_raw_score_gap": 1.5785026619141718e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "ddba514ea6173bd0ca442f5553b1afd07a9cb2a38f2be1b85b4e357a37eca03d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3cb4ff3fe7b0374795eb2aca04f128afdcf52e7fe899b536a20a168057a40854",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3cb4ff3fe7b0374795eb2aca04f128afdcf52e7fe899b536a20a168057a40854",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.1148620510966794e-08,
+ "last_committed_normalized_gap": 0.11600641906261444,
+ "last_committed_score_gap": 4.773504258537287e-09,
+ "last_cutoff_score_margin": 4.773504258537287e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 52,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.1148620510966794e-08,
+ "last_raw_normalized_gap": 0.11600641906261444,
+ "last_raw_score_gap": 4.773504258537287e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "3cb4ff3fe7b0374795eb2aca04f128afdcf52e7fe899b536a20a168057a40854",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "181e67e542610d750c95ab9d6c3ff6559c1744960ce85d1d6a6caa1ddb0310d8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "181e67e542610d750c95ab9d6c3ff6559c1744960ce85d1d6a6caa1ddb0310d8",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.129241582020768e-06,
+ "last_committed_normalized_gap": 0.4439896047115326,
+ "last_committed_score_gap": 5.013715167478949e-07,
+ "last_cutoff_score_margin": 5.013715167478949e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.129241582020768e-06,
+ "last_raw_normalized_gap": 0.4439896047115326,
+ "last_raw_score_gap": 5.013715167478949e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "181e67e542610d750c95ab9d6c3ff6559c1744960ce85d1d6a6caa1ddb0310d8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "338666afdd870a73f116d6eee4e8a20ecc80345334529d299cc0973ea396009a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "338666afdd870a73f116d6eee4e8a20ecc80345334529d299cc0973ea396009a",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4767762170085916e-06,
+ "last_committed_normalized_gap": 0.6549013257026672,
+ "last_committed_score_gap": 1.622044010218815e-06,
+ "last_cutoff_score_margin": 1.622044010218815e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4767762170085916e-06,
+ "last_raw_normalized_gap": 0.6549013257026672,
+ "last_raw_score_gap": 1.622044010218815e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "338666afdd870a73f116d6eee4e8a20ecc80345334529d299cc0973ea396009a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.259280391735956e-05,
+ "last_committed_normalized_gap": 0.7585790157318115,
+ "last_committed_score_gap": 5.506737943505868e-05,
+ "last_cutoff_score_margin": 5.506737943505868e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.259280391735956e-05,
+ "last_raw_normalized_gap": 0.7585790157318115,
+ "last_raw_score_gap": 5.506737943505868e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c08eb45f1006b8785a69abbaf63b61e38450995e150c6b863fc019c05567db2f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c08eb45f1006b8785a69abbaf63b61e38450995e150c6b863fc019c05567db2f",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.454813354939688e-05,
+ "last_committed_normalized_gap": 0.4570792317390442,
+ "last_committed_score_gap": 6.649649549217429e-06,
+ "last_cutoff_score_margin": 6.649649549217429e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.454813354939688e-05,
+ "last_raw_normalized_gap": 0.4570792317390442,
+ "last_raw_score_gap": 6.649649549217429e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "c08eb45f1006b8785a69abbaf63b61e38450995e150c6b863fc019c05567db2f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4329125406220555e-05,
+ "last_committed_normalized_gap": 0.8037963509559631,
+ "last_committed_score_gap": 1.1517699022078887e-05,
+ "last_cutoff_score_margin": 1.1517699022078887e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4329125406220555e-05,
+ "last_raw_normalized_gap": 0.8037963509559631,
+ "last_raw_score_gap": 1.1517699022078887e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ef736ac1a0eed2e82fa17d13b05c63ee2be627859a3177eb8cdb9b0b60c312cb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ef736ac1a0eed2e82fa17d13b05c63ee2be627859a3177eb8cdb9b0b60c312cb",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.899732578498515e-07,
+ "last_committed_normalized_gap": 0.45603325963020325,
+ "last_committed_score_gap": 1.3223744588231057e-07,
+ "last_cutoff_score_margin": 1.3223744588231057e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.899732578498515e-07,
+ "last_raw_normalized_gap": 0.45603325963020325,
+ "last_raw_score_gap": 1.3223744588231057e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "ef736ac1a0eed2e82fa17d13b05c63ee2be627859a3177eb8cdb9b0b60c312cb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ }
+ ],
+ "task_id": 851
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d0b5b7932851aa8144bf16a2bfc2727e60c2a4ca0aaeabe35cff81d1bc1fc5a6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d0b5b7932851aa8144bf16a2bfc2727e60c2a4ca0aaeabe35cff81d1bc1fc5a6",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4998365216456477e-08,
+ "last_committed_normalized_gap": 0.2445930391550064,
+ "last_committed_score_gap": 3.6684957294141896e-09,
+ "last_cutoff_score_margin": 3.6684957294141896e-09,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 349,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4998365216456477e-08,
+ "last_raw_normalized_gap": 0.2445930391550064,
+ "last_raw_score_gap": 3.6684957294141896e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "d0b5b7932851aa8144bf16a2bfc2727e60c2a4ca0aaeabe35cff81d1bc1fc5a6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4a90e7d63733903588533442bd59ff5880f4f4bf69f8bd3599808d88e8996096",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4a90e7d63733903588533442bd59ff5880f4f4bf69f8bd3599808d88e8996096",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.12678785693754e-09,
+ "last_committed_normalized_gap": 0.0045196376740932465,
+ "last_committed_score_gap": 9.612310947204605e-12,
+ "last_cutoff_score_margin": 9.612310947204605e-12,
+ "last_mask_churn": 176,
+ "last_mask_overlap": 292,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.12678785693754e-09,
+ "last_raw_normalized_gap": 0.0045196376740932465,
+ "last_raw_score_gap": 9.612310947204605e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "4a90e7d63733903588533442bd59ff5880f4f4bf69f8bd3599808d88e8996096",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "986f6cf8b109d9557e714adf79c1a34d7f8ae4c6d1565117a683e6c6512d8b71",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "986f6cf8b109d9557e714adf79c1a34d7f8ae4c6d1565117a683e6c6512d8b71",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0999992028359884e-08,
+ "last_committed_normalized_gap": 0.01650616154074669,
+ "last_committed_score_gap": 1.815676498040375e-10,
+ "last_cutoff_score_margin": 1.815676498040375e-10,
+ "last_mask_churn": 66,
+ "last_mask_overlap": 236,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0999992028359884e-08,
+ "last_raw_normalized_gap": 0.01650616154074669,
+ "last_raw_score_gap": 1.815676498040375e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "986f6cf8b109d9557e714adf79c1a34d7f8ae4c6d1565117a683e6c6512d8b71",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9f8accdf17f00c0fa5d1313e288d07915377c64659bca850bcd58f224280c75f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9f8accdf17f00c0fa5d1313e288d07915377c64659bca850bcd58f224280c75f",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5674270887066086e-07,
+ "last_committed_normalized_gap": 0.03705908730626106,
+ "last_committed_score_gap": 9.514650400888058e-09,
+ "last_cutoff_score_margin": 9.514650400888058e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 177,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5674270887066086e-07,
+ "last_raw_normalized_gap": 0.03705908730626106,
+ "last_raw_score_gap": 9.514650400888058e-09,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "9f8accdf17f00c0fa5d1313e288d07915377c64659bca850bcd58f224280c75f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "aa4ee87720bc8be9b34e05e4b469c502e9b5cd839051a8719fdafdff4f550e2f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "aa4ee87720bc8be9b34e05e4b469c502e9b5cd839051a8719fdafdff4f550e2f",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.386069166339439e-08,
+ "last_committed_normalized_gap": 0.03550371155142784,
+ "last_committed_score_gap": 3.3324027981507243e-09,
+ "last_cutoff_score_margin": 3.3324027981507243e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 183,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.386069166339439e-08,
+ "last_raw_normalized_gap": 0.03550371155142784,
+ "last_raw_score_gap": 3.3324027981507243e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "aa4ee87720bc8be9b34e05e4b469c502e9b5cd839051a8719fdafdff4f550e2f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "59a54b96deb22ff1125f9f91cc667b183952ef9b74d29598a807fd0ba285659f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "59a54b96deb22ff1125f9f91cc667b183952ef9b74d29598a807fd0ba285659f",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.89214535548399e-08,
+ "last_committed_normalized_gap": 0.00675946893170476,
+ "last_committed_score_gap": 3.3068303650907183e-10,
+ "last_cutoff_score_margin": 3.3068303650907183e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 101,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.89214535548399e-08,
+ "last_raw_normalized_gap": 0.00675946893170476,
+ "last_raw_score_gap": 3.3068303650907183e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "59a54b96deb22ff1125f9f91cc667b183952ef9b74d29598a807fd0ba285659f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "628300f028d15a755cc2ef18b9be19128a1a9a86b9bad956a30ca7a723f7fbf7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "628300f028d15a755cc2ef18b9be19128a1a9a86b9bad956a30ca7a723f7fbf7",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4316579211026692e-07,
+ "last_committed_normalized_gap": 0.26062002778053284,
+ "last_committed_score_gap": 3.731187092625987e-08,
+ "last_cutoff_score_margin": 3.731187092625987e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4316579211026692e-07,
+ "last_raw_normalized_gap": 0.26062002778053284,
+ "last_raw_score_gap": 3.731187092625987e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "628300f028d15a755cc2ef18b9be19128a1a9a86b9bad956a30ca7a723f7fbf7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2a6a4bdcb85be71dad4d134e49e0bb81baac37f4c6c140f252a2fa0accebb6bc",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "2a6a4bdcb85be71dad4d134e49e0bb81baac37f4c6c140f252a2fa0accebb6bc",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0799824678997538e-07,
+ "last_committed_normalized_gap": 0.1489720493555069,
+ "last_committed_score_gap": 1.6088719689832942e-08,
+ "last_cutoff_score_margin": 1.6088719689832942e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 41,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0799824678997538e-07,
+ "last_raw_normalized_gap": 0.1489720493555069,
+ "last_raw_score_gap": 1.6088719689832942e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "2a6a4bdcb85be71dad4d134e49e0bb81baac37f4c6c140f252a2fa0accebb6bc",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4505f49c2824820d86c2ff1e6251baead351290a8378fb415c7bcdcdc89f04ed",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4505f49c2824820d86c2ff1e6251baead351290a8378fb415c7bcdcdc89f04ed",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6583392437041766e-08,
+ "last_committed_normalized_gap": 0.017339181154966354,
+ "last_committed_score_gap": 2.8754243430739734e-10,
+ "last_cutoff_score_margin": 2.8754243430739734e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 82,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6583392437041766e-08,
+ "last_raw_normalized_gap": 0.017339181154966354,
+ "last_raw_score_gap": 2.8754243430739734e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "4505f49c2824820d86c2ff1e6251baead351290a8378fb415c7bcdcdc89f04ed",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9ca22d5561ba4e111b51b37d3ff2ee3e148cc050473509ede02cd1f4bf32eb8d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9ca22d5561ba4e111b51b37d3ff2ee3e148cc050473509ede02cd1f4bf32eb8d",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0776108183563338e-06,
+ "last_committed_normalized_gap": 0.050454672425985336,
+ "last_committed_score_gap": 5.437050276668742e-08,
+ "last_cutoff_score_margin": 5.437050276668742e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0776108183563338e-06,
+ "last_raw_normalized_gap": 0.050454672425985336,
+ "last_raw_score_gap": 5.437050276668742e-08,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "9ca22d5561ba4e111b51b37d3ff2ee3e148cc050473509ede02cd1f4bf32eb8d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "059b20d2ef2b3fee9072ae80571c93c64a70c5b4e894590ddbd4e14bdd8c7844",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "059b20d2ef2b3fee9072ae80571c93c64a70c5b4e894590ddbd4e14bdd8c7844",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.042478269321691e-08,
+ "last_committed_normalized_gap": 0.002885279478505254,
+ "last_committed_score_gap": 8.778400228948158e-11,
+ "last_cutoff_score_margin": 8.778400228948158e-11,
+ "last_mask_churn": 16,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.042478269321691e-08,
+ "last_raw_normalized_gap": 0.002885279478505254,
+ "last_raw_score_gap": 8.778400228948158e-11,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "059b20d2ef2b3fee9072ae80571c93c64a70c5b4e894590ddbd4e14bdd8c7844",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ab9a6c7861c4851c96f0b612780d7a5c85b1a70af03d415252b5b51fbd392b85",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ab9a6c7861c4851c96f0b612780d7a5c85b1a70af03d415252b5b51fbd392b85",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.6097306355695764e-08,
+ "last_committed_normalized_gap": 0.025943022221326828,
+ "last_committed_score_gap": 1.4553336313838372e-09,
+ "last_cutoff_score_margin": 1.4553336313838372e-09,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 48,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.6097306355695764e-08,
+ "last_raw_normalized_gap": 0.025943022221326828,
+ "last_raw_score_gap": 1.4553336313838372e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "ab9a6c7861c4851c96f0b612780d7a5c85b1a70af03d415252b5b51fbd392b85",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "83747c735faacae11e8058cfbe76b8f2b8209901ed79b1be05fe90acbd9a8893",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "83747c735faacae11e8058cfbe76b8f2b8209901ed79b1be05fe90acbd9a8893",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3416262163445936e-06,
+ "last_committed_normalized_gap": 0.020152073353528976,
+ "last_committed_score_gap": 2.7036548999603838e-08,
+ "last_cutoff_score_margin": 2.7036548999603838e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 44,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3416262163445936e-06,
+ "last_raw_normalized_gap": 0.020152073353528976,
+ "last_raw_score_gap": 2.7036548999603838e-08,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "83747c735faacae11e8058cfbe76b8f2b8209901ed79b1be05fe90acbd9a8893",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "75db5a5df7e0f4cb895a661b0154a88e5d99ec59e6af60e741795a668918133a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "75db5a5df7e0f4cb895a661b0154a88e5d99ec59e6af60e741795a668918133a",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8668162056201254e-06,
+ "last_committed_normalized_gap": 0.5550014972686768,
+ "last_committed_score_gap": 1.0360857913838117e-06,
+ "last_cutoff_score_margin": 1.0360857913838117e-06,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8668162056201254e-06,
+ "last_raw_normalized_gap": 0.5550014972686768,
+ "last_raw_score_gap": 1.0360857913838117e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "75db5a5df7e0f4cb895a661b0154a88e5d99ec59e6af60e741795a668918133a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.276417505228892e-05,
+ "last_committed_normalized_gap": 0.9567273259162903,
+ "last_committed_score_gap": 5.048092862125486e-05,
+ "last_cutoff_score_margin": 5.048092862125486e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.276417505228892e-05,
+ "last_raw_normalized_gap": 0.9567273259162903,
+ "last_raw_score_gap": 5.048092862125486e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2103288099751808e-05,
+ "last_committed_normalized_gap": 0.7994794249534607,
+ "last_committed_score_gap": 9.676329682406504e-06,
+ "last_cutoff_score_margin": 9.676329682406504e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2103288099751808e-05,
+ "last_raw_normalized_gap": 0.7994794249534607,
+ "last_raw_score_gap": 9.676329682406504e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3783472240902483e-05,
+ "last_committed_normalized_gap": 0.7965723872184753,
+ "last_committed_score_gap": 1.0979533726640511e-05,
+ "last_cutoff_score_margin": 1.0979533726640511e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3783472240902483e-05,
+ "last_raw_normalized_gap": 0.7965723872184753,
+ "last_raw_score_gap": 1.0979533726640511e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c4a0bd118c6a6e002cde1834f348d15b04f5576d695f4d4734b89e3293bb730c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c4a0bd118c6a6e002cde1834f348d15b04f5576d695f4d4734b89e3293bb730c",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.036527627704345e-07,
+ "last_committed_normalized_gap": 0.35132265090942383,
+ "last_committed_score_gap": 1.418123645180458e-07,
+ "last_cutoff_score_margin": 1.418123645180458e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.036527627704345e-07,
+ "last_raw_normalized_gap": 0.35132265090942383,
+ "last_raw_score_gap": 1.418123645180458e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "c4a0bd118c6a6e002cde1834f348d15b04f5576d695f4d4734b89e3293bb730c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ }
+ ],
+ "task_id": 728
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3f45cd7608fd4ec77dd85c8643fad9e93600425b4bb2821d8abc6372ded54ac5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3f45cd7608fd4ec77dd85c8643fad9e93600425b4bb2821d8abc6372ded54ac5",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1650594206334972e-08,
+ "last_committed_normalized_gap": 0.15466253459453583,
+ "last_committed_score_gap": 3.3485356709661573e-09,
+ "last_cutoff_score_margin": 3.3485356709661573e-09,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 349,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1650594206334972e-08,
+ "last_raw_normalized_gap": 0.15466253459453583,
+ "last_raw_score_gap": 3.3485356709661573e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "3f45cd7608fd4ec77dd85c8643fad9e93600425b4bb2821d8abc6372ded54ac5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e4ca5bca85b474dbfdfde3c992dcb0f8b53b6dda910f868304dbdbf3e68b5c2",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6e4ca5bca85b474dbfdfde3c992dcb0f8b53b6dda910f868304dbdbf3e68b5c2",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2581435327472263e-09,
+ "last_committed_normalized_gap": 0.009713784791529179,
+ "last_committed_score_gap": 3.164890571838441e-11,
+ "last_cutoff_score_margin": 3.164890571838441e-11,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 373,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2581435327472263e-09,
+ "last_raw_normalized_gap": 0.009713784791529179,
+ "last_raw_score_gap": 3.164890571838441e-11,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "6e4ca5bca85b474dbfdfde3c992dcb0f8b53b6dda910f868304dbdbf3e68b5c2",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8e07be26cba6ef7cb099cd57127845945f67e5c3ed2830a6424f8afccdb7b1e5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8e07be26cba6ef7cb099cd57127845945f67e5c3ed2830a6424f8afccdb7b1e5",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0398767180674895e-08,
+ "last_committed_normalized_gap": 0.003288955893367529,
+ "last_committed_score_gap": 3.420108640739272e-11,
+ "last_cutoff_score_margin": 3.420108640739272e-11,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 268,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0398767180674895e-08,
+ "last_raw_normalized_gap": 0.003288955893367529,
+ "last_raw_score_gap": 3.420108640739272e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "8e07be26cba6ef7cb099cd57127845945f67e5c3ed2830a6424f8afccdb7b1e5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6d2a64ce2bb33840f01caf8bdca65d41753c35a46064ad2af3f401b19ca3eae8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6d2a64ce2bb33840f01caf8bdca65d41753c35a46064ad2af3f401b19ca3eae8",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.536752106152562e-07,
+ "last_committed_normalized_gap": 0.06508255004882812,
+ "last_committed_score_gap": 1.6509829947608523e-08,
+ "last_cutoff_score_margin": 1.6509829947608523e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.536752106152562e-07,
+ "last_raw_normalized_gap": 0.06508255004882812,
+ "last_raw_score_gap": 1.6509829947608523e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "6d2a64ce2bb33840f01caf8bdca65d41753c35a46064ad2af3f401b19ca3eae8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "146a971339d4277f4edcec8a4d56b049f0722cb5f4c49a6809de37bed9e86c7f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "146a971339d4277f4edcec8a4d56b049f0722cb5f4c49a6809de37bed9e86c7f",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.974803940489437e-08,
+ "last_committed_normalized_gap": 0.7508201599121094,
+ "last_committed_score_gap": 4.486003390979931e-08,
+ "last_cutoff_score_margin": 4.486003390979931e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.974803940489437e-08,
+ "last_raw_normalized_gap": 0.7508201599121094,
+ "last_raw_score_gap": 4.486003390979931e-08,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "146a971339d4277f4edcec8a4d56b049f0722cb5f4c49a6809de37bed9e86c7f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ca8f92a685c59580cc7d1d99232f20a7356e8d9c74ddeeaca80afa10485914cb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ca8f92a685c59580cc7d1d99232f20a7356e8d9c74ddeeaca80afa10485914cb",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.650732338655871e-08,
+ "last_committed_normalized_gap": 0.5442615151405334,
+ "last_committed_score_gap": 1.986953179766715e-08,
+ "last_cutoff_score_margin": 1.986953179766715e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.650732338655871e-08,
+ "last_raw_normalized_gap": 0.5442615151405334,
+ "last_raw_score_gap": 1.986953179766715e-08,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "ca8f92a685c59580cc7d1d99232f20a7356e8d9c74ddeeaca80afa10485914cb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "940d67a2d5c2436443c4b61729b49cac6171873ba578f5a85104e4d23d0a0fc9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "940d67a2d5c2436443c4b61729b49cac6171873ba578f5a85104e4d23d0a0fc9",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0953611706554511e-07,
+ "last_committed_normalized_gap": 0.7786546945571899,
+ "last_committed_score_gap": 8.529081441110975e-08,
+ "last_cutoff_score_margin": 8.529081441110975e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0953611706554511e-07,
+ "last_raw_normalized_gap": 0.7786546945571899,
+ "last_raw_score_gap": 8.529081441110975e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "940d67a2d5c2436443c4b61729b49cac6171873ba578f5a85104e4d23d0a0fc9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c075fd3be7d682c29cbb704a6104333782631c608890675d54c5b6a19f138408",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c075fd3be7d682c29cbb704a6104333782631c608890675d54c5b6a19f138408",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.1933414962613824e-08,
+ "last_committed_normalized_gap": 0.8377547860145569,
+ "last_committed_score_gap": 3.512991852971936e-08,
+ "last_cutoff_score_margin": 3.512991852971936e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.1933414962613824e-08,
+ "last_raw_normalized_gap": 0.8377547860145569,
+ "last_raw_score_gap": 3.512991852971936e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "c075fd3be7d682c29cbb704a6104333782631c608890675d54c5b6a19f138408",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fc14f1dc933ab34e1f5f33225e0678207a8452f044be859e3cd79327f7f2eb53",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fc14f1dc933ab34e1f5f33225e0678207a8452f044be859e3cd79327f7f2eb53",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.9252796690238938e-08,
+ "last_committed_normalized_gap": 0.6426034569740295,
+ "last_committed_score_gap": 1.2371913271636004e-08,
+ "last_cutoff_score_margin": 1.2371913271636004e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9252796690238938e-08,
+ "last_raw_normalized_gap": 0.6426034569740295,
+ "last_raw_score_gap": 1.2371913271636004e-08,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "fc14f1dc933ab34e1f5f33225e0678207a8452f044be859e3cd79327f7f2eb53",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4714693396f9bcf0cbf4bc6db3e6fa048e7c1f60d690e9138638e2e32d1b5c22",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4714693396f9bcf0cbf4bc6db3e6fa048e7c1f60d690e9138638e2e32d1b5c22",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.458170555059041e-07,
+ "last_committed_normalized_gap": 0.5025678277015686,
+ "last_committed_score_gap": 4.250804579442047e-07,
+ "last_cutoff_score_margin": 4.250804579442047e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.458170555059041e-07,
+ "last_raw_normalized_gap": 0.5025678277015686,
+ "last_raw_score_gap": 4.250804579442047e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "4714693396f9bcf0cbf4bc6db3e6fa048e7c1f60d690e9138638e2e32d1b5c22",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cd1431cdfff20bbd1b2433c399d75b09a279c7114e8a3ad591325a4eb51c967b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "cd1431cdfff20bbd1b2433c399d75b09a279c7114e8a3ad591325a4eb51c967b",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.7937578412083894e-08,
+ "last_committed_normalized_gap": 0.5629839897155762,
+ "last_committed_score_gap": 2.1358250279490676e-08,
+ "last_cutoff_score_margin": 2.1358250279490676e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.7937578412083894e-08,
+ "last_raw_normalized_gap": 0.5629839897155762,
+ "last_raw_score_gap": 2.1358250279490676e-08,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "cd1431cdfff20bbd1b2433c399d75b09a279c7114e8a3ad591325a4eb51c967b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9247a5625a96f21107dfbf18b05afc2447ccb83ac7ce6b065494774b8d1db0c4",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9247a5625a96f21107dfbf18b05afc2447ccb83ac7ce6b065494774b8d1db0c4",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.171206479166358e-08,
+ "last_committed_normalized_gap": 0.7669771313667297,
+ "last_committed_score_gap": 4.733174208126911e-08,
+ "last_cutoff_score_margin": 4.733174208126911e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.171206479166358e-08,
+ "last_raw_normalized_gap": 0.7669771313667297,
+ "last_raw_score_gap": 4.733174208126911e-08,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "9247a5625a96f21107dfbf18b05afc2447ccb83ac7ce6b065494774b8d1db0c4",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4ecbece0b112f51903824d161057ba54b827a963e9b495e964e62185f84a03cc",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4ecbece0b112f51903824d161057ba54b827a963e9b495e964e62185f84a03cc",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.860419941607688e-07,
+ "last_committed_normalized_gap": 0.9049222469329834,
+ "last_committed_score_gap": 7.11306881839846e-07,
+ "last_cutoff_score_margin": 7.11306881839846e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.860419941607688e-07,
+ "last_raw_normalized_gap": 0.9049222469329834,
+ "last_raw_score_gap": 7.11306881839846e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "4ecbece0b112f51903824d161057ba54b827a963e9b495e964e62185f84a03cc",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ed0a04504429c5cf7a1121c3427425c2ca03187a5ae9383f58b152b97d4fcdc5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ed0a04504429c5cf7a1121c3427425c2ca03187a5ae9383f58b152b97d4fcdc5",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7609654605621472e-06,
+ "last_committed_normalized_gap": 0.5185596942901611,
+ "last_committed_score_gap": 9.131657066063781e-07,
+ "last_cutoff_score_margin": 9.131657066063781e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7609654605621472e-06,
+ "last_raw_normalized_gap": 0.5185596942901611,
+ "last_raw_score_gap": 9.131657066063781e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "ed0a04504429c5cf7a1121c3427425c2ca03187a5ae9383f58b152b97d4fcdc5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.530093378387392e-05,
+ "last_committed_normalized_gap": 0.9539926648139954,
+ "last_committed_score_gap": 6.229661084944382e-05,
+ "last_cutoff_score_margin": 6.229661084944382e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.530093378387392e-05,
+ "last_raw_normalized_gap": 0.9539926648139954,
+ "last_raw_score_gap": 6.229661084944382e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f9ea839b00ccbae5fc94503812a8696bddc4409fa500d01dd84dd60dcbbe3c18",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f9ea839b00ccbae5fc94503812a8696bddc4409fa500d01dd84dd60dcbbe3c18",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7533553545945324e-05,
+ "last_committed_normalized_gap": 0.44979479908943176,
+ "last_committed_score_gap": 7.886501407483593e-06,
+ "last_cutoff_score_margin": 7.886501407483593e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7533553545945324e-05,
+ "last_raw_normalized_gap": 0.44979479908943176,
+ "last_raw_score_gap": 7.886501407483593e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "f9ea839b00ccbae5fc94503812a8696bddc4409fa500d01dd84dd60dcbbe3c18",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2740634701913223e-05,
+ "last_committed_normalized_gap": 0.9081440567970276,
+ "last_committed_score_gap": 1.1570331480470486e-05,
+ "last_cutoff_score_margin": 1.1570331480470486e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2740634701913223e-05,
+ "last_raw_normalized_gap": 0.9081440567970276,
+ "last_raw_score_gap": 1.1570331480470486e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b2de68ad8274a940f1248d243de4929b9bef439bcfdc6566cca42d2dd2d3d5ee",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b2de68ad8274a940f1248d243de4929b9bef439bcfdc6566cca42d2dd2d3d5ee",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.019271268087323e-07,
+ "last_committed_normalized_gap": 0.5117731094360352,
+ "last_committed_score_gap": 3.0805011874690535e-07,
+ "last_cutoff_score_margin": 3.0805011874690535e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.019271268087323e-07,
+ "last_raw_normalized_gap": 0.5117731094360352,
+ "last_raw_score_gap": 3.0805011874690535e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "b2de68ad8274a940f1248d243de4929b9bef439bcfdc6566cca42d2dd2d3d5ee",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 704
+ }
+ ]
+ },
+ "repository": {
+ "commit": "69eec866b90f2ae5386da23a8f34fba4c428d9e1",
+ "end": {
+ "commit": "69eec866b90f2ae5386da23a8f34fba4c428d9e1",
+ "status": [],
+ "worktree_clean": true
+ },
+ "stable_commit": true,
+ "start": {
+ "commit": "69eec866b90f2ae5386da23a8f34fba4c428d9e1",
+ "status": [],
+ "worktree_clean": true
+ },
+ "status": [],
+ "worktree_clean": true
+ },
+ "schema_version": 1,
+ "selector_artifacts": {
+ "hrr": {
+ "canonical_evidence_sha256": "7970961fd88b522998189ad64f26b333aed9c88ff5f653de5449fd9e01d8cbc8",
+ "path": "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant-adoption\\artifacts\\experiment006-hrr-selector-8task-c2ad68b.json",
+ "sha256": "d0c4267095ee3f5068627b189a1fd9f58cb02f6e25672d9b89dd0990e5b09330"
+ },
+ "loss_sensitivity": {
+ "canonical_evidence_sha256": "bff4e33253990b8115e1f35e74516c4975c2fe4aac5066475afe968eb8a64609",
+ "path": "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant-adoption\\artifacts\\experiment006-loss-selector-8task-c2ad68b.json",
+ "sha256": "95c16656edb32efbc985f2fea59e229634dd558f4f4bf04819b8efc37783a1d6"
+ }
+ },
+ "selector_diagnostics": {
+ "causal_observability_confirm2_mse_target_fisher_quota": [
+ {
+ "layers": [
+ {
+ "admissions_total": 28,
+ "committed_mask_sha256": "4177ea2b98b3492b26c040942a981db3d21821972c784fa50e99c15ed77bac0e",
+ "committed_normalized_churn": 0.0020756115641215717,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 13462,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.718346850538182e-09,
+ "last_committed_mask_overlap": 355,
+ "last_committed_normalized_gap": -0.9972805976867676,
+ "last_committed_score_gap": -2.830585117408191e-06,
+ "last_dwell_count": 355,
+ "last_raw_cutoff_score": 1.1459005122560484e-07,
+ "last_raw_mask_overlap": 346,
+ "last_raw_normalized_gap": 0.04721997305750847,
+ "last_raw_score_gap": 5.41093925221503e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043269507586956024,
+ "observability_min": 0.0,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "07c081a95eaa8f6fd23ab4cdc1957b49973c6502bbc2ffe99b0a11708ad368c7",
+ "raw_normalized_churn": 0.01727205337286879,
+ "raw_xor_churn_total": 466,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "abad7864519c7c2f490b9fa34e37f5b4cf8f0a0e225f1d6552ec6ba815155b61",
+ "committed_normalized_churn": 0.002077562326869806,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 14410,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.490875059661505e-10,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9906502366065979,
+ "last_committed_score_gap": -6.877368718960497e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 1.5069220538066475e-08,
+ "last_raw_mask_overlap": 372,
+ "last_raw_normalized_gap": 0.02282748371362686,
+ "last_raw_score_gap": 3.439923901282782e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11331108957529068,
+ "observability_min": 2.9442645543831247e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "8a5ebd215bec59e7b720480701174667e98e8c18eff932bd6aea86a04a13173c",
+ "raw_normalized_churn": 0.022437673130193906,
+ "raw_xor_churn_total": 648,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "f7de993af69eddae215052385897fa5cec4a2eb7343a7edaf4644e3eac8f280b",
+ "committed_normalized_churn": 0.0011739385638818234,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 10210,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.608266739898227e-09,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9564996957778931,
+ "last_committed_score_gap": -1.2331652499142365e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 9.687511237643776e-08,
+ "last_raw_mask_overlap": 265,
+ "last_raw_normalized_gap": 0.08937381207942963,
+ "last_raw_score_gap": 8.658098238356615e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07195139676332474,
+ "observability_min": 5.401708524921389e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "4e308ae97342a1c348bb22ac3cf3f4c95a1abe82a326bc0d5d2b8df82b9560b5",
+ "raw_normalized_churn": 0.012032870279788692,
+ "raw_xor_churn_total": 246,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "694dd99516b624b6e438631ce60f8295ced1e4e3cc59353b4bbc8e6407ee3114",
+ "committed_normalized_churn": 0.0019112025874742722,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6789,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.1706189272663323e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": -0.272671639919281,
+ "last_committed_score_gap": -8.137537861330202e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.5932401968020713e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.15517398715019226,
+ "last_raw_score_gap": 4.024034296890022e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.049873799085617065,
+ "observability_min": 3.265163694976536e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "067a97ac1347e87d46c5f4475a9251a483b676b73cc72d1f6b90aeed191b8250",
+ "raw_normalized_churn": 0.015142605116142311,
+ "raw_xor_churn_total": 206,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "f8e028bb06ed92abac0a970f77ad750db8b18be1cc3f3fd36e65d1b6cca392b9",
+ "committed_normalized_churn": 0.0008534850640113798,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 7024,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.344006576204265e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.06695787608623505,
+ "last_committed_score_gap": -5.2702773700730177e-08,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.871034313211567e-07,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.06695787608623505,
+ "last_raw_score_gap": 5.2702773700730177e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03153788298368454,
+ "observability_min": 8.514712546148218e-11,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "6480f1fc3cb68efdafb0a80fbec70bb2ce82c260aaa1ecf3a35a1701ca07b90a",
+ "raw_normalized_churn": 0.004409672830725462,
+ "raw_xor_churn_total": 62,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "b18ac9411c5b1ea99484bd3ebae8539fd9e18f73083b9bc42ded5a8c327d9e2c",
+ "committed_normalized_churn": 0.0035087719298245615,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3976,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 4.918350882121558e-08,
+ "last_committed_mask_overlap": 102,
+ "last_committed_normalized_gap": -0.8791075944900513,
+ "last_committed_score_gap": -3.576536187210877e-07,
+ "last_dwell_count": 102,
+ "last_raw_cutoff_score": 1.3756185524016473e-07,
+ "last_raw_mask_overlap": 98,
+ "last_raw_normalized_gap": 0.04271308332681656,
+ "last_raw_score_gap": 5.8756910448209965e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.039765823632478714,
+ "observability_min": 1.294988005717812e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "fac937f3705304024541a774183e0e2070452cb14ff4f03117fe33bcf6fcc57d",
+ "raw_normalized_churn": 0.02581453634085213,
+ "raw_xor_churn_total": 206,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "5697a0d21955731ed9077e10668b7ef406cf7e5c7e261cff982223f2e9bc1874",
+ "committed_normalized_churn": 0.001973684210526316,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 3034,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1240756521146977e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.10931922495365143,
+ "last_committed_score_gap": 1.2288307971175527e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.1240756521146977e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.10931922495365143,
+ "last_raw_score_gap": 1.2288307971175527e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05325343459844589,
+ "observability_min": 4.704014955336788e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "5697a0d21955731ed9077e10668b7ef406cf7e5c7e261cff982223f2e9bc1874",
+ "raw_normalized_churn": 0.015460526315789473,
+ "raw_xor_churn_total": 94,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "562bff5edd6d319a8540b8cf63ef857cfe96cf852fe324e6aaa04c3ca651c77a",
+ "committed_normalized_churn": 0.0006119951040391676,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1633,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.218786102683225e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": -0.3012928068637848,
+ "last_committed_score_gap": -1.8192025663665845e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 6.03798866904981e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.18834656476974487,
+ "last_raw_score_gap": 1.1372344488336239e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05605697259306908,
+ "observability_min": 3.813564219967702e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "d4fea8f637a07125609aeb2b7646a0ea2f599b5b7af64e1b093d285c6f689e48",
+ "raw_normalized_churn": 0.009179926560587515,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "b81f2178b3dd2aa6850d6ceef7192b4781eadb21952b0efb2b7b9abd5f32c7a9",
+ "committed_normalized_churn": 0.008458646616541353,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 3165,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.073720288351069e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.848081648349762,
+ "last_committed_score_gap": -2.832397001384379e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.0911134040725301e-07,
+ "last_raw_mask_overlap": 77,
+ "last_raw_normalized_gap": 0.06410513073205948,
+ "last_raw_score_gap": 6.9945969016771414e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05022676661610603,
+ "observability_min": 1.462940844021432e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "c7b2962bb360d30b8a5bba93ca0476a3d01687f511aa936737102df9961342fb",
+ "raw_normalized_churn": 0.05231829573934837,
+ "raw_xor_churn_total": 334,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "3ae3bff9e194531b59d49a113bdfddad9ae408b84a86a9a62d0cce944e256d27",
+ "committed_normalized_churn": 0.008771929824561403,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1130,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 5.2505379244394135e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.14508245885372162,
+ "last_committed_score_gap": 7.617609298904426e-07,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 5.2505379244394135e-06,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.14508245885372162,
+ "last_raw_score_gap": 7.617609298904426e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04034574329853058,
+ "observability_min": 3.8984644845641014e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "3ae3bff9e194531b59d49a113bdfddad9ae408b84a86a9a62d0cce944e256d27",
+ "raw_normalized_churn": 0.034210526315789476,
+ "raw_xor_churn_total": 78,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "39a62f75e5e70564512666a240a0298cdf52cdc2596479d69c2b1cef7b616646",
+ "committed_normalized_churn": 0.009762308998302207,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2333,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8445060590011053e-08,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.930916428565979,
+ "last_committed_score_gap": -2.485512595740147e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.6712485262360133e-07,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.1401107758283615,
+ "last_raw_score_gap": 2.3415992700392962e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.052746549248695374,
+ "observability_min": 9.216720719962268e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "8fc11e249001a3cd032fcc31b5eb51c419db9efda910aeadc9b624707af6b662",
+ "raw_normalized_churn": 0.06960950764006792,
+ "raw_xor_churn_total": 328,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "0e64dbd1776315503c4b8103caefb8e55d8e1887990e6ef9d0e1167856d27492",
+ "committed_normalized_churn": 0.005360623781676413,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 2041,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.9966542197380477e-08,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.9104133248329163,
+ "last_committed_score_gap": -2.0290755742280453e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.7255868556276255e-07,
+ "last_raw_mask_overlap": 51,
+ "last_raw_normalized_gap": 0.004268477205187082,
+ "last_raw_score_gap": 7.365628107436351e-10,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10597944259643555,
+ "observability_min": 2.193173198605791e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "6c169f80ed72036911b869f0a1b806bbe93e339f23fabf308e0c6353339b6702",
+ "raw_normalized_churn": 0.03996101364522417,
+ "raw_xor_churn_total": 164,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "c5b63a0a4d9456870039b8bda9f8fc308fc9b74eb8feb7ff180a4a0ad90f0fd8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1710,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.9298424376756884e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.41667842864990234,
+ "last_committed_score_gap": 8.041237379075028e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.9298424376756884e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.41667842864990234,
+ "last_raw_score_gap": 8.041237379075028e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1081852987408638,
+ "observability_min": 1.500241708640715e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "c5b63a0a4d9456870039b8bda9f8fc308fc9b74eb8feb7ff180a4a0ad90f0fd8",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "4334bd08a3e4241143c7227ccb6c5499d899a20caa5bddc9505b824db65ab6a2",
+ "committed_normalized_churn": 0.0009746588693957114,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 1025,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4301670489658136e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.31136563420295715,
+ "last_committed_score_gap": 4.453048859431874e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.4301670489658136e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.31136563420295715,
+ "last_raw_score_gap": 4.453048859431874e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12057015299797058,
+ "observability_min": 1.4222448774248164e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "4334bd08a3e4241143c7227ccb6c5499d899a20caa5bddc9505b824db65ab6a2",
+ "raw_normalized_churn": 0.014619883040935672,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0006314752972684801,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.3276371955871582,
+ "last_committed_score_gap": 0.00020689479424618185,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0006314752972684801,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.3276371955871582,
+ "last_raw_score_gap": 0.00020689479424618185,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0991729125380516,
+ "observability_min": 3.9883499169945935e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.007518796992481203,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 341,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.992070196545683e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.41715359687805176,
+ "last_committed_score_gap": 1.6653064449201338e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 3.992070196545683e-05,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.41715359687805176,
+ "last_raw_score_gap": 1.6653064449201338e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10540656000375748,
+ "observability_min": 7.316038330706931e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "raw_normalized_churn": 0.02046783625730994,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "45a2c2a332f15df55ca29cc6a4b81b5fbb53fa079fd626883ba29a583a020977",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.613247675588354e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7658131718635559,
+ "last_committed_score_gap": 7.361951429629698e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 9.613247675588354e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7658131718635559,
+ "last_raw_score_gap": 7.361951429629698e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12673921883106232,
+ "observability_min": 3.838228934682775e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "45a2c2a332f15df55ca29cc6a4b81b5fbb53fa079fd626883ba29a583a020977",
+ "raw_normalized_churn": 0.007518796992481203,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "a46645a032ec439a6bd7aab0f3d45217a5e564b6c197aaec5628e8163749b712",
+ "committed_normalized_churn": 0.0023923444976076554,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 2085,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.700943569943774e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.5113288164138794,
+ "last_committed_score_gap": 3.937714154744754e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 7.700943569943774e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.5113288164138794,
+ "last_raw_score_gap": 3.937714154744754e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10862711071968079,
+ "observability_min": 3.520331359752049e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "a46645a032ec439a6bd7aab0f3d45217a5e564b6c197aaec5628e8163749b712",
+ "raw_normalized_churn": 0.005741626794258373,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ],
+ "task_id": 666
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 29,
+ "committed_mask_sha256": "bde212cf95504cf8f74b1fabc9abf45dc5217c61760de979895849f38956be18",
+ "committed_normalized_churn": 0.0024026512013256007,
+ "committed_xor_churn_total": 58,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 12041,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 4.4478074556764113e-08,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.9113873839378357,
+ "last_committed_score_gap": -4.5746028831672447e-07,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.9759359304316604e-07,
+ "last_raw_mask_overlap": 348,
+ "last_raw_normalized_gap": 0.003203083761036396,
+ "last_raw_score_gap": 6.329088364509516e-10,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030501583591103554,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "961d0075c598ebc472b6584aedc1ef77d3367c5947263f2d88ab36f36a1b58e5",
+ "raw_normalized_churn": 0.015990057995029,
+ "raw_xor_churn_total": 386,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "31a7666e141751a156740745c3cef8ffab667054f3dc417d543cd6ebeb8f7a9b",
+ "committed_normalized_churn": 0.001934984520123839,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 12895,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.387909591230255e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9485384225845337,
+ "last_committed_score_gap": -8.087779690413299e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 3.32175353889852e-08,
+ "last_raw_mask_overlap": 369,
+ "last_raw_normalized_gap": 0.023449864238500595,
+ "last_raw_score_gap": 7.78946684931725e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12016329914331436,
+ "observability_min": 5.595069962893717e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "75fe1bd726b04fb7742f8277d0164e6f09de3d6c6c843885bc6d53f7d5d8798e",
+ "raw_normalized_churn": 0.02260061919504644,
+ "raw_xor_churn_total": 584,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "ec61486adb215cc0e92076067b893c4df49fb8a61042d8795e51bce38626bbc7",
+ "committed_normalized_churn": 0.001312048983162038,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 9134,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.8012561159584948e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.8690282106399536,
+ "last_committed_score_gap": -1.858698368550904e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.0293052810084191e-07,
+ "last_raw_mask_overlap": 262,
+ "last_raw_normalized_gap": 0.02243020012974739,
+ "last_raw_score_gap": 2.3087523004505783e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0641818419098854,
+ "observability_min": 9.341970530485355e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "c777b0e7ff00710f94bafcaacd76712694f020c62ce8ad691a56518c4b51950e",
+ "raw_normalized_churn": 0.01760332385742401,
+ "raw_xor_churn_total": 322,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "62c0c16d92911a54b2df2a70e4370e7e7ad0585e780a1aee487343fe05d77f5c",
+ "committed_normalized_churn": 0.001643115346697338,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6076,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.325562263649772e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.433715283870697,
+ "last_committed_score_gap": 1.0086318980029318e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.325562263649772e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.433715283870697,
+ "last_raw_score_gap": 1.0086318980029318e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04181026667356491,
+ "observability_min": 4.654938656756258e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "62c0c16d92911a54b2df2a70e4370e7e7ad0585e780a1aee487343fe05d77f5c",
+ "raw_normalized_churn": 0.00821557673348669,
+ "raw_xor_churn_total": 100,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "71106f81ba68e1c836f323100ee78e33b1a14c926795f1f7e86ea5916155eca2",
+ "committed_normalized_churn": 0.000794912559618442,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 6285,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.036011430092913e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.5990516543388367,
+ "last_committed_score_gap": -7.524237730649475e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.223488864838146e-07,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.0002926572924479842,
+ "last_raw_score_gap": 2.11400674743345e-10,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.038463663309812546,
+ "observability_min": 2.4519199115502488e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "b3318684d8bf8d0f4d90c30f9cfdfe6aec3d90dea60f3144fee4f4f4e8bf95d4",
+ "raw_normalized_churn": 0.00397456279809221,
+ "raw_xor_churn_total": 50,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "12c61364dfa16ee2fd43d93e9d47eb398d16625b729115d600ed894f04e3a9df",
+ "committed_normalized_churn": 0.0070028011204481795,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3545,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.915041565325737e-07,
+ "last_committed_mask_overlap": 103,
+ "last_committed_normalized_gap": -0.3739933669567108,
+ "last_committed_score_gap": -1.144097865335425e-07,
+ "last_dwell_count": 103,
+ "last_raw_cutoff_score": 2.1947802508748282e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.10685120522975922,
+ "last_raw_score_gap": 2.3451491415471537e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05813900753855705,
+ "observability_min": 1.313275932446345e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "8eb63d8c313687904ad4806c5ffaf3ebeeacce06940c6cc0c584ef965f083ce1",
+ "raw_normalized_churn": 0.03697478991596639,
+ "raw_xor_churn_total": 264,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "79a6097f76ec18a887c3ade451aacb31e3a61a167c1c5dd2bdf0a0feac59916a",
+ "committed_normalized_churn": 0.001838235294117647,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2715,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5202526810753625e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.03792642056941986,
+ "last_committed_score_gap": -5.993069862597622e-08,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.5657313952033292e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.011507502757012844,
+ "last_raw_score_gap": 1.8017658476310316e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0604182593524456,
+ "observability_min": 1.127467257333592e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "41e38f66027ee181e8d909d366cdcd17d3f1b80edbd68d04167bacb665d6d684",
+ "raw_normalized_churn": 0.013602941176470588,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "f1fa615004d65715a0f573c1b5726764b5b993178a406ad0f071850d5d4905f6",
+ "committed_normalized_churn": 0.0027359781121751026,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1458,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.344497313013562e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": -0.8858034610748291,
+ "last_committed_score_gap": -3.3699536743370118e-06,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 5.597990480055159e-07,
+ "last_raw_mask_overlap": 40,
+ "last_raw_normalized_gap": 0.0020087144803255796,
+ "last_raw_score_gap": 1.1244765119045042e-09,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05410324037075043,
+ "observability_min": 2.267157981350465e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "0854301546e2e67f63624951481b9a927ad0a39009c69697df8514118618cf26",
+ "raw_normalized_churn": 0.019835841313269494,
+ "raw_xor_churn_total": 58,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "d5dba085b961542f9ad7b87ba52ea05a5ec890ccbbc0ca26d94c3c916e45e89a",
+ "committed_normalized_churn": 0.008053221288515405,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2833,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.0937313277281646e-07,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": -0.8056371808052063,
+ "last_committed_score_gap": -4.5335340814744995e-07,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 1.1079885808840118e-07,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.003743149572983384,
+ "last_raw_score_gap": 4.147366894358129e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030244028195738792,
+ "observability_min": 1.6855906892487837e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "8fa7d6914d050682d82e0c3466601af2b15c4f3bbe77a93608ec914e1ff6085e",
+ "raw_normalized_churn": 0.06197478991596639,
+ "raw_xor_churn_total": 354,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "6801b58d260af567299b27e2f51f5954d0360458c750ad7b7adca47a3c7d4d15",
+ "committed_normalized_churn": 0.01764705882352941,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1002,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.9503148552030325e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.817371666431427,
+ "last_committed_score_gap": -3.110684338025749e-05,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 1.1616381925705355e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.09938635677099228,
+ "last_raw_score_gap": 1.1545098459464498e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.040820371359586716,
+ "observability_min": 1.9409775120493578e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "0d300f93138c57244fcd85111dc378f3f2866d541545186fed0ba317c0bf03f8",
+ "raw_normalized_churn": 0.061764705882352944,
+ "raw_xor_churn_total": 126,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "23a9e1e6927545fb8fc7228dc69ef35113cad268cff7464411ff023e8b79c261",
+ "committed_normalized_churn": 0.016129032258064516,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2074,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.551983737310366e-08,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.7523438334465027,
+ "last_committed_score_gap": -2.901755351558677e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.851219053605746e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 1.5967088984325528e-05,
+ "last_raw_score_gap": 2.9558577807620168e-12,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0536920502781868,
+ "observability_min": 6.667789165248905e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "acf8458987ff13d817950717def51b84254b91c1144bc04a68dba8a8d3604b59",
+ "raw_normalized_churn": 0.08064516129032258,
+ "raw_xor_churn_total": 340,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "ca70ae24452b4c6cb931e86a108693fb9247c1e5efe5989b3afa26e0be9e2afa",
+ "committed_normalized_churn": 0.007080610021786492,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1823,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6555405579765647e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.6087839603424072,
+ "last_committed_score_gap": -2.5762403765838826e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.148107398625143e-07,
+ "last_raw_mask_overlap": 51,
+ "last_raw_normalized_gap": 0.011378435418009758,
+ "last_raw_score_gap": 2.444210167595884e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08831269294023514,
+ "observability_min": 2.4185908387153177e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "2a593374c45414868d45602cc3a386df31033ad6082ac1857417a264d47de4fd",
+ "raw_normalized_churn": 0.04357298474945534,
+ "raw_xor_churn_total": 160,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "2d0cbdb73df091002e1665b9bd5a4d080b83bf97e4285268bfa57e5a7e48a1d8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1530,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.084150790120475e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.6772467494010925,
+ "last_committed_score_gap": 7.342376193264499e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.084150790120475e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.6772467494010925,
+ "last_raw_score_gap": 7.342376193264499e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10611943155527115,
+ "observability_min": 5.762641563933357e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "2d0cbdb73df091002e1665b9bd5a4d080b83bf97e4285268bfa57e5a7e48a1d8",
+ "raw_normalized_churn": 0.00130718954248366,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "abdcc06f758af9e9255b33d8e4a89db9e7f40b4f78287b8e4a03c0f68b535ab1",
+ "committed_normalized_churn": 0.002178649237472767,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 916,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.471346564585474e-07,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": -0.9751933217048645,
+ "last_committed_score_gap": -5.784125278296415e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 5.931260147917783e-06,
+ "last_raw_mask_overlap": 26,
+ "last_raw_normalized_gap": 0.17479388415813446,
+ "last_raw_score_gap": 1.0367480172135402e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1084899827837944,
+ "observability_min": 1.1252711829001782e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "099657b90daedacdaf70446967b7cbf3df6ec0cf894521c9bc69dd841514caa1",
+ "raw_normalized_churn": 0.008714596949891068,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 238,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005550560308620334,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9655309319496155,
+ "last_committed_score_gap": 0.0005359237547963858,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005550560308620334,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9655309319496155,
+ "last_raw_score_gap": 0.0005359237547963858,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09140753000974655,
+ "observability_min": 6.640976124572262e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "a4f1d982e371423929cbd1fe784c538b9ef0fa3f44aa5cf7ee8aad4cd11ce944",
+ "committed_normalized_churn": 0.0032679738562091504,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 305,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010290759382769465,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.7223929762840271,
+ "last_committed_score_gap": 7.433972496073693e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00010290759382769465,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.7223929762840271,
+ "last_raw_score_gap": 7.433972496073693e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10498922318220139,
+ "observability_min": 1.7898217352652068e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "a4f1d982e371423929cbd1fe784c538b9ef0fa3f44aa5cf7ee8aad4cd11ce944",
+ "raw_normalized_churn": 0.0392156862745098,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "0c5d75d11b23524dce61586e2bbe081d6388aba9824bd2374f9f5a022f4a477d",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 238,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00012423221778590232,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8246195912361145,
+ "last_committed_score_gap": 0.00010244431905448437,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00012423221778590232,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8246195912361145,
+ "last_raw_score_gap": 0.00010244431905448437,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12040192633867264,
+ "observability_min": 3.676733584256908e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "0c5d75d11b23524dce61586e2bbe081d6388aba9824bd2374f9f5a022f4a477d",
+ "raw_normalized_churn": 0.008403361344537815,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "0e7fdb3fcbd22df19a06ac0e8b5f3e3c85a01dd4ed8dffa1ac9524f4ca3f24f3",
+ "committed_normalized_churn": 0.0016042780748663102,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1867,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0358339750382584e-05,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.7027780413627625,
+ "last_committed_score_gap": 7.279613782884553e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 1.0358339750382584e-05,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.7027780413627625,
+ "last_raw_score_gap": 7.279613782884553e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10905643552541733,
+ "observability_min": 1.0342348089054099e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "0e7fdb3fcbd22df19a06ac0e8b5f3e3c85a01dd4ed8dffa1ac9524f4ca3f24f3",
+ "raw_normalized_churn": 0.004812834224598931,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ }
+ ],
+ "task_id": 795
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "38d0e602bb907bb9f6096325314e886bb42ec79629d94f2d771839715a997d31",
+ "committed_normalized_churn": 0.0019154929577464789,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 8858,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.4792649949413317e-07,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.7079569101333618,
+ "last_committed_score_gap": -3.5859639524460363e-07,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.8105444610228005e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.15490196645259857,
+ "last_raw_score_gap": 2.8045690214639762e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.031219976022839546,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "06276afafea5c13b5d9405fedae9727c4da8eb38fc4aef27d03af436382495a9",
+ "raw_normalized_churn": 0.012845070422535212,
+ "raw_xor_churn_total": 228,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 33,
+ "committed_mask_sha256": "b3ea70741c3018bcd6add45536e9506002935e89c0b64cdde0a65e8316391f99",
+ "committed_normalized_churn": 0.003473684210526316,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 9467,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.730473186967174e-08,
+ "last_committed_mask_overlap": 379,
+ "last_committed_normalized_gap": -0.8935277462005615,
+ "last_committed_score_gap": -1.4522333913191687e-07,
+ "last_dwell_count": 379,
+ "last_raw_cutoff_score": 2.3750320821136484e-08,
+ "last_raw_mask_overlap": 367,
+ "last_raw_normalized_gap": 0.011856479570269585,
+ "last_raw_score_gap": 2.815951916090853e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10467808693647385,
+ "observability_min": 2.6755737625450138e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "c46c3db6d82f368e626246969947d09d28282c2a03713a247e79639f3ac62131",
+ "raw_normalized_churn": 0.03831578947368421,
+ "raw_xor_churn_total": 728,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "3ad339d214bf956168c0bbe67869a094bc1815d12e53e29d8b236cb64f553d09",
+ "committed_normalized_churn": 0.0020817843866171005,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 6711,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.1180479475569882e-07,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.11993124336004257,
+ "last_committed_score_gap": -1.5236182093758543e-08,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 1.2704097684945737e-07,
+ "last_raw_mask_overlap": 264,
+ "last_raw_normalized_gap": 0.11217601597309113,
+ "last_raw_score_gap": 1.4250950641780946e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06164246052503586,
+ "observability_min": 6.665736407285294e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "63034ff2cd139d281a83b7771e5303e7fba36d5574cb8c16388632b33b87197a",
+ "raw_normalized_churn": 0.01620817843866171,
+ "raw_xor_churn_total": 218,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "ace0e159e3fadf1d82af81972299b00d393c67f208fe0814d1533529ac359e3f",
+ "committed_normalized_churn": 0.001787709497206704,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 4467,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.496578417776618e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.09872416406869888,
+ "last_committed_score_gap": 2.4647260943311267e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.496578417776618e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.09872416406869888,
+ "last_raw_score_gap": 2.4647260943311267e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0458219014108181,
+ "observability_min": 5.898547872362769e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "ace0e159e3fadf1d82af81972299b00d393c67f208fe0814d1533529ac359e3f",
+ "raw_normalized_churn": 0.010949720670391062,
+ "raw_xor_churn_total": 98,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "a2b14ae55085a708d3731cf02ddd0e23cf7f94354c171563d3d6ec571a851b15",
+ "committed_normalized_churn": 0.0006486486486486486,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 4622,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.460342317244795e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.010164676234126091,
+ "last_committed_score_gap": 7.583196293126093e-09,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.460342317244795e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.010164676234126091,
+ "last_raw_score_gap": 7.583196293126093e-09,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03743458911776543,
+ "observability_min": 1.0917529991161246e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "a2b14ae55085a708d3731cf02ddd0e23cf7f94354c171563d3d6ec571a851b15",
+ "raw_normalized_churn": 0.004972972972972973,
+ "raw_xor_churn_total": 46,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "e8aeadc73c1b65f5813202bf21775c8e4420d84ecec95701b45d190798838953",
+ "committed_normalized_churn": 0.004952380952380952,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 2612,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.586101063821843e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.01623428426682949,
+ "last_committed_score_gap": 2.574921609266312e-09,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 1.586101063821843e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.01623428426682949,
+ "last_raw_score_gap": 2.574921609266312e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03782740607857704,
+ "observability_min": 3.524176861446904e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "e8aeadc73c1b65f5813202bf21775c8e4420d84ecec95701b45d190798838953",
+ "raw_normalized_churn": 0.02780952380952381,
+ "raw_xor_churn_total": 146,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "5eaa35832c7ff87c821d74ca244c2c2875cbbb39828ffa1b24aaab454d70d323",
+ "committed_normalized_churn": 0.002,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 1996,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1923535794267082e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.08123970776796341,
+ "last_committed_score_gap": -1.0543169537413632e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.2977852748008445e-06,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.08123970776796341,
+ "last_raw_score_gap": 1.0543169537413632e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.048764508217573166,
+ "observability_min": 1.3265385234717542e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "70c05f1e29561e41117aa3ae55efa0c0c105254998eabfd5667129123ab2903d",
+ "raw_normalized_churn": 0.0135,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "6e5b5b87d07edfed50f6472b9fb20adf83fb27b1a6f40f4d3e2d434ac750fd1a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1075,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.146793344261823e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.03745999559760094,
+ "last_committed_score_gap": 1.553388528918731e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 4.146793344261823e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.03745999559760094,
+ "last_raw_score_gap": 1.553388528918731e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.055327158421278,
+ "observability_min": 3.09101437778736e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "6e5b5b87d07edfed50f6472b9fb20adf83fb27b1a6f40f4d3e2d434ac750fd1a",
+ "raw_normalized_churn": 0.021395348837209303,
+ "raw_xor_churn_total": 46,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "015126dbaf4ee6e013987a7f3e3749ff0cd0915aed9c47dfe64db7e8b1273de2",
+ "committed_normalized_churn": 0.007142857142857143,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2085,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.416293902271718e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.6781074404716492,
+ "last_committed_score_gap": -1.1410108413656417e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 8.725231737116701e-08,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.05089981108903885,
+ "last_raw_score_gap": 4.441126577603427e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03524843603372574,
+ "observability_min": 2.3174538910097908e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "2bbc0394b6dbc5badf0ad19f0472c8e46e4ee12f88e0d3aa9991fad7a416b6ec",
+ "raw_normalized_churn": 0.05714285714285714,
+ "raw_xor_churn_total": 240,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "ad4bc65c0da944c1cdf7e0bbff4012a733ee5bd783f5b9ba51f7b0c30ca61a2f",
+ "committed_normalized_churn": 0.012,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 741,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.121719707152806e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": -0.21679073572158813,
+ "last_committed_score_gap": -1.6944795788731426e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 7.408880264847539e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.17373213171958923,
+ "last_raw_score_gap": 1.2871605576947331e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030838657170534134,
+ "observability_min": 2.2316405079436663e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "4a6cface4c9480f5f46b65ef865117919b21c68be97769984826cd61045f890c",
+ "raw_normalized_churn": 0.05466666666666667,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "f8c425a93be136d478601a553cd2e008823bc63ca7553e2fb1d0a46703e4b9b1",
+ "committed_normalized_churn": 0.011612903225806452,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 1532,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.722275796595568e-08,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.5754586458206177,
+ "last_committed_score_gap": -1.0467413602555098e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.3959416378384049e-07,
+ "last_raw_mask_overlap": 58,
+ "last_raw_normalized_gap": 0.02791501209139824,
+ "last_raw_score_gap": 3.896772682310257e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06056114286184311,
+ "observability_min": 1.2290156803373975e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "d73785fdad66ffaf584e98a7b6c443daa7bf13f500ffb281d672f27b34a79113",
+ "raw_normalized_churn": 0.06709677419354838,
+ "raw_xor_churn_total": 208,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "89b654b9022c134588786ff3081b7c7b35f4ec5cd07cbbb78cf013ef40548023",
+ "committed_normalized_churn": 0.002962962962962963,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1346,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8949367586174048e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.20466823875904083,
+ "last_committed_score_gap": -4.8763723725642194e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.2645934905085596e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.16323314607143402,
+ "last_raw_score_gap": 3.696567318911548e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09047456085681915,
+ "observability_min": 1.3725271230669023e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "6a504f2adfe008a686a2d649e9e52cfc8ac145963fee6953b70c261609caba27",
+ "raw_normalized_churn": 0.03777777777777778,
+ "raw_xor_churn_total": 102,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "6f75a560dcc1ad260c6e1b67819050e192872503d360aba155f93ca0baa7ab50",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1125,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.54671361594228e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.3622960150241852,
+ "last_committed_score_gap": 3.096440195804462e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 8.54671361594228e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.3622960150241852,
+ "last_raw_score_gap": 3.096440195804462e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10108715295791626,
+ "observability_min": 6.321408818621421e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "6f75a560dcc1ad260c6e1b67819050e192872503d360aba155f93ca0baa7ab50",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "403712c1cc0f8ce4678acf0ead39c3276127ea0ae9737434afc022aa93d51749",
+ "committed_normalized_churn": 0.002962962962962963,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 673,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7959688193514012e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.6431366205215454,
+ "last_committed_score_gap": 1.1550533599802293e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.7959688193514012e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.6431366205215454,
+ "last_raw_score_gap": 1.1550533599802293e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11292705684900284,
+ "observability_min": 2.4151765032343064e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "403712c1cc0f8ce4678acf0ead39c3276127ea0ae9737434afc022aa93d51749",
+ "raw_normalized_churn": 0.014814814814814815,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "33d46900ed115b94197f949fc8310510013915d29a474146d0e136a123de4aef",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 175,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00015521026216447353,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7089664936065674,
+ "last_committed_score_gap": 0.00011003887630067766,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00015521026216447353,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7089664936065674,
+ "last_raw_score_gap": 0.00011003887630067766,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09043971449136734,
+ "observability_min": 1.1686540091204733e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "33d46900ed115b94197f949fc8310510013915d29a474146d0e136a123de4aef",
+ "raw_normalized_churn": 0.011428571428571429,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "d1290d0c007f872d1570c3fd1caee90760ee8a2e9c6f92d239c997a6c74ee7a9",
+ "committed_normalized_churn": 0.008888888888888889,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 223,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010225292498944327,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.028311382979154587,
+ "last_committed_score_gap": 2.8949216357432306e-06,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00010225292498944327,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.028311382979154587,
+ "last_raw_score_gap": 2.8949216357432306e-06,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1082712709903717,
+ "observability_min": 4.4045936675729536e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "d1290d0c007f872d1570c3fd1caee90760ee8a2e9c6f92d239c997a6c74ee7a9",
+ "raw_normalized_churn": 0.035555555555555556,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "ee53914920a26fcad20cb8f248265a21a257a771d2680e2cd2a1200c35012bd9",
+ "committed_normalized_churn": 0.005714285714285714,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 174,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0003813476942013949,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.945534348487854,
+ "last_committed_score_gap": 0.0003605773381423205,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0003813476942013949,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.945534348487854,
+ "last_raw_score_gap": 0.0003605773381423205,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.14229106903076172,
+ "observability_min": 9.129927747153488e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "ee53914920a26fcad20cb8f248265a21a257a771d2680e2cd2a1200c35012bd9",
+ "raw_normalized_churn": 0.03428571428571429,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "b5088e0545cd1b0a61847557a257fe19423e4b1ca99715b16b555f581c1cd2e0",
+ "committed_normalized_churn": 0.0014545454545454545,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1373,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.53073595155729e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.6086640357971191,
+ "last_committed_score_gap": 5.801016413897742e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 9.53073595155729e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.6086640357971191,
+ "last_raw_score_gap": 5.801016413897742e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.101134292781353,
+ "observability_min": 8.207258872516832e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "b5088e0545cd1b0a61847557a257fe19423e4b1ca99715b16b555f581c1cd2e0",
+ "raw_normalized_churn": 0.008,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ }
+ ],
+ "task_id": 944
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 26,
+ "committed_mask_sha256": "e9f294aaa8869c2c22e2efe900030e1d624d4780e1df278b256b65b70a3125b6",
+ "committed_normalized_churn": 0.0019794442329653596,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 13109,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 8.862890155114655e-08,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.8474464416503906,
+ "last_committed_score_gap": -4.92340120672452e-07,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.6661253710026358e-07,
+ "last_raw_mask_overlap": 350,
+ "last_raw_normalized_gap": 0.23524615168571472,
+ "last_raw_score_gap": 3.9194958389998646e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04258858412504196,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "d868aeb0eb395b7714919edffc507da7ec7f227cc60079b41c9708f1e3c69e4e",
+ "raw_normalized_churn": 0.014617434335744195,
+ "raw_xor_churn_total": 384,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 38,
+ "committed_mask_sha256": "581d8d78620895c822e3c97afab011cf845fc5d1d815625909e2cc31c119454f",
+ "committed_normalized_churn": 0.002702702702702703,
+ "committed_xor_churn_total": 76,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 14022,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.708766239616466e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9527458548545837,
+ "last_committed_score_gap": -3.4452416031172106e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 7.633836673903716e-09,
+ "last_raw_mask_overlap": 373,
+ "last_raw_normalized_gap": 0.17674373090267181,
+ "last_raw_score_gap": 1.34923272554488e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11141572147607803,
+ "observability_min": 2.2183639647455067e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "d69dbcb71290b40265e87f01719f91fa00cf3c2dac9530dfb230ca9a33f55068",
+ "raw_normalized_churn": 0.02425320056899004,
+ "raw_xor_churn_total": 682,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "bb42a7e4e219bb3ae4b7efb58b85cf8ce9f8f41332f037f11b15dcab5123b543",
+ "committed_normalized_churn": 0.0010047221943132723,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 9943,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.481919960308005e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.6953833103179932,
+ "last_committed_score_gap": -2.1645459469255002e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.320013467420722e-07,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.03326576575636864,
+ "last_raw_score_gap": 4.391125685287989e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06357935070991516,
+ "observability_min": 3.8274675095983923e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "3645cfb8705fe39cfb0def7e3ad0d11d5ad37e3c83886f989d40b5ee0f7279f5",
+ "raw_normalized_churn": 0.013161860745503868,
+ "raw_xor_churn_total": 262,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "66b8085448be394429db9977a01d7cc82395879a735f129a22569b544e56facf",
+ "committed_normalized_churn": 0.0010569228446323418,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6616,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.5196179649356054e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.5403244495391846,
+ "last_committed_score_gap": 1.3614111367132864e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.5196179649356054e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.5403244495391846,
+ "last_raw_score_gap": 1.3614111367132864e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03915214538574219,
+ "observability_min": 1.7254042639081035e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "66b8085448be394429db9977a01d7cc82395879a735f129a22569b544e56facf",
+ "raw_normalized_churn": 0.0066435150234032915,
+ "raw_xor_churn_total": 88,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "b8d722c5332c3eca2275a646333f5cccbc0bedb015db353c233827abfe6ed295",
+ "committed_normalized_churn": 0.0004382761139517896,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 6842,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.84321331998217e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.503359854221344,
+ "last_committed_score_gap": -9.976395176636288e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 1.0741661071733688e-06,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.0742051750421524,
+ "last_raw_score_gap": 7.970868409756804e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0419648140668869,
+ "observability_min": 4.5513051105672275e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "eaab982b25fbe10f4c48ee3608d11845ec23098044037a8d9f1b3b66cc9165ec",
+ "raw_normalized_churn": 0.005113221329437546,
+ "raw_xor_churn_total": 70,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 21,
+ "committed_mask_sha256": "48a3a7d7d095f609e1111e8408238b5aa6204d43f51eae2f5bcd9bf3a43f5dab",
+ "committed_normalized_churn": 0.005405405405405406,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3864,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.8702361614941765e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": -0.11048231273889542,
+ "last_committed_score_gap": -2.3229219436871062e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.0168403125353507e-07,
+ "last_raw_mask_overlap": 102,
+ "last_raw_normalized_gap": 0.003936302848160267,
+ "last_raw_score_gap": 7.938893986647599e-10,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04765620455145836,
+ "observability_min": 9.043074067349721e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "3b8f9ff1945f60099f26cf206455ea8f247f0987ce497f336db8dfba440ea3a5",
+ "raw_normalized_churn": 0.03191763191763192,
+ "raw_xor_churn_total": 248,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "ac3656ab12e7a204a8fb82010af6c29e6fe08f08ff3f7e855cdf39be3903a6e6",
+ "committed_normalized_churn": 0.002027027027027027,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2954,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0519461284275167e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.01576988585293293,
+ "last_committed_score_gap": 1.658906967350049e-08,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.0519461284275167e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.01576988585293293,
+ "last_raw_score_gap": 1.658906967350049e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06068224832415581,
+ "observability_min": 4.141526233070181e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "ac3656ab12e7a204a8fb82010af6c29e6fe08f08ff3f7e855cdf39be3903a6e6",
+ "raw_normalized_churn": 0.019256756756756758,
+ "raw_xor_churn_total": 114,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "145acbaf78d95c583602a70df99a79cfd9238d2bc843fd0506ff21393c298a94",
+ "committed_normalized_churn": 0.0018856065367693275,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1588,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.7395454910438275e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.20778284966945648,
+ "last_committed_score_gap": 7.77013440256269e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.7395454910438275e-07,
+ "last_raw_mask_overlap": 40,
+ "last_raw_normalized_gap": 0.20778284966945648,
+ "last_raw_score_gap": 7.77013440256269e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05452461913228035,
+ "observability_min": 5.2097353098190524e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "145acbaf78d95c583602a70df99a79cfd9238d2bc843fd0506ff21393c298a94",
+ "raw_normalized_churn": 0.023255813953488372,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 35,
+ "committed_mask_sha256": "9243f9764bd985459518139fd1c8f2bfcae72a56de5e2c8a8789fbe412b8fa69",
+ "committed_normalized_churn": 0.01126126126126126,
+ "committed_xor_churn_total": 70,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 3073,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.242364409241418e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.7806434631347656,
+ "last_committed_score_gap": -1.8656464817468077e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.1334820726460748e-07,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.03013037145137787,
+ "last_raw_score_gap": 3.4152236594309215e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04001222178339958,
+ "observability_min": 4.7916781653611906e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "84c1dca54a526e89e2857562c199d78fe6a90267ff8677d3a9985e16ab039caa",
+ "raw_normalized_churn": 0.055984555984555984,
+ "raw_xor_churn_total": 348,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "9b11135a421e2840c0c406c3abce23f426d020cf0a44e338eca55b30a7c54b3e",
+ "committed_normalized_churn": 0.010810810810810811,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1098,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.906972314231098e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.6269404888153076,
+ "last_committed_score_gap": 4.957200872013345e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 7.906972314231098e-06,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.6269404888153076,
+ "last_raw_score_gap": 4.957200872013345e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03207750618457794,
+ "observability_min": 2.066761766172931e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "9b11135a421e2840c0c406c3abce23f426d020cf0a44e338eca55b30a7c54b3e",
+ "raw_normalized_churn": 0.043243243243243246,
+ "raw_xor_churn_total": 96,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "79651072ede64e04e69aa50bc07f24ad336ad30135a1f2c928a5236aaeaf702a",
+ "committed_normalized_churn": 0.010462074978204011,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2270,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.441588844083526e-08,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": -0.7633274793624878,
+ "last_committed_score_gap": -3.045146286240197e-07,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.1106972408470028e-07,
+ "last_raw_mask_overlap": 58,
+ "last_raw_normalized_gap": 0.03230197727680206,
+ "last_raw_score_gap": 3.5877718573829043e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04441627115011215,
+ "observability_min": 1.8618266039993614e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b382e527652a4f5cd76405cb92b5826c4527247d4c6b4293509ab6082abb0ba5",
+ "raw_normalized_churn": 0.07890148212728858,
+ "raw_xor_churn_total": 362,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "ad971d63b3764b279fdc2a92fc8f5009c21f82500fee32b5592ed57270cf87e0",
+ "committed_normalized_churn": 0.005005005005005005,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1988,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.709188392685974e-08,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.16055604815483093,
+ "last_committed_score_gap": -1.665760862579191e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 9.435397174684113e-08,
+ "last_raw_mask_overlap": 51,
+ "last_raw_normalized_gap": 0.0021036751568317413,
+ "last_raw_score_gap": 1.9849011323458399e-10,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10502302646636963,
+ "observability_min": 2.366837925649179e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "c84d1a7bcd384d83d73fdb38e943aeb978f9581d3769a927aa3e31b9e2f22e1e",
+ "raw_normalized_churn": 0.031031031031031032,
+ "raw_xor_churn_total": 124,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "5a49cbb2a070adbd48a549313bbc38d5ef283fa07d27329d9031b37e2e42e6f6",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1665,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2043894457747228e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7384229302406311,
+ "last_committed_score_gap": 8.893487574823666e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.2043894457747228e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7384229302406311,
+ "last_raw_score_gap": 8.893487574823666e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11243442445993423,
+ "observability_min": 1.8074059582318114e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "5a49cbb2a070adbd48a549313bbc38d5ef283fa07d27329d9031b37e2e42e6f6",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "11ac9dbb6d384fb1c57062e7204fec772247d8a4f93bb62a92ab1cd35cef0090",
+ "committed_normalized_churn": 0.002002002002002002,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 997,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.0091541955480352e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.7047677636146545,
+ "last_committed_score_gap": 1.4159871170704719e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.0091541955480352e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.7047677636146545,
+ "last_raw_score_gap": 1.4159871170704719e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11875853687524796,
+ "observability_min": 6.723369416761216e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "11ac9dbb6d384fb1c57062e7204fec772247d8a4f93bb62a92ab1cd35cef0090",
+ "raw_normalized_churn": 0.004004004004004004,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "8edf3633b7d15c1848682380a26764a099718966e4c1076dd114d88e4dce5f52",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 259,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005052823107689619,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.38468649983406067,
+ "last_committed_score_gap": 0.00019437528681010008,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005052823107689619,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.38468649983406067,
+ "last_raw_score_gap": 0.00019437528681010008,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09713229537010193,
+ "observability_min": 5.135589731253276e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "8edf3633b7d15c1848682380a26764a099718966e4c1076dd114d88e4dce5f52",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "committed_normalized_churn": 0.003003003003003003,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 332,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.188125553308055e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": -0.851821780204773,
+ "last_committed_score_gap": -0.0003557325107976794,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.0001161995533038862,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.46745702624320984,
+ "last_raw_score_gap": 5.431829777080566e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10737644881010056,
+ "observability_min": 1.3086194350364622e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.03903903903903904,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "4ba6d105586f7ba05ad61ea0b8868329bd782abc7b89ac5cf446e465523f9b9a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 259,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010174397175433114,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8412348031997681,
+ "last_committed_score_gap": 8.559056732337922e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00010174397175433114,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8412348031997681,
+ "last_raw_score_gap": 8.559056732337922e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1323709934949875,
+ "observability_min": 8.85400730510355e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "4ba6d105586f7ba05ad61ea0b8868329bd782abc7b89ac5cf446e465523f9b9a",
+ "raw_normalized_churn": 0.007722007722007722,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "7f8635af827856b76683e6e5b027f4b2e7deb70562236817eb343680b84f8090",
+ "committed_normalized_churn": 0.0009828009828009828,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 2033,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.635528502054513e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.7403891086578369,
+ "last_committed_score_gap": 6.393651347025298e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 8.635528502054513e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.7403891086578369,
+ "last_raw_score_gap": 6.393651347025298e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11614350229501724,
+ "observability_min": 4.691030675019192e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "7f8635af827856b76683e6e5b027f4b2e7deb70562236817eb343680b84f8090",
+ "raw_normalized_churn": 0.0019656019656019656,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ }
+ ],
+ "task_id": 653
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "98d14738d0bead42e2b43eca58931a7f76b9464785b4c5f70837483d98004f5c",
+ "committed_normalized_churn": 0.0025486250838363516,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 7436,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 3.8233785915053886e-08,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": -0.9039391875267029,
+ "last_committed_score_gap": -3.5978266055280983e-07,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 1.3535564846733905e-07,
+ "last_raw_mask_overlap": 348,
+ "last_raw_normalized_gap": 0.19918230175971985,
+ "last_raw_score_gap": 2.696044987260393e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03602820634841919,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "778fc73ba3b6fd6478b717a72e3f629ce90ff10971a5499573baec2a402d9e79",
+ "raw_normalized_churn": 0.015023474178403756,
+ "raw_xor_churn_total": 224,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "ec0a3f1f4cdc392822556d7d3b0b02739e137479dc0832186a5fe73bd306577c",
+ "committed_normalized_churn": 0.003132832080200501,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 7955,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5986911794385605e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9741333723068237,
+ "last_committed_score_gap": -6.020655263228036e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 3.0031031883481774e-08,
+ "last_raw_mask_overlap": 370,
+ "last_raw_normalized_gap": 0.007516753859817982,
+ "last_raw_score_gap": 2.2573587443730503e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12211071699857712,
+ "observability_min": 5.513250966870942e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "07d292295fb671042f00adb2928277dcd1483001b1be6543fd9baaba95ac6e11",
+ "raw_normalized_churn": 0.02443609022556391,
+ "raw_xor_churn_total": 390,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "cc642013ba11d09d403bc70176a0a43970ed0dd79c4ddea78adb0c27ef069ebf",
+ "committed_normalized_churn": 0.0017702248185519562,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 5639,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3064182624589193e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9862958192825317,
+ "last_committed_score_gap": -9.402365890309738e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.2822762585074088e-07,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.04729887470602989,
+ "last_raw_score_gap": 6.065022262191633e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0687132328748703,
+ "observability_min": 4.108528184332272e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "cb7645570de0490a14c30164f1a20294665c0dd8852ca5a6af709e756887493a",
+ "raw_normalized_churn": 0.01451584351212604,
+ "raw_xor_churn_total": 164,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "049fb097cea273056eb0b8126b5cd828a26941ced3a4a893c5b15d3c8d59cfc1",
+ "committed_normalized_churn": 0.0007980845969672786,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 3756,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.036871364907711e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": -0.05637071281671524,
+ "last_committed_score_gap": -1.2167902241344564e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.1585503873211564e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.05637071281671524,
+ "last_raw_score_gap": 1.2167902241344564e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04492827504873276,
+ "observability_min": 1.8319806116551263e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "2aee07a3031c44829b75078db893f49790fd92558fbfcb30ca9a9931555fb47b",
+ "raw_normalized_churn": 0.008778930566640064,
+ "raw_xor_churn_total": 66,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "29a2947bd9b488941a7418fdad54fa669b88b695e316fc0da4a297609b7ef684",
+ "committed_normalized_churn": 0.0005148005148005148,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 3883,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.68401560485654e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.2653745114803314,
+ "last_committed_score_gap": -2.0532814914986375e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.737297096355178e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.19108910858631134,
+ "last_raw_score_gap": 1.4785132407268975e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043486542999744415,
+ "observability_min": 2.1147343431948684e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "59bd7016d3415138606c013d18e67b7f51aa7f29f6f275c7a804b63abc8ff138",
+ "raw_normalized_churn": 0.004633204633204633,
+ "raw_xor_churn_total": 36,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "3b13fd3bcc0fc89357b76035e5b4b6f3a5a4a2ab39c3edbb11a0b14e8f4c16de",
+ "committed_normalized_churn": 0.004988662131519274,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 2194,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.1181284637350473e-07,
+ "last_committed_mask_overlap": 103,
+ "last_committed_normalized_gap": -0.3405877947807312,
+ "last_committed_score_gap": -1.0940178185592231e-07,
+ "last_dwell_count": 103,
+ "last_raw_cutoff_score": 2.568964987403888e-07,
+ "last_raw_mask_overlap": 102,
+ "last_raw_normalized_gap": 0.04455564543604851,
+ "last_raw_score_gap": 1.1446189773778315e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05021436884999275,
+ "observability_min": 1.4095215661313887e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "e379bd3a1336ddc052498eb58566f7775aebe5d3fa0e45532945270229718339",
+ "raw_normalized_churn": 0.029931972789115645,
+ "raw_xor_churn_total": 132,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "8779901f98e0c2ffaf9420e107c72334b76cc4bd8e62b04ed278dc0756a3a311",
+ "committed_normalized_churn": 0.002976190476190476,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 1675,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4101761962592718e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.31600314378738403,
+ "last_committed_score_gap": -6.514943606816814e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.6033945939852856e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.019609592854976654,
+ "last_raw_score_gap": 3.144191396131646e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.058788202702999115,
+ "observability_min": 2.2335044036481122e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "82f1c160361eac68d732c5c5e9415f7b3066f16596ee7807e6bc1320c381ec66",
+ "raw_normalized_churn": 0.0125,
+ "raw_xor_churn_total": 42,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "25a4414101c9ee5a5a77b89c1db6deaab90c5b9ad27778a0974141fc07830884",
+ "committed_normalized_churn": 0.0011074197120708748,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 902,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7974898014472274e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": -0.7122268676757812,
+ "last_committed_score_gap": -4.448714605587156e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 4.27814654813119e-07,
+ "last_raw_mask_overlap": 40,
+ "last_raw_normalized_gap": 0.07832875847816467,
+ "last_raw_score_gap": 3.351019017827639e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05937189236283302,
+ "observability_min": 1.6959486970336002e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "28bdd105d1184c0a20cbc29b7f72c99cdbfacdb91f900682a70198d8bd29e915",
+ "raw_normalized_churn": 0.018826135105204873,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "a55a8dede1798fd56d1632293754aabbd4b7c0852d337a085e95c6a7afa98ee0",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 1750,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.736102875493089e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.5680955052375793,
+ "last_committed_score_gap": -8.860176592406788e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 8.258468398025798e-08,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.005744934547692537,
+ "last_raw_score_gap": 4.744435955217341e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.042316362261772156,
+ "observability_min": 2.2043660408144206e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "9c9b8dc4ba4f0f08f8000ad9e1702833b8766f007cbe43714bd805132fae9a42",
+ "raw_normalized_churn": 0.05612244897959184,
+ "raw_xor_churn_total": 198,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "65f751b74a1f5f4dcd3ca290ab5375dbc0ec6b0279989c848dfc6359459a5bcc",
+ "committed_normalized_churn": 0.020634920634920634,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 617,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.714184564771131e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.4371102750301361,
+ "last_committed_score_gap": -5.213879376242403e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 8.868503755365964e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.18166103959083557,
+ "last_raw_score_gap": 1.6110616343212314e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.02871638536453247,
+ "observability_min": 3.7664725027752866e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "698209325eee81948bfd1edea2f38f54f0b834e04557b5cd1ddda7e1079f8015",
+ "raw_normalized_churn": 0.06666666666666667,
+ "raw_xor_churn_total": 84,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "8708be873d1a3d04b7307642fffed04679612f48e2f34c536ee78e48fe9ebbfa",
+ "committed_normalized_churn": 0.013824884792626729,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 1284,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.3412734745088528e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": -0.8628209233283997,
+ "last_committed_score_gap": -8.436264238298463e-07,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.8566794324215152e-07,
+ "last_raw_mask_overlap": 56,
+ "last_raw_normalized_gap": 0.006526105105876923,
+ "last_raw_score_gap": 1.2116885272916988e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06084220111370087,
+ "observability_min": 4.310823698006061e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "41b95c9b704948e4652cc2bff586d7765366c24522002f2a8403715a0cfd8c15",
+ "raw_normalized_churn": 0.07219662058371736,
+ "raw_xor_churn_total": 188,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "6fff6bd623a2a9ee7dbcfd265d870810393d04ac3ab37a4d773ada6f6214ef09",
+ "committed_normalized_churn": 0.005291005291005291,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1128,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3331248283066088e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.8579828143119812,
+ "last_committed_score_gap": -8.053942224250932e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 3.4931719028463704e-07,
+ "last_raw_mask_overlap": 49,
+ "last_raw_normalized_gap": 0.04273151978850365,
+ "last_raw_score_gap": 1.492685441917274e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08748547732830048,
+ "observability_min": 7.750266917128101e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "9582456181a1d414c97178045da7989528cde73e3a47422ab05931d5e16cdd57",
+ "raw_normalized_churn": 0.04585537918871252,
+ "raw_xor_churn_total": 104,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "c2693b88973127f354ecd63975ba81c264af81698d615212888ec2fd5451a121",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 945,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.8089793785475194e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.48444104194641113,
+ "last_committed_score_gap": 3.2985490179271437e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 6.8089793785475194e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.48444104194641113,
+ "last_raw_score_gap": 3.2985490179271437e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10300781577825546,
+ "observability_min": 1.6335016894686305e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "c2693b88973127f354ecd63975ba81c264af81698d615212888ec2fd5451a121",
+ "raw_normalized_churn": 0.006349206349206349,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "0deeb606abc5b62cd56f7d2ef584d353aa27b5d87559cbcf876d9049d69e7813",
+ "committed_normalized_churn": 0.001763668430335097,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 566,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1065117178077344e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.39013004302978516,
+ "last_committed_score_gap": 4.316834747442044e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.1065117178077344e-05,
+ "last_raw_mask_overlap": 26,
+ "last_raw_normalized_gap": 0.39013004302978516,
+ "last_raw_score_gap": 4.316834747442044e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11838573962450027,
+ "observability_min": 2.5963256433669812e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "0deeb606abc5b62cd56f7d2ef584d353aa27b5d87559cbcf876d9049d69e7813",
+ "raw_normalized_churn": 0.029982363315696647,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "10acbc451009db8766c9bcf3c51b1ff7859f38ce55684fb5b70b0c044dcb83d0",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0004338750150054693,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6456645131111145,
+ "last_committed_score_gap": 0.0002801376977004111,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0004338750150054693,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6456645131111145,
+ "last_raw_score_gap": 0.0002801376977004111,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09129704535007477,
+ "observability_min": 6.852939549162329e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "10acbc451009db8766c9bcf3c51b1ff7859f38ce55684fb5b70b0c044dcb83d0",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.010582010582010581,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 187,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.106771226972342e-05,
+ "last_committed_mask_overlap": 8,
+ "last_committed_normalized_gap": 0.03675321489572525,
+ "last_committed_score_gap": 2.6119669200852513e-06,
+ "last_dwell_count": 8,
+ "last_raw_cutoff_score": 7.106771226972342e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.03675321489572525,
+ "last_raw_score_gap": 2.6119669200852513e-06,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11014433950185776,
+ "observability_min": 2.115422503834452e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.031746031746031744,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "e2a06d7cf6ce76941d364058db20c85cfb4bbc9811bfa50c4749d978791f9d2f",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00016637428780086339,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8504687547683716,
+ "last_committed_score_gap": 0.00014149612979963422,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00016637428780086339,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8504687547683716,
+ "last_raw_score_gap": 0.00014149612979963422,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1394333392381668,
+ "observability_min": 1.6059972907100928e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e2a06d7cf6ce76941d364058db20c85cfb4bbc9811bfa50c4749d978791f9d2f",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "ffcb43dd5b04bbcaa812845e404f4a7bc96fe360de33a48245535192e2c925bd",
+ "committed_normalized_churn": 0.0017316017316017316,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1153,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.120095688151196e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.4745352864265442,
+ "last_committed_score_gap": 3.378736664672033e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 7.120095688151196e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.4745352864265442,
+ "last_raw_score_gap": 3.378736664672033e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10298613458871841,
+ "observability_min": 1.0730795141355998e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "ffcb43dd5b04bbcaa812845e404f4a7bc96fe360de33a48245535192e2c925bd",
+ "raw_normalized_churn": 0.006060606060606061,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ }
+ ],
+ "task_id": 857
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 50,
+ "committed_mask_sha256": "5b8c122945d88f71834f8413b2e1ecfb9a945bed168f228e01ee0835b3a83790",
+ "committed_normalized_churn": 0.0021021652301870925,
+ "committed_xor_churn_total": 100,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 23735,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.2461721610179666e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": -0.7604772448539734,
+ "last_committed_score_gap": -3.956556611228734e-07,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 1.3582621249952354e-07,
+ "last_raw_mask_overlap": 347,
+ "last_raw_normalized_gap": 0.06546853482723236,
+ "last_raw_score_gap": 8.892342862054647e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.046593453735113144,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "d8b876a965f25ba0f4c13f5cf6bccaa8d45efd8c13da99d76cbaf6435439699b",
+ "raw_normalized_churn": 0.013201597645574941,
+ "raw_xor_churn_total": 628,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 65,
+ "committed_mask_sha256": "a8c687a16ed0aa826f2981483ac8c5287596a7d0f5da7ec1055e928e12066529",
+ "committed_normalized_churn": 0.0025530243519245877,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 25395,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.874800537038368e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.8808188438415527,
+ "last_committed_score_gap": -1.3855883551627812e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 8.747996993463403e-09,
+ "last_raw_mask_overlap": 371,
+ "last_raw_normalized_gap": 0.11947425454854965,
+ "last_raw_score_gap": 1.0451604026684436e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11317642033100128,
+ "observability_min": 6.26822274640837e-11,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "1dc2187cb75c3376d0ae5f851d71871c60b305007f94fe13be592948079f361d",
+ "raw_normalized_churn": 0.026826394344069127,
+ "raw_xor_churn_total": 1366,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "143a0200be7018c1cf002edd56aefa1dd3e5fe001a19bf063d78a97956a08db4",
+ "committed_normalized_churn": 0.0012761471453143205,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 18000,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.679225199121788e-10,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9938091039657593,
+ "last_committed_score_gap": -1.5537753483840788e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 9.045901094850706e-08,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.025086689740419388,
+ "last_raw_score_gap": 2.2693171786158928e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.058977626264095306,
+ "observability_min": 4.673399889298935e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "7fd24e32d53f81a813249091d3e032d93d9b7cdd5ee075af1b320521eff70794",
+ "raw_normalized_churn": 0.013482772013538256,
+ "raw_xor_churn_total": 486,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "fac5bf471385694b8c6a3a4dba689c1c7599b599815ec4a57172766b270e1cf5",
+ "committed_normalized_churn": 0.0014174935378971066,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 11976,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.085477146669291e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.03279540315270424,
+ "last_committed_score_gap": 1.0118947102455422e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.085477146669291e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.03279540315270424,
+ "last_raw_score_gap": 1.0118947102455422e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.045707136392593384,
+ "observability_min": 9.349244045608884e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "fac5bf471385694b8c6a3a4dba689c1c7599b599815ec4a57172766b270e1cf5",
+ "raw_normalized_churn": 0.007337613607937964,
+ "raw_xor_churn_total": 176,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "f18c028bb07ac42e1c42cd5eb83ea913b850312d7a26f61fb5effcfc2c955cb6",
+ "committed_normalized_churn": 0.0008067769261799112,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 12385,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.41979192753206e-07,
+ "last_committed_mask_overlap": 184,
+ "last_committed_normalized_gap": 0.0282602459192276,
+ "last_committed_score_gap": 2.0968514036212582e-08,
+ "last_dwell_count": 184,
+ "last_raw_cutoff_score": 7.41979192753206e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.0282602459192276,
+ "last_raw_score_gap": 2.0968514036212582e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03383700177073479,
+ "observability_min": 7.046635497331977e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "f18c028bb07ac42e1c42cd5eb83ea913b850312d7a26f61fb5effcfc2c955cb6",
+ "raw_normalized_churn": 0.004033884630899556,
+ "raw_xor_churn_total": 100,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "3ee9235b2ceadb9ef4c9458b4edf380cf9eb22cff9d7011f9d186ca8354f8c0b",
+ "committed_normalized_churn": 0.005259417199715707,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 6998,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.888771805624856e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.13489596545696259,
+ "last_committed_score_gap": 2.547876931657811e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 1.888771805624856e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.13489596545696259,
+ "last_raw_score_gap": 2.547876931657811e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.049353793263435364,
+ "observability_min": 1.1435843383367228e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "3ee9235b2ceadb9ef4c9458b4edf380cf9eb22cff9d7011f9d186ca8354f8c0b",
+ "raw_normalized_churn": 0.02771855010660981,
+ "raw_xor_churn_total": 390,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "c7484c7b871fbb479f1bb0fbe8479e1519c3640630bb97cf7dd2c7cc48a31849",
+ "committed_normalized_churn": 0.0018656716417910447,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 5350,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0880517038458493e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.26779523491859436,
+ "last_committed_score_gap": -3.9794201711629285e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.4859937209621421e-06,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.26779523491859436,
+ "last_raw_score_gap": 3.9794201711629285e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.054002292454242706,
+ "observability_min": 2.597656987290975e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "2e934bacee9de58a3d90790e86d8861909143befa2f401161169bdd371fe4c95",
+ "raw_normalized_churn": 0.012313432835820896,
+ "raw_xor_churn_total": 132,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "bcdbdbebb8f7c904284fde93a64ee0bc5a445ac288c89f294d0c08021ad2ddc7",
+ "committed_normalized_churn": 0.0031239153071850054,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 2872,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.69352915690979e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.2212502658367157,
+ "last_committed_score_gap": 3.746937693449581e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 1.69352915690979e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.2212502658367157,
+ "last_raw_score_gap": 3.746937693449581e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.058054275810718536,
+ "observability_min": 6.61517844946502e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "bcdbdbebb8f7c904284fde93a64ee0bc5a445ac288c89f294d0c08021ad2ddc7",
+ "raw_normalized_churn": 0.026032627559875045,
+ "raw_xor_churn_total": 150,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 35,
+ "committed_mask_sha256": "89123d45174ef02c37562562a165c0528d2cbde956b7d3dac78c9f57b3661c16",
+ "committed_normalized_churn": 0.006218905472636816,
+ "committed_xor_churn_total": 70,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 5593,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.190511462975337e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": 0.07372796535491943,
+ "last_committed_score_gap": 6.775977112738474e-09,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 9.190511462975337e-08,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.07372796535491943,
+ "last_raw_score_gap": 6.775977112738474e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.053791921585798264,
+ "observability_min": 2.0567365766055445e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "89123d45174ef02c37562562a165c0528d2cbde956b7d3dac78c9f57b3661c16",
+ "raw_normalized_churn": 0.05063965884861407,
+ "raw_xor_churn_total": 570,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 26,
+ "committed_mask_sha256": "0f13a591a05bc6534f8a0cb0618e3e2eaaa99c11e96caf24ce7931d81a6fca8b",
+ "committed_normalized_churn": 0.012935323383084577,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1984,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.687515567842638e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.2732640504837036,
+ "last_committed_score_gap": -2.1385944819485303e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 7.826110049791168e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.2732640504837036,
+ "last_raw_score_gap": 2.1385944819485303e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043942347168922424,
+ "observability_min": 1.775908629042533e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "24ca936e755c1170114dd84a8bc81b0b63083fa979a57ee3e5ce4c3a723f81c3",
+ "raw_normalized_churn": 0.03283582089552239,
+ "raw_xor_churn_total": 132,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 42,
+ "committed_mask_sha256": "19db78463eb0bfc56effd99be595ed7dbefbfe664349152777c8cf5fc8045280",
+ "committed_normalized_churn": 0.010110736639383727,
+ "committed_xor_churn_total": 84,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 4112,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.736983486163808e-08,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.1760360449552536,
+ "last_committed_score_gap": -2.0802609412839956e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.1817244427447804e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.1760360449552536,
+ "last_raw_score_gap": 2.0802609412839956e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03334452584385872,
+ "observability_min": 2.0844849757395423e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "d97aa0c569d179b3bed89f9cf95579fae156c42804cf92e1d4f03700107842de",
+ "raw_normalized_churn": 0.04694270582571016,
+ "raw_xor_churn_total": 390,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "0de7d45c142a9fdee1de56cc17b3a95ee7aa37676a952a85b35da204cc26541b",
+ "committed_normalized_churn": 0.006080707573244887,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 3596,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2321686426730594e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.01937285251915455,
+ "last_committed_score_gap": -2.434219936731097e-09,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.2565108420403703e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.01937285251915455,
+ "last_raw_score_gap": 2.434219936731097e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0915137380361557,
+ "observability_min": 8.62744116147951e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "c109f09175c6765a77df26fb06b996b8639c447a34624cc9dd430ef03370428e",
+ "raw_normalized_churn": 0.03510226644555003,
+ "raw_xor_churn_total": 254,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "39bac0189fd87d1fc772a10a3c41c3c5de0ca183eb0a3cc16f2d6aa9b4af91e9",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 3015,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.3406270025298e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7595270276069641,
+ "last_committed_score_gap": 7.0944583967502695e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 9.3406270025298e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7595270276069641,
+ "last_raw_score_gap": 7.0944583967502695e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10769981890916824,
+ "observability_min": 5.047812479119784e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "39bac0189fd87d1fc772a10a3c41c3c5de0ca183eb0a3cc16f2d6aa9b4af91e9",
+ "raw_normalized_churn": 0.0013266998341625207,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "302b40f5b816b96b5ac57d9aeb8584b1a7fad6ce05af0af5e3cc840fb4002e2c",
+ "committed_normalized_churn": 0.000552791597567717,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 1808,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.586138180049602e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.923656702041626,
+ "last_committed_score_gap": 2.3887037968961522e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.586138180049602e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.923656702041626,
+ "last_raw_score_gap": 2.3887037968961522e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.109842948615551,
+ "observability_min": 9.490503316555987e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "302b40f5b816b96b5ac57d9aeb8584b1a7fad6ce05af0af5e3cc840fb4002e2c",
+ "raw_normalized_churn": 0.008844665561083471,
+ "raw_xor_churn_total": 32,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "b9fbde646f962cdb6f1e129816f3b2d303d43c96a4da43c49292d3c7d101ee25",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 469,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005943130236119032,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.12954823672771454,
+ "last_committed_score_gap": 7.699220441281796e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005943130236119032,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.12954823672771454,
+ "last_raw_score_gap": 7.699220441281796e-05,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09380555897951126,
+ "observability_min": 2.9540366597302636e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "b9fbde646f962cdb6f1e129816f3b2d303d43c96a4da43c49292d3c7d101ee25",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "6292100f488a6df0d8920362e7e459a3b1a7550cd872b90486669e25c5d9cf5b",
+ "committed_normalized_churn": 0.001658374792703151,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 602,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0001153696357505396,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": -0.7784566283226013,
+ "last_committed_score_gap": -0.0004053844604641199,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.0002314695157110691,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.5015774369239807,
+ "last_raw_score_gap": 0.0001160998799605295,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1017983928322792,
+ "observability_min": 5.166556604763173e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.024875621890547265,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "38678dad620827f1bd29e15ec2ca8125a0b6e2d1bb51f60656bc65fe8638f60a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 469,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.6837111363420263e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.06004375219345093,
+ "last_committed_score_gap": 1.6114008758449927e-06,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 2.6837111363420263e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.06004375219345093,
+ "last_raw_score_gap": 1.6114008758449927e-06,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11505194753408432,
+ "observability_min": 3.95781150075436e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "38678dad620827f1bd29e15ec2ca8125a0b6e2d1bb51f60656bc65fe8638f60a",
+ "raw_normalized_churn": 0.006396588486140725,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "1d4577458643a7fad573e09d7ea1f9d379a67f7f03274eab5919b05f81f759d0",
+ "committed_normalized_churn": 0.0008141112618724559,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 3682,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.037915798311587e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.8826075792312622,
+ "last_committed_score_gap": 4.446502771315863e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.037915798311587e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.8826075792312622,
+ "last_raw_score_gap": 4.446502771315863e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10445117205381393,
+ "observability_min": 1.1164827284915191e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "1d4577458643a7fad573e09d7ea1f9d379a67f7f03274eab5919b05f81f759d0",
+ "raw_normalized_churn": 0.005970149253731343,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ }
+ ],
+ "task_id": 884
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "0a971cab41cf3f2ff1a60489606f7b16d9eff86cf49f434884122f3de3bd6f19",
+ "committed_normalized_churn": 0.0009054325955734407,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 9931,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.961549724517681e-08,
+ "last_committed_mask_overlap": 355,
+ "last_committed_normalized_gap": -0.6252071261405945,
+ "last_committed_score_gap": -1.4949122828511463e-07,
+ "last_dwell_count": 355,
+ "last_raw_cutoff_score": 1.7384752482030308e-07,
+ "last_raw_mask_overlap": 351,
+ "last_raw_normalized_gap": 0.14380617439746857,
+ "last_raw_score_gap": 2.500034668173612e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.042203038930892944,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "1db7dc94a7c81dc5f834dd57f4d5e000a403a0b478b0a0ed1b48bc81fc4ec4ff",
+ "raw_normalized_churn": 0.011770623742454729,
+ "raw_xor_churn_total": 234,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "abe26140287c3ab33dfcbf1e3ded2feb6307815417cb316be44f062405b25932",
+ "committed_normalized_churn": 0.0031954887218045114,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 10606,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 9.02659547108442e-09,
+ "last_committed_mask_overlap": 378,
+ "last_committed_normalized_gap": -0.3104288578033447,
+ "last_committed_score_gap": -4.0635628195673235e-09,
+ "last_dwell_count": 378,
+ "last_raw_cutoff_score": 1.1420806522721705e-08,
+ "last_raw_mask_overlap": 374,
+ "last_raw_normalized_gap": 0.010807403363287449,
+ "last_raw_score_gap": 1.234292668073067e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10486193001270294,
+ "observability_min": 6.330758695050065e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "ca5a8b295fa79f2016fbb03035d3d2c1e03141fc47a955c391056628df426195",
+ "raw_normalized_churn": 0.025657894736842105,
+ "raw_xor_churn_total": 546,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "d945d9fe49756bedce54d369f3013d181f685348d3e7ac6f151ec25f4803acb7",
+ "committed_normalized_churn": 0.0015932023366967605,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 7520,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.852290989125322e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": 0.08556509017944336,
+ "last_committed_score_gap": 7.57447082833096e-09,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 8.852290989125322e-08,
+ "last_raw_mask_overlap": 267,
+ "last_raw_normalized_gap": 0.08556509017944336,
+ "last_raw_score_gap": 7.57447082833096e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06126362830400467,
+ "observability_min": 5.983790352104279e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "d945d9fe49756bedce54d369f3013d181f685348d3e7ac6f151ec25f4803acb7",
+ "raw_normalized_churn": 0.015533722782793415,
+ "raw_xor_churn_total": 234,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "0214cd513606b70d232c563668491a764d9402f1f2bba435e2302d6f6b3a0963",
+ "committed_normalized_churn": 0.0017956903431763766,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 5003,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8141231521440204e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.08253442496061325,
+ "last_committed_score_gap": 1.497276116424473e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 1.8141231521440204e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.08253442496061325,
+ "last_raw_score_gap": 1.497276116424473e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04430510848760605,
+ "observability_min": 8.362253112181861e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "0214cd513606b70d232c563668491a764d9402f1f2bba435e2302d6f6b3a0963",
+ "raw_normalized_churn": 0.007382282521947326,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "9cfc7c8cbd044d90c840b9218d50db0f3c398ede2e37e592f0daced56ed59828",
+ "committed_normalized_churn": 0.0007722007722007722,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 5176,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.624633665021975e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.06558506190776825,
+ "last_committed_score_gap": 5.656471557813347e-08,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.624633665021975e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.06558506190776825,
+ "last_raw_score_gap": 5.656471557813347e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04267045110464096,
+ "observability_min": 6.759299964187448e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "9cfc7c8cbd044d90c840b9218d50db0f3c398ede2e37e592f0daced56ed59828",
+ "raw_normalized_churn": 0.005019305019305019,
+ "raw_xor_churn_total": 52,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "974370f1406826aa402bc60ceab0e719a8b681a6f12570f881f0a73dfe514a44",
+ "committed_normalized_churn": 0.004421768707482994,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 2927,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.4608743842691183e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": -0.5520796179771423,
+ "last_committed_score_gap": -3.033125040019513e-07,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 3.10240210410484e-07,
+ "last_raw_mask_overlap": 102,
+ "last_raw_normalized_gap": 0.08047916740179062,
+ "last_raw_score_gap": 2.4967874878711882e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0521535724401474,
+ "observability_min": 5.7981321077704706e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "13b2211cfc263caa8258b8b3464c54c8de2b2a0186badc04f47091588744e37f",
+ "raw_normalized_churn": 0.0326530612244898,
+ "raw_xor_churn_total": 192,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "e559a73d3ec705a45bed0af5cb1c02f68b062be89709f404bd529d2f5846904d",
+ "committed_normalized_churn": 0.0008928571428571428,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2238,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.356872396892868e-07,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.3916151225566864,
+ "last_committed_score_gap": -6.022984280207311e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.3412096677711816e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.05772286280989647,
+ "last_raw_score_gap": 7.741846275166608e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05401381850242615,
+ "observability_min": 2.048704175194871e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "78031bdef2fd14e734de6e32595b6c5db53b30f3d4560f9a864d40302b230adf",
+ "raw_normalized_churn": 0.01607142857142857,
+ "raw_xor_churn_total": 72,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "5721c45c7b4abb113031983f18962bb0ed6d0dc53158a188cdb587de799ed0a6",
+ "committed_normalized_churn": 0.0008305647840531562,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1203,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.857357799257443e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.16759194433689117,
+ "last_committed_score_gap": 4.788701346569724e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 2.857357799257443e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.16759194433689117,
+ "last_raw_score_gap": 4.788701346569724e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.053742364048957825,
+ "observability_min": 2.2853484438201122e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "5721c45c7b4abb113031983f18962bb0ed6d0dc53158a188cdb587de799ed0a6",
+ "raw_normalized_churn": 0.014119601328903655,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "894187f8557674af45606eedb96f9b0763933dfec8a556883c84cb905f4df2f3",
+ "committed_normalized_churn": 0.008503401360544218,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2332,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.179726052048863e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.40930745005607605,
+ "last_committed_score_gap": -5.667961744393324e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.1565969515459074e-07,
+ "last_raw_mask_overlap": 82,
+ "last_raw_normalized_gap": 0.12866760790348053,
+ "last_raw_score_gap": 1.4881656795751041e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03962259739637375,
+ "observability_min": 2.041395958940484e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "ea7f95ebdd5413aa57716be8352e7d9e64b72ee0c2f39a1b0c172baf6b994150",
+ "raw_normalized_churn": 0.047193877551020405,
+ "raw_xor_churn_total": 222,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "d814ca169cd7e1f2dbdf22160257c9926a2856c29cc19bdc39658874fbd3aa3f",
+ "committed_normalized_churn": 0.007142857142857143,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 834,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.237001914792927e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.01848476752638817,
+ "last_committed_score_gap": -9.862787919701077e-08,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 5.335629793989938e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.01848476752638817,
+ "last_raw_score_gap": 9.862787919701077e-08,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03242328763008118,
+ "observability_min": 2.5960477501030255e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "a7da6b102d4c548714b1e896a197d2a3fad3edfac2a7a0bd63158550294c53f4",
+ "raw_normalized_churn": 0.05,
+ "raw_xor_churn_total": 84,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "fba622d81b8ad3bce88eca00adcedae62c7485799e0b76fa995a4da67242923b",
+ "committed_normalized_churn": 0.013248847926267281,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 1713,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5124960839330015e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.2731739282608032,
+ "last_committed_score_gap": -5.684640314029821e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.0809601153359836e-07,
+ "last_raw_mask_overlap": 60,
+ "last_raw_normalized_gap": 0.2312919944524765,
+ "last_raw_score_gap": 4.813094278688368e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050380196422338486,
+ "observability_min": 4.757749749728646e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "c10ce872d2da39ee5ae1c4b7041214a07e9495486f5c06a364d0d9ad4704f3b2",
+ "raw_normalized_churn": 0.0587557603686636,
+ "raw_xor_churn_total": 204,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "b1cb76cbf9d977cb4ec3228b62b5b365008f84f085dd1704649a02f9c8c94b70",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1500,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5272033238034055e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.44583791494369507,
+ "last_committed_score_gap": -1.228675046149874e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.86264699664207e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.12470919638872147,
+ "last_raw_score_gap": 2.3228921008922043e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08768408000469208,
+ "observability_min": 1.2640924751394778e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "5bc9b8a3d0d2f2ba96a7cf493a0221779d2905e91367dfecec75c28c20641768",
+ "raw_normalized_churn": 0.04563492063492063,
+ "raw_xor_churn_total": 138,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "b4455d4b35211c1106eb8f2c66e24f98dd7ae18dd005659d2aa17f602d7e4edd",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1260,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4226911844161805e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7928441762924194,
+ "last_committed_score_gap": 1.127972427639179e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.4226911844161805e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7928441762924194,
+ "last_raw_score_gap": 1.127972427639179e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10584601759910583,
+ "observability_min": 2.6173241352012155e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "b4455d4b35211c1106eb8f2c66e24f98dd7ae18dd005659d2aa17f602d7e4edd",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "d5b7eb7e29a6a221fa2cb0c60feb904d14fc53af5673cd125f7369370eaa753d",
+ "committed_normalized_churn": 0.0026455026455026454,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 754,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.17923861782765e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.6755212545394897,
+ "last_committed_score_gap": 1.4721220395585988e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.17923861782765e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.6755212545394897,
+ "last_raw_score_gap": 1.4721220395585988e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11019060760736465,
+ "observability_min": 3.6382733270556855e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "d5b7eb7e29a6a221fa2cb0c60feb904d14fc53af5673cd125f7369370eaa753d",
+ "raw_normalized_churn": 0.009259259259259259,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0006700982921756804,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8787106871604919,
+ "last_committed_score_gap": 0.0005888225277885795,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0006700982921756804,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8787106871604919,
+ "last_raw_score_gap": 0.0005888225277885795,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08913954347372055,
+ "observability_min": 6.353501902367498e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "c83ca61e3a87922a171fcc0ddbc9baf6896f7f65ef8c97f6ae7cadc75249745a",
+ "committed_normalized_churn": 0.003968253968253968,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 251,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.1218027288559824e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.5308570861816406,
+ "last_committed_score_gap": 1.657231041463092e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 3.1218027288559824e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.5308570861816406,
+ "last_raw_score_gap": 1.657231041463092e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09977225214242935,
+ "observability_min": 6.383485384731102e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "c83ca61e3a87922a171fcc0ddbc9baf6896f7f65ef8c97f6ae7cadc75249745a",
+ "raw_normalized_churn": 0.003968253968253968,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010960995132336393,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.825285017490387,
+ "last_committed_score_gap": 9.04594489838928e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00010960995132336393,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.825285017490387,
+ "last_raw_score_gap": 9.04594489838928e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1148458868265152,
+ "observability_min": 3.514334423471155e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "f9d05f0077c327fabaa2dd521f08d282ac01dfa8649a59b16b2bec7f49f14657",
+ "committed_normalized_churn": 0.001948051948051948,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1537,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.158103820373071e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": -0.10223174095153809,
+ "last_committed_score_gap": -4.7349658416351303e-07,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.406284006108763e-06,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.05632414668798447,
+ "last_raw_score_gap": 2.4818018573569134e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10405503213405609,
+ "observability_min": 7.018609693432154e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "04d74f6cef9c21bd0ba557ebec08596ff40906889e7ce8b91870bda97a50912b",
+ "raw_normalized_churn": 0.00909090909090909,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ }
+ ],
+ "task_id": 878
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 89,
+ "committed_mask_sha256": "4c16e6c9ba9ea29cd7b93442270f2d910cd12ebc9cf65e13e9a7d0f51e1a4513",
+ "committed_normalized_churn": 0.0019137727126115472,
+ "committed_xor_churn_total": 178,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 46416,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 8.518580330019176e-08,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": -0.9728600978851318,
+ "last_committed_score_gap": -3.0535811674781144e-06,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 1.368010771329864e-07,
+ "last_raw_mask_overlap": 349,
+ "last_raw_normalized_gap": 0.039020538330078125,
+ "last_raw_score_gap": 5.338051778380759e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0513690821826458,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "3cfbd3d7493be6db71f12ec3c43102b2d8673e8cbf6b100837c7078834da59b3",
+ "raw_normalized_churn": 0.016277819589291476,
+ "raw_xor_churn_total": 1514,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 92,
+ "committed_mask_sha256": "52fcbf409101aeba7d6fe1a8922323753a8168f18dadb834a8879a3f4411076e",
+ "committed_normalized_churn": 0.0018481317798312575,
+ "committed_xor_churn_total": 184,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 49688,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 5.504692257574106e-09,
+ "last_committed_mask_overlap": 378,
+ "last_committed_normalized_gap": -0.41792911291122437,
+ "last_committed_score_gap": -3.952389970862669e-09,
+ "last_dwell_count": 378,
+ "last_raw_cutoff_score": 7.116593536693472e-09,
+ "last_raw_mask_overlap": 371,
+ "last_raw_normalized_gap": 0.04827182739973068,
+ "last_raw_score_gap": 3.43530981439244e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12108021229505539,
+ "observability_min": 3.2825603346609e-11,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "2dcbda867533276f13e290c0c598218a0581b41473b0683e7ac6f6e334e62ec1",
+ "raw_normalized_churn": 0.02896745680996384,
+ "raw_xor_churn_total": 2884,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 42,
+ "committed_mask_sha256": "e90a4348f396a32f8c4103bc6a30183913a02aaf5bfc0fe127610b04372fd0d2",
+ "committed_normalized_churn": 0.0011918612900479583,
+ "committed_xor_churn_total": 84,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 35197,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.9752792169167606e-09,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9343018531799316,
+ "last_committed_score_gap": -5.653296852869971e-08,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 5.128052293912333e-08,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.03698186203837395,
+ "last_raw_score_gap": 1.896449219884744e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08065413683652878,
+ "observability_min": 1.311612707333154e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "1196644c0a4c9da5351fcd898ab55cbe6f947a61b7a62edbfc9e66e3aeb061cf",
+ "raw_normalized_churn": 0.01648741451233009,
+ "raw_xor_churn_total": 1162,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "be70d55d6de7cf9aff2ae87e9d5cfc543dc92f8565fb5fc1b1eca7bb13d6161b",
+ "committed_normalized_churn": 0.0011514350292123332,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 23422,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.5043877940333914e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.48705336451530457,
+ "last_committed_score_gap": 1.2197705245853285e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.5043877940333914e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.48705336451530457,
+ "last_raw_score_gap": 1.2197705245853285e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04636087268590927,
+ "observability_min": 3.2210991651737686e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "be70d55d6de7cf9aff2ae87e9d5cfc543dc92f8565fb5fc1b1eca7bb13d6161b",
+ "raw_normalized_churn": 0.011215830099364579,
+ "raw_xor_churn_total": 526,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "67eafe96c10eb846579793ceb4e993de94d26e0ede664d84ddae53bdc86561a8",
+ "committed_normalized_churn": 0.0005364142768722922,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 24222,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.693954676644353e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.6236698031425476,
+ "last_committed_score_gap": 3.5511476426108857e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 5.693954676644353e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.6236698031425476,
+ "last_raw_score_gap": 3.5511476426108857e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05509911850094795,
+ "observability_min": 2.3916510993871043e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "67eafe96c10eb846579793ceb4e993de94d26e0ede664d84ddae53bdc86561a8",
+ "raw_normalized_churn": 0.005034041675263049,
+ "raw_xor_churn_total": 244,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 80,
+ "committed_mask_sha256": "f6e78e621a79c270a459bc03850cd9dbb5418a9638545c20fac97285779caadf",
+ "committed_normalized_churn": 0.0058160668847691745,
+ "committed_xor_churn_total": 160,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 13675,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1191589521786227e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.03751996159553528,
+ "last_committed_score_gap": 4.199080194666749e-09,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 1.1191589521786227e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.03751996159553528,
+ "last_raw_score_gap": 4.199080194666749e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.053902480751276016,
+ "observability_min": 4.539121523094991e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "f6e78e621a79c270a459bc03850cd9dbb5418a9638545c20fac97285779caadf",
+ "raw_normalized_churn": 0.03213376953834969,
+ "raw_xor_churn_total": 884,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "07e086da95fa0bd386296ecf00382c74c51a53c2cfb3a7ae2b6ff35771d6d962",
+ "committed_normalized_churn": 0.0018129770992366412,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 10461,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4091970115259755e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.4476385712623596,
+ "last_committed_score_gap": -1.1420256669225637e-06,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 2.0106313058931846e-06,
+ "last_raw_mask_overlap": 77,
+ "last_raw_normalized_gap": 0.10869680345058441,
+ "last_raw_score_gap": 2.185491894124425e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0631350502371788,
+ "observability_min": 2.2220459072741505e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "fa0dd426285e1e7cf76009f2e0d5a813f6ece1aa87fcf0580eeda42dbf537e36",
+ "raw_normalized_churn": 0.018416030534351147,
+ "raw_xor_churn_total": 386,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "65bf7dac816e0925340d73edac63c3c5a803672065cc86df8e1f624fced2bde2",
+ "committed_normalized_churn": 0.0012426770814841115,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 5626,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.4481584521017794e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.3686068654060364,
+ "last_committed_score_gap": 1.271014866688347e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.4481584521017794e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.3686068654060364,
+ "last_raw_score_gap": 1.271014866688347e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06715214997529984,
+ "observability_min": 5.35766616849287e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "65bf7dac816e0925340d73edac63c3c5a803672065cc86df8e1f624fced2bde2",
+ "raw_normalized_churn": 0.021480560979939643,
+ "raw_xor_churn_total": 242,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 77,
+ "committed_mask_sha256": "bb342c18314285e65ba8ce35c42cdd64a24668dfd5063cc8c2285702ebbee04e",
+ "committed_normalized_churn": 0.006997455470737914,
+ "committed_xor_churn_total": 154,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 10927,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.803251130169883e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.49406933784484863,
+ "last_committed_score_gap": -4.690640764692944e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 7.057758466544328e-08,
+ "last_raw_mask_overlap": 81,
+ "last_raw_normalized_gap": 0.005821253638714552,
+ "last_raw_score_gap": 4.1085002067120513e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04187372326850891,
+ "observability_min": 1.1875437877506556e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "c3ee58699da05c80dc99c93e7520d02ee4a5b3870ec06ed8503ff0d80dcfb4de",
+ "raw_normalized_churn": 0.045438022537259176,
+ "raw_xor_churn_total": 1000,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "aad4410385cf70827a79fdffcb06d6c9b04ee225a29122706c5ea840768b3cde",
+ "committed_normalized_churn": 0.007633587786259542,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 3900,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.724142389837652e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.4347718358039856,
+ "last_committed_score_gap": -6.7105847847415134e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 1.2998955753573682e-05,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.32885822653770447,
+ "last_raw_score_gap": 4.27481336373603e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0513441264629364,
+ "observability_min": 9.647084908692705e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "47d1e4c592d8f6b28838957fdf116f7bd54a9fdfe875ec103a182b40aba42ca4",
+ "raw_normalized_churn": 0.042239185750636135,
+ "raw_xor_churn_total": 332,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 56,
+ "committed_mask_sha256": "7b5a0937db0af0047666d973801a2be92580c1d7b3a8894a27c9c3812ef0671b",
+ "committed_normalized_churn": 0.006894853484363458,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 8066,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.821152153524963e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.21338757872581482,
+ "last_committed_score_gap": -4.940314113355271e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.3151835648604902e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.07705698907375336,
+ "last_raw_score_gap": 1.7840108057498583e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.041370052844285965,
+ "observability_min": 1.1866499249890694e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "4d3a32fbadd3466c94a38306daa51df44a0b45bcfe7b638c72a90f273d0a5b35",
+ "raw_normalized_churn": 0.052450135434622014,
+ "raw_xor_churn_total": 852,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "d5aca251d0be38118ff887d66c86d11282fa20fac7b82168e7f8e782909abc41",
+ "committed_normalized_churn": 0.0028272547356516823,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 7054,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4311945051304065e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.40352389216423035,
+ "last_committed_score_gap": 5.775211775471689e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.4311945051304065e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.40352389216423035,
+ "last_raw_score_gap": 5.775211775471689e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09678450226783752,
+ "observability_min": 8.447752719575874e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d5aca251d0be38118ff887d66c86d11282fa20fac7b82168e7f8e782909abc41",
+ "raw_normalized_churn": 0.02643483177834323,
+ "raw_xor_churn_total": 374,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "9dd259af2943a424c8fbac7dae130bf7378c9d3164dbe524c269cc49012021af",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 5895,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2320085261308122e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7819270491600037,
+ "last_committed_score_gap": 9.633407898945734e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.2320085261308122e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7819270491600037,
+ "last_raw_score_gap": 9.633407898945734e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11265386641025543,
+ "observability_min": 1.7399679919094524e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "9dd259af2943a424c8fbac7dae130bf7378c9d3164dbe524c269cc49012021af",
+ "raw_normalized_churn": 0.002035623409669211,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "be6776e809723ef417d86af151ab9f04a6b1f0723713f064484f278c0b624348",
+ "committed_normalized_churn": 0.0014136273678258412,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 3532,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8297458836968872e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": -0.6014140844345093,
+ "last_committed_score_gap": -2.7608480195340235e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 4.590594016917748e-06,
+ "last_raw_mask_overlap": 26,
+ "last_raw_normalized_gap": 0.48058539628982544,
+ "last_raw_score_gap": 2.2061724394006887e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11929048597812653,
+ "observability_min": 3.0542715023784694e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "d866d36c93eee530168d92ce20f25a9edc09862771e472316c6f24cb6320ffd3",
+ "raw_normalized_churn": 0.011591744416171897,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "e50679cd7f0467ce5de5bbef94a9972a9287baab69d7bf7bde985a57229417df",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 917,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00031634524930268526,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.4562290608882904,
+ "last_committed_score_gap": 0.00014432589523494244,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00031634524930268526,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.4562290608882904,
+ "last_raw_score_gap": 0.00014432589523494244,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10046342760324478,
+ "observability_min": 5.144022097169909e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e50679cd7f0467ce5de5bbef94a9972a9287baab69d7bf7bde985a57229417df",
+ "raw_normalized_churn": 0.003271537622682661,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "2ad44af3d87f65540ef70a4482c821edf831f8390f6545c4c96c9cbb9d9c7a1e",
+ "committed_normalized_churn": 0.007633587786259542,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 1170,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.96386196068488e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.6257679462432861,
+ "last_committed_score_gap": 4.3577616452239454e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 6.96386196068488e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.6257679462432861,
+ "last_raw_score_gap": 4.3577616452239454e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1074005514383316,
+ "observability_min": 1.4123684444200535e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "2ad44af3d87f65540ef70a4482c821edf831f8390f6545c4c96c9cbb9d9c7a1e",
+ "raw_normalized_churn": 0.026293469041560644,
+ "raw_xor_churn_total": 62,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "eb2daa484794c41515ed7a270ddde790ef1c98ac5d04bb1a405a0466e1e35660",
+ "committed_normalized_churn": 0.0021810250817884407,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 915,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00011484652350191027,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9162382483482361,
+ "last_committed_score_gap": 0.00010522677621338516,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00011484652350191027,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9162382483482361,
+ "last_raw_score_gap": 0.00010522677621338516,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12512293457984924,
+ "observability_min": 3.0481970725304564e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "eb2daa484794c41515ed7a270ddde790ef1c98ac5d04bb1a405a0466e1e35660",
+ "raw_normalized_churn": 0.017448200654307525,
+ "raw_xor_churn_total": 32,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "b3e9d5661f5be010cd44eeeba040e7ead1183e6af9592ea130d0e099b9434417",
+ "committed_normalized_churn": 0.0005551700208188758,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 7201,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.654144842992537e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.7468447685241699,
+ "last_committed_score_gap": 4.222768438921776e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.654144842992537e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.7468447685241699,
+ "last_raw_score_gap": 4.222768438921776e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11131149530410767,
+ "observability_min": 3.4897235101638557e-10,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "b3e9d5661f5be010cd44eeeba040e7ead1183e6af9592ea130d0e099b9434417",
+ "raw_normalized_churn": 0.005690492713393476,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ }
+ ],
+ "task_id": 822
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "7ad55a6d59b81cfe1ea4a1fdac636e8bf842b4015aa071cc8a25e235770010e6",
+ "committed_normalized_churn": 0.0016543706684551756,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 22328,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 3.8660590284678165e-09,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.9778856039047241,
+ "last_committed_score_gap": -1.709552606143916e-07,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 6.462084201075413e-08,
+ "last_raw_mask_overlap": 350,
+ "last_raw_normalized_gap": 0.05482466146349907,
+ "last_raw_score_gap": 3.5428158184913627e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.036527037620544434,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "e05305446be2c8207a8ec27da47f525bdfc9c2693735f33db47f53bd560e6e23",
+ "raw_normalized_churn": 0.015381175944556227,
+ "raw_xor_churn_total": 688,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 54,
+ "committed_mask_sha256": "63d608a2ff11029e818bb3abbfaae5349d8115bb1fef0b24076468741b7910dd",
+ "committed_normalized_churn": 0.002255639097744361,
+ "committed_xor_churn_total": 108,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 23886,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.7223067416693993e-08,
+ "last_committed_mask_overlap": 379,
+ "last_committed_normalized_gap": -0.7066381573677063,
+ "last_committed_score_gap": -4.148622423372217e-08,
+ "last_dwell_count": 379,
+ "last_raw_cutoff_score": 2.6813257392177547e-08,
+ "last_raw_mask_overlap": 368,
+ "last_raw_normalized_gap": 0.03008097968995571,
+ "last_raw_score_gap": 8.065690337843989e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12224797159433365,
+ "observability_min": 3.816698512792982e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "15bc097055ff12044091c6dcb621f06ee6790777e991706dc159ed7880f4a9ac",
+ "raw_normalized_churn": 0.02456140350877193,
+ "raw_xor_churn_total": 1176,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "f094e14b396b34daf9978d4eb4c6259d981f3b4e3c00311a4f2b39822574aca6",
+ "committed_normalized_churn": 0.0008851124092759781,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 16932,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.578197707720392e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.6684882640838623,
+ "last_committed_score_gap": -1.7297801946369873e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.2204671406834677e-07,
+ "last_raw_mask_overlap": 267,
+ "last_raw_normalized_gap": 0.041983116418123245,
+ "last_raw_score_gap": 5.1239013032500225e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04934059828519821,
+ "observability_min": 8.86967477242706e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "1514a1706177127074c0634b5e598c3518df9a04f92da157c655b444e4273066",
+ "raw_normalized_churn": 0.008379064141145925,
+ "raw_xor_churn_total": 284,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "270c08310a36262a51b889f5d7a9f5b12cbbf88063ea9158fa2b1a758c0321a3",
+ "committed_normalized_churn": 0.0008867606632969762,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 11267,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.5923774299153592e-06,
+ "last_committed_mask_overlap": 178,
+ "last_committed_normalized_gap": -0.8299239873886108,
+ "last_committed_score_gap": -7.77035893406719e-06,
+ "last_dwell_count": 178,
+ "last_raw_cutoff_score": 2.7170920020580525e-06,
+ "last_raw_mask_overlap": 174,
+ "last_raw_normalized_gap": 0.00869722943753004,
+ "last_raw_score_gap": 2.363117346249055e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04246092960238457,
+ "observability_min": 1.7808103436323108e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "9127f569468c7ee8f62258c75283657bb2a85e6cee369e5f003ebf0469d3f4f3",
+ "raw_normalized_churn": 0.009931719428926133,
+ "raw_xor_churn_total": 224,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "58f435c25475683da34ea3fafbb0ff72c5aea224c184e0ada35ba6a8163a91f2",
+ "committed_normalized_churn": 0.0005148005148005148,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 11649,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.754475864705455e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.5054708123207092,
+ "last_committed_score_gap": -5.881796028006647e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.924394023779314e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.355197012424469,
+ "last_raw_score_gap": 3.169918159073859e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.028900589793920517,
+ "observability_min": 1.280722727869943e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "1c3296300ecc6292a43b00967337682b4e093528a9c56828ac2d53c2751b0ed1",
+ "raw_normalized_churn": 0.004719004719004719,
+ "raw_xor_churn_total": 110,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "5284cee8d7a3ddfe8c67a456768b4765c58f6070f43421e7054a61ab9efc3781",
+ "committed_normalized_churn": 0.0030234315948601664,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 6595,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2786084369054151e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": -0.882242739200592,
+ "last_committed_score_gap": -9.579392781233764e-07,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 3.6228325939191564e-07,
+ "last_raw_mask_overlap": 98,
+ "last_raw_normalized_gap": 0.003821457037702203,
+ "last_raw_score_gap": 1.3844498880644096e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03619275987148285,
+ "observability_min": 2.534521570396464e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "c341c8c381c65ea2e9bdf572a83d401a1fe6af8ae0cef918eb082edd9cbd02c1",
+ "raw_normalized_churn": 0.025396825396825397,
+ "raw_xor_churn_total": 336,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "0306bdd4bfe5ae99c37590858018693d3e7e6b93b1133367c050be8cde8058e0",
+ "committed_normalized_churn": 0.001984126984126984,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 5030,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5253929177561076e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.21925444900989532,
+ "last_committed_score_gap": -4.283715497876983e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.789890347936307e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.1467096507549286,
+ "last_raw_score_gap": 2.6259419882990187e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04616660997271538,
+ "observability_min": 2.319469558642595e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "4f5cdc9a3c31f3c2011ef36441c3c3c8fbadc663e4cef81bc45b8836200d78d9",
+ "raw_normalized_churn": 0.01607142857142857,
+ "raw_xor_churn_total": 162,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "c7bb8b05b29b4060361c02bfdf8177f6f21c5547b462bd53781b6112c4d243e8",
+ "committed_normalized_churn": 0.0007382798080472499,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 2707,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.2716614012097125e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": -0.6531184911727905,
+ "last_committed_score_gap": -4.277149514564371e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.641927435182879e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.09277976304292679,
+ "last_raw_score_gap": 3.378971769052441e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.061315715312957764,
+ "observability_min": 4.862473019784375e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "18f0e02785246815fedbdf1eb763e21a186f2b188c32108c53ff28dc87fd5901",
+ "raw_normalized_churn": 0.0103359173126615,
+ "raw_xor_churn_total": 56,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "7a25614bfd69eff336136e0d803e408d78ed872fe8b040d9d3043767f7df820a",
+ "committed_normalized_churn": 0.00510204081632653,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 5265,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.8440032429653e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.7576524019241333,
+ "last_committed_score_gap": -1.514382859113539e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.0247502757465554e-07,
+ "last_raw_mask_overlap": 77,
+ "last_raw_normalized_gap": 0.0020492193289101124,
+ "last_raw_score_gap": 2.0999380012654e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03947780653834343,
+ "observability_min": 3.39191288389884e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "7900156ef5b7522db21fb3da2f2a22a269e3e5e722a40304e3f38b5c5b9ebee4",
+ "raw_normalized_churn": 0.051776266061980346,
+ "raw_xor_churn_total": 548,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "aea7d33020bf02a1014a3251aeb582182ca5fb24f47b08bef5405e0859ef56b7",
+ "committed_normalized_churn": 0.007407407407407408,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1876,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.384504558809567e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": -0.6469555497169495,
+ "last_committed_score_gap": -1.1699633432726841e-05,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 1.3246844901004806e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.0941234678030014,
+ "last_raw_score_gap": 1.2468390195863321e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.044866323471069336,
+ "observability_min": 3.762768301385222e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "cb21ca47d12d178b459f63123977990658e6e6fa12a5967c3ae4e8569d2eac92",
+ "raw_normalized_churn": 0.043915343915343914,
+ "raw_xor_churn_total": 166,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "b0645f39ebbafed9d7cfd6555feccb0775ce759b4a8e4ed7fa61ba30d505d074",
+ "committed_normalized_churn": 0.007680491551459293,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 3876,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.258114536994981e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.6888954639434814,
+ "last_committed_score_gap": -2.7859107376571046e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.3617820943400147e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.01694689504802227,
+ "last_raw_score_gap": 4.002487230536644e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0359787717461586,
+ "observability_min": 1.5569008837701404e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "73449a4652a671cbe5ec188cea3e614c55cba6039b52f5039cb24e277979ec66",
+ "raw_normalized_churn": 0.06272401433691756,
+ "raw_xor_churn_total": 490,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "6e654d7f18c181f39765a271ff74a4d8dee14d9edf7353e6906790426af71366",
+ "committed_normalized_churn": 0.0026455026455026454,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 3393,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4664767888916685e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.8201139569282532,
+ "last_committed_score_gap": -6.685777407255955e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.623041552851646e-07,
+ "last_raw_mask_overlap": 48,
+ "last_raw_normalized_gap": 0.007961311377584934,
+ "last_raw_score_gap": 2.0882851003989344e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09301511943340302,
+ "observability_min": 9.424121572010336e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d8770264ba23ea6d319b5edb9ad378ecd1954cb34d66ad7e8ad44e646d6593db",
+ "raw_normalized_churn": 0.035567313345091126,
+ "raw_xor_churn_total": 242,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d6dae4655830bd64116a0edc41d2ea0f39d3df9b619d17db8c969141800053fb",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 2835,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2059711480105761e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7812369465827942,
+ "last_committed_score_gap": 9.421491995453835e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.2059711480105761e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7812369465827942,
+ "last_raw_score_gap": 9.421491995453835e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09977611899375916,
+ "observability_min": 6.080751546733154e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "d6dae4655830bd64116a0edc41d2ea0f39d3df9b619d17db8c969141800053fb",
+ "raw_normalized_churn": 0.0014109347442680777,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "d22192c7f7fc3cfabf4404e6d51cc0657cfb5fd60fda21edcd75a8dca391e975",
+ "committed_normalized_churn": 0.001763668430335097,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 1698,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.54630821372848e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.037712592631578445,
+ "last_committed_score_gap": 2.468782440701034e-07,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 6.54630821372848e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.037712592631578445,
+ "last_raw_score_gap": 2.468782440701034e-07,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08649787306785583,
+ "observability_min": 2.0054625338161713e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "d22192c7f7fc3cfabf4404e6d51cc0657cfb5fd60fda21edcd75a8dca391e975",
+ "raw_normalized_churn": 0.006466784244562022,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 441,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0004857346066273749,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9528875350952148,
+ "last_committed_score_gap": 0.0004628504393622279,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0004857346066273749,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9528875350952148,
+ "last_raw_score_gap": 0.0004628504393622279,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08703380078077316,
+ "observability_min": 4.485547933086309e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0045351473922902496,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "539ec2424d8ac68523982bc45ba2f5931475f50e8bf8d655ace640e4392d35b3",
+ "committed_normalized_churn": 0.003527336860670194,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 565,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.739622115972452e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.27423784136772156,
+ "last_committed_score_gap": 1.0255458619212732e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 3.739622115972452e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.27423784136772156,
+ "last_raw_score_gap": 1.0255458619212732e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09049074351787567,
+ "observability_min": 4.40863310302575e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "539ec2424d8ac68523982bc45ba2f5931475f50e8bf8d655ace640e4392d35b3",
+ "raw_normalized_churn": 0.03880070546737213,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 441,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.777385791181587e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.5067727565765381,
+ "last_committed_score_gap": 1.9142762539559044e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 3.777385791181587e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.5067727565765381,
+ "last_raw_score_gap": 1.9142762539559044e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09488765150308609,
+ "observability_min": 7.265204970963168e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0045351473922902496,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "a295b9cd99ffe86258b4ced0528ad100c077c430b3132c9f45e0908fff8c0571",
+ "committed_normalized_churn": 0.0005772005772005772,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 3463,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8366662288826774e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.1635209172964096,
+ "last_committed_score_gap": 3.0033334041945636e-07,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 1.8366662288826774e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.1635209172964096,
+ "last_raw_score_gap": 3.0033334041945636e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09816405177116394,
+ "observability_min": 1.178192565731706e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "a295b9cd99ffe86258b4ced0528ad100c077c430b3132c9f45e0908fff8c0571",
+ "raw_normalized_churn": 0.00404040404040404,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 687
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "e9c3880621579cb4802f5c0aa6424865b5a2e89023555fb0755947a4587478a1",
+ "committed_normalized_churn": 0.0014084507042253522,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 10635,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 3.381022395387845e-08,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": -0.9892075061798096,
+ "last_committed_score_gap": -3.09894767269725e-06,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 1.9112168558876874e-07,
+ "last_raw_mask_overlap": 345,
+ "last_raw_normalized_gap": 0.16237573325634003,
+ "last_raw_score_gap": 3.1033522418510984e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04998818784952164,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "fae4c254c780198fde312bc3b66c8a6d099c574f392d37748353b37c76e6cee0",
+ "raw_normalized_churn": 0.012488262910798123,
+ "raw_xor_churn_total": 266,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 29,
+ "committed_mask_sha256": "35a8f50457d3e301e706c76453f540f5160b4f3db20965620c63e49b9b890280",
+ "committed_normalized_churn": 0.002543859649122807,
+ "committed_xor_churn_total": 58,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 11371,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.868474042154844e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.8891904354095459,
+ "last_committed_score_gap": -1.4993547736708024e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 8.9624432320079e-09,
+ "last_raw_mask_overlap": 374,
+ "last_raw_normalized_gap": 0.12827211618423462,
+ "last_raw_score_gap": 1.149631501107251e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12476925551891327,
+ "observability_min": 1.29445321128685e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "1d69063c0bd214877266c4dafe6d7001a1fa1bde1eac7372df0b29b42a5342b9",
+ "raw_normalized_churn": 0.022280701754385963,
+ "raw_xor_churn_total": 508,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "63434d105f60f8b6be48d23eea830cae014b1abd329dd7f53def5765f01befc4",
+ "committed_normalized_churn": 0.0011152416356877324,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 8061,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.863537376806562e-09,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.950305163860321,
+ "last_committed_score_gap": -1.503728981333552e-07,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 9.508283937975648e-08,
+ "last_raw_mask_overlap": 265,
+ "last_raw_normalized_gap": 0.08318452537059784,
+ "last_raw_score_gap": 7.90942067396827e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06595548987388611,
+ "observability_min": 1.7003979335683539e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "8c3275bf2d9e7f94344889f073e0fa1568092a79ae09d646ce6d0eaffaa951ed",
+ "raw_normalized_churn": 0.010037174721189592,
+ "raw_xor_churn_total": 162,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "eb20110979a9ad52b736f166fb91f6de226de8c688fdf63e71f0abbb081e01b6",
+ "committed_normalized_churn": 0.00037243947858472997,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 5368,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.0152353954472346e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": -0.16730499267578125,
+ "last_committed_score_gap": -4.049009021400707e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.0419165593921207e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.013066725805401802,
+ "last_raw_score_gap": 2.6681163944886066e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04214828833937645,
+ "observability_min": 2.2219222017838547e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "4c99b0bc2840f859a84d5e2eb0bd0c25a9a0debd073b9d3dc99ad385cb4281df",
+ "raw_normalized_churn": 0.0067039106145251395,
+ "raw_xor_churn_total": 72,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "59d6c5c64b7b970f4c1169b685f028d46a4ee4a15f9a79c3ab591ad6711dae03",
+ "committed_normalized_churn": 0.0005405405405405405,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 5547,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.562869654975657e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.3862195909023285,
+ "last_committed_score_gap": 2.920928352523333e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.562869654975657e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.3862195909023285,
+ "last_raw_score_gap": 2.920928352523333e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04449982941150665,
+ "observability_min": 3.3255904696716243e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "59d6c5c64b7b970f4c1169b685f028d46a4ee4a15f9a79c3ab591ad6711dae03",
+ "raw_normalized_churn": 0.0046846846846846845,
+ "raw_xor_churn_total": 52,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "1e0cf0143eea8138d63cda457298d4ea49c3692bba933af214d5987824aee256",
+ "committed_normalized_churn": 0.004126984126984127,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3137,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.5146323423541617e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.3287145495414734,
+ "last_committed_score_gap": 8.26596249225986e-08,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 2.5146323423541617e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.3287145495414734,
+ "last_raw_score_gap": 8.26596249225986e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.032912712544202805,
+ "observability_min": 7.36243066512543e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "1e0cf0143eea8138d63cda457298d4ea49c3692bba933af214d5987824aee256",
+ "raw_normalized_churn": 0.02761904761904762,
+ "raw_xor_churn_total": 174,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "4812c7ff14220a250526f2b2632598dd61a61de439ada464b51514e12f48ebd3",
+ "committed_normalized_churn": 0.002916666666666667,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2393,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0870289770537056e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.5872684717178345,
+ "last_committed_score_gap": -1.5467146567971213e-06,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.1783600939452299e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.04299551248550415,
+ "last_raw_score_gap": 5.066419817012502e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05253954604268074,
+ "observability_min": 5.123778237248189e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "9ed38cd112b9da0b64221698743dcafae1f68eaed9d15e5232fae243911fccc4",
+ "raw_normalized_churn": 0.010833333333333334,
+ "raw_xor_churn_total": 52,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "111adcc55b3ac223b5d9334d32cb51d58057ea8f1d7777cfe2ff405df912d651",
+ "committed_normalized_churn": 0.0015503875968992248,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1288,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.929688432435796e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.7862721681594849,
+ "last_committed_score_gap": 3.089804749834002e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.929688432435796e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.7862721681594849,
+ "last_raw_score_gap": 3.089804749834002e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05568532645702362,
+ "observability_min": 4.761254217555688e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "111adcc55b3ac223b5d9334d32cb51d58057ea8f1d7777cfe2ff405df912d651",
+ "raw_normalized_churn": 0.010077519379844961,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "892a6cd98dd808f9e1b3f5a16093bf2c65a1bb71963c3737971381ab3bbcd6ac",
+ "committed_normalized_churn": 0.00992063492063492,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2495,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.005536418574593e-07,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.2013755738735199,
+ "last_committed_score_gap": 2.0249046883691335e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.005536418574593e-07,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.2013755738735199,
+ "last_raw_score_gap": 2.0249046883691335e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03355047106742859,
+ "observability_min": 2.1022707130669005e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "892a6cd98dd808f9e1b3f5a16093bf2c65a1bb71963c3737971381ab3bbcd6ac",
+ "raw_normalized_churn": 0.056746031746031746,
+ "raw_xor_churn_total": 286,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "08df5ff11c716b299650ec83df25d02f17d23c16e188cd4ee56d4ecb462cc1a5",
+ "committed_normalized_churn": 0.013333333333333334,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 888,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.4795098043978214e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.4501171410083771,
+ "last_committed_score_gap": 3.3666556191747077e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 7.4795098043978214e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.4501171410083771,
+ "last_raw_score_gap": 3.3666556191747077e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03269471600651741,
+ "observability_min": 6.793156330786587e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "08df5ff11c716b299650ec83df25d02f17d23c16e188cd4ee56d4ecb462cc1a5",
+ "raw_normalized_churn": 0.05333333333333334,
+ "raw_xor_churn_total": 96,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "52592ff61007ff4bc4701e339e497b6a6f20b26b9686d30bf9f4cd6e06c64081",
+ "committed_normalized_churn": 0.006989247311827957,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 1847,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6899382160318055e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.5354796051979065,
+ "last_committed_score_gap": 9.049274751760095e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.6899382160318055e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.5354796051979065,
+ "last_raw_score_gap": 9.049274751760095e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.031368687748909,
+ "observability_min": 1.3952960387086932e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "52592ff61007ff4bc4701e339e497b6a6f20b26b9686d30bf9f4cd6e06c64081",
+ "raw_normalized_churn": 0.0521505376344086,
+ "raw_xor_churn_total": 194,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "5fcb7aed1be19601e7376978f02a5a6bb9d0234852adc96235484a540f282c9c",
+ "committed_normalized_churn": 0.001851851851851852,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1617,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.284404049783916e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.3358430862426758,
+ "last_committed_score_gap": 4.313582024906282e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.284404049783916e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.3358430862426758,
+ "last_raw_score_gap": 4.313582024906282e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08585992455482483,
+ "observability_min": 8.469766754615193e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "5fcb7aed1be19601e7376978f02a5a6bb9d0234852adc96235484a540f282c9c",
+ "raw_normalized_churn": 0.04197530864197531,
+ "raw_xor_churn_total": 136,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "ba721681ee39f1d2fc7594e39053a673efa8571f1c628a6a9dea31620cf6adca",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1350,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1469537639641203e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7851879000663757,
+ "last_committed_score_gap": 9.00574195838999e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.1469537639641203e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7851879000663757,
+ "last_raw_score_gap": 9.00574195838999e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10537071526050568,
+ "observability_min": 1.0812957640382592e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "ba721681ee39f1d2fc7594e39053a673efa8571f1c628a6a9dea31620cf6adca",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "0ed62edaf02075c6431361c4ed89eefce9da6268440db35331be9d0cfede3af5",
+ "committed_normalized_churn": 0.003703703703703704,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 807,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.801548569346778e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.9245579242706299,
+ "last_committed_score_gap": 1.6656360458000563e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.801548569346778e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.9245579242706299,
+ "last_raw_score_gap": 1.6656360458000563e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11084818840026855,
+ "observability_min": 2.2282662826000887e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "0ed62edaf02075c6431361c4ed89eefce9da6268440db35331be9d0cfede3af5",
+ "raw_normalized_churn": 0.006172839506172839,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bbdbd4d00d3af2487f1c769abbedaf23065eaaeea14a7bb88a70f5872a7437a6",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005141198053024709,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6084955930709839,
+ "last_committed_score_gap": 0.00031283963471651077,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005141198053024709,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6084955930709839,
+ "last_raw_score_gap": 0.00031283963471651077,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0936540886759758,
+ "observability_min": 6.195692492383387e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bbdbd4d00d3af2487f1c769abbedaf23065eaaeea14a7bb88a70f5872a7437a6",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "c5a3b5277ce95b1e5b1bbc7dab664aa9dd0f5e34a8f6c3311fa4f5edb03c6a35",
+ "committed_normalized_churn": 0.003703703703703704,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 269,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00017007328278850764,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": -0.17078427970409393,
+ "last_committed_score_gap": -3.502808976918459e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00020510137255769223,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.17078427970409393,
+ "last_raw_score_gap": 3.502808976918459e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10066910088062286,
+ "observability_min": 2.534913079443868e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "1586350a614d988383bae852ae5ace1666c215901d089c7068329f99fb0f36ce",
+ "raw_normalized_churn": 0.02962962962962963,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "a22bab13a64c94cb6146e6fabbf88bc3ac426918d99093f3576561652532b31b",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.250911923823878e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8282532691955566,
+ "last_committed_score_gap": 6.833844963693991e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 8.250911923823878e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8282532691955566,
+ "last_raw_score_gap": 6.833844963693991e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10665640980005264,
+ "observability_min": 4.615097637383769e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "a22bab13a64c94cb6146e6fabbf88bc3ac426918d99093f3576561652532b31b",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "53c3b576c91caa61c72c4bbc9b5c4dd5e1414f3a82ba98bea5dfda4d5e4ebea2",
+ "committed_normalized_churn": 0.0006060606060606061,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1649,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.457214799913345e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.4846368730068207,
+ "last_committed_score_gap": 2.160130634365487e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.457214799913345e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.4846368730068207,
+ "last_raw_score_gap": 2.160130634365487e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10294587165117264,
+ "observability_min": 9.681921042670183e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "53c3b576c91caa61c72c4bbc9b5c4dd5e1414f3a82ba98bea5dfda4d5e4ebea2",
+ "raw_normalized_churn": 0.0030303030303030303,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ }
+ ],
+ "task_id": 820
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 16,
+ "committed_mask_sha256": "8fd4dff9f2a04bd75202a4f6181a7e1d003b8cb00a338c627fe6b71abbba4d61",
+ "committed_normalized_churn": 0.0012877263581488935,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 12409,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.4927261910743255e-08,
+ "last_committed_mask_overlap": 355,
+ "last_committed_normalized_gap": -0.9952081441879272,
+ "last_committed_score_gap": -9.330773536930792e-06,
+ "last_dwell_count": 355,
+ "last_raw_cutoff_score": 1.1596597460084013e-07,
+ "last_raw_mask_overlap": 349,
+ "last_raw_normalized_gap": 0.08787795156240463,
+ "last_raw_score_gap": 1.0190852606228873e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03488294780254364,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "0dbafcdace613eb3d72592f37811c27440262af9c367be69882aa39414d73ac5",
+ "raw_normalized_churn": 0.0110261569416499,
+ "raw_xor_churn_total": 274,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 33,
+ "committed_mask_sha256": "8b44c1c5d034f3a8c39cac6f1ab556f54eeac609a11fb00984ef9d1c9ef5717a",
+ "committed_normalized_churn": 0.002481203007518797,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 13267,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.98193950140535e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9642490148544312,
+ "last_committed_score_gap": -5.345533793388313e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 1.506034763565367e-08,
+ "last_raw_mask_overlap": 374,
+ "last_raw_normalized_gap": 0.07601776719093323,
+ "last_raw_score_gap": 1.1448539893876841e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09957802295684814,
+ "observability_min": 2.1382275117165506e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "6bee486579427106d1429f372167968d3b9841818de6738eaacf55b7b51dd24a",
+ "raw_normalized_churn": 0.024285714285714285,
+ "raw_xor_churn_total": 646,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "b0c741cbafe935249c3c1b2216c1dd8b179d8ae96a214f8097ed1375d64ce8fb",
+ "committed_normalized_churn": 0.0013807753584705257,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 9402,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.616449610419295e-08,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.6510696411132812,
+ "last_committed_score_gap": -1.234564308560948e-07,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 1.0092874447309441e-07,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.004281402565538883,
+ "last_raw_score_gap": 4.3211656475250493e-10,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06207551062107086,
+ "observability_min": 1.4644303547584059e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "a962b8ead45a86229fb9cf7b9f03622c1954eb0829104033f2a597af7f35b12d",
+ "raw_normalized_churn": 0.013276686139139671,
+ "raw_xor_churn_total": 250,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "9e25dbc0fdc4a24923a0d2d2184eb8a6e1c63526d738d57bd701c736029e4ec6",
+ "committed_normalized_churn": 0.0017557861133280128,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6254,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.553812121026567e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": -0.4623262286186218,
+ "last_committed_score_gap": -3.0557946502085542e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.700091610880918e-06,
+ "last_raw_mask_overlap": 174,
+ "last_raw_normalized_gap": 0.0032718260772526264,
+ "last_raw_score_gap": 1.2106056601624005e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04210856184363365,
+ "observability_min": 6.62916965765703e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "acda287718c0272086796939426bd5580d29ce1dc106d31012598835253f9654",
+ "raw_normalized_churn": 0.012769353551476457,
+ "raw_xor_churn_total": 160,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "c96d1aaae138d81d0e87b1182d221a9564937d06e32f69e3f127ded919b90988",
+ "committed_normalized_churn": 0.0007722007722007722,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 6470,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.146720915647165e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.12025666236877441,
+ "last_committed_score_gap": 9.796974609344034e-08,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.146720915647165e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.12025666236877441,
+ "last_raw_score_gap": 9.796974609344034e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0399278849363327,
+ "observability_min": 6.367726967937415e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "c96d1aaae138d81d0e87b1182d221a9564937d06e32f69e3f127ded919b90988",
+ "raw_normalized_churn": 0.003861003861003861,
+ "raw_xor_churn_total": 50,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "29c17cfb66f5a91db194049c22dccbff7b252aad63e4571d96adf78376f1cd85",
+ "committed_normalized_churn": 0.006802721088435374,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3650,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.522454281006503e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": -0.1581438183784485,
+ "last_committed_score_gap": -4.738464554066013e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.9963007364131045e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.04959005117416382,
+ "last_raw_score_gap": 1.4858670738249202e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050279948860406876,
+ "observability_min": 3.82527041153935e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "0eb85a68e9e21d2ca5257012f963b652f30e00d6aa88a261d0e5981a3c110a19",
+ "raw_normalized_churn": 0.033197278911564626,
+ "raw_xor_churn_total": 244,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "be5b794da1444a452b92ee93b48e32b6ea1a199fc793df7ac5c8cab667dd2eb8",
+ "committed_normalized_churn": 0.002142857142857143,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2794,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3957408100395696e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.38842207193374634,
+ "last_committed_score_gap": -8.864553819876164e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.9131734916300047e-06,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.1286069005727768,
+ "last_raw_score_gap": 2.460473069731961e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05117727071046829,
+ "observability_min": 1.2799138460195536e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "1bc7532a6f4f738566663106c050bcfaf33bf85694d5ecf2927960dd7a9de601",
+ "raw_normalized_churn": 0.02107142857142857,
+ "raw_xor_churn_total": 118,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "f5a2c8636b01f19ca1bb1dc5345636ffd193c262f62df9fe545710429e37a6b1",
+ "committed_normalized_churn": 0.0026578073089701,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1501,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.779862928851799e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.5974939465522766,
+ "last_committed_score_gap": 4.0509269183530705e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 6.779862928851799e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.5974939465522766,
+ "last_raw_score_gap": 4.0509269183530705e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0577864944934845,
+ "observability_min": 1.6578314898652025e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "f5a2c8636b01f19ca1bb1dc5345636ffd193c262f62df9fe545710429e37a6b1",
+ "raw_normalized_churn": 0.015946843853820596,
+ "raw_xor_churn_total": 48,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "995e682cf5ba4a14c044bb72334f97563f0a1e8edd97733f63718f4e948cfbe3",
+ "committed_normalized_churn": 0.012585034013605442,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2903,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.662576623739369e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": -0.44515669345855713,
+ "last_committed_score_gap": -5.345456344230115e-08,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 8.165379483671131e-08,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.04710805416107178,
+ "last_raw_score_gap": 3.846551521746733e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04450445622205734,
+ "observability_min": 1.4816329496625258e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "69cf0ff6d0f07eda6daca75947d0b7043bfca81e5b0c33551cdc83b02459405f",
+ "raw_normalized_churn": 0.05374149659863946,
+ "raw_xor_churn_total": 316,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "7508bb72880256a03db68833b9791126e91b14052c135786cfdef8ef60586975",
+ "committed_normalized_churn": 0.010476190476190476,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1039,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.104202035814524e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": -0.3910422623157501,
+ "last_committed_score_gap": -5.846263775310945e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 1.0989101610903163e-05,
+ "last_raw_mask_overlap": 28,
+ "last_raw_normalized_gap": 0.1457267850637436,
+ "last_raw_score_gap": 1.60140643856721e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.028063084930181503,
+ "observability_min": 3.482648480712669e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "d3f3faddc058989295220e1598963dcf8bcc9cc0826014d303b64fae9af45b86",
+ "raw_normalized_churn": 0.05904761904761905,
+ "raw_xor_churn_total": 124,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "1f2efb11e8c341ce861f6027c4dc653f174f62db567ea4afabe1b42703a19473",
+ "committed_normalized_churn": 0.01566820276497696,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2136,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3247681351913343e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": -0.8081465363502502,
+ "last_committed_score_gap": -5.580335482591181e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.755803964442748e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.07276899367570877,
+ "last_raw_score_gap": 1.2776808944181539e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06051419675350189,
+ "observability_min": 2.959417244596807e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "54c11f9bb7847d5ce2d63928eef3cc864ce6d5762f43c00520a5501695ba310b",
+ "raw_normalized_churn": 0.07142857142857142,
+ "raw_xor_churn_total": 310,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "fedc256a7fa7d02270c10508ce7bd0a9374a1e7bb7ca2508895291143a210465",
+ "committed_normalized_churn": 0.009523809523809525,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1872,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1352921802654237e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.2748459279537201,
+ "last_committed_score_gap": -4.302953726664782e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.565587552931902e-07,
+ "last_raw_mask_overlap": 50,
+ "last_raw_normalized_gap": 0.16810478270053864,
+ "last_raw_score_gap": 2.6318275558878668e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08929665386676788,
+ "observability_min": 9.921404142687607e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "8ce14b2f838749007bdede06549a46698eb94ccc10f4b6d2e2e6087038f2ff4c",
+ "raw_normalized_churn": 0.06349206349206349,
+ "raw_xor_churn_total": 240,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "c85ac39184aa0bc574bfedbdb9615f99cb354449744f337a7834a5bd7934160a",
+ "committed_normalized_churn": 0.0006349206349206349,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1574,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8105301933246665e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.8368147015571594,
+ "last_committed_score_gap": 1.5150782928685658e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.8105301933246665e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.8368147015571594,
+ "last_raw_score_gap": 1.5150782928685658e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10803094506263733,
+ "observability_min": 1.503943458658341e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "c85ac39184aa0bc574bfedbdb9615f99cb354449744f337a7834a5bd7934160a",
+ "raw_normalized_churn": 0.005079365079365079,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "48f212b53a6b789454c9e5865eaf8ec70f94e6940f918e8e97b11765b50ec523",
+ "committed_normalized_churn": 0.0021164021164021165,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 943,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4893262232362758e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8064577579498291,
+ "last_committed_score_gap": 1.201078703161329e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.4893262232362758e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8064577579498291,
+ "last_raw_score_gap": 1.201078703161329e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11300962418317795,
+ "observability_min": 6.593347734451527e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "48f212b53a6b789454c9e5865eaf8ec70f94e6940f918e8e97b11765b50ec523",
+ "raw_normalized_churn": 0.004232804232804233,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0006603511865250766,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9176920652389526,
+ "last_committed_score_gap": 0.0006059990264475346,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0006603511865250766,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9176920652389526,
+ "last_raw_score_gap": 0.0006059990264475346,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09247082471847534,
+ "observability_min": 6.009017994301757e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.006349206349206349,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 313,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.146537917724345e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": -0.021065635606646538,
+ "last_committed_score_gap": -4.6191235014703125e-07,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 2.192729152739048e-05,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.021065635606646538,
+ "last_raw_score_gap": 4.6191235014703125e-07,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1072969064116478,
+ "observability_min": 2.1689503526545195e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "339c26375343120b33b48d8addff6539f538e83cb5e927b417dffc82d85215f4",
+ "raw_normalized_churn": 0.05714285714285714,
+ "raw_xor_churn_total": 36,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d7e3683d5ef244bae9caee385867a33406f389a47cfe18377bafcd95bab3861a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.05533311702311e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.43519094586372375,
+ "last_committed_score_gap": 3.0704170058015734e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.05533311702311e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.43519094586372375,
+ "last_raw_score_gap": 3.0704170058015734e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.13417866826057434,
+ "observability_min": 1.858611575755731e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d7e3683d5ef244bae9caee385867a33406f389a47cfe18377bafcd95bab3861a",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "4722edaf9f8d1227864849d74307a4b5bb6c32dcbf821d63a1d943934a3d7f5b",
+ "committed_normalized_churn": 0.0015584415584415584,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1922,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.869549451948842e-06,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.3198081851005554,
+ "last_committed_score_gap": 2.1969381123199128e-06,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 6.869549451948842e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.3198081851005554,
+ "last_raw_score_gap": 2.1969381123199128e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11838023364543915,
+ "observability_min": 3.2515654613263223e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "4722edaf9f8d1227864849d74307a4b5bb6c32dcbf821d63a1d943934a3d7f5b",
+ "raw_normalized_churn": 0.0015584415584415584,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ }
+ ],
+ "task_id": 920
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 109,
+ "committed_mask_sha256": "bd700be240d0acae9fa655f658e2edc95d25adb9c80769225cb9ff05acf11470",
+ "committed_normalized_churn": 0.002291360100903931,
+ "committed_xor_churn_total": 218,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 47461,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 7.12927672452679e-08,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": -0.872870147228241,
+ "last_committed_score_gap": -4.894944822808611e-07,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 9.098810949126346e-08,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.11516989767551422,
+ "last_raw_score_gap": 1.0479091372417315e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03392743691802025,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "116cc64ac0f7cc9335b8f3a94bf1b0d1f722eec7f6ad085498138629e38f3122",
+ "raw_normalized_churn": 0.017553079672062225,
+ "raw_xor_churn_total": 1670,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 133,
+ "committed_mask_sha256": "45a9100ce95b43e47d1c9f63511e8449540016a6eae543d8dd7dd8e0c5123814",
+ "committed_normalized_churn": 0.0026119402985074628,
+ "committed_xor_churn_total": 266,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 50787,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 4.563994460138332e-10,
+ "last_committed_mask_overlap": 379,
+ "last_committed_normalized_gap": -0.9978693127632141,
+ "last_committed_score_gap": -2.137475831887059e-07,
+ "last_dwell_count": 379,
+ "last_raw_cutoff_score": 3.323260600041067e-08,
+ "last_raw_mask_overlap": 362,
+ "last_raw_normalized_gap": 0.013378451578319073,
+ "last_raw_score_gap": 4.446008006198099e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.13618925213813782,
+ "observability_min": 1.5930451402468293e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "5cc4e30524c75526a328b7184843596481d19f718aff9c56f0952fb08b33ca65",
+ "raw_normalized_churn": 0.02668892380204242,
+ "raw_xor_churn_total": 2718,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 41,
+ "committed_mask_sha256": "6a9c86d01189b2c06f2291cf2f04a0e1adfbf3a50da525333820f0948fc20ef8",
+ "committed_normalized_churn": 0.0011374354990845031,
+ "committed_xor_churn_total": 82,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 36005,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 5.806584990608599e-09,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.9900344610214233,
+ "last_committed_score_gap": -5.768621917923156e-07,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 7.014852343445455e-08,
+ "last_raw_mask_overlap": 262,
+ "last_raw_normalized_gap": 0.0027480300050228834,
+ "last_raw_score_gap": 1.9277024421171518e-10,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07182031124830246,
+ "observability_min": 3.1617326534671975e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "297fa989f1fa8ef650d158965ea0b8c90fff08330cb020133b2f29a3acd30691",
+ "raw_normalized_churn": 0.013094379404094768,
+ "raw_xor_churn_total": 944,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "7301aef5eaa19a2265ca03f71fe4a7ceb3511971745f0bae3ec5ca02a10b5789",
+ "committed_normalized_churn": 0.0008338197281747686,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 23966,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.4374062377319206e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.5625422596931458,
+ "last_committed_score_gap": 1.3711439805774717e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.4374062377319206e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.5625422596931458,
+ "last_raw_score_gap": 1.3711439805774717e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04170142114162445,
+ "observability_min": 3.5934606401610836e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "7301aef5eaa19a2265ca03f71fe4a7ceb3511971745f0bae3ec5ca02a10b5789",
+ "raw_normalized_churn": 0.009463853914783623,
+ "raw_xor_churn_total": 454,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "55b9fd3748c51d7f5b304271f874bdcd0122e613fdafe28d4b5c8e795cb12a59",
+ "committed_normalized_churn": 0.0007664380798709157,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 24771,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 3.2696723906155967e-07,
+ "last_committed_mask_overlap": 184,
+ "last_committed_normalized_gap": -0.25227847695350647,
+ "last_committed_score_gap": -1.1031752933376993e-07,
+ "last_dwell_count": 184,
+ "last_raw_cutoff_score": 4.372847683953296e-07,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.25227847695350647,
+ "last_raw_score_gap": 1.1031752933376993e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04359448701143265,
+ "observability_min": 2.463766968219261e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "4dbaedff1850db01c462095e3a7c12723f337a448b9c9c2227d58173ee8de7cf",
+ "raw_normalized_churn": 0.005486083098023397,
+ "raw_xor_churn_total": 272,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 61,
+ "committed_mask_sha256": "bbebefdeda3af8690ef332b088b7e4c416e65ff01da1a1eff5e8a4e5e7a4d988",
+ "committed_normalized_churn": 0.00433546552949538,
+ "committed_xor_churn_total": 122,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 14009,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.0848494042269294e-09,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": -0.9860694408416748,
+ "last_committed_score_gap": -1.4757507926788094e-07,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 7.044300787129032e-08,
+ "last_raw_mask_overlap": 97,
+ "last_raw_normalized_gap": 0.00860805343836546,
+ "last_raw_score_gap": 6.063771706976695e-10,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.061117660254240036,
+ "observability_min": 2.334379356483396e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "584d9e96f3c0777cfedb77c95066b348805daebe660020218c90e1fffd6b8d7b",
+ "raw_normalized_churn": 0.030632551528073915,
+ "raw_xor_churn_total": 862,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "62620ae2ef6322f6bb2365ebb13d41b390ab8516e0f154f5df3fdd0e5fb2f050",
+ "committed_normalized_churn": 0.001212686567164179,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 10707,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.2767982816039876e-07,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.7527613043785095,
+ "last_committed_score_gap": -9.976783985621296e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.1000021231666324e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.2286473512649536,
+ "last_raw_score_gap": 2.5151257432298735e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06302253156900406,
+ "observability_min": 1.181938671379612e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "7e781df99e3321c0ff457cb68d01c9b442c99bfd3316a289d530846090e36708",
+ "raw_normalized_churn": 0.014085820895522388,
+ "raw_xor_churn_total": 302,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 21,
+ "committed_mask_sha256": "a52731c7eb3f0ff0d2a6f430bcc5be1215006413d9fcd995e86f9bb779fcb827",
+ "committed_normalized_churn": 0.003644567858382506,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 5741,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.568366911897101e-07,
+ "last_committed_mask_overlap": 42,
+ "last_committed_normalized_gap": -0.5469818711280823,
+ "last_committed_score_gap": -1.8936732715246762e-07,
+ "last_dwell_count": 42,
+ "last_raw_cutoff_score": 3.411424813748454e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.014177676290273666,
+ "last_raw_score_gap": 4.836607558900141e-09,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07219880819320679,
+ "observability_min": 3.9243033711500175e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "2e1fc7d8ec174adae573b31e4cb4be440e4b9448f27e7d0200609e8bfe80d9c4",
+ "raw_normalized_churn": 0.028115237764665048,
+ "raw_xor_churn_total": 324,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 82,
+ "committed_mask_sha256": "1efae5b5eeb19cf3e38517afcf9ea5f3b21053338d87bf03b99993334370d6c3",
+ "committed_normalized_churn": 0.00728500355366027,
+ "committed_xor_churn_total": 164,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 11174,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 3.93765446915495e-08,
+ "last_committed_mask_overlap": 82,
+ "last_committed_normalized_gap": -0.8756247758865356,
+ "last_committed_score_gap": -2.772182483568031e-07,
+ "last_dwell_count": 82,
+ "last_raw_cutoff_score": 7.55677547203959e-08,
+ "last_raw_mask_overlap": 73,
+ "last_raw_normalized_gap": 0.00923686008900404,
+ "last_raw_score_gap": 6.98008761901292e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.055269207805395126,
+ "observability_min": 3.8265330459807956e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "380080b9222d7dd9ed5522a8b930c807357b3d660f47296a28bf3d2ab88f7062",
+ "raw_normalized_churn": 0.05223880597014925,
+ "raw_xor_churn_total": 1176,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "ee8f94322c2c4633f8899bf60c1ad2d381745dc7bef557ff57406e517e380ebd",
+ "committed_normalized_churn": 0.00845771144278607,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 3986,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.700965746451402e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.6902753710746765,
+ "last_committed_score_gap": -1.0476924217073247e-05,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 7.186494713096181e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.3332520127296448,
+ "last_raw_score_gap": 2.3949137357703876e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06288373470306396,
+ "observability_min": 7.675900803860713e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "7af2044e36430bf05674c9b6dd42ca966eb1fd6dd2e21d8f8a7381942c378846",
+ "raw_normalized_churn": 0.04328358208955224,
+ "raw_xor_churn_total": 348,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 68,
+ "committed_mask_sha256": "29005ee1bbcd75467bb5e0381d5e7eea0bd0fd2f597e42b81fb7247de56d7c0a",
+ "committed_normalized_churn": 0.008184882041405874,
+ "committed_xor_churn_total": 136,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 8240,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 1.2459705089895579e-07,
+ "last_committed_mask_overlap": 56,
+ "last_committed_normalized_gap": -0.4583395719528198,
+ "last_committed_score_gap": -1.054309279879817e-07,
+ "last_dwell_count": 56,
+ "last_raw_cutoff_score": 1.3821980360262387e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.012992432340979576,
+ "last_raw_score_gap": 1.795811499505362e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.049396973103284836,
+ "observability_min": 2.9028646153506088e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "aeaca48dad8f4d7dfb6bf4397aac38e14aab37cf247fc04632c250726d9df9aa",
+ "raw_normalized_churn": 0.053923928743379874,
+ "raw_xor_churn_total": 896,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "64f744121292f7ca32c0db87887bb81745d319d61c8189fe594a3b5c43e409e8",
+ "committed_normalized_churn": 0.0031785516860143724,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 7213,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.653705439252917e-08,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.9587787985801697,
+ "last_committed_score_gap": -3.846411402719241e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.8467649454123602e-07,
+ "last_raw_mask_overlap": 48,
+ "last_raw_normalized_gap": 0.17068369686603546,
+ "last_raw_score_gap": 3.152126737404615e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1250056028366089,
+ "observability_min": 6.264698981794936e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "9e5d03f5c6b05cf149f51c7fd759b76a15638fbacc390664ef039e92e792382c",
+ "raw_normalized_churn": 0.02736318407960199,
+ "raw_xor_churn_total": 396,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "9035a724b2095d4e9228a3b67d9c7b7e28b3d32535d6c8e747ac558a134f469f",
+ "committed_normalized_churn": 0.0004975124378109452,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 6027,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.1260451578418724e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.2431575059890747,
+ "last_committed_score_gap": 7.601213383168215e-07,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 3.1260451578418724e-06,
+ "last_raw_mask_overlap": 44,
+ "last_raw_normalized_gap": 0.2431575059890747,
+ "last_raw_score_gap": 7.601213383168215e-07,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11168286949396133,
+ "observability_min": 3.2231397995019506e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "9035a724b2095d4e9228a3b67d9c7b7e28b3d32535d6c8e747ac558a134f469f",
+ "raw_normalized_churn": 0.0067993366500829185,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "575bfec5bbd2e3046fbed389997d5a41ac1fb69013855034284d1f6ffbf05b4e",
+ "committed_normalized_churn": 0.0019347705914870095,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 3611,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.238427770062117e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.6023642420768738,
+ "last_committed_score_gap": 4.36016989624477e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 7.238427770062117e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.6023642420768738,
+ "last_raw_score_gap": 4.36016989624477e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11875496059656143,
+ "observability_min": 1.1779865971561776e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "575bfec5bbd2e3046fbed389997d5a41ac1fb69013855034284d1f6ffbf05b4e",
+ "raw_normalized_churn": 0.011885019347705915,
+ "raw_xor_churn_total": 86,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 938,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0008570690406486392,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9709259271621704,
+ "last_committed_score_gap": 0.0008321505738422275,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0008570690406486392,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9709259271621704,
+ "last_raw_score_gap": 0.0008321505738422275,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09921064227819443,
+ "observability_min": 2.998323367364719e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0021321961620469083,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "8bd010c01c47af812e1e9865f16218d6f1f4dc670fd8555aa79630586ea30d37",
+ "committed_normalized_churn": 0.0024875621890547263,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 1203,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.155140024726279e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.34401077032089233,
+ "last_committed_score_gap": 1.7734237189870328e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 5.155140024726279e-05,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.34401077032089233,
+ "last_raw_score_gap": 1.7734237189870328e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1069256067276001,
+ "observability_min": 1.3512159391382284e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "8bd010c01c47af812e1e9865f16218d6f1f4dc670fd8555aa79630586ea30d37",
+ "raw_normalized_churn": 0.04228855721393035,
+ "raw_xor_churn_total": 102,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "b7005e384bcca257eba558286f3b737be560a83d48bf902e22cb6af4d273d253",
+ "committed_normalized_churn": 0.0021321961620469083,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 936,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00014107294555287808,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9077017903327942,
+ "last_committed_score_gap": 0.00012805216829292476,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00014107294555287808,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9077017903327942,
+ "last_raw_score_gap": 0.00012805216829292476,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12452036142349243,
+ "observability_min": 1.3498148376811514e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "b7005e384bcca257eba558286f3b737be560a83d48bf902e22cb6af4d273d253",
+ "raw_normalized_churn": 0.013859275053304905,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "1ed55498751e3a01bbf9242fbb6a76fae0ab6f2259107e345d8eb9f6972eaa90",
+ "committed_normalized_churn": 0.000542740841248304,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 7366,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.05008244747296e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.1387491226196289,
+ "last_committed_score_gap": 8.394436008529738e-07,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 6.05008244747296e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.1387491226196289,
+ "last_raw_score_gap": 8.394436008529738e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11471416801214218,
+ "observability_min": 1.1003374211782102e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "1ed55498751e3a01bbf9242fbb6a76fae0ab6f2259107e345d8eb9f6972eaa90",
+ "raw_normalized_churn": 0.0025780189959294436,
+ "raw_xor_churn_total": 38,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ }
+ ],
+ "task_id": 771
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 21,
+ "committed_mask_sha256": "be77c482c44b3ef3ae6dcc66e13d0a26887e3e23df99eeea1d95bac5a42ff7d4",
+ "committed_normalized_churn": 0.0012859767299448867,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 16309,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.1080191342216494e-07,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.9669753909111023,
+ "last_committed_score_gap": -3.244327217544196e-06,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.6697100591045455e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.05363418534398079,
+ "last_raw_score_gap": 8.955353791861853e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03273673728108406,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "3ebbd2dff239ad1b3cf67c6c1ec15aaf8d197eeeab7cfe962947ae005d755246",
+ "raw_normalized_churn": 0.010471524800979792,
+ "raw_xor_churn_total": 342,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 80,
+ "committed_mask_sha256": "0621e87eb9c941462c9ef0c81c00180d3eee3cf211fdaacd63720638b677e5fc",
+ "committed_normalized_churn": 0.004576659038901602,
+ "committed_xor_churn_total": 160,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 17400,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.47098952410596e-10,
+ "last_committed_mask_overlap": 379,
+ "last_committed_normalized_gap": -0.9868098497390747,
+ "last_committed_score_gap": -1.848644259894172e-08,
+ "last_dwell_count": 379,
+ "last_raw_cutoff_score": 6.970119148519416e-09,
+ "last_raw_mask_overlap": 362,
+ "last_raw_normalized_gap": 0.03084302879869938,
+ "last_raw_score_gap": 2.1497958968552666e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10394617915153503,
+ "observability_min": 1.6671589664341013e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "10ead61cddb2db437a099f7c7cbfa957294396152b27bb3b702bacb67c342fce",
+ "raw_normalized_churn": 0.03363844393592677,
+ "raw_xor_churn_total": 1176,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 28,
+ "committed_mask_sha256": "77ad39b98d73edcd211a6b5ecda4c0ba6b69f8484355dc5c45ba3eeb2ad1bfc2",
+ "committed_normalized_churn": 0.0022628091158881525,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 12346,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.2420418854807167e-09,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.9863439798355103,
+ "last_committed_score_gap": -1.6193793328511674e-07,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 7.454268313722423e-08,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.04143104329705238,
+ "last_raw_score_gap": 3.088381106408633e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05507059022784233,
+ "observability_min": 5.774032363348169e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "8df9e56a35b681fa6c05767d6feae317dc023dfd384b124c1abf04fadd81b76d",
+ "raw_normalized_churn": 0.016405366090189107,
+ "raw_xor_churn_total": 406,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 16,
+ "committed_mask_sha256": "c9ec80fcd7f26ad018e23255a9ff308deb0176eb89584b11489549a606b09b84",
+ "committed_normalized_churn": 0.0019431624969638087,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 8218,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.2149383767100517e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": -0.09157837927341461,
+ "last_committed_score_gap": -2.232889073638944e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.438227284073946e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.09157837927341461,
+ "last_raw_score_gap": 2.232889073638944e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.042696136981248856,
+ "observability_min": 1.6280009562663622e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "cb54bf2d61f2f7119d0ceb46c81cdef4706a287dada009abeac00abd67f35441",
+ "raw_normalized_churn": 0.010687393733300948,
+ "raw_xor_churn_total": 176,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "eda6b8aabf3420bf0b94c37c83de7bb249029284ae8a125d9bd63ebc64af4c01",
+ "committed_normalized_churn": 0.0007050528789659225,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 8504,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.843854645107058e-07,
+ "last_committed_mask_overlap": 184,
+ "last_committed_normalized_gap": -0.5385103225708008,
+ "last_committed_score_gap": -3.3184818448717124e-07,
+ "last_dwell_count": 184,
+ "last_raw_cutoff_score": 6.16233648997877e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.3695214092731476,
+ "last_raw_score_gap": 2.2771152430323127e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.031236806884407997,
+ "observability_min": 2.2278420774846097e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "1c32c93680d19b040e6675515fcb3e1b73ee0333afbaae24930214eb316383a4",
+ "raw_normalized_churn": 0.005052878965922444,
+ "raw_xor_churn_total": 86,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 26,
+ "committed_mask_sha256": "3c59c31a87d8faec5949055a956f03b94d0a80b36545695d5e86abe9dc71baa0",
+ "committed_normalized_churn": 0.005383022774327122,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 4804,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 5.545155801200963e-08,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": -0.9250013828277588,
+ "last_committed_score_gap": -6.839158004368073e-07,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.8805649776586506e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.09803605824708939,
+ "last_raw_score_gap": 2.8239924176887143e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05108188837766647,
+ "observability_min": 6.447141931431588e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "20fad90ce11776fdb9537538e6d50d998666a3b2d6e145623d746556f114c127",
+ "raw_normalized_churn": 0.027122153209109733,
+ "raw_xor_churn_total": 262,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "02bb0c98ff5eb95d89ad81ae282af36154ed406003ca9a402777cc97f55f3dfb",
+ "committed_normalized_churn": 0.002989130434782609,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 3669,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.285987309529446e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.718293309211731,
+ "last_committed_score_gap": -3.2789998840598855e-06,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.659695499256486e-06,
+ "last_raw_mask_overlap": 77,
+ "last_raw_normalized_gap": 0.013963030651211739,
+ "last_raw_score_gap": 2.3174379748525098e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04897488281130791,
+ "observability_min": 2.1642843250901933e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "a81d22b8c61907798940626c02aa59d9d33f987693f4dc22cf14cbb52790a7fb",
+ "raw_normalized_churn": 0.02282608695652174,
+ "raw_xor_churn_total": 168,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "6e1310cf8a4db62e3758e44c466836b620132013290f7d08e3aea5ba9827efc6",
+ "committed_normalized_churn": 0.0025278058645096056,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1973,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.674051131634769e-07,
+ "last_committed_mask_overlap": 42,
+ "last_committed_normalized_gap": -0.5684832334518433,
+ "last_committed_score_gap": -3.5228137562626216e-07,
+ "last_dwell_count": 42,
+ "last_raw_cutoff_score": 3.117342259884026e-07,
+ "last_raw_mask_overlap": 38,
+ "last_raw_normalized_gap": 0.14220161736011505,
+ "last_raw_score_gap": 4.432911282492569e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.057068150490522385,
+ "observability_min": 3.8989057316030085e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "08026470fe2fc6d0bf92a2a0f25ba0bee9c3afed69409a2e68c08db7181899e4",
+ "raw_normalized_churn": 0.024266936299292215,
+ "raw_xor_churn_total": 96,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 44,
+ "committed_mask_sha256": "5722b4b8026a0443240f2730e39b22a001e9ef1a0229546a8e354939982ab141",
+ "committed_normalized_churn": 0.011387163561076604,
+ "committed_xor_churn_total": 88,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 3820,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2558483319935476e-07,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.7121899127960205,
+ "last_committed_score_gap": -3.1076132245289045e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.3214560112828622e-07,
+ "last_raw_mask_overlap": 77,
+ "last_raw_normalized_gap": 0.0405874028801918,
+ "last_raw_score_gap": 5.363446575756825e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.038423821330070496,
+ "observability_min": 9.851518001369186e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "f175bd268461db3d79ad4c566391e1537e4ec7cc42e466a83764e278ebf58659",
+ "raw_normalized_churn": 0.06030020703933747,
+ "raw_xor_churn_total": 466,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "b4fcea3ba16d673a5664b3afe97e4f91d5576f724515377795955d30ffa4d24d",
+ "committed_normalized_churn": 0.012318840579710146,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1363,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.537534202128882e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.07224854081869125,
+ "last_committed_score_gap": 5.445758688438218e-07,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 7.537534202128882e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.07224854081869125,
+ "last_raw_score_gap": 5.445758688438218e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03769998252391815,
+ "observability_min": 7.77371553795092e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "b4fcea3ba16d673a5664b3afe97e4f91d5576f724515377795955d30ffa4d24d",
+ "raw_normalized_churn": 0.06304347826086956,
+ "raw_xor_churn_total": 174,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 39,
+ "committed_mask_sha256": "c9c61acd8d96f1feab7967dcdd1eab6716f300a94c25bbcf083bdc21a808d820",
+ "committed_normalized_churn": 0.01367461430575035,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2813,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.130435536988443e-08,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": -0.7543185949325562,
+ "last_committed_score_gap": -1.8822350966729573e-07,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.730956853407406e-07,
+ "last_raw_mask_overlap": 58,
+ "last_raw_normalized_gap": 0.07323214411735535,
+ "last_raw_score_gap": 1.2676167671088479e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.035040948539972305,
+ "observability_min": 3.1413557621817745e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b17f9d9738c23994082f1c678eab75ca57d6337bb7d42739fd97764dedaa2fce",
+ "raw_normalized_churn": 0.07643758765778401,
+ "raw_xor_churn_total": 436,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "c78264156b7ca63d7bc8b5ea5bc674c68fc82c3aea9ba80ff80ea70421b0badf",
+ "committed_normalized_churn": 0.004025764895330112,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 2474,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.8207812502168963e-07,
+ "last_committed_mask_overlap": 53,
+ "last_committed_normalized_gap": 0.014063100330531597,
+ "last_committed_score_gap": 2.560582856858673e-09,
+ "last_dwell_count": 53,
+ "last_raw_cutoff_score": 1.8207812502168963e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.014063100330531597,
+ "last_raw_score_gap": 2.560582856858673e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08980627357959747,
+ "observability_min": 8.101605430965719e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "c78264156b7ca63d7bc8b5ea5bc674c68fc82c3aea9ba80ff80ea70421b0badf",
+ "raw_normalized_churn": 0.04589371980676329,
+ "raw_xor_churn_total": 228,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "4a1b6283eb845adfecb6a9e92f0ec8645bd42f42568ee4ea1d984d7342cd5397",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 2070,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6531575965927914e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.6264142990112305,
+ "last_committed_score_gap": 1.0355615813750774e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.6531575965927914e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.6264142990112305,
+ "last_raw_score_gap": 1.0355615813750774e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10706496238708496,
+ "observability_min": 1.7560244813807913e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "4a1b6283eb845adfecb6a9e92f0ec8645bd42f42568ee4ea1d984d7342cd5397",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "91ed1ab4153a1a83ff7caecd8b701ac042ab57e0407ea9a8370c89fdca0febe4",
+ "committed_normalized_churn": 0.00322061191626409,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 1238,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.035140212479746e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.5282583236694336,
+ "last_committed_score_gap": 5.468214112624992e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.035140212479746e-05,
+ "last_raw_mask_overlap": 26,
+ "last_raw_normalized_gap": 0.5282583236694336,
+ "last_raw_score_gap": 5.468214112624992e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11440794169902802,
+ "observability_min": 3.6993494489934164e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "91ed1ab4153a1a83ff7caecd8b701ac042ab57e0407ea9a8370c89fdca0febe4",
+ "raw_normalized_churn": 0.018518518518518517,
+ "raw_xor_churn_total": 46,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 322,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0004839122120756656,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.5280378460884094,
+ "last_committed_score_gap": 0.00025552394799888134,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0004839122120756656,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.5280378460884094,
+ "last_raw_score_gap": 0.00025552394799888134,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09315712004899979,
+ "observability_min": 7.708651850180104e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "committed_normalized_churn": 0.004830917874396135,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 412,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.302108471980318e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.08580995351076126,
+ "last_committed_score_gap": 7.124035619199276e-06,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 8.302108471980318e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.08580995351076126,
+ "last_raw_score_gap": 7.124035619199276e-06,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1034938246011734,
+ "observability_min": 3.5536508846689685e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "raw_normalized_churn": 0.028985507246376812,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "4ba6d105586f7ba05ad61ea0b8868329bd782abc7b89ac5cf446e465523f9b9a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 322,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.907088729552925e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7430335879325867,
+ "last_committed_score_gap": 5.875232454854995e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.907088729552925e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7430335879325867,
+ "last_raw_score_gap": 5.875232454854995e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12083941698074341,
+ "observability_min": 6.451701750620487e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "4ba6d105586f7ba05ad61ea0b8868329bd782abc7b89ac5cf446e465523f9b9a",
+ "raw_normalized_churn": 0.018633540372670808,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "27de94b6f0170f4a838d6175f8211533962d314370271c49dc1640af9ebedc57",
+ "committed_normalized_churn": 0.0015810276679841897,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 2526,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.7051247545605293e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.2517986297607422,
+ "last_committed_score_gap": 9.329453405371169e-07,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 3.7051247545605293e-06,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.2517986297607422,
+ "last_raw_score_gap": 9.329453405371169e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1152687594294548,
+ "observability_min": 1.7598330570578469e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "27de94b6f0170f4a838d6175f8211533962d314370271c49dc1640af9ebedc57",
+ "raw_normalized_churn": 0.005533596837944664,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ }
+ ],
+ "task_id": 869
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "1a340727189d49f02b92f9f5b88b3ee5dbd964aacc23d984b3b1b436905e8ec7",
+ "committed_normalized_churn": 0.00193158953722334,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 12401,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.4121646074727323e-07,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.9398806691169739,
+ "last_committed_score_gap": -2.2077210815041326e-06,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.4242753820781218e-07,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.008503112941980362,
+ "last_raw_score_gap": 1.2110774605389452e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04387785866856575,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "4e9bad0f5695aa320d087ee4623dc7da9e7b2a7a1d8d3809134d1c9d84032e66",
+ "raw_normalized_churn": 0.011911468812877263,
+ "raw_xor_churn_total": 296,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 33,
+ "committed_mask_sha256": "323940cc0956dcc53b79ff46c588115fa130ea7033acd57d0739e9844bb0cc25",
+ "committed_normalized_churn": 0.002481203007518797,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 13267,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0547490880696841e-08,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.6269765496253967,
+ "last_committed_score_gap": -1.772818691847533e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 1.8917134525509027e-08,
+ "last_raw_mask_overlap": 371,
+ "last_raw_normalized_gap": 0.03314834460616112,
+ "last_raw_score_gap": 6.270717278766824e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10000377148389816,
+ "observability_min": 5.7481804038861384e-11,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "325d71961a4bd4ba96b8c28f78d4a705e399528f2738e8d6f84832fa1413f1de",
+ "raw_normalized_churn": 0.02669172932330827,
+ "raw_xor_churn_total": 710,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "791833445828e38ed58c6d12e65b9b038b87be3efedb8d5dc94531dc4e7b2cf1",
+ "committed_normalized_churn": 0.0006372809346787042,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 9409,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.93965632234017e-09,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9810192584991455,
+ "last_committed_score_gap": -3.0699098374498135e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 6.035926958247728e-08,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.06243622675538063,
+ "last_raw_score_gap": 3.76860498363385e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05750088393688202,
+ "observability_min": 6.209987635230618e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "10e78fc64b4d6efa9400806186ead38f408180a22a1d11fd87de473856c4001c",
+ "raw_normalized_churn": 0.011364843335103559,
+ "raw_xor_churn_total": 214,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "59728471c870450d38e408882d81fbb2f9a2ec810d00fa39cd9582db907864b4",
+ "committed_normalized_churn": 0.0022346368715083797,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6251,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 3.001295908688917e-06,
+ "last_committed_mask_overlap": 178,
+ "last_committed_normalized_gap": 0.09556533396244049,
+ "last_committed_score_gap": 2.8681984076683875e-07,
+ "last_dwell_count": 178,
+ "last_raw_cutoff_score": 3.001295908688917e-06,
+ "last_raw_mask_overlap": 176,
+ "last_raw_normalized_gap": 0.09556533396244049,
+ "last_raw_score_gap": 2.8681984076683875e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04144706949591637,
+ "observability_min": 8.02137911648515e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "59728471c870450d38e408882d81fbb2f9a2ec810d00fa39cd9582db907864b4",
+ "raw_normalized_churn": 0.011492418196328812,
+ "raw_xor_churn_total": 144,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "c7ad5d841ed391f462af0bef02156993364b0a1ee0bdeacdfeb92a4e5a3205ab",
+ "committed_normalized_churn": 0.0009266409266409266,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 6469,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.870684726185573e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.263085275888443,
+ "last_committed_score_gap": 2.0706613668153295e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.870684726185573e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.263085275888443,
+ "last_raw_score_gap": 2.0706613668153295e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.026652365922927856,
+ "observability_min": 3.5504672979413954e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "c7ad5d841ed391f462af0bef02156993364b0a1ee0bdeacdfeb92a4e5a3205ab",
+ "raw_normalized_churn": 0.0027799227799227798,
+ "raw_xor_churn_total": 36,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "4fed8ad81ed0ee5b5cef473c6874ad65b2df850e6cf9ffcd9c247c9225c85e00",
+ "committed_normalized_churn": 0.004081632653061225,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3660,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7727407453094202e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": -0.31356456875801086,
+ "last_committed_score_gap": -8.097902082226938e-08,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 2.209720975088203e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.1633225679397583,
+ "last_raw_score_gap": 3.608973031532514e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03346637636423111,
+ "observability_min": 5.4301281693369674e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "e8c8e04feac6128c6edb94648c27cf9309d80457274a6e507c18c1651531a229",
+ "raw_normalized_churn": 0.028299319727891157,
+ "raw_xor_churn_total": 208,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "9a9698ff934c3b4ddabba84f5272069285929ae07014483174ebe678d1963d63",
+ "committed_normalized_churn": 0.0014285714285714286,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2796,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4874107137075043e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.04809719696640968,
+ "last_committed_score_gap": 7.154028480726993e-08,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.4874107137075043e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.04809719696640968,
+ "last_raw_score_gap": 7.154028480726993e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04726400226354599,
+ "observability_min": 2.763112263437506e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "9a9698ff934c3b4ddabba84f5272069285929ae07014483174ebe678d1963d63",
+ "raw_normalized_churn": 0.014642857142857143,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "aaa21ca79e56ac0ceb6cc16da9887ee286e21bcd77496d9e639735bf5991f4da",
+ "committed_normalized_churn": 0.000664451827242525,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1504,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.6544104748136306e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.5505145788192749,
+ "last_committed_score_gap": 2.562320844390342e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 4.6544104748136306e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.5505145788192749,
+ "last_raw_score_gap": 2.562320844390342e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05816830322146416,
+ "observability_min": 3.166797739595495e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "aaa21ca79e56ac0ceb6cc16da9887ee286e21bcd77496d9e639735bf5991f4da",
+ "raw_normalized_churn": 0.013289036544850499,
+ "raw_xor_churn_total": 40,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "74736eb9c806cefcf3f3c5cf077d46a57fa20d56c71c3b42f5250fd5af04ef99",
+ "committed_normalized_churn": 0.00510204081632653,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 2925,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 6.860959445020853e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": -0.46743273735046387,
+ "last_committed_score_gap": -6.021844001224963e-08,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 1.1422806522887186e-07,
+ "last_raw_mask_overlap": 82,
+ "last_raw_normalized_gap": 0.13184209167957306,
+ "last_raw_score_gap": 1.5060066971273045e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03683910146355629,
+ "observability_min": 5.67552547181549e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "9b3fe9a0978f6a4f6581d633eaec7cff4a43920568d8e998ed73d657a8089209",
+ "raw_normalized_churn": 0.04591836734693878,
+ "raw_xor_churn_total": 270,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "34fdae39a4be30be2fbcb85c7216bf5b1ffbe4467da82f158684c09386f66f7e",
+ "committed_normalized_churn": 0.01619047619047619,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1033,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 4.92281242259196e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.09052062034606934,
+ "last_committed_score_gap": 4.456160240806639e-07,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 4.92281242259196e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.09052062034606934,
+ "last_raw_score_gap": 4.456160240806639e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04097004607319832,
+ "observability_min": 4.952271979163925e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "34fdae39a4be30be2fbcb85c7216bf5b1ffbe4467da82f158684c09386f66f7e",
+ "raw_normalized_churn": 0.06571428571428571,
+ "raw_xor_churn_total": 138,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "dae679b659c54a1d0cb9bf63d288173bfdaa4eb16dc0272db5ce435af963776a",
+ "committed_normalized_churn": 0.0064516129032258064,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2156,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.539719960419461e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": 0.03914233669638634,
+ "last_committed_score_gap": 6.02682348471717e-09,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.539719960419461e-07,
+ "last_raw_mask_overlap": 60,
+ "last_raw_normalized_gap": 0.03914233669638634,
+ "last_raw_score_gap": 6.02682348471717e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05138210952281952,
+ "observability_min": 2.072222997639983e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "dae679b659c54a1d0cb9bf63d288173bfdaa4eb16dc0272db5ce435af963776a",
+ "raw_normalized_churn": 0.06175115207373272,
+ "raw_xor_churn_total": 268,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "a1bd676548850f0723e876a0e792eaa9998f3c77ca598d81bd0f16e8156da0df",
+ "committed_normalized_churn": 0.0068783068783068784,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1877,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.608206083389632e-08,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.7918264269828796,
+ "last_committed_score_gap": -1.7528158480217826e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.3165347922949877e-07,
+ "last_raw_mask_overlap": 50,
+ "last_raw_normalized_gap": 0.14750438928604126,
+ "last_raw_score_gap": 1.9419466923409345e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09838861227035522,
+ "observability_min": 4.857485791376348e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "0d0f42ef1abb6ce7261fcc0d70a1d310124138249899e3231856fadb8250a1c4",
+ "raw_normalized_churn": 0.043915343915343914,
+ "raw_xor_churn_total": 166,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "15bbc7ed2b2989dce16f707ff6dcfcda1cf0084f0c4ef1993479a04079a1aebe",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1575,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1491460099932738e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7583280801773071,
+ "last_committed_score_gap": 8.71429710969096e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.1491460099932738e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7583280801773071,
+ "last_raw_score_gap": 8.71429710969096e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10895545035600662,
+ "observability_min": 5.226752808340507e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "15bbc7ed2b2989dce16f707ff6dcfcda1cf0084f0c4ef1993479a04079a1aebe",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "706ea10702da88daeae7c15193a1b30e4ff2ab72d6bf79ec59cdc8fbc1364aaa",
+ "committed_normalized_churn": 0.0010582010582010583,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 944,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5484743926208466e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8188027143478394,
+ "last_committed_score_gap": 1.2678950042754877e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.5484743926208466e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8188027143478394,
+ "last_raw_score_gap": 1.2678950042754877e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11168736964464188,
+ "observability_min": 9.463283845434489e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "706ea10702da88daeae7c15193a1b30e4ff2ab72d6bf79ec59cdc8fbc1364aaa",
+ "raw_normalized_churn": 0.005291005291005291,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0009219471830874681,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8199681043624878,
+ "last_committed_score_gap": 0.000755967281293124,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0009219471830874681,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8199681043624878,
+ "last_raw_score_gap": 0.000755967281293124,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09164250642061234,
+ "observability_min": 8.32096205272137e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "committed_normalized_churn": 0.0031746031746031746,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 314,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.576267358264886e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.401563435792923,
+ "last_committed_score_gap": 2.239225068478845e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 5.576267358264886e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.401563435792923,
+ "last_raw_score_gap": 2.239225068478845e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10353658348321915,
+ "observability_min": 4.2343980766190725e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ca01a851c3ea1657a478721970e8da3687916003cce9a0d01a87b68cfdbfc068",
+ "raw_normalized_churn": 0.012698412698412698,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "committed_normalized_churn": 0.004081632653061225,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 244,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00017413079331163317,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7272859215736389,
+ "last_committed_score_gap": 0.00012664287351071835,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00017413079331163317,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7272859215736389,
+ "last_raw_score_gap": 0.00012664287351071835,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1190117746591568,
+ "observability_min": 4.1740570111414854e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "raw_normalized_churn": 0.004081632653061225,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "8f8b38c385d479170128a3902ba97641885a83c8c45b07824d4899205fd561a7",
+ "committed_normalized_churn": 0.0005194805194805195,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1924,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.943758646433707e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.49914178252220154,
+ "last_committed_score_gap": 3.965061750932364e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 7.943758646433707e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.49914178252220154,
+ "last_raw_score_gap": 3.965061750932364e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11070720851421356,
+ "observability_min": 6.057604640119507e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "8f8b38c385d479170128a3902ba97641885a83c8c45b07824d4899205fd561a7",
+ "raw_normalized_churn": 0.003116883116883117,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ }
+ ],
+ "task_id": 851
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "5b20a895351eed6ebb38cf92645d7ece9837bb03899a9735e1b5bf88892bfba3",
+ "committed_normalized_churn": 0.0017214397496087637,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 12758,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.9407527080138607e-08,
+ "last_committed_mask_overlap": 354,
+ "last_committed_normalized_gap": -0.9275289177894592,
+ "last_committed_score_gap": -3.7637511240973254e-07,
+ "last_dwell_count": 354,
+ "last_raw_cutoff_score": 1.1247276177073218e-07,
+ "last_raw_mask_overlap": 350,
+ "last_raw_normalized_gap": 0.05017494782805443,
+ "last_raw_score_gap": 5.643315148518013e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03661351278424263,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "23e141e3735e812f6691bd7a4c44bd776338b32f76954b03f8f9a2fa18dfb38d",
+ "raw_normalized_churn": 0.0107981220657277,
+ "raw_xor_churn_total": 276,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 40,
+ "committed_mask_sha256": "ccda38ba7342b64bbd7322f6a962de011fe6724d676331171e5844f6c884be42",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 80,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 13640,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.69217434403879e-09,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": -0.9628028869628906,
+ "last_committed_score_gap": -9.556747926353637e-08,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 2.3861922215928644e-08,
+ "last_raw_mask_overlap": 363,
+ "last_raw_normalized_gap": 0.0051697795279324055,
+ "last_raw_score_gap": 1.233608770689898e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10873386263847351,
+ "observability_min": 2.561356016173022e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "2ce8334ccd1837fba498f11a858341b9ddfd3be9f80e33ecc219ca687ccee9a4",
+ "raw_normalized_churn": 0.034868421052631576,
+ "raw_xor_churn_total": 954,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "365a2e537c8e9c32fc6c904c7115525a4d5745082ce9ff38589c7653d0cb3cfe",
+ "committed_normalized_churn": 0.0020652622883106154,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 9664,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.5337583687299343e-10,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": -0.9983172416687012,
+ "last_committed_score_gap": -2.689764926344651e-07,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.0084200141591282e-07,
+ "last_raw_mask_overlap": 262,
+ "last_raw_normalized_gap": 0.018181541934609413,
+ "last_raw_score_gap": 1.8334631590732897e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.057318948209285736,
+ "observability_min": 6.207802050184341e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "943af91daad44544b4d71a4f491e91e24bb9b6f299854ae2d43334eb08f5641b",
+ "raw_normalized_churn": 0.01621230896323833,
+ "raw_xor_churn_total": 314,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "30ec36b5e03065aa511fedbc6bfcfbe75682e78035322c84005dc82cc15ab01a",
+ "committed_normalized_churn": 0.0013966480446927375,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6435,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.982702769964817e-06,
+ "last_committed_mask_overlap": 178,
+ "last_committed_normalized_gap": 0.08322694152593613,
+ "last_committed_score_gap": 1.6501428490300896e-07,
+ "last_dwell_count": 178,
+ "last_raw_cutoff_score": 1.982702769964817e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.08322694152593613,
+ "last_raw_score_gap": 1.6501428490300896e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043467987328767776,
+ "observability_min": 1.3771362938896914e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "30ec36b5e03065aa511fedbc6bfcfbe75682e78035322c84005dc82cc15ab01a",
+ "raw_normalized_churn": 0.012414649286157667,
+ "raw_xor_churn_total": 160,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "580a586be59038bbb4d4a47f639c95f4a97883b146ac005f1cb17e96f91eddaf",
+ "committed_normalized_churn": 0.0009009009009009009,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 6654,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.628506182300043e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": -0.15904350578784943,
+ "last_committed_score_gap": -1.4427195083044353e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.920952723201481e-07,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.043210528790950775,
+ "last_raw_score_gap": 3.854790975310607e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03074106015264988,
+ "observability_min": 2.9293207859382164e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "22cfe5147531cc7cecf7e64856095c5921e154c6c0617b917d429ee919844672",
+ "raw_normalized_churn": 0.004954954954954955,
+ "raw_xor_churn_total": 66,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "2bfe4914c1d5be365d90f8b553a7502d9d76727fe7da8b677c782882e74fdbfc",
+ "committed_normalized_churn": 0.0050264550264550265,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3761,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.8554484288179083e-07,
+ "last_committed_mask_overlap": 103,
+ "last_committed_normalized_gap": -0.1670621931552887,
+ "last_committed_score_gap": -5.727167717850534e-08,
+ "last_dwell_count": 103,
+ "last_raw_cutoff_score": 2.899738262840401e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.01527373492717743,
+ "last_raw_score_gap": 4.428983402249287e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050161801278591156,
+ "observability_min": 4.610122061876609e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "a9efc92a5e3f99a620bb856f46e01d32124432b9e114212f849b8aee4a294bb6",
+ "raw_normalized_churn": 0.029894179894179893,
+ "raw_xor_churn_total": 226,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "5ef7ea1e828a95c6b76a4c59d4b0cecabc0de060a5b09803e481dbe006683d6b",
+ "committed_normalized_churn": 0.0010416666666666667,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 2877,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.39496387419058e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": -0.04048115387558937,
+ "last_committed_score_gap": -5.885215159651125e-08,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.4538160257870913e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.04048115387558937,
+ "last_raw_score_gap": 5.885215159651125e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05249067768454552,
+ "observability_min": 2.2671024169085285e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "1c697832bd93e6b0260e55e529eed5e01ad88fc99d6761ca1b78f2f582ec4133",
+ "raw_normalized_churn": 0.014583333333333334,
+ "raw_xor_churn_total": 84,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "f49cd8958266f367c15e26cee61517b51a2fd6ebffd8e0194723d17afc69c913",
+ "committed_normalized_churn": 0.004521963824289405,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1541,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.0885363483102992e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": -0.3867030143737793,
+ "last_committed_score_gap": -1.3168877899261133e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.4054241382364125e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.2095903903245926,
+ "last_raw_score_gap": 7.137441571103409e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05889835208654404,
+ "observability_min": 5.479834044308518e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "9aed9f43dce7760e40eca080a6fc1bd3e6769fd4f377ad67103ccd1bc219bfe8",
+ "raw_normalized_churn": 0.028423772609819122,
+ "raw_xor_churn_total": 88,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "0e27b53d416d6d17a8ea8d8b6ceeab31ec51dd5ec86673f500aa0a3c714c54a3",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 3000,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.354682279332337e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.6577383875846863,
+ "last_committed_score_gap": -1.6055538765158417e-07,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.2071787125478295e-07,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.006217593792825937,
+ "last_raw_score_gap": 7.505747134928242e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04377210512757301,
+ "observability_min": 7.959336301155417e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "49276bf9bf675b96c33907362da0af3c4f9b677ebf8c0f45ca9af4105df98bda",
+ "raw_normalized_churn": 0.04365079365079365,
+ "raw_xor_churn_total": 264,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "566691728f2cc6b01eb55b5318d85df54a61c63c5d395916f593d2c477847f03",
+ "committed_normalized_churn": 0.009259259259259259,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1070,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.419712008209899e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": -0.5101173520088196,
+ "last_committed_score_gap": -6.684878826490603e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 9.988188139686827e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.3493887186050415,
+ "last_raw_score_gap": 3.4897602745331824e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03877219557762146,
+ "observability_min": 2.3097744872302428e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "b0cf9421a46f2bc393ee4b5bce02799454f522b7aea6ebcde3f647f0d9565757",
+ "raw_normalized_churn": 0.04722222222222222,
+ "raw_xor_churn_total": 102,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "e99da66787c578745d3a8d2dfab088490ed115db7d8e2e594bde458c63201944",
+ "committed_normalized_churn": 0.010304659498207885,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2209,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.205736879228425e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": -0.5587214231491089,
+ "last_committed_score_gap": -1.526634463289156e-07,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.7013577746638475e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.01445644162595272,
+ "last_raw_score_gap": 2.459557890688302e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04161253944039345,
+ "observability_min": 7.535059154406554e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "bd6a495439439d2e3a5ee4b4b074db4ec98e07fa38f198b1a4e76db86511bef5",
+ "raw_normalized_churn": 0.0775089605734767,
+ "raw_xor_churn_total": 346,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "11b54b97e4b54448448ff0c1d97de79d576ffd09a1fe252ebd209405da093699",
+ "committed_normalized_churn": 0.006172839506172839,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 1932,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.105006302599577e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.7476679682731628,
+ "last_committed_score_gap": -6.23720097792102e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.539175625315693e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.008598455227911472,
+ "last_raw_score_gap": 2.183298875024775e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08731034398078918,
+ "observability_min": 3.719875962815422e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "17cc011139a8c7b757bb606a84a49ec22980f5ca81d9108f43171ca2a2be546e",
+ "raw_normalized_churn": 0.03652263374485597,
+ "raw_xor_churn_total": 142,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "dbe34a46aac3135c93751fe0fea019702495907b1cfd7394fa72e2100565f049",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1620,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1408044883864932e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7223452925682068,
+ "last_committed_score_gap": 8.240547686000355e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.1408044883864932e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7223452925682068,
+ "last_raw_score_gap": 8.240547686000355e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10610237717628479,
+ "observability_min": 4.953796306494951e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "dbe34a46aac3135c93751fe0fea019702495907b1cfd7394fa72e2100565f049",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "aea9277157cac513770f6cab67ce3bbba4da4c32ef44439f177020020dd6baaa",
+ "committed_normalized_churn": 0.0030864197530864196,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 969,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4344607734528836e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.4301973581314087,
+ "last_committed_score_gap": 6.171012500999495e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.4344607734528836e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.4301973581314087,
+ "last_raw_score_gap": 6.171012500999495e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10491446405649185,
+ "observability_min": 1.6590587392784073e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "aea9277157cac513770f6cab67ce3bbba4da4c32ef44439f177020020dd6baaa",
+ "raw_normalized_churn": 0.01131687242798354,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "58ca4272bcb51e7fecec556e7878056a906d8d41ca8ab8a3b9f7543bf14ac247",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0003071752726100385,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.86700439453125,
+ "last_committed_score_gap": 0.0002663223131094128,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0003071752726100385,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.86700439453125,
+ "last_raw_score_gap": 0.0002663223131094128,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09024535119533539,
+ "observability_min": 7.984969840890699e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "58ca4272bcb51e7fecec556e7878056a906d8d41ca8ab8a3b9f7543bf14ac247",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.006172839506172839,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 322,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.433498053112999e-05,
+ "last_committed_mask_overlap": 8,
+ "last_committed_normalized_gap": 0.2522616982460022,
+ "last_committed_score_gap": 2.3797103494871408e-05,
+ "last_dwell_count": 8,
+ "last_raw_cutoff_score": 9.433498053112999e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.2522616982460022,
+ "last_raw_score_gap": 2.3797103494871408e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10027527064085007,
+ "observability_min": 1.3253121267098322e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.018518518518518517,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.39660463295877e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7733740210533142,
+ "last_committed_score_gap": 5.720341869164258e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.39660463295877e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7733740210533142,
+ "last_raw_score_gap": 5.720341869164258e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1079200729727745,
+ "observability_min": 4.191200986269905e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.007936507936507936,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "efef35657bd8aa9e789cdba0489b074bfbe214abf43eaf78570987e49c733794",
+ "committed_normalized_churn": 0.0025252525252525255,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 1975,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.973026534571545e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.17933684587478638,
+ "last_committed_score_gap": 8.918468665797263e-07,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.973026534571545e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.17933684587478638,
+ "last_raw_score_gap": 8.918468665797263e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10598735511302948,
+ "observability_min": 1.5805406983204762e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "efef35657bd8aa9e789cdba0489b074bfbe214abf43eaf78570987e49c733794",
+ "raw_normalized_churn": 0.004545454545454545,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ }
+ ],
+ "task_id": 728
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "a473e7962c5358ef97db9dfd4cb1bb8ae914e4e477674215d5330ab29f8fa998",
+ "committed_normalized_churn": 0.002223869532987398,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_selected_count": 355,
+ "dwell_total": 13460,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.6878663678407975e-08,
+ "last_committed_mask_overlap": 355,
+ "last_committed_normalized_gap": -0.8778953552246094,
+ "last_committed_score_gap": -2.651464114933333e-07,
+ "last_dwell_count": 355,
+ "last_raw_cutoff_score": 1.2586014008775237e-07,
+ "last_raw_mask_overlap": 349,
+ "last_raw_normalized_gap": 0.056233301758766174,
+ "last_raw_score_gap": 7.07753144979506e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.052964843809604645,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "0e73fae54470b66a9c519404e7a8df485a54e77f6bb9ca6b3c5ff5e13065fd66",
+ "raw_normalized_churn": 0.016827279466271314,
+ "raw_xor_churn_total": 454,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "001abc20711218dd961a0d21fff0da9f06d1c94ae4c47a0644bc4188952268d0",
+ "committed_normalized_churn": 0.002562326869806094,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": true,
+ "current_selected_count": 380,
+ "dwell_total": 14403,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.858581377689461e-08,
+ "last_committed_mask_overlap": 377,
+ "last_committed_normalized_gap": 0.029740750789642334,
+ "last_committed_score_gap": 5.527560631435335e-10,
+ "last_dwell_count": 377,
+ "last_raw_cutoff_score": 1.858581377689461e-08,
+ "last_raw_mask_overlap": 365,
+ "last_raw_normalized_gap": 0.029740750789642334,
+ "last_raw_score_gap": 5.527560631435335e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09602482616901398,
+ "observability_min": 2.6186864232613516e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "001abc20711218dd961a0d21fff0da9f06d1c94ae4c47a0644bc4188952268d0",
+ "raw_normalized_churn": 0.02804709141274238,
+ "raw_xor_churn_total": 810,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "3f9ca7526cf45a2dcb2a33f37abe1c3024040418555d328c735fb2791fe83a77",
+ "committed_normalized_churn": 0.001271766777538642,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_selected_count": 269,
+ "dwell_total": 10209,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.871054208408168e-08,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": -0.04156920313835144,
+ "last_committed_score_gap": -3.413845206523547e-09,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 8.072307622342123e-08,
+ "last_raw_mask_overlap": 268,
+ "last_raw_normalized_gap": 0.02493133582174778,
+ "last_raw_score_gap": 2.01253413933955e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0396246537566185,
+ "observability_min": 1.0796466654028336e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "fc855b6ddf7b7b3ae11e95571c31217c73da5c4fbbd4ebd3471d0968968d5bef",
+ "raw_normalized_churn": 0.01281549598904324,
+ "raw_xor_churn_total": 262,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "021988e3b73cafe7422d27d700474983a07cd33ed208010cb2245a5b877dc779",
+ "committed_normalized_churn": 0.001470155836518671,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 179,
+ "dwell_total": 6792,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.304918098161579e-06,
+ "last_committed_mask_overlap": 176,
+ "last_committed_normalized_gap": -0.06389916688203812,
+ "last_committed_score_gap": -1.5733598957012873e-07,
+ "last_dwell_count": 176,
+ "last_raw_cutoff_score": 2.462254087731708e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.06389916688203812,
+ "last_raw_score_gap": 1.5733598957012873e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04216195270419121,
+ "observability_min": 2.1476654410435003e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "033a82ea0bcedc6a630280fe56aad531343c398e0d72ff72a115fdcc2c983db6",
+ "raw_normalized_churn": 0.007644810349897089,
+ "raw_xor_churn_total": 104,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "e42aa002a0a0a3c135520c20ca61d73ab22f9a023f26438721dc5cbf89e9e47b",
+ "committed_normalized_churn": 0.0008534850640113798,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 185,
+ "dwell_total": 7024,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.4475098686925776e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.6823306679725647,
+ "last_committed_score_gap": 2.352341681444159e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 3.4475098686925776e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.6823306679725647,
+ "last_raw_score_gap": 2.352341681444159e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.025337696075439453,
+ "observability_min": 2.587907772522158e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "e42aa002a0a0a3c135520c20ca61d73ab22f9a023f26438721dc5cbf89e9e47b",
+ "raw_normalized_churn": 0.005263157894736842,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "74f3fd55c0e385509ba5c201021806c6145a0d7a1a624720cdcc37622ec9aee4",
+ "committed_normalized_churn": 0.006766917293233083,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_selected_count": 105,
+ "dwell_total": 3963,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.742265578121078e-08,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": -0.6184602975845337,
+ "last_committed_score_gap": -1.4170856843520596e-07,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 1.5671452047172352e-07,
+ "last_raw_mask_overlap": 102,
+ "last_raw_normalized_gap": 0.06741895526647568,
+ "last_raw_score_gap": 1.0565528896222531e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030376747250556946,
+ "observability_min": 1.1652433329345513e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "986262f5419f7a9d1d646e9db305ad17d8eedf41d517b761b739c02597eeff79",
+ "raw_normalized_churn": 0.03558897243107769,
+ "raw_xor_churn_total": 284,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "3b34d2864f0c84fe652eaa0e2c6b5d3b6495d4e7f8a44b10675db88ccc074214",
+ "committed_normalized_churn": 0.0013157894736842105,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_selected_count": 80,
+ "dwell_total": 3036,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.02578449313296e-07,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.33057838678359985,
+ "last_committed_score_gap": 2.983729245897848e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 9.02578449313296e-07,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.33057838678359985,
+ "last_raw_score_gap": 2.983729245897848e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043448999524116516,
+ "observability_min": 4.0367143583353027e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "3b34d2864f0c84fe652eaa0e2c6b5d3b6495d4e7f8a44b10675db88ccc074214",
+ "raw_normalized_churn": 0.014802631578947368,
+ "raw_xor_churn_total": 90,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "fb007c2d754482b2a531ffed95fcbfbd590086235df75500ff13ad7609883e05",
+ "committed_normalized_churn": 0.0018359853121175031,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 43,
+ "dwell_total": 1631,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.440570199269132e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.29675865173339844,
+ "last_committed_score_gap": 7.242603317081375e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 2.440570199269132e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.29675865173339844,
+ "last_raw_score_gap": 7.242603317081375e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05549290403723717,
+ "observability_min": 5.88715693083941e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "fb007c2d754482b2a531ffed95fcbfbd590086235df75500ff13ad7609883e05",
+ "raw_normalized_churn": 0.014075887392900856,
+ "raw_xor_churn_total": 46,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 28,
+ "committed_mask_sha256": "4d16c88a71f97f394a6e444d2205a5e5157dc01f4e00ca88a9990637c2615656",
+ "committed_normalized_churn": 0.008771929824561403,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": true,
+ "current_selected_count": 84,
+ "dwell_total": 3164,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.706761889243353e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": -0.018132414668798447,
+ "last_committed_score_gap": -1.607901367606246e-09,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 8.867552026003978e-08,
+ "last_raw_mask_overlap": 83,
+ "last_raw_normalized_gap": 0.018132414668798447,
+ "last_raw_score_gap": 1.607901367606246e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.033205460757017136,
+ "observability_min": 5.654127335219528e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "239af332e60ca424d93b7cec40fc222f83631e4e9fb7ffa76236e68474afdbc3",
+ "raw_normalized_churn": 0.05701754385964912,
+ "raw_xor_churn_total": 364,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "11fd5ccde476834ab478f5fc7160a3eb28375c1e70cdbce31c6132dbedf162b2",
+ "committed_normalized_churn": 0.008771929824561403,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_selected_count": 30,
+ "dwell_total": 1130,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.0022599680232815e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.11136494576931,
+ "last_committed_score_gap": 5.570764187723398e-07,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 5.0022599680232815e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.11136494576931,
+ "last_raw_score_gap": 5.570764187723398e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03097361885011196,
+ "observability_min": 3.5789025787380524e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "11fd5ccde476834ab478f5fc7160a3eb28375c1e70cdbce31c6132dbedf162b2",
+ "raw_normalized_churn": 0.05263157894736842,
+ "raw_xor_churn_total": 120,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "78b0601773e197c35dc69a3230cf4aa632dab83bbafd6ee7990bb04aca948572",
+ "committed_normalized_churn": 0.009762308998302207,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": true,
+ "current_selected_count": 62,
+ "dwell_total": 2333,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7874579327781248e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.23449695110321045,
+ "last_committed_score_gap": 4.1915342308129766e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.7874579327781248e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.23449695110321045,
+ "last_raw_score_gap": 4.1915342308129766e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03991476073861122,
+ "observability_min": 5.174724719836377e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "78b0601773e197c35dc69a3230cf4aa632dab83bbafd6ee7990bb04aca948572",
+ "raw_normalized_churn": 0.06960950764006792,
+ "raw_xor_churn_total": 328,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "af9a9a38f84418b398ffc2682df5f8ee5761c3a8a23006d49d6df97c5deec47f",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_selected_count": 54,
+ "dwell_total": 2046,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1934270105484757e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": -0.24422034621238708,
+ "last_committed_score_gap": -3.856403907320782e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.2631124945983174e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.05516965687274933,
+ "last_raw_score_gap": 6.968548404984176e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07833381742238998,
+ "observability_min": 4.7877893649683756e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "ee212e63f11d0dc132147b2f0d73380a0cd3f95187e38dc41ed35a80514b2c5c",
+ "raw_normalized_churn": 0.04434697855750487,
+ "raw_xor_churn_total": 182,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "256ba15a9f70f446205fd85b0e361459cb704fcd8900ad636001fcdd05b6f576",
+ "committed_normalized_churn": 0.0017543859649122807,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 45,
+ "dwell_total": 1707,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.325802703737281e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7468338012695312,
+ "last_committed_score_gap": 3.97748954128474e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 5.325802703737281e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7468338012695312,
+ "last_raw_score_gap": 3.97748954128474e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08591532707214355,
+ "observability_min": 5.8715087902783125e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "256ba15a9f70f446205fd85b0e361459cb704fcd8900ad636001fcdd05b6f576",
+ "raw_normalized_churn": 0.005263157894736842,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "b3ddf29b103dc176989a967f527b6e3dac9e8bb18a4632275a3b08078dfc7793",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 27,
+ "dwell_total": 1023,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.507230631948914e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.5722452402114868,
+ "last_committed_score_gap": 4.8682222768547945e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 8.507230631948914e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.5722452402114868,
+ "last_raw_score_gap": 4.8682222768547945e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07980677485466003,
+ "observability_min": 1.663320290390402e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "b3ddf29b103dc176989a967f527b6e3dac9e8bb18a4632275a3b08078dfc7793",
+ "raw_normalized_churn": 0.016569200779727095,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "2150aa066b9fb8fe7e0404888fe4ee7b7be64038cceb00d4a8b474a94d68f790",
+ "committed_normalized_churn": 0.0037593984962406013,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 265,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00015755339700262994,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8943806886672974,
+ "last_committed_score_gap": 0.00014091271441429853,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00015755339700262994,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8943806886672974,
+ "last_raw_score_gap": 0.00014091271441429853,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0778174176812172,
+ "observability_min": 7.9902989114089e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "2150aa066b9fb8fe7e0404888fe4ee7b7be64038cceb00d4a8b474a94d68f790",
+ "raw_normalized_churn": 0.02631578947368421,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "1c5dd0aed3efce7369e5a31aaa06c85ff4395d2b6e1f0e73902aa503ced65add",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_selected_count": 9,
+ "dwell_total": 341,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6163423424586654e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": -0.2489287406206131,
+ "last_committed_score_gap": -5.357069312594831e-06,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 2.1520492737181485e-05,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.2489287406206131,
+ "last_raw_score_gap": 5.357069312594831e-06,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08289565145969391,
+ "observability_min": 1.1323527360218577e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ee477779585267fdfdb33029de73b338818df64e9444b4cfa6601cc2c927e71c",
+ "raw_normalized_churn": 0.05847953216374269,
+ "raw_xor_churn_total": 40,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "6915538cbb29305079e9c0857c9c5b42041beee03ddb2d85cca8188545b4f99d",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.694811938563362e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8900420665740967,
+ "last_committed_score_gap": 6.848706107120961e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.694811938563362e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8900420665740967,
+ "last_raw_score_gap": 6.848706107120961e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08357403427362442,
+ "observability_min": 5.755421739195299e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6915538cbb29305079e9c0857c9c5b42041beee03ddb2d85cca8188545b4f99d",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "9f138ebc7a16cb546cab582ee2b623906eb3a09e128abea857f6d2f9deefe47d",
+ "committed_normalized_churn": 0.0014354066985645933,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_selected_count": 55,
+ "dwell_total": 2087,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.5683519854501355e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.6847178339958191,
+ "last_committed_score_gap": 2.4433143153146375e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 3.5683519854501355e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.6847178339958191,
+ "last_raw_score_gap": 2.4433143153146375e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09227585047483444,
+ "observability_min": 6.030722232708285e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "9f138ebc7a16cb546cab582ee2b623906eb3a09e128abea857f6d2f9deefe47d",
+ "raw_normalized_churn": 0.0019138755980861245,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 704
+ }
+ ],
+ "causal_observability_mse_target_fisher_quota": [
+ {
+ "layers": [
+ {
+ "admissions_total": 149,
+ "committed_mask_sha256": "42d88c885c16b7d995761e86e5c5b6402964885b3aa0577d19deb1230a7a38c6",
+ "committed_normalized_churn": 0.011045218680504077,
+ "committed_xor_churn_total": 298,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 13341,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 2.02190150844217e-07,
+ "last_committed_mask_overlap": 349,
+ "last_committed_normalized_gap": 0.15897434949874878,
+ "last_committed_score_gap": 3.2143049111255095e-08,
+ "last_dwell_count": 349,
+ "last_raw_cutoff_score": 2.02190150844217e-07,
+ "last_raw_mask_overlap": 349,
+ "last_raw_normalized_gap": 0.15897434949874878,
+ "last_raw_score_gap": 3.2143049111255095e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043269507586956024,
+ "observability_min": 0.0,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "42d88c885c16b7d995761e86e5c5b6402964885b3aa0577d19deb1230a7a38c6",
+ "raw_normalized_churn": 0.011045218680504077,
+ "raw_xor_churn_total": 298,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 274,
+ "committed_mask_sha256": "049ab1188e4148cdd88ec64529fbb96edd2ce0928e2a32cc8262245a9888028c",
+ "committed_normalized_churn": 0.01897506925207756,
+ "committed_xor_churn_total": 548,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 14166,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 12,
+ "last_committed_cutoff_score": 1.3530314646459374e-08,
+ "last_committed_mask_overlap": 368,
+ "last_committed_normalized_gap": 0.09638599306344986,
+ "last_committed_score_gap": 1.304132801749347e-09,
+ "last_dwell_count": 368,
+ "last_raw_cutoff_score": 1.3530314646459374e-08,
+ "last_raw_mask_overlap": 368,
+ "last_raw_normalized_gap": 0.09638599306344986,
+ "last_raw_score_gap": 1.304132801749347e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1133112832903862,
+ "observability_min": 1.2120245918012529e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "049ab1188e4148cdd88ec64529fbb96edd2ce0928e2a32cc8262245a9888028c",
+ "raw_normalized_churn": 0.01897506925207756,
+ "raw_xor_churn_total": 548,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 89,
+ "committed_mask_sha256": "8ef425896ff2a726fc1403a1d2e31408c2be2a9262e8d4c5a011e83f34096e62",
+ "committed_normalized_churn": 0.008706711015456857,
+ "committed_xor_churn_total": 178,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 10133,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 7.985622119122127e-08,
+ "last_committed_mask_overlap": 264,
+ "last_committed_normalized_gap": 0.10949638485908508,
+ "last_committed_score_gap": 8.743967327973223e-09,
+ "last_dwell_count": 264,
+ "last_raw_cutoff_score": 7.985622119122127e-08,
+ "last_raw_mask_overlap": 264,
+ "last_raw_normalized_gap": 0.10949638485908508,
+ "last_raw_score_gap": 8.743967327973223e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07081593573093414,
+ "observability_min": 2.23443441527138e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "8ef425896ff2a726fc1403a1d2e31408c2be2a9262e8d4c5a011e83f34096e62",
+ "raw_normalized_churn": 0.008706711015456857,
+ "raw_xor_churn_total": 178,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 46,
+ "committed_mask_sha256": "d9068b0d34d702a641fc08902a8795e0122672e138bb7109d58844e341d793e8",
+ "committed_normalized_churn": 0.006762716847985887,
+ "committed_xor_churn_total": 92,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6756,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.090972313657403e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.651437520980835,
+ "last_committed_score_gap": 2.0135753402428236e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.090972313657403e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.651437520980835,
+ "last_raw_score_gap": 2.0135753402428236e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.048790499567985535,
+ "observability_min": 5.07410669037256e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "d9068b0d34d702a641fc08902a8795e0122672e138bb7109d58844e341d793e8",
+ "raw_normalized_churn": 0.006762716847985887,
+ "raw_xor_churn_total": 92,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 21,
+ "committed_mask_sha256": "f071a9ca6a495ecabfabd4f1cfd67921f7614fdeb2dc0d93a0f8e0fad154d762",
+ "committed_normalized_churn": 0.0029871977240398294,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 7009,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.415268909317092e-07,
+ "last_committed_mask_overlap": 182,
+ "last_committed_normalized_gap": 0.006394113879650831,
+ "last_committed_score_gap": 1.5443504253198626e-09,
+ "last_dwell_count": 182,
+ "last_raw_cutoff_score": 2.415268909317092e-07,
+ "last_raw_mask_overlap": 182,
+ "last_raw_normalized_gap": 0.006394113879650831,
+ "last_raw_score_gap": 1.5443504253198626e-09,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.029060080647468567,
+ "observability_min": 1.4013039617566392e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "f071a9ca6a495ecabfabd4f1cfd67921f7614fdeb2dc0d93a0f8e0fad154d762",
+ "raw_normalized_churn": 0.0029871977240398294,
+ "raw_xor_churn_total": 42,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 69,
+ "committed_mask_sha256": "3d952a60fef6e9f6cd2aafc6d0a288b0488362a179c2c8edca604c6a01d14b78",
+ "committed_normalized_churn": 0.017293233082706767,
+ "committed_xor_churn_total": 138,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3921,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 1.2384879255478154e-07,
+ "last_committed_mask_overlap": 99,
+ "last_committed_normalized_gap": 0.164062038064003,
+ "last_committed_score_gap": 2.0318886129189195e-08,
+ "last_dwell_count": 99,
+ "last_raw_cutoff_score": 1.2384879255478154e-07,
+ "last_raw_mask_overlap": 99,
+ "last_raw_normalized_gap": 0.164062038064003,
+ "last_raw_score_gap": 2.0318886129189195e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03445073217153549,
+ "observability_min": 8.824438957333314e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "3d952a60fef6e9f6cd2aafc6d0a288b0488362a179c2c8edca604c6a01d14b78",
+ "raw_normalized_churn": 0.017293233082706767,
+ "raw_xor_churn_total": 138,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "99dcf590358eeac576503674aa54678e035c1e2db8c01887ce3b17c9ff186049",
+ "committed_normalized_churn": 0.00625,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 3021,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.2236173461133149e-06,
+ "last_committed_mask_overlap": 78,
+ "last_committed_normalized_gap": 0.004292555619031191,
+ "last_committed_score_gap": 5.252445589576382e-09,
+ "last_dwell_count": 78,
+ "last_raw_cutoff_score": 1.2236173461133149e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.004292555619031191,
+ "last_raw_score_gap": 5.252445589576382e-09,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05268144607543945,
+ "observability_min": 2.823539801966035e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "99dcf590358eeac576503674aa54678e035c1e2db8c01887ce3b17c9ff186049",
+ "raw_normalized_churn": 0.00625,
+ "raw_xor_churn_total": 38,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "93ddf8c723862b24cc4121315055931fdf9903aa2a3db8f89c6f42ad639b6da4",
+ "committed_normalized_churn": 0.006731946144430845,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1623,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.642817378273321e-07,
+ "last_committed_mask_overlap": 42,
+ "last_committed_normalized_gap": 0.2936796247959137,
+ "last_committed_score_gap": 7.761416043194913e-08,
+ "last_dwell_count": 42,
+ "last_raw_cutoff_score": 2.642817378273321e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.2936796247959137,
+ "last_raw_score_gap": 7.761416043194913e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.056067001074552536,
+ "observability_min": 7.776834820560907e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "93ddf8c723862b24cc4121315055931fdf9903aa2a3db8f89c6f42ad639b6da4",
+ "raw_normalized_churn": 0.006731946144430845,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 78,
+ "committed_mask_sha256": "12be95cd0ccc2943dc0a0a652c82637894ee7a6dbc704560cf6e1183468e8d00",
+ "committed_normalized_churn": 0.02443609022556391,
+ "committed_xor_churn_total": 156,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 3114,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.1206689976006601e-07,
+ "last_committed_mask_overlap": 81,
+ "last_committed_normalized_gap": 0.01999414898455143,
+ "last_committed_score_gap": 2.2406823063647607e-09,
+ "last_dwell_count": 81,
+ "last_raw_cutoff_score": 1.1206689976006601e-07,
+ "last_raw_mask_overlap": 81,
+ "last_raw_normalized_gap": 0.01999414898455143,
+ "last_raw_score_gap": 2.2406823063647607e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.040155548602342606,
+ "observability_min": 1.2643893398944783e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "12be95cd0ccc2943dc0a0a652c82637894ee7a6dbc704560cf6e1183468e8d00",
+ "raw_normalized_churn": 0.02443609022556391,
+ "raw_xor_churn_total": 156,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "9582deb1fbbef36dc669bc5e1ccd55acba20694e2460bafeaf998b6f94991f51",
+ "committed_normalized_churn": 0.02368421052631579,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1113,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 4.988352884538472e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.02228396013379097,
+ "last_committed_score_gap": 1.1116026144009084e-07,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 4.988352884538472e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.02228396013379097,
+ "last_raw_score_gap": 1.1116026144009084e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04401962459087372,
+ "observability_min": 1.3424657652194583e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "9582deb1fbbef36dc669bc5e1ccd55acba20694e2460bafeaf998b6f94991f51",
+ "raw_normalized_churn": 0.02368421052631579,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 70,
+ "committed_mask_sha256": "11caac763aadef3f755c524f3baaca3da5cccd2ca4a3220e340ca00a0a0dc442",
+ "committed_normalized_churn": 0.029711375212224108,
+ "committed_xor_churn_total": 140,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2286,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 7.617951780503063e-08,
+ "last_committed_mask_overlap": 57,
+ "last_committed_normalized_gap": 0.028180500492453575,
+ "last_committed_score_gap": 2.146776978406706e-09,
+ "last_dwell_count": 57,
+ "last_raw_cutoff_score": 7.617951780503063e-08,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.028180500492453575,
+ "last_raw_score_gap": 2.146776978406706e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050541169941425323,
+ "observability_min": 1.2915822367176588e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "11caac763aadef3f755c524f3baaca3da5cccd2ca4a3220e340ca00a0a0dc442",
+ "raw_normalized_churn": 0.029711375212224108,
+ "raw_xor_churn_total": 140,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 33,
+ "committed_mask_sha256": "d23802bd94fd25eb4f06bc32daefee140ef6e5f255fcace24d286d36106c96e0",
+ "committed_normalized_churn": 0.01608187134502924,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 2019,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.8929132750145072e-07,
+ "last_committed_mask_overlap": 52,
+ "last_committed_normalized_gap": 0.2236761897802353,
+ "last_committed_score_gap": 4.233996264702e-08,
+ "last_dwell_count": 52,
+ "last_raw_cutoff_score": 1.8929132750145072e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.2236761897802353,
+ "last_raw_score_gap": 4.233996264702e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0942985862493515,
+ "observability_min": 3.6537102232614416e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d23802bd94fd25eb4f06bc32daefee140ef6e5f255fcace24d286d36106c96e0",
+ "raw_normalized_churn": 0.01608187134502924,
+ "raw_xor_churn_total": 66,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "1452a9ed81294967c220254977c0eb3f83a8bd1eed946a03a6b9371d1e3b524a",
+ "committed_normalized_churn": 0.0017543859649122807,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1707,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 8.798559974820819e-06,
+ "last_committed_mask_overlap": 44,
+ "last_committed_normalized_gap": 0.11901796609163284,
+ "last_committed_score_gap": 1.047186742653139e-06,
+ "last_dwell_count": 44,
+ "last_raw_cutoff_score": 8.798559974820819e-06,
+ "last_raw_mask_overlap": 44,
+ "last_raw_normalized_gap": 0.11901796609163284,
+ "last_raw_score_gap": 1.047186742653139e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10430213063955307,
+ "observability_min": 2.441105984019032e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "1452a9ed81294967c220254977c0eb3f83a8bd1eed946a03a6b9371d1e3b524a",
+ "raw_normalized_churn": 0.0017543859649122807,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "a11660d55d776c0ab63d444f9f999e2df58d39f0d17b0aa9fae82a0017936882",
+ "committed_normalized_churn": 0.010721247563352826,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 1015,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2076079656253569e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.21018768846988678,
+ "last_committed_score_gap": 2.5382432795595378e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.2076079656253569e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.21018768846988678,
+ "last_raw_score_gap": 2.5382432795595378e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.114602230489254,
+ "observability_min": 1.9074530399620926e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "a11660d55d776c0ab63d444f9f999e2df58d39f0d17b0aa9fae82a0017936882",
+ "raw_normalized_churn": 0.010721247563352826,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0007460247725248337,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.44804662466049194,
+ "last_committed_score_gap": 0.00033425388392060995,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0007460247725248337,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.44804662466049194,
+ "last_raw_score_gap": 0.00033425388392060995,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0958591029047966,
+ "observability_min": 6.388956563796455e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.005847953216374269,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 340,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.593181751668453e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.5943968892097473,
+ "last_committed_score_gap": 3.9189668314065784e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 6.593181751668453e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.5943968892097473,
+ "last_raw_score_gap": 3.9189668314065784e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1026204526424408,
+ "observability_min": 8.553074692940754e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.005847953216374269,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "cade345f74c7f8b1263aca53f49f2ce1488c78a14beeffdc541d01204df50270",
+ "committed_normalized_churn": 0.0037593984962406013,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 265,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0001055294051184319,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8020143508911133,
+ "last_committed_score_gap": 8.463609992759302e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0001055294051184319,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8020143508911133,
+ "last_raw_score_gap": 8.463609992759302e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11296574026346207,
+ "observability_min": 4.978006273859137e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "cade345f74c7f8b1263aca53f49f2ce1488c78a14beeffdc541d01204df50270",
+ "raw_normalized_churn": 0.0037593984962406013,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "e9ebae1c558cc525d0ae6ca8942806a18c22f4725356f0c3a5ddcb2055a83b71",
+ "committed_normalized_churn": 0.0028708133971291866,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 2084,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.234210443129996e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.37895432114601135,
+ "last_committed_score_gap": 2.7414353098720312e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 7.234210443129996e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.37895432114601135,
+ "last_raw_score_gap": 2.7414353098720312e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1041816994547844,
+ "observability_min": 2.0737327410813577e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "e9ebae1c558cc525d0ae6ca8942806a18c22f4725356f0c3a5ddcb2055a83b71",
+ "raw_normalized_churn": 0.0028708133971291866,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ],
+ "task_id": 666
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 124,
+ "committed_mask_sha256": "d2a07e93d99c65657203a14fa5e38c533d421ed2a57317ec9dcd35409078cdee",
+ "committed_normalized_churn": 0.010273405136702569,
+ "committed_xor_churn_total": 248,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 11946,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.0532083055968542e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.01948738284409046,
+ "last_committed_score_gap": 4.0011656210481306e-09,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 2.0532083055968542e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.01948738284409046,
+ "last_raw_score_gap": 4.0011656210481306e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030501583591103554,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "d2a07e93d99c65657203a14fa5e38c533d421ed2a57317ec9dcd35409078cdee",
+ "raw_normalized_churn": 0.010273405136702569,
+ "raw_xor_churn_total": 248,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 259,
+ "committed_mask_sha256": "9d9f480e8125e0714cb6617277b32e3ce8d3be6cd7349f4fa6da157e117f5407",
+ "committed_normalized_churn": 0.020046439628482973,
+ "committed_xor_churn_total": 518,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 12661,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 11,
+ "last_committed_cutoff_score": 2.506428842252717e-08,
+ "last_committed_mask_overlap": 369,
+ "last_committed_normalized_gap": 0.008443125523626804,
+ "last_committed_score_gap": 2.1162094299143064e-10,
+ "last_dwell_count": 369,
+ "last_raw_cutoff_score": 2.506428842252717e-08,
+ "last_raw_mask_overlap": 369,
+ "last_raw_normalized_gap": 0.008443125523626804,
+ "last_raw_score_gap": 2.1162094299143064e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11882250756025314,
+ "observability_min": 3.268262604994021e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "9d9f480e8125e0714cb6617277b32e3ce8d3be6cd7349f4fa6da157e117f5407",
+ "raw_normalized_churn": 0.020046439628482973,
+ "raw_xor_churn_total": 518,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 92,
+ "committed_mask_sha256": "52ab0ba1a156917b4a8835dcb12589ddaef0f8aca412a1b0fed31bd62216d5f3",
+ "committed_normalized_churn": 0.010059042204242292,
+ "committed_xor_churn_total": 184,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 9054,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 9.36565882625473e-08,
+ "last_committed_mask_overlap": 265,
+ "last_committed_normalized_gap": 0.004143390338867903,
+ "last_committed_score_gap": 3.880558097080211e-10,
+ "last_dwell_count": 265,
+ "last_raw_cutoff_score": 9.36565882625473e-08,
+ "last_raw_mask_overlap": 265,
+ "last_raw_normalized_gap": 0.004143390338867903,
+ "last_raw_score_gap": 3.880558097080211e-10,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06471268087625504,
+ "observability_min": 6.720973222407167e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "52ab0ba1a156917b4a8835dcb12589ddaef0f8aca412a1b0fed31bd62216d5f3",
+ "raw_normalized_churn": 0.010059042204242292,
+ "raw_xor_churn_total": 184,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 25,
+ "committed_mask_sha256": "4976ea2b2cda036bc2e33b52eaaee59d6584d0d99a81d9671b5fa1888bb61398",
+ "committed_normalized_churn": 0.004107788366743345,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6061,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.4412804577877978e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.41060346364974976,
+ "last_committed_score_gap": 1.0023982213169802e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.4412804577877978e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.41060346364974976,
+ "last_raw_score_gap": 1.0023982213169802e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04122423380613327,
+ "observability_min": 1.6596519714084934e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "4976ea2b2cda036bc2e33b52eaaee59d6584d0d99a81d9671b5fa1888bb61398",
+ "raw_normalized_churn": 0.004107788366743345,
+ "raw_xor_churn_total": 50,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "9b799fc5e9072adc3201444cb8023be95b7ce754416e19c6caf2e2b2ad33ff73",
+ "committed_normalized_churn": 0.0019077901430842607,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 6278,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.709662668275996e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.20602017641067505,
+ "last_committed_score_gap": 1.5883460946497507e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.709662668275996e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.20602017641067505,
+ "last_raw_score_gap": 1.5883460946497507e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.037392742931842804,
+ "observability_min": 3.2151991291584636e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "9b799fc5e9072adc3201444cb8023be95b7ce754416e19c6caf2e2b2ad33ff73",
+ "raw_normalized_churn": 0.0019077901430842607,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 82,
+ "committed_mask_sha256": "27a32a4c67728c7ae21f023ee9371b876d7c503bc393baf5e3c332ee7e02575b",
+ "committed_normalized_churn": 0.02296918767507003,
+ "committed_xor_churn_total": 164,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3488,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.1332557764708326e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.12181419134140015,
+ "last_committed_score_gap": 2.5986082619056106e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.1332557764708326e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.12181419134140015,
+ "last_raw_score_gap": 2.5986082619056106e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0579802542924881,
+ "observability_min": 2.4909038720544174e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "27a32a4c67728c7ae21f023ee9371b876d7c503bc393baf5e3c332ee7e02575b",
+ "raw_normalized_churn": 0.02296918767507003,
+ "raw_xor_churn_total": 164,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "0ab10484e72e980e6cce0586b0aa276b0b0279a77819aaaf2463d60a5e446ed7",
+ "committed_normalized_churn": 0.007352941176470588,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2700,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7836836150308955e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.19406159222126007,
+ "last_committed_score_gap": 3.4614447486092104e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.7836836150308955e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.19406159222126007,
+ "last_raw_score_gap": 3.4614447486092104e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0574929341673851,
+ "observability_min": 1.7020991549543396e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "0ab10484e72e980e6cce0586b0aa276b0b0279a77819aaaf2463d60a5e446ed7",
+ "raw_normalized_churn": 0.007352941176470588,
+ "raw_xor_churn_total": 40,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "bb58bb9fe709453914035d7d0ba757323e7eeb4dea0666705d0576176f53a4c8",
+ "committed_normalized_churn": 0.008891928864569083,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1449,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 3.3496849027869757e-07,
+ "last_committed_mask_overlap": 41,
+ "last_committed_normalized_gap": 0.03369053080677986,
+ "last_committed_score_gap": 1.1285266054983367e-08,
+ "last_dwell_count": 41,
+ "last_raw_cutoff_score": 3.3496849027869757e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.03369053080677986,
+ "last_raw_score_gap": 1.1285266054983367e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.052388764917850494,
+ "observability_min": 3.143692310914048e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "bb58bb9fe709453914035d7d0ba757323e7eeb4dea0666705d0576176f53a4c8",
+ "raw_normalized_churn": 0.008891928864569083,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 77,
+ "committed_mask_sha256": "2f3665176a670fa00cd9e30d5548339448a60025f3658cd00d11320b5c97e353",
+ "committed_normalized_churn": 0.02696078431372549,
+ "committed_xor_churn_total": 154,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2779,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.469783807640852e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.0040155500173568726,
+ "last_committed_score_gap": 3.4010838589892955e-10,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 8.469783807640852e-08,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.0040155500173568726,
+ "last_raw_score_gap": 3.4010838589892955e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.032247692346572876,
+ "observability_min": 9.515727583675471e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "2f3665176a670fa00cd9e30d5548339448a60025f3658cd00d11320b5c97e353",
+ "raw_normalized_churn": 0.02696078431372549,
+ "raw_xor_churn_total": 154,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 39,
+ "committed_mask_sha256": "c10475a7babdf9cbd864a2b19c1cc5083a327a37b903c4a5be7908f9af5d0e9f",
+ "committed_normalized_churn": 0.03823529411764706,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 981,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.0710044989536982e-05,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.22397583723068237,
+ "last_committed_score_gap": 2.3987913664313965e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 1.0710044989536982e-05,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.22397583723068237,
+ "last_raw_score_gap": 2.3987913664313965e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03929051756858826,
+ "observability_min": 4.4222943529348413e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "c10475a7babdf9cbd864a2b19c1cc5083a327a37b903c4a5be7908f9af5d0e9f",
+ "raw_normalized_churn": 0.03823529411764706,
+ "raw_xor_churn_total": 78,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 99,
+ "committed_mask_sha256": "ee9f67d791ad237700df863798f2da94e7417626f758a33fdca64e5e6dfed4e5",
+ "committed_normalized_churn": 0.04696394686907021,
+ "committed_xor_churn_total": 198,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2009,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 1.256362907042785e-07,
+ "last_committed_mask_overlap": 56,
+ "last_committed_normalized_gap": 0.024962594732642174,
+ "last_committed_score_gap": 3.1362077379526454e-09,
+ "last_dwell_count": 56,
+ "last_raw_cutoff_score": 1.256362907042785e-07,
+ "last_raw_mask_overlap": 56,
+ "last_raw_normalized_gap": 0.024962594732642174,
+ "last_raw_score_gap": 3.1362077379526454e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05668804049491882,
+ "observability_min": 1.1644907260688342e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "ee9f67d791ad237700df863798f2da94e7417626f758a33fdca64e5e6dfed4e5",
+ "raw_normalized_churn": 0.04696394686907021,
+ "raw_xor_churn_total": 198,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "ca73515425d225b7e1ad60cecbf59e4e21368f915b6bebd3b1e00ca75d823fc0",
+ "committed_normalized_churn": 0.020152505446623094,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1799,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.0321397187217372e-07,
+ "last_committed_mask_overlap": 53,
+ "last_committed_normalized_gap": 0.00911655928939581,
+ "last_committed_score_gap": 1.8526122858020244e-09,
+ "last_dwell_count": 53,
+ "last_raw_cutoff_score": 2.0321397187217372e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.00911655928939581,
+ "last_raw_score_gap": 1.8526122858020244e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0888097733259201,
+ "observability_min": 3.832239769963053e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "ca73515425d225b7e1ad60cecbf59e4e21368f915b6bebd3b1e00ca75d823fc0",
+ "raw_normalized_churn": 0.020152505446623094,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "2d0cbdb73df091002e1665b9bd5a4d080b83bf97e4285268bfa57e5a7e48a1d8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1530,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2725698979920708e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7697857618331909,
+ "last_committed_score_gap": 9.796061931410804e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.2725698979920708e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7697857618331909,
+ "last_raw_score_gap": 9.796061931410804e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10586809366941452,
+ "observability_min": 5.9114910300195334e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "2d0cbdb73df091002e1665b9bd5a4d080b83bf97e4285268bfa57e5a7e48a1d8",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "f9858c9c8cd773c2b6fa9d8175d5d02e66cf989a8c1d2cbb3f7aea550f5813bf",
+ "committed_normalized_churn": 0.004357298474945534,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 914,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.2814345912775025e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.020967217162251472,
+ "last_committed_score_gap": 1.5267141861841083e-07,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 7.2814345912775025e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.020967217162251472,
+ "last_raw_score_gap": 1.5267141861841083e-07,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11098583042621613,
+ "observability_min": 6.835514199110548e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "f9858c9c8cd773c2b6fa9d8175d5d02e66cf989a8c1d2cbb3f7aea550f5813bf",
+ "raw_normalized_churn": 0.004357298474945534,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 238,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00045813663746230304,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9502856135368347,
+ "last_committed_score_gap": 0.00043536064913496375,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00045813663746230304,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9502856135368347,
+ "last_raw_score_gap": 0.00043536064913496375,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09153343737125397,
+ "observability_min": 6.519358919376828e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "2ad44af3d87f65540ef70a4482c821edf831f8390f6545c4c96c9cbb9d9c7a1e",
+ "committed_normalized_churn": 0.0196078431372549,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 300,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.458785381051712e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.853740930557251,
+ "last_committed_score_gap": 4.6603883674833924e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 5.458785381051712e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.853740930557251,
+ "last_raw_score_gap": 4.6603883674833924e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10500452667474747,
+ "observability_min": 8.277245555632362e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "2ad44af3d87f65540ef70a4482c821edf831f8390f6545c4c96c9cbb9d9c7a1e",
+ "raw_normalized_churn": 0.0196078431372549,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "3c69eb525cb426b99dbb480f7e200104d6e621b2d4b7f80b5479605bbbacd1f8",
+ "committed_normalized_churn": 0.008403361344537815,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 236,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00012971390970051289,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6826463341712952,
+ "last_committed_score_gap": 8.854872430674732e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00012971390970051289,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6826463341712952,
+ "last_raw_score_gap": 8.854872430674732e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11955423653125763,
+ "observability_min": 3.053013619691569e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "3c69eb525cb426b99dbb480f7e200104d6e621b2d4b7f80b5479605bbbacd1f8",
+ "raw_normalized_churn": 0.008403361344537815,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "915b82622822d2a451ef9857add185ad8a766b4d3eec19c93054eb068b3ec55b",
+ "committed_normalized_churn": 0.00267379679144385,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1865,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.022869224078022e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.622085690498352,
+ "last_committed_score_gap": 4.990912202629261e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 8.022869224078022e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.622085690498352,
+ "last_raw_score_gap": 4.990912202629261e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 34,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10877145081758499,
+ "observability_min": 1.6004232605837387e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "915b82622822d2a451ef9857add185ad8a766b4d3eec19c93054eb068b3ec55b",
+ "raw_normalized_churn": 0.00267379679144385,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ }
+ ],
+ "task_id": 795
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 92,
+ "committed_mask_sha256": "5df230ef0726aef71b1c60daf0f96dd054bc09dc05f1201ed90210a6f3bde00d",
+ "committed_normalized_churn": 0.01036619718309859,
+ "committed_xor_churn_total": 184,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 8783,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.6044995138363447e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.044218599796295166,
+ "last_committed_score_gap": 1.1516732456584577e-08,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 2.6044995138363447e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.044218599796295166,
+ "last_raw_score_gap": 1.1516732456584577e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.031219976022839546,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "5df230ef0726aef71b1c60daf0f96dd054bc09dc05f1201ed90210a6f3bde00d",
+ "raw_normalized_churn": 0.01036619718309859,
+ "raw_xor_churn_total": 184,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 347,
+ "committed_mask_sha256": "f65e2ab5215f0cb3a58b7999f90e9d0daf082a93c7aebdf9d28b091fc5979ec8",
+ "committed_normalized_churn": 0.036526315789473685,
+ "committed_xor_churn_total": 694,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 9153,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 8,
+ "last_committed_cutoff_score": 2.4169708012777846e-08,
+ "last_committed_mask_overlap": 372,
+ "last_committed_normalized_gap": 0.02702946588397026,
+ "last_committed_score_gap": 6.532943075399089e-10,
+ "last_dwell_count": 372,
+ "last_raw_cutoff_score": 2.4169708012777846e-08,
+ "last_raw_mask_overlap": 372,
+ "last_raw_normalized_gap": 0.02702946588397026,
+ "last_raw_score_gap": 6.532943075399089e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09982314705848694,
+ "observability_min": 1.6722284668091447e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "f65e2ab5215f0cb3a58b7999f90e9d0daf082a93c7aebdf9d28b091fc5979ec8",
+ "raw_normalized_churn": 0.036526315789473685,
+ "raw_xor_churn_total": 694,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 77,
+ "committed_mask_sha256": "3072cbc9979a5864e629ee04056786fc145167c4fd0e779d521bf2e7d8692306",
+ "committed_normalized_churn": 0.011449814126394052,
+ "committed_xor_churn_total": 154,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 6648,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7717798073135782e-07,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": 0.12331373244524002,
+ "last_committed_score_gap": 2.184847858188732e-08,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 1.7717798073135782e-07,
+ "last_raw_mask_overlap": 269,
+ "last_raw_normalized_gap": 0.12331373244524002,
+ "last_raw_score_gap": 2.184847858188732e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.062837153673172,
+ "observability_min": 3.180938179525583e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "3072cbc9979a5864e629ee04056786fc145167c4fd0e779d521bf2e7d8692306",
+ "raw_normalized_churn": 0.011449814126394052,
+ "raw_xor_churn_total": 154,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "27cc1b55c850d6f083ff549803e2423b7c78c95bc0fe1547072c9048b1669471",
+ "committed_normalized_churn": 0.004916201117318436,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 4453,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 3.853532234643353e-06,
+ "last_committed_mask_overlap": 178,
+ "last_committed_normalized_gap": 0.2031739503145218,
+ "last_committed_score_gap": 7.829373771528481e-07,
+ "last_dwell_count": 178,
+ "last_raw_cutoff_score": 3.853532234643353e-06,
+ "last_raw_mask_overlap": 178,
+ "last_raw_normalized_gap": 0.2031739503145218,
+ "last_raw_score_gap": 7.829373771528481e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.044981103390455246,
+ "observability_min": 1.575186092672709e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "27cc1b55c850d6f083ff549803e2423b7c78c95bc0fe1547072c9048b1669471",
+ "raw_normalized_churn": 0.004916201117318436,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "a6d6375a5b4bdf6114d789733130586918edd36fd2598e0ce78226638b130b42",
+ "committed_normalized_churn": 0.002162162162162162,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 4615,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.844587793850224e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.5871062278747559,
+ "last_committed_score_gap": 5.779818934570358e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 9.844587793850224e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.5871062278747559,
+ "last_raw_score_gap": 5.779818934570358e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04137483984231949,
+ "observability_min": 4.59279414499747e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "a6d6375a5b4bdf6114d789733130586918edd36fd2598e0ce78226638b130b42",
+ "raw_normalized_churn": 0.002162162162162162,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 53,
+ "committed_mask_sha256": "7823d5bd09138a5536c4e7363bed11e16f13fa5acff4bb7fddc48259535cc8cc",
+ "committed_normalized_churn": 0.02019047619047619,
+ "committed_xor_churn_total": 106,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 2572,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.1420297002805455e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.26917916536331177,
+ "last_committed_score_gap": 5.765897981291346e-08,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 2.1420297002805455e-07,
+ "last_raw_mask_overlap": 105,
+ "last_raw_normalized_gap": 0.26917916536331177,
+ "last_raw_score_gap": 5.765897981291346e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04036920517683029,
+ "observability_min": 1.8227384046554107e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "7823d5bd09138a5536c4e7363bed11e16f13fa5acff4bb7fddc48259535cc8cc",
+ "raw_normalized_churn": 0.02019047619047619,
+ "raw_xor_churn_total": 106,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "1992b47765762d72da2d4dceb81315ea5945f31e21fc64856d3df14cf64a846f",
+ "committed_normalized_churn": 0.0055,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 1989,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.6290740632030065e-06,
+ "last_committed_mask_overlap": 79,
+ "last_committed_normalized_gap": 0.10536929965019226,
+ "last_committed_score_gap": 1.7165439203381538e-07,
+ "last_dwell_count": 79,
+ "last_raw_cutoff_score": 1.6290740632030065e-06,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.10536929965019226,
+ "last_raw_score_gap": 1.7165439203381538e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05047454684972763,
+ "observability_min": 3.1932006550050573e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "1992b47765762d72da2d4dceb81315ea5945f31e21fc64856d3df14cf64a846f",
+ "raw_normalized_churn": 0.0055,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "e8090297cfdf5bb0394d1fb3cbffe77a5eccd97466f0920688417d25bb0f808f",
+ "committed_normalized_churn": 0.008372093023255815,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1066,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.796515551992343e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.48406633734703064,
+ "last_committed_score_gap": 2.805898020596942e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 5.796515551992343e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.48406633734703064,
+ "last_raw_score_gap": 2.805898020596942e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06022842228412628,
+ "observability_min": 2.7964279070147313e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "e8090297cfdf5bb0394d1fb3cbffe77a5eccd97466f0920688417d25bb0f808f",
+ "raw_normalized_churn": 0.008372093023255815,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 78,
+ "committed_mask_sha256": "c235a37940ca047eba3a097a06fcfd0976396dc2ffd62dc120ef2d378c0d934c",
+ "committed_normalized_churn": 0.037142857142857144,
+ "committed_xor_churn_total": 156,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2022,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.708215031878353e-08,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.40904250741004944,
+ "last_committed_score_gap": 3.971072715103219e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 9.708215031878353e-08,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.40904250741004944,
+ "last_raw_score_gap": 3.971072715103219e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03817868232727051,
+ "observability_min": 1.3889584238313546e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "c235a37940ca047eba3a097a06fcfd0976396dc2ffd62dc120ef2d378c0d934c",
+ "raw_normalized_churn": 0.037142857142857144,
+ "raw_xor_churn_total": 156,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 16,
+ "committed_mask_sha256": "d01bb2a4adaa03a5fa9a94a13b3c80a980c2c9a45391ba588d6e117cd5eaf659",
+ "committed_normalized_churn": 0.021333333333333333,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 734,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.934459972602781e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.46789225935935974,
+ "last_committed_score_gap": 3.7124723348824773e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 7.934459972602781e-06,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.46789225935935974,
+ "last_raw_score_gap": 3.7124723348824773e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.030100906267762184,
+ "observability_min": 1.9862469002873695e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "d01bb2a4adaa03a5fa9a94a13b3c80a980c2c9a45391ba588d6e117cd5eaf659",
+ "raw_normalized_churn": 0.021333333333333333,
+ "raw_xor_churn_total": 32,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 60,
+ "committed_mask_sha256": "244d249368071bd4df7dbb7cce29d46183d6b223f67cd8645d1352c9dda83c95",
+ "committed_normalized_churn": 0.03870967741935484,
+ "committed_xor_churn_total": 120,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 1490,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7962636889023997e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.21955086290836334,
+ "last_committed_score_gap": 3.9437125565200404e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 1.7962636889023997e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.21955086290836334,
+ "last_raw_score_gap": 3.9437125565200404e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05696702003479004,
+ "observability_min": 7.703260251901156e-08,
+ "observability_trace": 0.9999998807907104,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "244d249368071bd4df7dbb7cce29d46183d6b223f67cd8645d1352c9dda83c95",
+ "raw_normalized_churn": 0.03870967741935484,
+ "raw_xor_churn_total": 120,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 31,
+ "committed_mask_sha256": "7e7680ac97893915f372961b64929f33c7841c2f000c7e32f8b46e4649535a0d",
+ "committed_normalized_churn": 0.022962962962962963,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1319,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.519226143249398e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.08559604734182358,
+ "last_committed_score_gap": 2.156357936655695e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.519226143249398e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.08559604734182358,
+ "last_raw_score_gap": 2.156357936655695e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0934605747461319,
+ "observability_min": 9.026810943169039e-08,
+ "observability_trace": 0.9999998807907104,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "7e7680ac97893915f372961b64929f33c7841c2f000c7e32f8b46e4649535a0d",
+ "raw_normalized_churn": 0.022962962962962963,
+ "raw_xor_churn_total": 62,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "6f75a560dcc1ad260c6e1b67819050e192872503d360aba155f93ca0baa7ab50",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1125,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.502738066657912e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.38005298376083374,
+ "last_committed_score_gap": 3.611543888837332e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 9.502738066657912e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.38005298376083374,
+ "last_raw_score_gap": 3.611543888837332e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10118542611598969,
+ "observability_min": 5.95310787332437e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "6f75a560dcc1ad260c6e1b67819050e192872503d360aba155f93ca0baa7ab50",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "bf8e8a5e80783e28aca62a09da62fc220aa80c191670e1dc0c99a9737c01feea",
+ "committed_normalized_churn": 0.008888888888888889,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 669,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.969987351913005e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.7534035444259644,
+ "last_committed_score_gap": 1.484195399825694e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.969987351913005e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.7534035444259644,
+ "last_raw_score_gap": 1.484195399825694e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11175792664289474,
+ "observability_min": 5.38903428548565e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "bf8e8a5e80783e28aca62a09da62fc220aa80c191670e1dc0c99a9737c01feea",
+ "raw_normalized_churn": 0.008888888888888889,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "dead25b935c243869d3457164cc1e2cd5f1278064368561169648124f13cb4c1",
+ "committed_normalized_churn": 0.005714285714285714,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 174,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00030299232457764447,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.843914806842804,
+ "last_committed_score_gap": 0.00025569970603100955,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00030299232457764447,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.843914806842804,
+ "last_raw_score_gap": 0.00025569970603100955,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09068001061677933,
+ "observability_min": 1.4598225561712752e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "dead25b935c243869d3457164cc1e2cd5f1278064368561169648124f13cb4c1",
+ "raw_normalized_churn": 0.005714285714285714,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "170e76a6b32ed947b8d8f92908402b66abd8824d46e162d333ef6e6f0d665018",
+ "committed_normalized_churn": 0.017777777777777778,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 221,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 0.0001531853195047006,
+ "last_committed_mask_overlap": 8,
+ "last_committed_normalized_gap": 0.2969858944416046,
+ "last_committed_score_gap": 4.549387813312933e-05,
+ "last_dwell_count": 8,
+ "last_raw_cutoff_score": 0.0001531853195047006,
+ "last_raw_mask_overlap": 8,
+ "last_raw_normalized_gap": 0.2969858944416046,
+ "last_raw_score_gap": 4.549387813312933e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10777474194765091,
+ "observability_min": 7.118573286390983e-09,
+ "observability_trace": 0.9999998807907104,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "170e76a6b32ed947b8d8f92908402b66abd8824d46e162d333ef6e6f0d665018",
+ "raw_normalized_churn": 0.017777777777777778,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "ee53914920a26fcad20cb8f248265a21a257a771d2680e2cd2a1200c35012bd9",
+ "committed_normalized_churn": 0.017142857142857144,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 172,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 0.00034274233621545136,
+ "last_committed_mask_overlap": 6,
+ "last_committed_normalized_gap": 0.10627759248018265,
+ "last_committed_score_gap": 3.642583033069968e-05,
+ "last_dwell_count": 6,
+ "last_raw_cutoff_score": 0.00034274233621545136,
+ "last_raw_mask_overlap": 6,
+ "last_raw_normalized_gap": 0.10627759248018265,
+ "last_raw_score_gap": 3.642583033069968e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1392969936132431,
+ "observability_min": 3.4118976088848285e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "ee53914920a26fcad20cb8f248265a21a257a771d2680e2cd2a1200c35012bd9",
+ "raw_normalized_churn": 0.017142857142857144,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "48f68ee3844615192a9214cc88dd5d5920c2161a6b25ca2d041e8aeb4acae3ad",
+ "committed_normalized_churn": 0.004363636363636364,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1369,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4683520930702798e-05,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.5922368764877319,
+ "last_committed_score_gap": 8.696122677065432e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 1.4683520930702798e-05,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.5922368764877319,
+ "last_raw_score_gap": 8.696122677065432e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 25,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0993814691901207,
+ "observability_min": 1.4003050274880025e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "48f68ee3844615192a9214cc88dd5d5920c2161a6b25ca2d041e8aeb4acae3ad",
+ "raw_normalized_churn": 0.004363636363636364,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ }
+ ],
+ "task_id": 944
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 139,
+ "committed_mask_sha256": "d5ac943e19ff8c4489295ff5630ed4f9a407410c07d513eca63aaf9df7a06dfe",
+ "committed_normalized_churn": 0.010582413399314807,
+ "committed_xor_churn_total": 278,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 12996,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 2.1354648538363108e-07,
+ "last_committed_mask_overlap": 350,
+ "last_committed_normalized_gap": 0.04657643660902977,
+ "last_committed_score_gap": 9.946234058588743e-09,
+ "last_dwell_count": 350,
+ "last_raw_cutoff_score": 2.1354648538363108e-07,
+ "last_raw_mask_overlap": 350,
+ "last_raw_normalized_gap": 0.04657643660902977,
+ "last_raw_score_gap": 9.946234058588743e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04258858412504196,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "d5ac943e19ff8c4489295ff5630ed4f9a407410c07d513eca63aaf9df7a06dfe",
+ "raw_normalized_churn": 0.010582413399314807,
+ "raw_xor_churn_total": 278,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 327,
+ "committed_mask_sha256": "03f2c6853a8e5af9bfed2e0037bb06034c1072925e6bbc753dec75888496e781",
+ "committed_normalized_churn": 0.0232574679943101,
+ "committed_xor_churn_total": 654,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 13733,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 7,
+ "last_committed_cutoff_score": 5.484499077113014e-09,
+ "last_committed_mask_overlap": 373,
+ "last_committed_normalized_gap": 0.05402650311589241,
+ "last_committed_score_gap": 2.9630831122062773e-10,
+ "last_dwell_count": 373,
+ "last_raw_cutoff_score": 5.484499077113014e-09,
+ "last_raw_mask_overlap": 373,
+ "last_raw_normalized_gap": 0.05402650311589241,
+ "last_raw_score_gap": 2.9630831122062773e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10692340135574341,
+ "observability_min": 1.8404200385901959e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "03f2c6853a8e5af9bfed2e0037bb06034c1072925e6bbc753dec75888496e781",
+ "raw_normalized_churn": 0.0232574679943101,
+ "raw_xor_churn_total": 654,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 97,
+ "committed_mask_sha256": "7431cc81b9949c4f9288b5a73daa25bd08b43b66d6bef71390a30eca9ffe3520",
+ "committed_normalized_churn": 0.009745805284838743,
+ "committed_xor_churn_total": 194,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 9856,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 8.492001768445334e-08,
+ "last_committed_mask_overlap": 265,
+ "last_committed_normalized_gap": 0.05401119217276573,
+ "last_committed_score_gap": 4.58663151903238e-09,
+ "last_dwell_count": 265,
+ "last_raw_cutoff_score": 8.492001768445334e-08,
+ "last_raw_mask_overlap": 265,
+ "last_raw_normalized_gap": 0.05401119217276573,
+ "last_raw_score_gap": 4.58663151903238e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06558335572481155,
+ "observability_min": 1.5244880913201087e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "7431cc81b9949c4f9288b5a73daa25bd08b43b66d6bef71390a30eca9ffe3520",
+ "raw_normalized_churn": 0.009745805284838743,
+ "raw_xor_churn_total": 194,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "1df93a960c43aabdbce870e6102edee78714fa3376da3d74525395a259835451",
+ "committed_normalized_churn": 0.0033217575117016457,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6601,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.8953418222954497e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.3082221448421478,
+ "last_committed_score_gap": 8.924084795580711e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.8953418222954497e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.3082221448421478,
+ "last_raw_score_gap": 8.924084795580711e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04007241502404213,
+ "observability_min": 7.681523861435835e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "1df93a960c43aabdbce870e6102edee78714fa3376da3d74525395a259835451",
+ "raw_normalized_churn": 0.0033217575117016457,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "87e84611829f9044a1e2ef0a2f99a63a06407aed1f5a8764f392bcc9b8bcfbd2",
+ "committed_normalized_churn": 0.0018991964937910884,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 6832,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.98259429504833e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.5798243880271912,
+ "last_committed_score_gap": 5.208327138461755e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.98259429504833e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.5798243880271912,
+ "last_raw_score_gap": 5.208327138461755e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04027675837278366,
+ "observability_min": 2.1839521302524645e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "87e84611829f9044a1e2ef0a2f99a63a06407aed1f5a8764f392bcc9b8bcfbd2",
+ "raw_normalized_churn": 0.0018991964937910884,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 90,
+ "committed_mask_sha256": "88ab6f1ffd47c022cc5af152777979dc4d4437eaa67a5c6a807701cbe2f88930",
+ "committed_normalized_churn": 0.023166023166023165,
+ "committed_xor_churn_total": 180,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3795,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.5261019825629774e-07,
+ "last_committed_mask_overlap": 103,
+ "last_committed_normalized_gap": 0.1608920693397522,
+ "last_committed_score_gap": 2.4553770572310896e-08,
+ "last_dwell_count": 103,
+ "last_raw_cutoff_score": 1.5261019825629774e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.1608920693397522,
+ "last_raw_score_gap": 2.4553770572310896e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04807084798812866,
+ "observability_min": 1.972011176576416e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "88ab6f1ffd47c022cc5af152777979dc4d4437eaa67a5c6a807701cbe2f88930",
+ "raw_normalized_churn": 0.023166023166023165,
+ "raw_xor_churn_total": 180,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "f9ba5b4a97ea86f0c6857bc41060be46d28d89eee4648c7894643e224e1ffe2b",
+ "committed_normalized_churn": 0.009121621621621622,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2933,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5931952930259285e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.4241234064102173,
+ "last_committed_score_gap": 6.757114192623703e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.5931952930259285e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.4241234064102173,
+ "last_raw_score_gap": 6.757114192623703e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05533228814601898,
+ "observability_min": 3.401095227673068e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "f9ba5b4a97ea86f0c6857bc41060be46d28d89eee4648c7894643e224e1ffe2b",
+ "raw_normalized_churn": 0.009121621621621622,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 16,
+ "committed_mask_sha256": "80d1a1fd9f85f55258644a37db6204bd9f7834c5c34883ce9585b914c0047174",
+ "committed_normalized_churn": 0.01005656819610308,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1575,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.2326157989027706e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.1333576738834381,
+ "last_committed_score_gap": 2.9773644882880035e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 2.2326157989027706e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.1333576738834381,
+ "last_raw_score_gap": 2.9773644882880035e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05366378650069237,
+ "observability_min": 1.9442682130943467e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "80d1a1fd9f85f55258644a37db6204bd9f7834c5c34883ce9585b914c0047174",
+ "raw_normalized_churn": 0.01005656819610308,
+ "raw_xor_churn_total": 32,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 83,
+ "committed_mask_sha256": "a008b0c933d74134d5516e89869f9ba16375fdd74f867454a26dd159ddf292c0",
+ "committed_normalized_churn": 0.026705276705276705,
+ "committed_xor_churn_total": 166,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 3025,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.83939258958344e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": 0.0917503759264946,
+ "last_committed_score_gap": 9.027679936934874e-09,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 9.83939258958344e-08,
+ "last_raw_mask_overlap": 83,
+ "last_raw_normalized_gap": 0.0917503759264946,
+ "last_raw_score_gap": 9.027679936934874e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.036412905901670456,
+ "observability_min": 2.0049141369327117e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "a008b0c933d74134d5516e89869f9ba16375fdd74f867454a26dd159ddf292c0",
+ "raw_normalized_churn": 0.026705276705276705,
+ "raw_xor_churn_total": 166,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 28,
+ "committed_mask_sha256": "5dc2fd773ca57db82df49dc5060323f0a885434c1872b27ec643435f27173830",
+ "committed_normalized_churn": 0.025225225225225224,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1082,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.42247970669996e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.2817460894584656,
+ "last_committed_score_gap": 2.6547468223725446e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 9.42247970669996e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.2817460894584656,
+ "last_raw_score_gap": 2.6547468223725446e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03535793721675873,
+ "observability_min": 2.1095702606999112e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "5dc2fd773ca57db82df49dc5060323f0a885434c1872b27ec643435f27173830",
+ "raw_normalized_churn": 0.025225225225225224,
+ "raw_xor_churn_total": 56,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 90,
+ "committed_mask_sha256": "8494716702c147a8357c98de22df4591733d62702f1d580cddef19c8ec0b4482",
+ "committed_normalized_churn": 0.03923278116826504,
+ "committed_xor_churn_total": 180,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2204,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 1.3530795683891483e-07,
+ "last_committed_mask_overlap": 57,
+ "last_committed_normalized_gap": 0.00830094050616026,
+ "last_committed_score_gap": 1.1231833241254208e-09,
+ "last_dwell_count": 57,
+ "last_raw_cutoff_score": 1.3530795683891483e-07,
+ "last_raw_mask_overlap": 57,
+ "last_raw_normalized_gap": 0.00830094050616026,
+ "last_raw_score_gap": 1.1231833241254208e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04711860790848732,
+ "observability_min": 2.611485427905791e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "8494716702c147a8357c98de22df4591733d62702f1d580cddef19c8ec0b4482",
+ "raw_normalized_churn": 0.03923278116826504,
+ "raw_xor_churn_total": 180,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "d8f4c871d9b1d7b07f5ce581889e1a033c9156a5952d8fa7ee36976cc9e9efa7",
+ "committed_normalized_churn": 0.011011011011011011,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1976,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.9535926298885897e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.4408932626247406,
+ "last_committed_score_gap": 8.613258017931003e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.9535926298885897e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.4408932626247406,
+ "last_raw_score_gap": 8.613258017931003e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10176379978656769,
+ "observability_min": 5.1274464674122555e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d8f4c871d9b1d7b07f5ce581889e1a033c9156a5952d8fa7ee36976cc9e9efa7",
+ "raw_normalized_churn": 0.011011011011011011,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "5a49cbb2a070adbd48a549313bbc38d5ef283fa07d27329d9031b37e2e42e6f6",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1665,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2451966540538706e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.36945268511772156,
+ "last_committed_score_gap": 4.600412466970738e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.2451966540538706e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.36945268511772156,
+ "last_raw_score_gap": 4.600412466970738e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11148277670145035,
+ "observability_min": 4.687943810921524e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "5a49cbb2a070adbd48a549313bbc38d5ef283fa07d27329d9031b37e2e42e6f6",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "11ac9dbb6d384fb1c57062e7204fec772247d8a4f93bb62a92ab1cd35cef0090",
+ "committed_normalized_churn": 0.003003003003003003,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 996,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.330123788851779e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8085615634918213,
+ "last_committed_score_gap": 1.8840484699467197e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.330123788851779e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8085615634918213,
+ "last_raw_score_gap": 1.8840484699467197e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11748040467500687,
+ "observability_min": 5.469217523312864e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "11ac9dbb6d384fb1c57062e7204fec772247d8a4f93bb62a92ab1cd35cef0090",
+ "raw_normalized_churn": 0.003003003003003003,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "8edf3633b7d15c1848682380a26764a099718966e4c1076dd114d88e4dce5f52",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 259,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00043146181269548833,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7138229012489319,
+ "last_committed_score_gap": 0.0003079873276874423,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00043146181269548833,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7138229012489319,
+ "last_raw_score_gap": 0.0003079873276874423,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09728288650512695,
+ "observability_min": 4.52285888741244e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "8edf3633b7d15c1848682380a26764a099718966e4c1076dd114d88e4dce5f52",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "0232a07cd4f1758c624f42624fbaf384e395b7a65c1ea8315f05d7fc54346b41",
+ "committed_normalized_churn": 0.009009009009009009,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 330,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00011915135837625712,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.8290888667106628,
+ "last_committed_score_gap": 9.878706623567268e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00011915135837625712,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.8290888667106628,
+ "last_raw_score_gap": 9.878706623567268e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10758209228515625,
+ "observability_min": 3.911645674037345e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "0232a07cd4f1758c624f42624fbaf384e395b7a65c1ea8315f05d7fc54346b41",
+ "raw_normalized_churn": 0.009009009009009009,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "3f2a5038575c27b467b38aa222f8bbfc752605dac4b8e082a61d28d49908c05e",
+ "committed_normalized_churn": 0.003861003861003861,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 258,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010094292520079762,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8186644911766052,
+ "last_committed_score_gap": 8.263839117716998e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00010094292520079762,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8186644911766052,
+ "last_raw_score_gap": 8.263839117716998e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1331717073917389,
+ "observability_min": 1.2420613870745001e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "3f2a5038575c27b467b38aa222f8bbfc752605dac4b8e082a61d28d49908c05e",
+ "raw_normalized_churn": 0.003861003861003861,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "7f8635af827856b76683e6e5b027f4b2e7deb70562236817eb343680b84f8090",
+ "committed_normalized_churn": 0.0014742014742014742,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 2032,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0572052815405186e-05,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.7579495906829834,
+ "last_committed_score_gap": 8.013083061086945e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 1.0572052815405186e-05,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.7579495906829834,
+ "last_raw_score_gap": 8.013083061086945e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 37,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11510322988033295,
+ "observability_min": 1.0786569415444092e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "7f8635af827856b76683e6e5b027f4b2e7deb70562236817eb343680b84f8090",
+ "raw_normalized_churn": 0.0014742014742014742,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ }
+ ],
+ "task_id": 653
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 76,
+ "committed_mask_sha256": "f338214e66d3c467527a81699762cc339554de626680376b1f3cf63d584e25e5",
+ "committed_normalized_churn": 0.010194500335345406,
+ "committed_xor_churn_total": 152,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 7379,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.2865422977247363e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.012167349457740784,
+ "last_committed_score_gap": 2.782115871013957e-09,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 2.2865422977247363e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.012167349457740784,
+ "last_raw_score_gap": 2.782115871013957e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03602820634841919,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "f338214e66d3c467527a81699762cc339554de626680376b1f3cf63d584e25e5",
+ "raw_normalized_churn": 0.010194500335345406,
+ "raw_xor_churn_total": 152,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 198,
+ "committed_mask_sha256": "609864373e80fd166e4eb8348b1ff247de8b3a06895f32b89d6d58b31ef79e61",
+ "committed_normalized_churn": 0.02481203007518797,
+ "committed_xor_churn_total": 396,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 7782,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 10,
+ "last_committed_cutoff_score": 2.524451758745272e-08,
+ "last_committed_mask_overlap": 370,
+ "last_committed_normalized_gap": 0.0027982464525848627,
+ "last_committed_score_gap": 7.064038243242976e-11,
+ "last_dwell_count": 370,
+ "last_raw_cutoff_score": 2.524451758745272e-08,
+ "last_raw_mask_overlap": 370,
+ "last_raw_normalized_gap": 0.0027982464525848627,
+ "last_raw_score_gap": 7.064038243242976e-11,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1209949254989624,
+ "observability_min": 1.1872909322363512e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "609864373e80fd166e4eb8348b1ff247de8b3a06895f32b89d6d58b31ef79e61",
+ "raw_normalized_churn": 0.02481203007518797,
+ "raw_xor_churn_total": 396,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 56,
+ "committed_mask_sha256": "75d3763571b17a1eca230a85b49d83e78d3ae4b7d8bb737d29723b49c791f91c",
+ "committed_normalized_churn": 0.009913258983890954,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 5593,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 1.4311235929653776e-07,
+ "last_committed_mask_overlap": 263,
+ "last_committed_normalized_gap": 0.0008833602187223732,
+ "last_committed_score_gap": 1.2641976354643703e-10,
+ "last_dwell_count": 263,
+ "last_raw_cutoff_score": 1.4311235929653776e-07,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.0008833602187223732,
+ "last_raw_score_gap": 1.2641976354643703e-10,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06945118308067322,
+ "observability_min": 1.8235160048618582e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "75d3763571b17a1eca230a85b49d83e78d3ae4b7d8bb737d29723b49c791f91c",
+ "raw_normalized_churn": 0.009913258983890954,
+ "raw_xor_churn_total": 112,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 12,
+ "committed_mask_sha256": "2e3b56e690882cd8ee290b2ca741a9c6e2c8e0ec2289b4520b941800444a5701",
+ "committed_normalized_churn": 0.0031923383878691143,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 3747,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.354723048687447e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.45455414056777954,
+ "last_committed_score_gap": 1.5249032685460406e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.354723048687447e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.45455414056777954,
+ "last_raw_score_gap": 1.5249032685460406e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04441952332854271,
+ "observability_min": 1.3927939690461244e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "2e3b56e690882cd8ee290b2ca741a9c6e2c8e0ec2289b4520b941800444a5701",
+ "raw_normalized_churn": 0.0031923383878691143,
+ "raw_xor_churn_total": 24,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "f937915d86726a7c0cc4ec45780c79c725f5cb36c7af2d440baf24a583b246df",
+ "committed_normalized_churn": 0.002059202059202059,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 3877,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.443448109574092e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.03375288471579552,
+ "last_committed_score_gap": 2.8499073323473567e-08,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.443448109574092e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.03375288471579552,
+ "last_raw_score_gap": 2.8499073323473567e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04159999638795853,
+ "observability_min": 9.055372451882704e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "f937915d86726a7c0cc4ec45780c79c725f5cb36c7af2d440baf24a583b246df",
+ "raw_normalized_churn": 0.002059202059202059,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 37,
+ "committed_mask_sha256": "eefdd0a08ce4261d5cb2f8be1b4fee1208ccfc19aca25c587054d2c5c2688d7b",
+ "committed_normalized_churn": 0.016780045351473923,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 2168,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 3.069589809001627e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.035877618938684464,
+ "last_committed_score_gap": 1.1012957656930666e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 3.069589809001627e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.035877618938684464,
+ "last_raw_score_gap": 1.1012957656930666e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04868088290095329,
+ "observability_min": 9.122011590534385e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "eefdd0a08ce4261d5cb2f8be1b4fee1208ccfc19aca25c587054d2c5c2688d7b",
+ "raw_normalized_churn": 0.016780045351473923,
+ "raw_xor_churn_total": 74,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "0383b39670acf37537b0f0c804c77b9e4d1d1377feeb34b344d325e659621195",
+ "committed_normalized_churn": 0.005952380952380952,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 1670,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5874207974775345e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.6309568285942078,
+ "last_committed_score_gap": 1.0015940006269375e-06,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.5874207974775345e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.6309568285942078,
+ "last_raw_score_gap": 1.0015940006269375e-06,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05510888621211052,
+ "observability_min": 2.051457244078847e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "0383b39670acf37537b0f0c804c77b9e4d1d1377feeb34b344d325e659621195",
+ "raw_normalized_churn": 0.005952380952380952,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "b779e77598901cb602df2e58e698a3c1d18c15248f41dde56aeb82aaa4920f96",
+ "committed_normalized_churn": 0.009966777408637873,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 894,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 4.4580770008906256e-07,
+ "last_committed_mask_overlap": 41,
+ "last_committed_normalized_gap": 0.1246996596455574,
+ "last_committed_score_gap": 5.559206783800619e-08,
+ "last_dwell_count": 41,
+ "last_raw_cutoff_score": 4.4580770008906256e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.1246996596455574,
+ "last_raw_score_gap": 5.559206783800619e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06010860949754715,
+ "observability_min": 1.2751618783113372e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "b779e77598901cb602df2e58e698a3c1d18c15248f41dde56aeb82aaa4920f96",
+ "raw_normalized_churn": 0.009966777408637873,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 56,
+ "committed_mask_sha256": "da707bd4da7f02a946e92784a18bff59b514971cf49de02eafda8761cbf5dd74",
+ "committed_normalized_churn": 0.031746031746031744,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 1708,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.0959406893107371e-07,
+ "last_committed_mask_overlap": 81,
+ "last_committed_normalized_gap": 0.0766579657793045,
+ "last_committed_score_gap": 8.401258355661412e-09,
+ "last_dwell_count": 81,
+ "last_raw_cutoff_score": 1.0959406893107371e-07,
+ "last_raw_mask_overlap": 81,
+ "last_raw_normalized_gap": 0.0766579657793045,
+ "last_raw_score_gap": 8.401258355661412e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04214879125356674,
+ "observability_min": 2.3579825381148112e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "da707bd4da7f02a946e92784a18bff59b514971cf49de02eafda8761cbf5dd74",
+ "raw_normalized_churn": 0.031746031746031744,
+ "raw_xor_churn_total": 112,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 21,
+ "committed_mask_sha256": "c49d2772eca45a8f1d7eee98696c2c6e6ee4b24176cafa701c1540c1156c1345",
+ "committed_normalized_churn": 0.03333333333333333,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 609,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.1722459021257237e-05,
+ "last_committed_mask_overlap": 28,
+ "last_committed_normalized_gap": 0.006909235846251249,
+ "last_committed_score_gap": 8.099323167698458e-08,
+ "last_dwell_count": 28,
+ "last_raw_cutoff_score": 1.1722459021257237e-05,
+ "last_raw_mask_overlap": 28,
+ "last_raw_normalized_gap": 0.006909235846251249,
+ "last_raw_score_gap": 8.099323167698458e-08,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.029558712616562843,
+ "observability_min": 2.8549530384225363e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "c49d2772eca45a8f1d7eee98696c2c6e6ee4b24176cafa701c1540c1156c1345",
+ "raw_normalized_churn": 0.03333333333333333,
+ "raw_xor_churn_total": 42,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 54,
+ "committed_mask_sha256": "b951568a90ee68a8c63117b021b9da9e4c334df274ab8fec2852ebcd47d272fa",
+ "committed_normalized_churn": 0.041474654377880185,
+ "committed_xor_churn_total": 108,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 1248,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 2.0839910064296419e-07,
+ "last_committed_mask_overlap": 58,
+ "last_committed_normalized_gap": 0.025838568806648254,
+ "last_committed_score_gap": 5.384734436120198e-09,
+ "last_dwell_count": 58,
+ "last_raw_cutoff_score": 2.0839910064296419e-07,
+ "last_raw_mask_overlap": 58,
+ "last_raw_normalized_gap": 0.025838568806648254,
+ "last_raw_score_gap": 5.384734436120198e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06064045429229736,
+ "observability_min": 1.9472479095838935e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b951568a90ee68a8c63117b021b9da9e4c334df274ab8fec2852ebcd47d272fa",
+ "raw_normalized_churn": 0.041474654377880185,
+ "raw_xor_churn_total": 108,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "7ddd7795d7cf95d72808b82b050231fc75d9a2c9d48afa406f6ef56de0104115",
+ "committed_normalized_churn": 0.023809523809523808,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1107,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 3.6468532016442623e-07,
+ "last_committed_mask_overlap": 49,
+ "last_committed_normalized_gap": 0.00525678601115942,
+ "last_committed_score_gap": 1.9170727227901807e-09,
+ "last_dwell_count": 49,
+ "last_raw_cutoff_score": 3.6468532016442623e-07,
+ "last_raw_mask_overlap": 49,
+ "last_raw_normalized_gap": 0.00525678601115942,
+ "last_raw_score_gap": 1.9170727227901807e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08561830222606659,
+ "observability_min": 3.51168232270993e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "7ddd7795d7cf95d72808b82b050231fc75d9a2c9d48afa406f6ef56de0104115",
+ "raw_normalized_churn": 0.023809523809523808,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "d30d3cb0d74b515be1b28961c5a8172619c119b148c92010271189e68d0e9ee0",
+ "committed_normalized_churn": 0.0010582010582010583,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 944,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6101412256830372e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7219364047050476,
+ "last_committed_score_gap": 1.1624195394688286e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.6101412256830372e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7219364047050476,
+ "last_raw_score_gap": 1.1624195394688286e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10442441701889038,
+ "observability_min": 2.2668448451668155e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "d30d3cb0d74b515be1b28961c5a8172619c119b148c92010271189e68d0e9ee0",
+ "raw_normalized_churn": 0.0010582010582010583,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "4a7790fefc76f0e6f6d7d9ad4f6ea3bc6ee165f049ffc5be850529216852fe2c",
+ "committed_normalized_churn": 0.005291005291005291,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 564,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3926241990702692e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.5159022212028503,
+ "last_committed_score_gap": 7.184578862506896e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.3926241990702692e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.5159022212028503,
+ "last_raw_score_gap": 7.184578862506896e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11745685338973999,
+ "observability_min": 3.0500512337994223e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "4a7790fefc76f0e6f6d7d9ad4f6ea3bc6ee165f049ffc5be850529216852fe2c",
+ "raw_normalized_churn": 0.005291005291005291,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "10acbc451009db8766c9bcf3c51b1ff7859f38ce55684fb5b70b0c044dcb83d0",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0004494785680435598,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6207436323165894,
+ "last_committed_score_gap": 0.0002790109720081091,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0004494785680435598,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6207436323165894,
+ "last_raw_score_gap": 0.0002790109720081091,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09103486686944962,
+ "observability_min": 6.833012378137937e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "10acbc451009db8766c9bcf3c51b1ff7859f38ce55684fb5b70b0c044dcb83d0",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "a269316861f02605fa2748786562caa4ffcceab9d92f9adaa8c48a1f7bc8d0ef",
+ "committed_normalized_churn": 0.015873015873015872,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 186,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0001413264690199867,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.8431950807571411,
+ "last_committed_score_gap": 0.00011916577932424843,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.0001413264690199867,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.8431950807571411,
+ "last_raw_score_gap": 0.00011916577932424843,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1093296930193901,
+ "observability_min": 3.311284757501198e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "a269316861f02605fa2748786562caa4ffcceab9d92f9adaa8c48a1f7bc8d0ef",
+ "raw_normalized_churn": 0.015873015873015872,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "e2a06d7cf6ce76941d364058db20c85cfb4bbc9811bfa50c4749d978791f9d2f",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0001786348148016259,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8493877649307251,
+ "last_committed_score_gap": 0.00015173022984527051,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0001786348148016259,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8493877649307251,
+ "last_raw_score_gap": 0.00015173022984527051,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.13516327738761902,
+ "observability_min": 1.4333909170716197e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e2a06d7cf6ce76941d364058db20c85cfb4bbc9811bfa50c4749d978791f9d2f",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "7cc5d1026095c754ae3cf9b3a259896de69b7acd8dc766e8b79f7f1d954481da",
+ "committed_normalized_churn": 0.0017316017316017316,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1153,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.229714356071781e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.38980382680892944,
+ "last_committed_score_gap": 2.818170287355315e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 7.229714356071781e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.38980382680892944,
+ "last_raw_score_gap": 2.818170287355315e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 21,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10248155891895294,
+ "observability_min": 1.5384129525841672e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "7cc5d1026095c754ae3cf9b3a259896de69b7acd8dc766e8b79f7f1d954481da",
+ "raw_normalized_churn": 0.0017316017316017316,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ }
+ ],
+ "task_id": 857
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 227,
+ "committed_mask_sha256": "5dd6a98e39e9ef27be405da0e6ae9bee1ce52ff6930aa295d7cebe230accb8c3",
+ "committed_normalized_churn": 0.009543830145049401,
+ "committed_xor_churn_total": 454,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 23558,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.6527555146694795e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.4295732080936432,
+ "last_committed_score_gap": 7.099794885334632e-08,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 1.6527555146694795e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.4295732080936432,
+ "last_raw_score_gap": 7.099794885334632e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.046593453735113144,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "5dd6a98e39e9ef27be405da0e6ae9bee1ce52ff6930aa295d7cebe230accb8c3",
+ "raw_normalized_churn": 0.009543830145049401,
+ "raw_xor_churn_total": 454,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 689,
+ "committed_mask_sha256": "8092e834b1bdf7bdc7767d45c3e0fdcec32804d723423949c55935d8a36fdf42",
+ "committed_normalized_churn": 0.027062058130400628,
+ "committed_xor_churn_total": 1378,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 24771,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 11,
+ "last_committed_cutoff_score": 4.463304836832549e-09,
+ "last_committed_mask_overlap": 369,
+ "last_committed_normalized_gap": 0.0059797209687530994,
+ "last_committed_score_gap": 2.6689317422778913e-11,
+ "last_dwell_count": 369,
+ "last_raw_cutoff_score": 4.463304836832549e-09,
+ "last_raw_mask_overlap": 369,
+ "last_raw_normalized_gap": 0.0059797209687530994,
+ "last_raw_score_gap": 2.6689317422778913e-11,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11097219586372375,
+ "observability_min": 1.8397919299140142e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "8092e834b1bdf7bdc7767d45c3e0fdcec32804d723423949c55935d8a36fdf42",
+ "raw_normalized_churn": 0.027062058130400628,
+ "raw_xor_churn_total": 1378,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 133,
+ "committed_mask_sha256": "ffee3392da966096eaa0c1e073212e959688ee0811866a5fb8f5c56648831d9c",
+ "committed_normalized_churn": 0.007379459579426289,
+ "committed_xor_churn_total": 266,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 17890,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 7.145158065213764e-08,
+ "last_committed_mask_overlap": 266,
+ "last_committed_normalized_gap": 0.2061581015586853,
+ "last_committed_score_gap": 1.4730321851175177e-08,
+ "last_dwell_count": 266,
+ "last_raw_cutoff_score": 7.145158065213764e-08,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.2061581015586853,
+ "last_raw_score_gap": 1.4730321851175177e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06045669689774513,
+ "observability_min": 7.113126199165265e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "ffee3392da966096eaa0c1e073212e959688ee0811866a5fb8f5c56648831d9c",
+ "raw_normalized_churn": 0.007379459579426289,
+ "raw_xor_churn_total": 266,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 49,
+ "committed_mask_sha256": "6914b1e8d5f43f9be094d48a43e79416d21f5d4c90a113e5e41d372a8ae32f90",
+ "committed_normalized_churn": 0.004085716668056366,
+ "committed_xor_churn_total": 98,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 11944,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.822047347057378e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.6060513854026794,
+ "last_committed_score_gap": 2.3163570403994527e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.822047347057378e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.6060513854026794,
+ "last_raw_score_gap": 2.3163570403994527e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04523974657058716,
+ "observability_min": 6.416472686510133e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "6914b1e8d5f43f9be094d48a43e79416d21f5d4c90a113e5e41d372a8ae32f90",
+ "raw_normalized_churn": 0.004085716668056366,
+ "raw_xor_churn_total": 98,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 35,
+ "committed_mask_sha256": "d544f4addffc25775980ea1db1f763f9105242ec0468623f188171a0e60352fd",
+ "committed_normalized_churn": 0.0028237192416296895,
+ "committed_xor_churn_total": 70,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 12360,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.473175240742421e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.43188348412513733,
+ "last_committed_score_gap": 1.5000070163750934e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 3.473175240742421e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.43188348412513733,
+ "last_raw_score_gap": 1.5000070163750934e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03726198896765709,
+ "observability_min": 1.2711495189776656e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "d544f4addffc25775980ea1db1f763f9105242ec0468623f188171a0e60352fd",
+ "raw_normalized_churn": 0.0028237192416296895,
+ "raw_xor_churn_total": 70,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 118,
+ "committed_mask_sha256": "75c0bf9e9d8c11ac2d19784766fa322fd0a2f3e904673c0f701e62310712a6bf",
+ "committed_normalized_churn": 0.016773276474769012,
+ "committed_xor_churn_total": 236,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 6917,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.335164654392429e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.16372159123420715,
+ "last_committed_score_gap": 2.185952752142839e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 1.335164654392429e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.16372159123420715,
+ "last_raw_score_gap": 2.185952752142839e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04969267174601555,
+ "observability_min": 8.439362986223387e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "75c0bf9e9d8c11ac2d19784766fa322fd0a2f3e904673c0f701e62310712a6bf",
+ "raw_normalized_churn": 0.016773276474769012,
+ "raw_xor_churn_total": 236,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "b7a66281ac28c250da6b65a2cb1beeebe878675a0de7f5b4ee440109f5a1d551",
+ "committed_normalized_churn": 0.005597014925373134,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 5330,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.429503981853486e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.24905706942081451,
+ "last_committed_score_gap": 3.5602806747192517e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.429503981853486e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.24905706942081451,
+ "last_raw_score_gap": 3.5602806747192517e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05241208150982857,
+ "observability_min": 1.167436067817107e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "b7a66281ac28c250da6b65a2cb1beeebe878675a0de7f5b4ee440109f5a1d551",
+ "raw_normalized_churn": 0.005597014925373134,
+ "raw_xor_churn_total": 60,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 38,
+ "committed_mask_sha256": "5013396448e9418b20ee179ddc1c43fc828adc58598d99347367b64e860d4dab",
+ "committed_normalized_churn": 0.013189864630336688,
+ "committed_xor_churn_total": 76,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 2843,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.1771303693185473e-07,
+ "last_committed_mask_overlap": 42,
+ "last_committed_normalized_gap": 0.13185179233551025,
+ "last_committed_score_gap": 2.870585547043447e-08,
+ "last_dwell_count": 42,
+ "last_raw_cutoff_score": 2.1771303693185473e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.13185179233551025,
+ "last_raw_score_gap": 2.870585547043447e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06496667116880417,
+ "observability_min": 1.205099238177354e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "5013396448e9418b20ee179ddc1c43fc828adc58598d99347367b64e860d4dab",
+ "raw_normalized_churn": 0.013189864630336688,
+ "raw_xor_churn_total": 76,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 116,
+ "committed_mask_sha256": "d4e0cac315a9726d812d4f8196f5639120c72d2045a7a606909c0216ac43062b",
+ "committed_normalized_churn": 0.02061122956645345,
+ "committed_xor_churn_total": 232,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 5512,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 8.507348780995017e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": 0.15360289812088013,
+ "last_committed_score_gap": 1.3067534609945142e-08,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 8.507348780995017e-08,
+ "last_raw_mask_overlap": 83,
+ "last_raw_normalized_gap": 0.15360289812088013,
+ "last_raw_score_gap": 1.3067534609945142e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04889337345957756,
+ "observability_min": 4.720347135389602e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "d4e0cac315a9726d812d4f8196f5639120c72d2045a7a606909c0216ac43062b",
+ "raw_normalized_churn": 0.02061122956645345,
+ "raw_xor_churn_total": 232,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 49,
+ "committed_mask_sha256": "38cec47373b6d0b759a213f02d091e52a9b04e4613f53b065bcc39a254aa83b3",
+ "committed_normalized_churn": 0.02437810945273632,
+ "committed_xor_churn_total": 98,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1961,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.798181963560637e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.04046814143657684,
+ "last_committed_score_gap": 3.9651422412134707e-07,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 9.798181963560637e-06,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.04046814143657684,
+ "last_raw_score_gap": 3.9651422412134707e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.058503542095422745,
+ "observability_min": 1.8460643502749008e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "38cec47373b6d0b759a213f02d091e52a9b04e4613f53b065bcc39a254aa83b3",
+ "raw_normalized_churn": 0.02437810945273632,
+ "raw_xor_churn_total": 98,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 121,
+ "committed_mask_sha256": "b1327d3f99e1b2532a163feb617ffaec924cea95966e56d5f72fc2b911ee7f22",
+ "committed_normalized_churn": 0.029128550794415023,
+ "committed_xor_churn_total": 242,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 4033,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.214988949679537e-08,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.06385508179664612,
+ "last_committed_score_gap": 5.8842388739321905e-09,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 9.214988949679537e-08,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.06385508179664612,
+ "last_raw_score_gap": 5.8842388739321905e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03402160853147507,
+ "observability_min": 4.621750449018691e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b1327d3f99e1b2532a163feb617ffaec924cea95966e56d5f72fc2b911ee7f22",
+ "raw_normalized_churn": 0.029128550794415023,
+ "raw_xor_churn_total": 242,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 82,
+ "committed_mask_sha256": "d938ae2298c17b4cc74253a412ae90320fa47a81a14461005e3abe039d826dd1",
+ "committed_normalized_churn": 0.022664455500276397,
+ "committed_xor_churn_total": 164,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 3536,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 8.888634539516715e-08,
+ "last_committed_mask_overlap": 53,
+ "last_committed_normalized_gap": 0.06067400425672531,
+ "last_committed_score_gap": 5.3930904186927364e-09,
+ "last_dwell_count": 53,
+ "last_raw_cutoff_score": 8.888634539516715e-08,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.06067400425672531,
+ "last_raw_score_gap": 5.3930904186927364e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10072711110115051,
+ "observability_min": 1.7135743490825917e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d938ae2298c17b4cc74253a412ae90320fa47a81a14461005e3abe039d826dd1",
+ "raw_normalized_churn": 0.022664455500276397,
+ "raw_xor_churn_total": 164,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "04cbfb094becc7e8586dd746f2b2a938e63f5a43da9e23730a4c2964c5a525e9",
+ "committed_normalized_churn": 0.0003316749585406302,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 3014,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3640916222357191e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7135615944862366,
+ "last_committed_score_gap": 9.73363421508111e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.3640916222357191e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7135615944862366,
+ "last_raw_score_gap": 9.73363421508111e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11016922444105148,
+ "observability_min": 4.0385290667188656e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "04cbfb094becc7e8586dd746f2b2a938e63f5a43da9e23730a4c2964c5a525e9",
+ "raw_normalized_churn": 0.0003316749585406302,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 16,
+ "committed_mask_sha256": "3389cd0c8b7aace6b1fb306ac53fbbcbf09b510941b32d6dd973dbbf0d6cdd01",
+ "committed_normalized_churn": 0.008844665561083471,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 1793,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.3956764582399046e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.22807565331459045,
+ "last_committed_score_gap": 7.744711183477193e-07,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 3.3956764582399046e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.22807565331459045,
+ "last_raw_score_gap": 7.744711183477193e-07,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11778046935796738,
+ "observability_min": 6.717608691531041e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "3389cd0c8b7aace6b1fb306ac53fbbcbf09b510941b32d6dd973dbbf0d6cdd01",
+ "raw_normalized_churn": 0.008844665561083471,
+ "raw_xor_churn_total": 32,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "b9fbde646f962cdb6f1e129816f3b2d303d43c96a4da43c49292d3c7d101ee25",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 469,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0008381258230656385,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.49391329288482666,
+ "last_committed_score_gap": 0.00041396147571504116,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0008381258230656385,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.49391329288482666,
+ "last_raw_score_gap": 0.00041396147571504116,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09769230335950851,
+ "observability_min": 2.6413353282350727e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "b9fbde646f962cdb6f1e129816f3b2d303d43c96a4da43c49292d3c7d101ee25",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "d70b54079d803d694bffb9ec59632d2feefda9839071f9a2211203b8a887abb5",
+ "committed_normalized_churn": 0.004975124378109453,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 600,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00012121209147153422,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.7583497166633606,
+ "last_committed_score_gap": 9.192115248879418e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00012121209147153422,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.7583497166633606,
+ "last_raw_score_gap": 9.192115248879418e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10698218643665314,
+ "observability_min": 1.9827725239451865e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "d70b54079d803d694bffb9ec59632d2feefda9839071f9a2211203b8a887abb5",
+ "raw_normalized_churn": 0.004975124378109453,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "a5097917c833efce49a01eec1ba576b21ee309a8dce0cf77bf754a3d387a2d7f",
+ "committed_normalized_churn": 0.0042643923240938165,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 467,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.816686072852463e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6911746263504028,
+ "last_committed_score_gap": 4.711520523414947e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 6.816686072852463e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6911746263504028,
+ "last_raw_score_gap": 4.711520523414947e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12661239504814148,
+ "observability_min": 1.4642231427330898e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "a5097917c833efce49a01eec1ba576b21ee309a8dce0cf77bf754a3d387a2d7f",
+ "raw_normalized_churn": 0.0042643923240938165,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "91de389575c32215b830f99a882373c3e714f4b2b4cfd1edb69d0a77b755097d",
+ "committed_normalized_churn": 0.0013568521031207597,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 3680,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.518075340660289e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.8346657752990723,
+ "last_committed_score_gap": 4.60574847238604e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.518075340660289e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.8346657752990723,
+ "last_raw_score_gap": 4.60574847238604e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 67,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10997878015041351,
+ "observability_min": 1.3157067657587618e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "91de389575c32215b830f99a882373c3e714f4b2b4cfd1edb69d0a77b755097d",
+ "raw_normalized_churn": 0.0013568521031207597,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ }
+ ],
+ "task_id": 884
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 83,
+ "committed_mask_sha256": "48841df2be2a6dca12f98f9d6a294879238ce9aa5802c6547b839a32c28f6505",
+ "committed_normalized_churn": 0.00835010060362173,
+ "committed_xor_churn_total": 166,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 9857,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.211978570836436e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.15140695869922638,
+ "last_committed_score_gap": 1.83501995820734e-08,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 1.211978570836436e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.15140695869922638,
+ "last_raw_score_gap": 1.83501995820734e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.042203038930892944,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "48841df2be2a6dca12f98f9d6a294879238ce9aa5802c6547b839a32c28f6505",
+ "raw_normalized_churn": 0.00835010060362173,
+ "raw_xor_churn_total": 166,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 202,
+ "committed_mask_sha256": "22c98a0bc70ab099e4195e70f34e704301e8edf5bb494d75b404081c7f9f6252",
+ "committed_normalized_churn": 0.01898496240601504,
+ "committed_xor_churn_total": 404,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 10438,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 9.738063688757848e-09,
+ "last_committed_mask_overlap": 376,
+ "last_committed_normalized_gap": 0.004685753490775824,
+ "last_committed_score_gap": 4.5630166312093934e-11,
+ "last_dwell_count": 376,
+ "last_raw_cutoff_score": 9.738063688757848e-09,
+ "last_raw_mask_overlap": 376,
+ "last_raw_normalized_gap": 0.004685753490775824,
+ "last_raw_score_gap": 4.5630166312093934e-11,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10222873836755753,
+ "observability_min": 3.293435801854372e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "22c98a0bc70ab099e4195e70f34e704301e8edf5bb494d75b404081c7f9f6252",
+ "raw_normalized_churn": 0.01898496240601504,
+ "raw_xor_churn_total": 404,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 69,
+ "committed_mask_sha256": "4aa69155ea808d2e0e30722dcf80a504027faf1043642879fe2bdb049dfd6e06",
+ "committed_normalized_churn": 0.009160913436006373,
+ "committed_xor_churn_total": 138,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 7463,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 7.466815077350475e-08,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": 0.06151404604315758,
+ "last_committed_score_gap": 4.593140090491943e-09,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 7.466815077350475e-08,
+ "last_raw_mask_overlap": 268,
+ "last_raw_normalized_gap": 0.06151404604315758,
+ "last_raw_score_gap": 4.593140090491943e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06293516606092453,
+ "observability_min": 8.079048541276279e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "4aa69155ea808d2e0e30722dcf80a504027faf1043642879fe2bdb049dfd6e06",
+ "raw_normalized_churn": 0.009160913436006373,
+ "raw_xor_churn_total": 138,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "eca59b8a4677361d6099a210f09e4244c10cbbc08df62850e32cc20b23bffb8b",
+ "committed_normalized_churn": 0.003391859537110934,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 4995,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.9438583624141756e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.3744824230670929,
+ "last_committed_score_gap": 1.102423198062752e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.9438583624141756e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.3744824230670929,
+ "last_raw_score_gap": 1.102423198062752e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04532354697585106,
+ "observability_min": 1.1573348501769942e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "eca59b8a4677361d6099a210f09e4244c10cbbc08df62850e32cc20b23bffb8b",
+ "raw_normalized_churn": 0.003391859537110934,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "d51f243e1faa709c8a2e908b84684589bda5d9fd39796e5336d16ca1e98ff647",
+ "committed_normalized_churn": 0.0015444015444015444,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 5172,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0093802984556532e-06,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.1082344800233841,
+ "last_committed_score_gap": 1.0924975413217908e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 1.0093802984556532e-06,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.1082344800233841,
+ "last_raw_score_gap": 1.0924975413217908e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0407431498169899,
+ "observability_min": 3.006785931347622e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "d51f243e1faa709c8a2e908b84684589bda5d9fd39796e5336d16ca1e98ff647",
+ "raw_normalized_churn": 0.0015444015444015444,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 72,
+ "committed_mask_sha256": "8f07075060bc9c57b8ec81f4c32c8ba8194ae58152761663c7c6b7d77796b627",
+ "committed_normalized_churn": 0.024489795918367346,
+ "committed_xor_churn_total": 144,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 2868,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 1.7879848712709645e-07,
+ "last_committed_mask_overlap": 101,
+ "last_committed_normalized_gap": 0.051562391221523285,
+ "last_committed_score_gap": 9.219277785632585e-09,
+ "last_dwell_count": 101,
+ "last_raw_cutoff_score": 1.7879848712709645e-07,
+ "last_raw_mask_overlap": 101,
+ "last_raw_normalized_gap": 0.051562391221523285,
+ "last_raw_score_gap": 9.219277785632585e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.049021489918231964,
+ "observability_min": 2.8513584382494628e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "8f07075060bc9c57b8ec81f4c32c8ba8194ae58152761663c7c6b7d77796b627",
+ "raw_normalized_churn": 0.024489795918367346,
+ "raw_xor_churn_total": 144,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "8dcf133f8138d28f3bdd0165ad3a5fd22aaa0ce2bf343b04e4f3348c53d5493d",
+ "committed_normalized_churn": 0.00625,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2226,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1610768524406012e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.0003165591915603727,
+ "last_committed_score_gap": 3.675495463539846e-10,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.1610768524406012e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.0003165591915603727,
+ "last_raw_score_gap": 3.675495463539846e-10,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05240270495414734,
+ "observability_min": 9.809006229488659e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "8dcf133f8138d28f3bdd0165ad3a5fd22aaa0ce2bf343b04e4f3348c53d5493d",
+ "raw_normalized_churn": 0.00625,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "eebd41b0f4805a574576f6acb0d383024403a8a98cde85f83ac79645d0992c08",
+ "committed_normalized_churn": 0.006644518272425249,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.123721453197504e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.5573578476905823,
+ "last_committed_score_gap": 2.2983884662153287e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 4.123721453197504e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.5573578476905823,
+ "last_raw_score_gap": 2.2983884662153287e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05158327892422676,
+ "observability_min": 2.5618396648496855e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "eebd41b0f4805a574576f6acb0d383024403a8a98cde85f83ac79645d0992c08",
+ "raw_normalized_churn": 0.006644518272425249,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 67,
+ "committed_mask_sha256": "2219c25429f39ecb0c70862fe0aa2a7c390f4ac243ff4ef3a9058d3bee884fdb",
+ "committed_normalized_churn": 0.02848639455782313,
+ "committed_xor_churn_total": 134,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2285,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.4372260181971797e-07,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": 0.43447431921958923,
+ "last_committed_score_gap": 6.244378170094933e-08,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 1.4372260181971797e-07,
+ "last_raw_mask_overlap": 83,
+ "last_raw_normalized_gap": 0.43447431921958923,
+ "last_raw_score_gap": 6.244378170094933e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03898216411471367,
+ "observability_min": 3.527420062710007e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "2219c25429f39ecb0c70862fe0aa2a7c390f4ac243ff4ef3a9058d3bee884fdb",
+ "raw_normalized_churn": 0.02848639455782313,
+ "raw_xor_churn_total": 134,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "6f39b11428dd6be1331db16488fc9a20d0c1912abfdbb11a06d8701e9983ce89",
+ "committed_normalized_churn": 0.023809523809523808,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 820,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 6.87737156113144e-06,
+ "last_committed_mask_overlap": 28,
+ "last_committed_normalized_gap": 0.1403072029352188,
+ "last_committed_score_gap": 9.649447747506201e-07,
+ "last_dwell_count": 28,
+ "last_raw_cutoff_score": 6.87737156113144e-06,
+ "last_raw_mask_overlap": 28,
+ "last_raw_normalized_gap": 0.1403072029352188,
+ "last_raw_score_gap": 9.649447747506201e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03575362637639046,
+ "observability_min": 4.0288523450726643e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "6f39b11428dd6be1331db16488fc9a20d0c1912abfdbb11a06d8701e9983ce89",
+ "raw_normalized_churn": 0.023809523809523808,
+ "raw_xor_churn_total": 40,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 58,
+ "committed_mask_sha256": "d41d6704ddd44b7c8cb74ded5f83d658b5f800c7b7be6379c98352e2a8d55160",
+ "committed_normalized_churn": 0.03341013824884793,
+ "committed_xor_churn_total": 116,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 1678,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.350459169520036e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.06446695327758789,
+ "last_committed_score_gap": 1.5152693322306732e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.350459169520036e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.06446695327758789,
+ "last_raw_score_gap": 1.5152693322306732e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.048633258789777756,
+ "observability_min": 7.997503814749507e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "d41d6704ddd44b7c8cb74ded5f83d658b5f800c7b7be6379c98352e2a8d55160",
+ "raw_normalized_churn": 0.03341013824884793,
+ "raw_xor_churn_total": 116,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "ca50f20b443ac5497b35bee0b4deaa1f50beaef61399594349dc37a81cd7393c",
+ "committed_normalized_churn": 0.022486772486772486,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1478,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7343029412586475e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.16774122416973114,
+ "last_committed_score_gap": 2.9091410169712617e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.7343029412586475e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.16774122416973114,
+ "last_raw_score_gap": 2.9091410169712617e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08946901559829712,
+ "observability_min": 1.2036198882015015e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "ca50f20b443ac5497b35bee0b4deaa1f50beaef61399594349dc37a81cd7393c",
+ "raw_normalized_churn": 0.022486772486772486,
+ "raw_xor_churn_total": 68,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "b4455d4b35211c1106eb8f2c66e24f98dd7ae18dd005659d2aa17f602d7e4edd",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1260,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3266972928249743e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.8433861136436462,
+ "last_committed_score_gap": 1.1189180440851487e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.3266972928249743e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.8433861136436462,
+ "last_raw_score_gap": 1.1189180440851487e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10675735026597977,
+ "observability_min": 4.9691934123075043e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "b4455d4b35211c1106eb8f2c66e24f98dd7ae18dd005659d2aa17f602d7e4edd",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "b618212bce0b1b89788d18ce3016a89f5dd997e4aded3e012d334470b2287eb2",
+ "committed_normalized_churn": 0.003968253968253968,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 753,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.3867807612987235e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8487284779548645,
+ "last_committed_score_gap": 2.025728826993145e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.3867807612987235e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8487284779548645,
+ "last_raw_score_gap": 2.025728826993145e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11336156725883484,
+ "observability_min": 5.881473441604612e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "b618212bce0b1b89788d18ce3016a89f5dd997e4aded3e012d334470b2287eb2",
+ "raw_normalized_churn": 0.003968253968253968,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0006465233163908124,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8725898861885071,
+ "last_committed_score_gap": 0.0005641496973112226,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0006465233163908124,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8725898861885071,
+ "last_raw_score_gap": 0.0005641496973112226,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09054111689329147,
+ "observability_min": 6.71471553914671e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "c5a3b5277ce95b1e5b1bbc7dab664aa9dd0f5e34a8f6c3311fa4f5edb03c6a35",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 250,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00017063748964574188,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.9510131478309631,
+ "last_committed_score_gap": 0.00016227849118877202,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00017063748964574188,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.9510131478309631,
+ "last_raw_score_gap": 0.00016227849118877202,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10119711607694626,
+ "observability_min": 6.24067837406983e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "c5a3b5277ce95b1e5b1bbc7dab664aa9dd0f5e34a8f6c3311fa4f5edb03c6a35",
+ "raw_normalized_churn": 0.007936507936507936,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00010405352804809809,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8294221758842468,
+ "last_committed_score_gap": 8.630430238554254e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00010405352804809809,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8294221758842468,
+ "last_raw_score_gap": 8.630430238554254e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11902071535587311,
+ "observability_min": 2.1947069939187713e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "80cffb767529b79bc41aa8e09a6b86e25455a322d0aaceb10080814c35a279b6",
+ "committed_normalized_churn": 0.003896103896103896,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1534,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.653601419908227e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.4832952618598938,
+ "last_committed_score_gap": 2.732358780122013e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.653601419908227e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.4832952618598938,
+ "last_raw_score_gap": 2.732358780122013e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 28,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10638348758220673,
+ "observability_min": 1.1320638648726344e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "80cffb767529b79bc41aa8e09a6b86e25455a322d0aaceb10080814c35a279b6",
+ "raw_normalized_churn": 0.003896103896103896,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ }
+ ],
+ "task_id": 878
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 473,
+ "committed_mask_sha256": "e9fde5f00c12b2957abe729e7f7b7b21379c0b2ed10eaaa9a50be4c7473d9f31",
+ "committed_normalized_churn": 0.010170949360283841,
+ "committed_xor_churn_total": 946,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 46032,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 1.2073556376890338e-07,
+ "last_committed_mask_overlap": 351,
+ "last_committed_normalized_gap": 0.17948301136493683,
+ "last_committed_score_gap": 2.1669983141237026e-08,
+ "last_dwell_count": 351,
+ "last_raw_cutoff_score": 1.2073556376890338e-07,
+ "last_raw_mask_overlap": 351,
+ "last_raw_normalized_gap": 0.17948301136493683,
+ "last_raw_score_gap": 2.1669983141237026e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0513690821826458,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "e9fde5f00c12b2957abe729e7f7b7b21379c0b2ed10eaaa9a50be4c7473d9f31",
+ "raw_normalized_churn": 0.010170949360283841,
+ "raw_xor_churn_total": 946,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 1457,
+ "committed_mask_sha256": "4fc5acadffa5b41c124d68572a3b26e15f8008e770530085eac59dd3cb0f0728",
+ "committed_normalized_churn": 0.02926878264363198,
+ "committed_xor_churn_total": 2914,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 48323,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 11,
+ "last_committed_cutoff_score": 3.626522415700606e-09,
+ "last_committed_mask_overlap": 369,
+ "last_committed_normalized_gap": 0.06352775543928146,
+ "last_committed_score_gap": 2.303848223306204e-10,
+ "last_dwell_count": 369,
+ "last_raw_cutoff_score": 3.626522415700606e-09,
+ "last_raw_mask_overlap": 369,
+ "last_raw_normalized_gap": 0.06352775543928146,
+ "last_raw_score_gap": 2.303848223306204e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11568023264408112,
+ "observability_min": 4.056299740540226e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "4fc5acadffa5b41c124d68572a3b26e15f8008e770530085eac59dd3cb0f0728",
+ "raw_normalized_churn": 0.02926878264363198,
+ "raw_xor_churn_total": 2914,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 388,
+ "committed_mask_sha256": "167778ccdfb5e071bd7e918aacad80b7335dc7b6fcec88b2727806a4635b69b5",
+ "committed_normalized_churn": 0.01101052810806209,
+ "committed_xor_churn_total": 776,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 34851,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 5.94401647902032e-08,
+ "last_committed_mask_overlap": 266,
+ "last_committed_normalized_gap": 0.0255411546677351,
+ "last_committed_score_gap": 1.5181704782207817e-09,
+ "last_dwell_count": 266,
+ "last_raw_cutoff_score": 5.94401647902032e-08,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 0.0255411546677351,
+ "last_raw_score_gap": 1.5181704782207817e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07889769971370697,
+ "observability_min": 1.2387896264343112e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "167778ccdfb5e071bd7e918aacad80b7335dc7b6fcec88b2727806a4635b69b5",
+ "raw_normalized_churn": 0.01101052810806209,
+ "raw_xor_churn_total": 776,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 95,
+ "committed_mask_sha256": "77ba507372d7a02eed1b09a0a8054e307f079dad4e6cedc00ace8d24e6e76606",
+ "committed_normalized_churn": 0.004051345473154506,
+ "committed_xor_churn_total": 190,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 23354,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.0061805773584638e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.7073199152946472,
+ "last_committed_score_gap": 2.126331310137175e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.0061805773584638e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.7073199152946472,
+ "last_raw_score_gap": 2.126331310137175e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04736001417040825,
+ "observability_min": 1.0049261867095538e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "77ba507372d7a02eed1b09a0a8054e307f079dad4e6cedc00ace8d24e6e76606",
+ "raw_normalized_churn": 0.004051345473154506,
+ "raw_xor_churn_total": 190,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 60,
+ "committed_mask_sha256": "fb2fd36be5df154412c8640bd03109e02a7825a541239cee164249890348ee91",
+ "committed_normalized_churn": 0.0024757582009490406,
+ "committed_xor_churn_total": 120,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 24175,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.147004233345797e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.5147420763969421,
+ "last_committed_score_gap": 2.134637639983339e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 4.147004233345797e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.5147420763969421,
+ "last_raw_score_gap": 2.134637639983339e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05423837527632713,
+ "observability_min": 1.6675540948085654e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "fb2fd36be5df154412c8640bd03109e02a7825a541239cee164249890348ee91",
+ "raw_normalized_churn": 0.0024757582009490406,
+ "raw_xor_churn_total": 120,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 252,
+ "committed_mask_sha256": "4cde75d4cd581d47043867f3afdefa9bc74f0420e0c5ea2e2ee1ae153f06438f",
+ "committed_normalized_churn": 0.0183206106870229,
+ "committed_xor_churn_total": 504,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 13503,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.1779684427892789e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.12833945453166962,
+ "last_committed_score_gap": 1.511798330966485e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 1.1779684427892789e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.12833945453166962,
+ "last_raw_score_gap": 1.511798330966485e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.046866655349731445,
+ "observability_min": 6.375024952376407e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "4cde75d4cd581d47043867f3afdefa9bc74f0420e0c5ea2e2ee1ae153f06438f",
+ "raw_normalized_churn": 0.0183206106870229,
+ "raw_xor_churn_total": 504,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 56,
+ "committed_mask_sha256": "e4255253255b506e5c36909760a3b8d4ec881f030195ac37a5d230ec91b9a17b",
+ "committed_normalized_churn": 0.0053435114503816794,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 10424,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.066944489342859e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.5655902028083801,
+ "last_committed_score_gap": 1.1690435712807812e-06,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 2.066944489342859e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.5655902028083801,
+ "last_raw_score_gap": 1.1690435712807812e-06,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05994913727045059,
+ "observability_min": 2.922856481291092e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "e4255253255b506e5c36909760a3b8d4ec881f030195ac37a5d230ec91b9a17b",
+ "raw_normalized_churn": 0.0053435114503816794,
+ "raw_xor_churn_total": 112,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 69,
+ "committed_mask_sha256": "75463b19fd1d2272b9bc00a421e163f81e634f4878c2ec7786ba23c14a7a1d0e",
+ "committed_normalized_churn": 0.012249245517486242,
+ "committed_xor_churn_total": 138,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 5564,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.076959617625107e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.18047979474067688,
+ "last_committed_score_gap": 3.7484923609554244e-08,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 2.076959617625107e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.18047979474067688,
+ "last_raw_score_gap": 3.7484923609554244e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06505274027585983,
+ "observability_min": 4.3848194763995707e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "75463b19fd1d2272b9bc00a421e163f81e634f4878c2ec7786ba23c14a7a1d0e",
+ "raw_normalized_churn": 0.012249245517486242,
+ "raw_xor_churn_total": 138,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 232,
+ "committed_mask_sha256": "4dbd8fcaca0bdb254c184e75b1d425cfb78dc9809dd79a95194ad90298ea5d5f",
+ "committed_normalized_churn": 0.021083242457288258,
+ "committed_xor_churn_total": 464,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 10772,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.953355828429267e-08,
+ "last_committed_mask_overlap": 83,
+ "last_committed_normalized_gap": 0.25040027499198914,
+ "last_committed_score_gap": 2.4923231478624075e-08,
+ "last_dwell_count": 83,
+ "last_raw_cutoff_score": 9.953355828429267e-08,
+ "last_raw_mask_overlap": 83,
+ "last_raw_normalized_gap": 0.25040027499198914,
+ "last_raw_score_gap": 2.4923231478624075e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03230898082256317,
+ "observability_min": 1.7931074580701534e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "4dbd8fcaca0bdb254c184e75b1d425cfb78dc9809dd79a95194ad90298ea5d5f",
+ "raw_normalized_churn": 0.021083242457288258,
+ "raw_xor_churn_total": 464,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 70,
+ "committed_mask_sha256": "b8537d0ecbb53dcc71c2568f93ce380f9ed178b7a6fa84e8fd2444b62d63c33c",
+ "committed_normalized_churn": 0.017811704834605598,
+ "committed_xor_churn_total": 140,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 3860,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.3869677786715329e-05,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.4408794343471527,
+ "last_committed_score_gap": 6.114855750638526e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 1.3869677786715329e-05,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.4408794343471527,
+ "last_raw_score_gap": 6.114855750638526e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05186467990279198,
+ "observability_min": 5.218615797275561e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "b8537d0ecbb53dcc71c2568f93ce380f9ed178b7a6fa84e8fd2444b62d63c33c",
+ "raw_normalized_churn": 0.017811704834605598,
+ "raw_xor_churn_total": 140,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 188,
+ "committed_mask_sha256": "ebed63c9e506f9d20a135e5f36440e57fc2a4a1ab65080c6cdaf55cc91dfd52e",
+ "committed_normalized_churn": 0.023147008126077322,
+ "committed_xor_churn_total": 376,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 7934,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.343581684272067e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": 0.2530236542224884,
+ "last_committed_score_gap": 5.9298159271747863e-08,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 2.343581684272067e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.2530236542224884,
+ "last_raw_score_gap": 5.9298159271747863e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03419528529047966,
+ "observability_min": 7.495158271808577e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "ebed63c9e506f9d20a135e5f36440e57fc2a4a1ab65080c6cdaf55cc91dfd52e",
+ "raw_normalized_churn": 0.023147008126077322,
+ "raw_xor_churn_total": 376,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 116,
+ "committed_mask_sha256": "f66fcc9f10c7ff269fda1a29f507fa2751e4d1d568ad7764bee941a96e28dc17",
+ "committed_normalized_churn": 0.016398077466779758,
+ "committed_xor_churn_total": 232,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 6958,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.7291866072355333e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.6240001320838928,
+ "last_committed_score_gap": 1.0790126481197149e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.7291866072355333e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.6240001320838928,
+ "last_raw_score_gap": 1.0790126481197149e-07,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11073438823223114,
+ "observability_min": 2.730446801990638e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "f66fcc9f10c7ff269fda1a29f507fa2751e4d1d568ad7764bee941a96e28dc17",
+ "raw_normalized_churn": 0.016398077466779758,
+ "raw_xor_churn_total": 232,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "a0fb63506f0be26dfb3fdf2860d6e8da7d59efbca4f6bc802b963018bb8f75d7",
+ "committed_normalized_churn": 0.0008481764206955047,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 5890,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.154613402031828e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.4440990388393402,
+ "last_committed_score_gap": 2.7332578156347154e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 6.154613402031828e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.4440990388393402,
+ "last_raw_score_gap": 2.7332578156347154e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11090283840894699,
+ "observability_min": 1.1777116171174384e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "a0fb63506f0be26dfb3fdf2860d6e8da7d59efbca4f6bc802b963018bb8f75d7",
+ "raw_normalized_churn": 0.0008481764206955047,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 36,
+ "committed_mask_sha256": "4bc4826fad0fc5af118a75b6c4cdce179f040f1763092cc4850c5e5f74814a4e",
+ "committed_normalized_churn": 0.010178117048346057,
+ "committed_xor_churn_total": 72,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 3501,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 5.288204647513339e-06,
+ "last_committed_mask_overlap": 26,
+ "last_committed_normalized_gap": 0.0013223967980593443,
+ "last_committed_score_gap": 6.993104761932045e-09,
+ "last_dwell_count": 26,
+ "last_raw_cutoff_score": 5.288204647513339e-06,
+ "last_raw_mask_overlap": 26,
+ "last_raw_normalized_gap": 0.0013223967980593443,
+ "last_raw_score_gap": 6.993104761932045e-09,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11733391135931015,
+ "observability_min": 2.5785514168319423e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "4bc4826fad0fc5af118a75b6c4cdce179f040f1763092cc4850c5e5f74814a4e",
+ "raw_normalized_churn": 0.010178117048346057,
+ "raw_xor_churn_total": 72,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "e50679cd7f0467ce5de5bbef94a9972a9287baab69d7bf7bde985a57229417df",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 917,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0003992746351286769,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7051072120666504,
+ "last_committed_score_gap": 0.00028153142193332314,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0003992746351286769,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7051072120666504,
+ "last_raw_score_gap": 0.00028153142193332314,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0990634560585022,
+ "observability_min": 2.3625888800893335e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e50679cd7f0467ce5de5bbef94a9972a9287baab69d7bf7bde985a57229417df",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "1586350a614d988383bae852ae5ace1666c215901d089c7068329f99fb0f36ce",
+ "committed_normalized_churn": 0.011874469889737066,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 1165,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00015131877444218844,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.727756679058075,
+ "last_committed_score_gap": 0.00011012324830517173,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00015131877444218844,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.727756679058075,
+ "last_raw_score_gap": 0.00011012324830517173,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10400424152612686,
+ "observability_min": 1.5950208265280708e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "1586350a614d988383bae852ae5ace1666c215901d089c7068329f99fb0f36ce",
+ "raw_normalized_churn": 0.011874469889737066,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "399628730e0a8bdbf375641cd95ac51f00ef504aead5145ce44b8eaecd949767",
+ "committed_normalized_churn": 0.007633587786259542,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 910,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.509527156595141e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8768304586410522,
+ "last_committed_score_gap": 5.707751552108675e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 6.509527156595141e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8768304586410522,
+ "last_raw_score_gap": 5.707751552108675e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1172957643866539,
+ "observability_min": 1.650548853149303e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "399628730e0a8bdbf375641cd95ac51f00ef504aead5145ce44b8eaecd949767",
+ "raw_normalized_churn": 0.007633587786259542,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 20,
+ "committed_mask_sha256": "d752b333fabcf8eaaac33f51bced6d98ef1c0c3247537a237ced91dd6450bd1f",
+ "committed_normalized_churn": 0.002775850104094379,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 7185,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.918197646475164e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.5749244689941406,
+ "last_committed_score_gap": 2.8275921977183316e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.918197646475164e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.5749244689941406,
+ "last_raw_score_gap": 2.8275921977183316e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 131,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1069217324256897,
+ "observability_min": 1.3403125276312267e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "d752b333fabcf8eaaac33f51bced6d98ef1c0c3247537a237ced91dd6450bd1f",
+ "raw_normalized_churn": 0.002775850104094379,
+ "raw_xor_churn_total": 40,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ }
+ ],
+ "task_id": 822
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 245,
+ "committed_mask_sha256": "173c2b8a3d1c7f79705a4bfb1c1b77c4fc9ed2242ac54c162f6625664931411a",
+ "committed_normalized_churn": 0.010954616588419406,
+ "committed_xor_churn_total": 490,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 22120,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 9.18276015227093e-08,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.06703441590070724,
+ "last_committed_score_gap": 6.155609355573688e-09,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 9.18276015227093e-08,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.06703441590070724,
+ "last_raw_score_gap": 6.155609355573688e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.036527037620544434,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "173c2b8a3d1c7f79705a4bfb1c1b77c4fc9ed2242ac54c162f6625664931411a",
+ "raw_normalized_churn": 0.010954616588419406,
+ "raw_xor_churn_total": 490,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 515,
+ "committed_mask_sha256": "a82d80bb9cd48ece4023801252a485d668fe6d26fdfd8786bce3e011b0326e41",
+ "committed_normalized_churn": 0.021512113617376774,
+ "committed_xor_churn_total": 1030,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 23425,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 10,
+ "last_committed_cutoff_score": 2.8329074197586124e-08,
+ "last_committed_mask_overlap": 370,
+ "last_committed_normalized_gap": 8.778612254900509e-07,
+ "last_committed_score_gap": 2.4868995751603507e-14,
+ "last_dwell_count": 370,
+ "last_raw_cutoff_score": 2.8329074197586124e-08,
+ "last_raw_mask_overlap": 370,
+ "last_raw_normalized_gap": 8.778612254900509e-07,
+ "last_raw_score_gap": 2.4868995751603507e-14,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1148163378238678,
+ "observability_min": 6.77344225152865e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "a82d80bb9cd48ece4023801252a485d668fe6d26fdfd8786bce3e011b0326e41",
+ "raw_normalized_churn": 0.021512113617376774,
+ "raw_xor_churn_total": 1030,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 104,
+ "committed_mask_sha256": "f8d35d7416c92ec66c34837a400d3f155ad3f612c057e1112dff951fc548eeee",
+ "committed_normalized_churn": 0.006136779370980115,
+ "committed_xor_churn_total": 208,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 16843,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.260229112176603e-07,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": 0.13653184473514557,
+ "last_committed_score_gap": 1.720614051237135e-08,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 1.260229112176603e-07,
+ "last_raw_mask_overlap": 268,
+ "last_raw_normalized_gap": 0.13653184473514557,
+ "last_raw_score_gap": 1.720614051237135e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04969097301363945,
+ "observability_min": 8.237924120635398e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "f8d35d7416c92ec66c34837a400d3f155ad3f612c057e1112dff951fc548eeee",
+ "raw_normalized_churn": 0.006136779370980115,
+ "raw_xor_churn_total": 208,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 40,
+ "committed_mask_sha256": "7c6682da31d65989deb846661e53791cf0c130e08d7009ba7ee6c02a9695bf27",
+ "committed_normalized_churn": 0.0035470426531879046,
+ "committed_xor_churn_total": 80,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 11237,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 3.5675116123456974e-06,
+ "last_committed_mask_overlap": 173,
+ "last_committed_normalized_gap": 0.05238525941967964,
+ "last_committed_score_gap": 1.8688501768338028e-07,
+ "last_dwell_count": 173,
+ "last_raw_cutoff_score": 3.5675116123456974e-06,
+ "last_raw_mask_overlap": 173,
+ "last_raw_normalized_gap": 0.05238525941967964,
+ "last_raw_score_gap": 1.8688501768338028e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.041588593274354935,
+ "observability_min": 2.603298376868679e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "7c6682da31d65989deb846661e53791cf0c130e08d7009ba7ee6c02a9695bf27",
+ "raw_normalized_churn": 0.0035470426531879046,
+ "raw_xor_churn_total": 80,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "465bbf92d346d3d2358e40c193391d92f08ccf2a68e6f3badd9c6ff92647d161",
+ "committed_normalized_churn": 0.0023166023166023165,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 11628,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1414798564146622e-06,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.5821287631988525,
+ "last_committed_score_gap": 6.644882546424924e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 1.1414798564146622e-06,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.5821287631988525,
+ "last_raw_score_gap": 6.644882546424924e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.027238575741648674,
+ "observability_min": 1.3092402184611274e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "465bbf92d346d3d2358e40c193391d92f08ccf2a68e6f3badd9c6ff92647d161",
+ "raw_normalized_churn": 0.0023166023166023165,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 110,
+ "committed_mask_sha256": "f1cab7dd0cffffc6f931d0e860b1e05fc1a582b46d64eaee77b7eea58e9f9080",
+ "committed_normalized_churn": 0.016628873771730914,
+ "committed_xor_churn_total": 220,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 6505,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 3.591566724026052e-07,
+ "last_committed_mask_overlap": 102,
+ "last_committed_normalized_gap": 0.006831766571849585,
+ "last_committed_score_gap": 2.4536745968362084e-09,
+ "last_dwell_count": 102,
+ "last_raw_cutoff_score": 3.591566724026052e-07,
+ "last_raw_mask_overlap": 102,
+ "last_raw_normalized_gap": 0.006831766571849585,
+ "last_raw_score_gap": 2.4536745968362084e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03363000229001045,
+ "observability_min": 6.233340599237636e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "f1cab7dd0cffffc6f931d0e860b1e05fc1a582b46d64eaee77b7eea58e9f9080",
+ "raw_normalized_churn": 0.016628873771730914,
+ "raw_xor_churn_total": 220,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 42,
+ "committed_mask_sha256": "8827b9d8f00446410882657d0d4d899830dee803186266e264f553f459e5aadf",
+ "committed_normalized_churn": 0.008333333333333333,
+ "committed_xor_churn_total": 84,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 4998,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6209702380365343e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.09470483660697937,
+ "last_committed_score_gap": 1.5351372439909028e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.6209702380365343e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.09470483660697937,
+ "last_raw_score_gap": 1.5351372439909028e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05081064999103546,
+ "observability_min": 2.2567989788058185e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "8827b9d8f00446410882657d0d4d899830dee803186266e264f553f459e5aadf",
+ "raw_normalized_churn": 0.008333333333333333,
+ "raw_xor_churn_total": 84,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "918971887809196b24fe52b734b3eaea879e7f11b57487528ab9b93c25f4c2ce",
+ "committed_normalized_churn": 0.0036913990402362494,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 2699,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 4.0193023664869543e-07,
+ "last_committed_mask_overlap": 41,
+ "last_committed_normalized_gap": 0.025765428319573402,
+ "last_committed_score_gap": 1.0355904578318587e-08,
+ "last_dwell_count": 41,
+ "last_raw_cutoff_score": 4.0193023664869543e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.025765428319573402,
+ "last_raw_score_gap": 1.0355904578318587e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.057510703802108765,
+ "observability_min": 8.562148678947779e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "918971887809196b24fe52b734b3eaea879e7f11b57487528ab9b93c25f4c2ce",
+ "raw_normalized_churn": 0.0036913990402362494,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 96,
+ "committed_mask_sha256": "3a3f3299029e788b48ff8b4d64feaf642cdc3248488f0d7cf65425f4a56ee553",
+ "committed_normalized_churn": 0.018140589569160998,
+ "committed_xor_churn_total": 192,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 5196,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.0784226844862133e-07,
+ "last_committed_mask_overlap": 82,
+ "last_committed_normalized_gap": 0.0014151915675029159,
+ "last_committed_score_gap": 1.5261747421391192e-10,
+ "last_dwell_count": 82,
+ "last_raw_cutoff_score": 1.0784226844862133e-07,
+ "last_raw_mask_overlap": 82,
+ "last_raw_normalized_gap": 0.0014151915675029159,
+ "last_raw_score_gap": 1.5261747421391192e-10,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.036484599113464355,
+ "observability_min": 1.826531281778898e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "3a3f3299029e788b48ff8b4d64feaf642cdc3248488f0d7cf65425f4a56ee553",
+ "raw_normalized_churn": 0.018140589569160998,
+ "raw_xor_churn_total": 192,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 47,
+ "committed_mask_sha256": "a926fa372ccf3a7ad96e30f55df56b87052897f01272e7f42ffc0423a2ccaa49",
+ "committed_normalized_churn": 0.02486772486772487,
+ "committed_xor_churn_total": 94,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1843,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.7284670320805162e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.07441571354866028,
+ "last_committed_score_gap": 1.2862510629929602e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.7284670320805162e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.07441571354866028,
+ "last_raw_score_gap": 1.2862510629929602e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04878464341163635,
+ "observability_min": 3.2150256856766646e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "a926fa372ccf3a7ad96e30f55df56b87052897f01272e7f42ffc0423a2ccaa49",
+ "raw_normalized_churn": 0.02486772486772487,
+ "raw_xor_churn_total": 94,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 128,
+ "committed_mask_sha256": "7ddc41a37e2fe1631515a01363e1709eb304a25798c533dabc38415ccc9df7bf",
+ "committed_normalized_churn": 0.03277009728622632,
+ "committed_xor_churn_total": 256,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 3778,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.449044131935807e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": 0.04524175450205803,
+ "last_committed_score_gap": 1.1079904993493983e-08,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 2.449044131935807e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.04524175450205803,
+ "last_raw_score_gap": 1.1079904993493983e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03779587522149086,
+ "observability_min": 8.452384037127558e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "7ddc41a37e2fe1631515a01363e1709eb304a25798c533dabc38415ccc9df7bf",
+ "raw_normalized_churn": 0.03277009728622632,
+ "raw_xor_churn_total": 256,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 56,
+ "committed_mask_sha256": "c46d530e6b8e0f1b4b8f4ca1f74609fea3de783705c069c1ae4f4e58360cf085",
+ "committed_normalized_churn": 0.01646090534979424,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 3346,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.2791296316881926e-07,
+ "last_committed_mask_overlap": 52,
+ "last_committed_normalized_gap": 0.016781572252511978,
+ "last_committed_score_gap": 3.824737859758898e-09,
+ "last_dwell_count": 52,
+ "last_raw_cutoff_score": 2.2791296316881926e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.016781572252511978,
+ "last_raw_score_gap": 3.824737859758898e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09679871797561646,
+ "observability_min": 1.200060637529532e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "c46d530e6b8e0f1b4b8f4ca1f74609fea3de783705c069c1ae4f4e58360cf085",
+ "raw_normalized_churn": 0.01646090534979424,
+ "raw_xor_churn_total": 112,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "677a5306d9dbbe314692ececd929e7394df1b85602517b2f24b0ecd7b934e92e",
+ "committed_normalized_churn": 0.0003527336860670194,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 2834,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6802881873445585e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.8036050200462341,
+ "last_committed_score_gap": 1.350288039247971e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.6802881873445585e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.8036050200462341,
+ "last_raw_score_gap": 1.350288039247971e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10151644051074982,
+ "observability_min": 1.1791456699938863e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "677a5306d9dbbe314692ececd929e7394df1b85602517b2f24b0ecd7b934e92e",
+ "raw_normalized_churn": 0.0003527336860670194,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "11ed239d051cc4fde768e96b2e9fc66a0920b5d8eefd99c55e0b87f83e9da21f",
+ "committed_normalized_churn": 0.00411522633744856,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 1694,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.806596264941618e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8690193891525269,
+ "last_committed_score_gap": 1.5699672076152638e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.806596264941618e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8690193891525269,
+ "last_raw_score_gap": 1.5699672076152638e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09026310592889786,
+ "observability_min": 1.4032110584594193e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "11ed239d051cc4fde768e96b2e9fc66a0920b5d8eefd99c55e0b87f83e9da21f",
+ "raw_normalized_churn": 0.00411522633744856,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "b5ae6e953c5c2edc637dffe244dff252bea6693b23ec8a668b8dff74dbd26eda",
+ "committed_normalized_churn": 0.0022675736961451248,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 440,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0003469205694273114,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9350845813751221,
+ "last_committed_score_gap": 0.0003244000836275518,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0003469205694273114,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9350845813751221,
+ "last_raw_score_gap": 0.0003244000836275518,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0880444347858429,
+ "observability_min": 5.523295953935303e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "b5ae6e953c5c2edc637dffe244dff252bea6693b23ec8a668b8dff74dbd26eda",
+ "raw_normalized_churn": 0.0022675736961451248,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "committed_normalized_churn": 0.008818342151675485,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 562,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.41582368593663e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.8131374716758728,
+ "last_committed_score_gap": 6.84322149027139e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 8.41582368593663e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.8131374716758728,
+ "last_raw_score_gap": 6.84322149027139e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09110309183597565,
+ "observability_min": 4.002648168466294e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "raw_normalized_churn": 0.008818342151675485,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "2b09545cdc928f1c17863d6e81139087720be0f3d4f874192874a14b30d5c102",
+ "committed_normalized_churn": 0.006802721088435374,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 438,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.187751518562436e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9294983148574829,
+ "last_committed_score_gap": 7.61050105211325e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 8.187751518562436e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9294983148574829,
+ "last_raw_score_gap": 7.61050105211325e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09863856434822083,
+ "observability_min": 7.499026111190688e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "2b09545cdc928f1c17863d6e81139087720be0f3d4f874192874a14b30d5c102",
+ "raw_normalized_churn": 0.006802721088435374,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "a295b9cd99ffe86258b4ced0528ad100c077c430b3132c9f45e0908fff8c0571",
+ "committed_normalized_churn": 0.0017316017316017316,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 3459,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.817808985535521e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.6901684403419495,
+ "last_committed_score_gap": 3.3250996693823254e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.817808985535521e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.6901684403419495,
+ "last_raw_score_gap": 3.3250996693823254e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 63,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1000891625881195,
+ "observability_min": 1.3756827677013916e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "a295b9cd99ffe86258b4ced0528ad100c077c430b3132c9f45e0908fff8c0571",
+ "raw_normalized_churn": 0.0017316017316017316,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 687
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 96,
+ "committed_mask_sha256": "06c8f982204239e624ee7f260658c2f2723c48340c5f1637c5c697cbde61b33b",
+ "committed_normalized_churn": 0.009014084507042254,
+ "committed_xor_churn_total": 192,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 10554,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 2.315856448831255e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.21924597024917603,
+ "last_committed_score_gap": 5.077421860733011e-08,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 2.315856448831255e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.21924597024917603,
+ "last_raw_score_gap": 5.077421860733011e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04998818784952164,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "06c8f982204239e624ee7f260658c2f2723c48340c5f1637c5c697cbde61b33b",
+ "raw_normalized_churn": 0.009014084507042254,
+ "raw_xor_churn_total": 192,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 214,
+ "committed_mask_sha256": "2babe2f4cc877c937a2138131395ec6eaeb5253ea963e9b0c2ec92ebab5d940c",
+ "committed_normalized_churn": 0.018771929824561405,
+ "committed_xor_churn_total": 428,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 11186,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 8,
+ "last_committed_cutoff_score": 5.87834714238511e-09,
+ "last_committed_mask_overlap": 372,
+ "last_committed_normalized_gap": 0.019665764644742012,
+ "last_committed_score_gap": 1.1560219448369935e-10,
+ "last_dwell_count": 372,
+ "last_raw_cutoff_score": 5.87834714238511e-09,
+ "last_raw_mask_overlap": 372,
+ "last_raw_normalized_gap": 0.019665764644742012,
+ "last_raw_score_gap": 1.1560219448369935e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1210479587316513,
+ "observability_min": 6.470600499852708e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "2babe2f4cc877c937a2138131395ec6eaeb5253ea963e9b0c2ec92ebab5d940c",
+ "raw_normalized_churn": 0.018771929824561405,
+ "raw_xor_churn_total": 428,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 65,
+ "committed_mask_sha256": "523abef3296568117eaecad7a17460045b06d67056e8c6c9d82d1e8010c1ddf1",
+ "committed_normalized_churn": 0.0080545229244114,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 8005,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 6.570388677573646e-08,
+ "last_committed_mask_overlap": 265,
+ "last_committed_normalized_gap": 0.23096545040607452,
+ "last_committed_score_gap": 1.517532766115437e-08,
+ "last_dwell_count": 265,
+ "last_raw_cutoff_score": 6.570388677573646e-08,
+ "last_raw_mask_overlap": 265,
+ "last_raw_normalized_gap": 0.23096545040607452,
+ "last_raw_score_gap": 1.517532766115437e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06847025454044342,
+ "observability_min": 1.0815319750889785e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "523abef3296568117eaecad7a17460045b06d67056e8c6c9d82d1e8010c1ddf1",
+ "raw_normalized_churn": 0.0080545229244114,
+ "raw_xor_churn_total": 130,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "82937d239c73afef1fb4fa06df2823b7e1d7de2911b62587e4ed1d3e2b37a89b",
+ "committed_normalized_churn": 0.002420856610800745,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 5357,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.689230768737616e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.6998856067657471,
+ "last_committed_score_gap": 1.882153924270824e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.689230768737616e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.6998856067657471,
+ "last_raw_score_gap": 1.882153924270824e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.042955901473760605,
+ "observability_min": 1.9803854556244005e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "82937d239c73afef1fb4fa06df2823b7e1d7de2911b62587e4ed1d3e2b37a89b",
+ "raw_normalized_churn": 0.002420856610800745,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "9304fbd571f39c15eb60f67c6354099c2a100406c9f81ebc88f1e40c14bf7136",
+ "committed_normalized_churn": 0.002702702702702703,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 5535,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.751599125389475e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.7112561464309692,
+ "last_committed_score_gap": 6.224628918971575e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 8.751599125389475e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.7112561464309692,
+ "last_raw_score_gap": 6.224628918971575e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.043455321341753006,
+ "observability_min": 5.459925400685961e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "9304fbd571f39c15eb60f67c6354099c2a100406c9f81ebc88f1e40c14bf7136",
+ "raw_normalized_churn": 0.002702702702702703,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 50,
+ "committed_mask_sha256": "68659e8f8a0a9a05beed4f282dbb9bdb38d715fb00d64eaea2bfaa5d5cd90236",
+ "committed_normalized_churn": 0.015873015873015872,
+ "committed_xor_churn_total": 100,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3100,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.029268699743625e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.09821677953004837,
+ "last_committed_score_gap": 1.9930823214053817e-08,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 2.029268699743625e-07,
+ "last_raw_mask_overlap": 105,
+ "last_raw_normalized_gap": 0.09821677953004837,
+ "last_raw_score_gap": 1.9930823214053817e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03294428437948227,
+ "observability_min": 7.054656947502735e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "68659e8f8a0a9a05beed4f282dbb9bdb38d715fb00d64eaea2bfaa5d5cd90236",
+ "raw_normalized_churn": 0.015873015873015872,
+ "raw_xor_churn_total": 100,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "ac3aaec26a6539fc9b8677d810715b6d259c1e2168c34db5109cd4e6513327cf",
+ "committed_normalized_churn": 0.00625,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2385,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5402101780637167e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.42557692527770996,
+ "last_committed_score_gap": 6.55477890632028e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.5402101780637167e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.42557692527770996,
+ "last_raw_score_gap": 6.55477890632028e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05183929204940796,
+ "observability_min": 4.8436402266816e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "ac3aaec26a6539fc9b8677d810715b6d259c1e2168c34db5109cd4e6513327cf",
+ "raw_normalized_churn": 0.00625,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "5d7d4bc3716082e38ef07cb881890c3be61bc05572af979ede0f7effb1a0f4b5",
+ "committed_normalized_churn": 0.0031007751937984496,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1286,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.4942013371619396e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.7835305333137512,
+ "last_committed_score_gap": 2.737813531439315e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.4942013371619396e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.7835305333137512,
+ "last_raw_score_gap": 2.737813531439315e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050614628940820694,
+ "observability_min": 2.708151498609368e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "5d7d4bc3716082e38ef07cb881890c3be61bc05572af979ede0f7effb1a0f4b5",
+ "raw_normalized_churn": 0.0031007751937984496,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 70,
+ "committed_mask_sha256": "9b179aa4f94ec237913a897616c33a0790ab8f8e8bc0c461a25f4ebd53622d64",
+ "committed_normalized_churn": 0.027777777777777776,
+ "committed_xor_churn_total": 140,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2450,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.2635042878628155e-07,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.37695765495300293,
+ "last_committed_score_gap": 4.762875960295787e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.2635042878628155e-07,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.37695765495300293,
+ "last_raw_score_gap": 4.762875960295787e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03502379730343819,
+ "observability_min": 4.3231486301920086e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "9b179aa4f94ec237913a897616c33a0790ab8f8e8bc0c461a25f4ebd53622d64",
+ "raw_normalized_churn": 0.027777777777777776,
+ "raw_xor_churn_total": 140,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "dc5676bbf594522b9ed8adc7eaa36b4b9da465e7aac1318ac0df4af2292c9a18",
+ "committed_normalized_churn": 0.03,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 873,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0260883755108807e-05,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.8486993312835693,
+ "last_committed_score_gap": 8.708405403012875e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 1.0260883755108807e-05,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.8486993312835693,
+ "last_raw_score_gap": 8.708405403012875e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03549002856016159,
+ "observability_min": 7.1421823122364e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "dc5676bbf594522b9ed8adc7eaa36b4b9da465e7aac1318ac0df4af2292c9a18",
+ "raw_normalized_churn": 0.03,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 41,
+ "committed_mask_sha256": "c6fe3cc48be2aeae5394792604c44c22175b574d3b0e115894a7787a876b4872",
+ "committed_normalized_churn": 0.02204301075268817,
+ "committed_xor_churn_total": 82,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 1819,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.2305307822989562e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.7113282680511475,
+ "last_committed_score_gap": 1.5866396552155493e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.2305307822989562e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.7113282680511475,
+ "last_raw_score_gap": 1.5866396552155493e-07,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.02771003358066082,
+ "observability_min": 1.7745190916684805e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "c6fe3cc48be2aeae5394792604c44c22175b574d3b0e115894a7787a876b4872",
+ "raw_normalized_churn": 0.02204301075268817,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "cc41beecbf0dd3d2caf4dd905270665979fe3b17c751dae4beca6a703cc3181c",
+ "committed_normalized_churn": 0.014814814814814815,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1596,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.2078935185400042e-07,
+ "last_committed_mask_overlap": 53,
+ "last_committed_normalized_gap": 0.346243292093277,
+ "last_committed_score_gap": 4.182250279427535e-08,
+ "last_dwell_count": 53,
+ "last_raw_cutoff_score": 1.2078935185400042e-07,
+ "last_raw_mask_overlap": 53,
+ "last_raw_normalized_gap": 0.346243292093277,
+ "last_raw_score_gap": 4.182250279427535e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08885863423347473,
+ "observability_min": 7.326746498392822e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "cc41beecbf0dd3d2caf4dd905270665979fe3b17c751dae4beca6a703cc3181c",
+ "raw_normalized_churn": 0.014814814814814815,
+ "raw_xor_churn_total": 48,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "ba721681ee39f1d2fc7594e39053a673efa8571f1c628a6a9dea31620cf6adca",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1350,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1609603461693041e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.8152685761451721,
+ "last_committed_score_gap": 9.46494492382044e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.1609603461693041e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.8152685761451721,
+ "last_raw_score_gap": 9.46494492382044e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10609941929578781,
+ "observability_min": 3.2515174552827375e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "ba721681ee39f1d2fc7594e39053a673efa8571f1c628a6a9dea31620cf6adca",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "2b501c63f8f0848925d366447bdb52974cf25da6da8c4029d98bf1501501ade3",
+ "committed_normalized_churn": 0.007407407407407408,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 804,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8899332644650713e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.9040740728378296,
+ "last_committed_score_gap": 1.7086396837839857e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.8899332644650713e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.9040740728378296,
+ "last_raw_score_gap": 1.7086396837839857e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11522635817527771,
+ "observability_min": 8.764167169772463e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "2b501c63f8f0848925d366447bdb52974cf25da6da8c4029d98bf1501501ade3",
+ "raw_normalized_churn": 0.007407407407407408,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bbdbd4d00d3af2487f1c769abbedaf23065eaaeea14a7bb88a70f5872a7437a6",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005860227392986417,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7804555296897888,
+ "last_committed_score_gap": 0.00045736468746326864,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005860227392986417,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7804555296897888,
+ "last_raw_score_gap": 0.00045736468746326864,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09437616914510727,
+ "observability_min": 5.2186354793093415e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bbdbd4d00d3af2487f1c769abbedaf23065eaaeea14a7bb88a70f5872a7437a6",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "1586350a614d988383bae852ae5ace1666c215901d089c7068329f99fb0f36ce",
+ "committed_normalized_churn": 0.014814814814814815,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 266,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00023312398116104305,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.8426907062530518,
+ "last_committed_score_gap": 0.00019645140855573118,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00023312398116104305,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.8426907062530518,
+ "last_raw_score_gap": 0.00019645140855573118,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10144485533237457,
+ "observability_min": 2.4274115162370435e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "1586350a614d988383bae852ae5ace1666c215901d089c7068329f99fb0f36ce",
+ "raw_normalized_churn": 0.014814814814814815,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "a22bab13a64c94cb6146e6fabbf88bc3ac426918d99093f3576561652532b31b",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.163962775142863e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.85968416929245,
+ "last_committed_score_gap": 7.018429460003972e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 8.163962775142863e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.85968416929245,
+ "last_raw_score_gap": 7.018429460003972e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11064888536930084,
+ "observability_min": 5.118583246144226e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "a22bab13a64c94cb6146e6fabbf88bc3ac426918d99093f3576561652532b31b",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "08c375bfbf4d555aa78d32111077eec294bee80c1197bf2ec6c673ddbfed67a3",
+ "committed_normalized_churn": 0.0012121212121212121,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1648,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.808196081285132e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.4770214855670929,
+ "last_committed_score_gap": 2.293612851644866e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.808196081285132e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.4770214855670929,
+ "last_raw_score_gap": 2.293612851644866e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 30,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1061977818608284,
+ "observability_min": 6.9173848871173504e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "08c375bfbf4d555aa78d32111077eec294bee80c1197bf2ec6c673ddbfed67a3",
+ "raw_normalized_churn": 0.0012121212121212121,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ }
+ ],
+ "task_id": 820
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 109,
+ "committed_mask_sha256": "1d816b6682a3cf0c516ec44e98b9feda4e094795974748bd4e3290a950672cfb",
+ "committed_normalized_churn": 0.008772635814889336,
+ "committed_xor_churn_total": 218,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 12316,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.1584663894836922e-07,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": 0.08694400638341904,
+ "last_committed_score_gap": 1.0072170653074863e-08,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 1.1584663894836922e-07,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.08694400638341904,
+ "last_raw_score_gap": 1.0072170653074863e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03488294780254364,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "1d816b6682a3cf0c516ec44e98b9feda4e094795974748bd4e3290a950672cfb",
+ "raw_normalized_churn": 0.008772635814889336,
+ "raw_xor_churn_total": 218,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 305,
+ "committed_mask_sha256": "1a0c882934ffd1de836cdffcfb648d31ea014ca0a5380d789ab183c20764616f",
+ "committed_normalized_churn": 0.02293233082706767,
+ "committed_xor_churn_total": 610,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 12995,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 1.497783586046353e-08,
+ "last_committed_mask_overlap": 376,
+ "last_committed_normalized_gap": 0.02653374709188938,
+ "last_committed_score_gap": 3.9741809843008014e-10,
+ "last_dwell_count": 376,
+ "last_raw_cutoff_score": 1.497783586046353e-08,
+ "last_raw_mask_overlap": 376,
+ "last_raw_normalized_gap": 0.02653374709188938,
+ "last_raw_score_gap": 3.9741809843008014e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09560588002204895,
+ "observability_min": 5.984429063410346e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "1a0c882934ffd1de836cdffcfb648d31ea014ca0a5380d789ab183c20764616f",
+ "raw_normalized_churn": 0.02293233082706767,
+ "raw_xor_churn_total": 610,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 84,
+ "committed_mask_sha256": "b92c40a1da1f57e400153ebecabf5fd1dcedba648e204dd6964df40821a8af22",
+ "committed_normalized_churn": 0.008921933085501859,
+ "committed_xor_churn_total": 168,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 9331,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.114695109549757e-07,
+ "last_committed_mask_overlap": 268,
+ "last_committed_normalized_gap": 0.07311362028121948,
+ "last_committed_score_gap": 8.149939390023064e-09,
+ "last_dwell_count": 268,
+ "last_raw_cutoff_score": 1.114695109549757e-07,
+ "last_raw_mask_overlap": 268,
+ "last_raw_normalized_gap": 0.07311362028121948,
+ "last_raw_score_gap": 8.149939390023064e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.06156356260180473,
+ "observability_min": 1.4051811936255376e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "b92c40a1da1f57e400153ebecabf5fd1dcedba648e204dd6964df40821a8af22",
+ "raw_normalized_churn": 0.008921933085501859,
+ "raw_xor_churn_total": 168,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 38,
+ "committed_mask_sha256": "d6088519136ec02d7afc95b878285a4b825caac8580ea8d27989ce480e11e0d1",
+ "committed_normalized_churn": 0.006065442936951317,
+ "committed_xor_churn_total": 76,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6227,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 3.712906618602574e-06,
+ "last_committed_mask_overlap": 177,
+ "last_committed_normalized_gap": 0.011990971863269806,
+ "last_committed_score_gap": 4.452135726751294e-08,
+ "last_dwell_count": 177,
+ "last_raw_cutoff_score": 3.712906618602574e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.011990971863269806,
+ "last_raw_score_gap": 4.452135726751294e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04210086911916733,
+ "observability_min": 3.2885563716611443e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "d6088519136ec02d7afc95b878285a4b825caac8580ea8d27989ce480e11e0d1",
+ "raw_normalized_churn": 0.006065442936951317,
+ "raw_xor_churn_total": 76,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 15,
+ "committed_mask_sha256": "4ad3671f4fe89a2c22d322ead14298ea2c0ca18aae2bfcc875c53808627b7cf1",
+ "committed_normalized_churn": 0.0023166023166023165,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 6460,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.581242016385659e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.7327459454536438,
+ "last_committed_score_gap": 5.555124289458035e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 7.581242016385659e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.7327459454536438,
+ "last_raw_score_gap": 5.555124289458035e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0437765046954155,
+ "observability_min": 4.1732718614184705e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "4ad3671f4fe89a2c22d322ead14298ea2c0ca18aae2bfcc875c53808627b7cf1",
+ "raw_normalized_churn": 0.0023166023166023165,
+ "raw_xor_churn_total": 30,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 90,
+ "committed_mask_sha256": "d247bdad5604b6fd2d38f949471dc7f823d80c84a3b64ea550c3bb925b551006",
+ "committed_normalized_churn": 0.024489795918367346,
+ "committed_xor_churn_total": 180,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3585,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.1987860066019493e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.15336884558200836,
+ "last_committed_score_gap": 3.372252876943094e-08,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.1987860066019493e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.15336884558200836,
+ "last_raw_score_gap": 3.372252876943094e-08,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.049031324684619904,
+ "observability_min": 3.192326403222978e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "d247bdad5604b6fd2d38f949471dc7f823d80c84a3b64ea550c3bb925b551006",
+ "raw_normalized_churn": 0.024489795918367346,
+ "raw_xor_churn_total": 180,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "8e24ce1338af30255de3f92fa8e1593f7241db8a812bfd5ff839c6cbe4ec3ea1",
+ "committed_normalized_churn": 0.008571428571428572,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2776,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.1665355234290473e-06,
+ "last_committed_mask_overlap": 78,
+ "last_committed_normalized_gap": 0.11986284703016281,
+ "last_committed_score_gap": 2.5968711270252243e-07,
+ "last_dwell_count": 78,
+ "last_raw_cutoff_score": 2.1665355234290473e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.11986284703016281,
+ "last_raw_score_gap": 2.5968711270252243e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05255753919482231,
+ "observability_min": 1.8665134859929822e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "8e24ce1338af30255de3f92fa8e1593f7241db8a812bfd5ff839c6cbe4ec3ea1",
+ "raw_normalized_churn": 0.008571428571428572,
+ "raw_xor_churn_total": 48,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "685042518adf9ce4a6b0f740458ff8d8a097001094d1d83d74be5b949cbdd789",
+ "committed_normalized_churn": 0.011960132890365448,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1487,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.107196099947032e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.648975670337677,
+ "last_committed_score_gap": 3.963421590924554e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 6.107196099947032e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.648975670337677,
+ "last_raw_score_gap": 3.963421590924554e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05678972601890564,
+ "observability_min": 6.603799818094558e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "685042518adf9ce4a6b0f740458ff8d8a097001094d1d83d74be5b949cbdd789",
+ "raw_normalized_churn": 0.011960132890365448,
+ "raw_xor_churn_total": 36,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 89,
+ "committed_mask_sha256": "cf7e01f64a994ca28ff748a1bb82c86e97cf19eb5d5fbf7ca5e37592f9b8a7db",
+ "committed_normalized_churn": 0.030272108843537416,
+ "committed_xor_churn_total": 178,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2851,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 9.50353751250077e-08,
+ "last_committed_mask_overlap": 79,
+ "last_committed_normalized_gap": 0.019615044817328453,
+ "last_committed_score_gap": 1.864123078121338e-09,
+ "last_dwell_count": 79,
+ "last_raw_cutoff_score": 9.50353751250077e-08,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.019615044817328453,
+ "last_raw_score_gap": 1.864123078121338e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.035235702991485596,
+ "observability_min": 5.520071155729056e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "cf7e01f64a994ca28ff748a1bb82c86e97cf19eb5d5fbf7ca5e37592f9b8a7db",
+ "raw_normalized_churn": 0.030272108843537416,
+ "raw_xor_churn_total": 178,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 27,
+ "committed_mask_sha256": "7fd3d20071bbe8e81d1cd5eff36b64a7d494308718d0710ab861c8082a47df59",
+ "committed_normalized_churn": 0.025714285714285714,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1023,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.845241038419772e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.08684976398944855,
+ "last_committed_score_gap": 8.550568963983096e-07,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 9.845241038419772e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.08684976398944855,
+ "last_raw_score_gap": 8.550568963983096e-07,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03036610595881939,
+ "observability_min": 1.5226075333885092e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "7fd3d20071bbe8e81d1cd5eff36b64a7d494308718d0710ab861c8082a47df59",
+ "raw_normalized_churn": 0.025714285714285714,
+ "raw_xor_churn_total": 54,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 84,
+ "committed_mask_sha256": "a24b662ab9d01ae810d30528983946e943b8233fef06f3f3135c9a1662cec14d",
+ "committed_normalized_churn": 0.03870967741935484,
+ "committed_xor_churn_total": 168,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2086,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.390955842201947e-07,
+ "last_committed_mask_overlap": 60,
+ "last_committed_normalized_gap": 0.04914496839046478,
+ "last_committed_score_gap": 1.1750344697247783e-08,
+ "last_dwell_count": 60,
+ "last_raw_cutoff_score": 2.390955842201947e-07,
+ "last_raw_mask_overlap": 60,
+ "last_raw_normalized_gap": 0.04914496839046478,
+ "last_raw_score_gap": 1.1750344697247783e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05975921452045441,
+ "observability_min": 2.6449381351767443e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "a24b662ab9d01ae810d30528983946e943b8233fef06f3f3135c9a1662cec14d",
+ "raw_normalized_churn": 0.03870967741935484,
+ "raw_xor_churn_total": 168,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 49,
+ "committed_mask_sha256": "745bcdcaa27c99d482fd9335a80c374ba42c12c0c4feee36cdd4d85aa7d345a4",
+ "committed_normalized_churn": 0.025925925925925925,
+ "committed_xor_churn_total": 98,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1841,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.4157927214218944e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.1802825778722763,
+ "last_committed_score_gap": 4.355253224730404e-08,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 2.4157927214218944e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.1802825778722763,
+ "last_raw_score_gap": 4.355253224730404e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09480665624141693,
+ "observability_min": 1.258670891957081e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "745bcdcaa27c99d482fd9335a80c374ba42c12c0c4feee36cdd4d85aa7d345a4",
+ "raw_normalized_churn": 0.025925925925925925,
+ "raw_xor_churn_total": 98,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "999db9f2b3209587c871e2883496300083c7e427fae6b82636193bd585336f74",
+ "committed_normalized_churn": 0.0012698412698412698,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1573,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.682794936641585e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.8029727339744568,
+ "last_committed_score_gap": 1.3512384612113237e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.682794936641585e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.8029727339744568,
+ "last_raw_score_gap": 1.3512384612113237e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10766752809286118,
+ "observability_min": 3.363526701605224e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "999db9f2b3209587c871e2883496300083c7e427fae6b82636193bd585336f74",
+ "raw_normalized_churn": 0.0012698412698412698,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "56984cc933e6792a64c3f60ae278c40da4f8e0adbf97b0e133667b74e86b8e21",
+ "committed_normalized_churn": 0.004232804232804233,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 941,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5752810213598423e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.6005203723907471,
+ "last_committed_score_gap": 9.459883585805073e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.5752810213598423e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.6005203723907471,
+ "last_raw_score_gap": 9.459883585805073e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10961534082889557,
+ "observability_min": 6.997739632197408e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "56984cc933e6792a64c3f60ae278c40da4f8e0adbf97b0e133667b74e86b8e21",
+ "raw_normalized_churn": 0.004232804232804233,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0006086434004828334,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.802864134311676,
+ "last_committed_score_gap": 0.000488657969981432,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0006086434004828334,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.802864134311676,
+ "last_raw_score_gap": 0.000488657969981432,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09145650267601013,
+ "observability_min": 3.883629418055534e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.012698412698412698,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 311,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.876661063870415e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.4195261299610138,
+ "last_committed_score_gap": 2.884939021896571e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 6.876661063870415e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.4195261299610138,
+ "last_raw_score_gap": 2.884939021896571e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10403943806886673,
+ "observability_min": 5.609080133694988e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.012698412698412698,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d7e3683d5ef244bae9caee385867a33406f389a47cfe18377bafcd95bab3861a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.427257514791563e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6579396724700928,
+ "last_committed_score_gap": 4.8866873839870095e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.427257514791563e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6579396724700928,
+ "last_raw_score_gap": 4.8866873839870095e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12527234852313995,
+ "observability_min": 5.789902779440581e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d7e3683d5ef244bae9caee385867a33406f389a47cfe18377bafcd95bab3861a",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "4722edaf9f8d1227864849d74307a4b5bb6c32dcbf821d63a1d943934a3d7f5b",
+ "committed_normalized_churn": 0.0015584415584415584,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1922,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 5.6721173677942716e-06,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.1573011726140976,
+ "last_committed_score_gap": 8.922306733438745e-07,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 5.6721173677942716e-06,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.1573011726140976,
+ "last_raw_score_gap": 8.922306733438745e-07,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11547784507274628,
+ "observability_min": 2.6177027212526127e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "4722edaf9f8d1227864849d74307a4b5bb6c32dcbf821d63a1d943934a3d7f5b",
+ "raw_normalized_churn": 0.0015584415584415584,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ }
+ ],
+ "task_id": 920
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 478,
+ "committed_mask_sha256": "244faa0eddb8e042f0844439256561c20a4d11c9626e89445f9790fb0055cf3f",
+ "committed_normalized_churn": 0.010048349800294303,
+ "committed_xor_churn_total": 956,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 47092,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 9.753377838706001e-08,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": 0.18492767214775085,
+ "last_committed_score_gap": 1.803669391620133e-08,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 9.753377838706001e-08,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.18492767214775085,
+ "last_raw_score_gap": 1.803669391620133e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03392743691802025,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "244faa0eddb8e042f0844439256561c20a4d11c9626e89445f9790fb0055cf3f",
+ "raw_normalized_churn": 0.010048349800294303,
+ "raw_xor_churn_total": 956,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 1128,
+ "committed_mask_sha256": "65dbe66384803d21f1d379d013ceb61aff385ac59a721fb251efac3689687554",
+ "committed_normalized_churn": 0.022152395915161036,
+ "committed_xor_churn_total": 2256,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 49792,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 16,
+ "last_committed_cutoff_score": 3.348836585814752e-08,
+ "last_committed_mask_overlap": 364,
+ "last_committed_normalized_gap": 0.01601865142583847,
+ "last_committed_score_gap": 5.364384492168028e-10,
+ "last_dwell_count": 364,
+ "last_raw_cutoff_score": 3.348836585814752e-08,
+ "last_raw_mask_overlap": 364,
+ "last_raw_normalized_gap": 0.01601865142583847,
+ "last_raw_score_gap": 5.364384492168028e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.13115759193897247,
+ "observability_min": 2.6873085978706968e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "65dbe66384803d21f1d379d013ceb61aff385ac59a721fb251efac3689687554",
+ "raw_normalized_churn": 0.022152395915161036,
+ "raw_xor_churn_total": 2256,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 337,
+ "committed_mask_sha256": "f3b514ed93c69daa069cc9ab2aa39f41b639dc804fe1ac5949ebaf6063420736",
+ "committed_normalized_churn": 0.009349164955889697,
+ "committed_xor_churn_total": 674,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 35709,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 5.967114447003041e-08,
+ "last_committed_mask_overlap": 263,
+ "last_committed_normalized_gap": 0.029301555827260017,
+ "last_committed_score_gap": 1.7484573788806301e-09,
+ "last_dwell_count": 263,
+ "last_raw_cutoff_score": 5.967114447003041e-08,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.029301555827260017,
+ "last_raw_score_gap": 1.7484573788806301e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07572316378355026,
+ "observability_min": 5.91157789386898e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "f3b514ed93c69daa069cc9ab2aa39f41b639dc804fe1ac5949ebaf6063420736",
+ "raw_normalized_churn": 0.009349164955889697,
+ "raw_xor_churn_total": 674,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 78,
+ "committed_mask_sha256": "a9762e64ef872eff0469e81c6799416748799ead8adeaa6bcfbd38ca56c4bdb2",
+ "committed_normalized_churn": 0.0032518969398815977,
+ "committed_xor_churn_total": 156,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 23908,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.497118996165227e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.6173948049545288,
+ "last_committed_score_gap": 2.159103132726159e-06,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 3.497118996165227e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.6173948049545288,
+ "last_raw_score_gap": 2.159103132726159e-06,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.039714403450489044,
+ "observability_min": 9.975707371268072e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "a9762e64ef872eff0469e81c6799416748799ead8adeaa6bcfbd38ca56c4bdb2",
+ "raw_normalized_churn": 0.0032518969398815977,
+ "raw_xor_churn_total": 156,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 91,
+ "committed_mask_sha256": "286818d4e917e5fde59ddaf3f93e3bc5644da63c29a31ae504abc0783ed3e9f4",
+ "committed_normalized_churn": 0.0036708350141185964,
+ "committed_xor_churn_total": 182,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 24699,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.9299746984179365e-07,
+ "last_committed_mask_overlap": 184,
+ "last_committed_normalized_gap": 0.026722943410277367,
+ "last_committed_score_gap": 7.829754622434848e-09,
+ "last_dwell_count": 184,
+ "last_raw_cutoff_score": 2.9299746984179365e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.026722943410277367,
+ "last_raw_score_gap": 7.829754622434848e-09,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.047387514263391495,
+ "observability_min": 7.955378578117234e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "286818d4e917e5fde59ddaf3f93e3bc5644da63c29a31ae504abc0783ed3e9f4",
+ "raw_normalized_churn": 0.0036708350141185964,
+ "raw_xor_churn_total": 182,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 235,
+ "committed_mask_sha256": "e4c402eabb8683ab386e87d15264cb1cfdba6bd5ce03f5e230e18fbc28016677",
+ "committed_normalized_churn": 0.016702203269367447,
+ "committed_xor_churn_total": 470,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 13835,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 8,
+ "last_committed_cutoff_score": 6.71606628088739e-08,
+ "last_committed_mask_overlap": 97,
+ "last_committed_normalized_gap": 0.009721728041768074,
+ "last_committed_score_gap": 6.529177198899561e-10,
+ "last_dwell_count": 97,
+ "last_raw_cutoff_score": 6.71606628088739e-08,
+ "last_raw_mask_overlap": 97,
+ "last_raw_normalized_gap": 0.009721728041768074,
+ "last_raw_score_gap": 6.529177198899561e-10,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05446861311793327,
+ "observability_min": 3.6942851000532073e-09,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "e4c402eabb8683ab386e87d15264cb1cfdba6bd5ce03f5e230e18fbc28016677",
+ "raw_normalized_churn": 0.016702203269367447,
+ "raw_xor_churn_total": 470,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 65,
+ "committed_mask_sha256": "4730ad15a0f20893c8fd467ae5ddbdc78e3f22f2cad296f43e22e74bb23dc3a0",
+ "committed_normalized_churn": 0.006063432835820896,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 10655,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.4297800134954741e-06,
+ "last_committed_mask_overlap": 78,
+ "last_committed_normalized_gap": 0.05738307535648346,
+ "last_committed_score_gap": 8.204517598642269e-08,
+ "last_dwell_count": 78,
+ "last_raw_cutoff_score": 1.4297800134954741e-06,
+ "last_raw_mask_overlap": 78,
+ "last_raw_normalized_gap": 0.05738307535648346,
+ "last_raw_score_gap": 8.204517598642269e-08,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05840010568499565,
+ "observability_min": 2.387226771816131e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "4730ad15a0f20893c8fd467ae5ddbdc78e3f22f2cad296f43e22e74bb23dc3a0",
+ "raw_normalized_churn": 0.006063432835820896,
+ "raw_xor_churn_total": 130,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 66,
+ "committed_mask_sha256": "27410cd7cd538f22e8563be9505ea63df00c5079add5c8d270a30a88a6d2da81",
+ "committed_normalized_churn": 0.011454356126345018,
+ "committed_xor_churn_total": 132,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 5696,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.390635813753761e-07,
+ "last_committed_mask_overlap": 41,
+ "last_committed_normalized_gap": 0.015019077807664871,
+ "last_committed_score_gap": 3.5905145523429383e-09,
+ "last_dwell_count": 41,
+ "last_raw_cutoff_score": 2.390635813753761e-07,
+ "last_raw_mask_overlap": 41,
+ "last_raw_normalized_gap": 0.015019077807664871,
+ "last_raw_score_gap": 3.5905145523429383e-09,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07724962383508682,
+ "observability_min": 4.866723557483965e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "27410cd7cd538f22e8563be9505ea63df00c5079add5c8d270a30a88a6d2da81",
+ "raw_normalized_churn": 0.011454356126345018,
+ "raw_xor_churn_total": 132,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 237,
+ "committed_mask_sha256": "31c62ac16ff9f00fb0403aa7d66df05e3fa8670f4ff3753a9ef82ef606bc7d5f",
+ "committed_normalized_churn": 0.02105543710021322,
+ "committed_xor_churn_total": 474,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 11019,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 9,
+ "last_committed_cutoff_score": 6.396661689223038e-08,
+ "last_committed_mask_overlap": 75,
+ "last_committed_normalized_gap": 0.07538777589797974,
+ "last_committed_score_gap": 4.8223007809156115e-09,
+ "last_dwell_count": 75,
+ "last_raw_cutoff_score": 6.396661689223038e-08,
+ "last_raw_mask_overlap": 75,
+ "last_raw_normalized_gap": 0.07538777589797974,
+ "last_raw_score_gap": 4.8223007809156115e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04541906341910362,
+ "observability_min": 6.698173393715479e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "31c62ac16ff9f00fb0403aa7d66df05e3fa8670f4ff3753a9ef82ef606bc7d5f",
+ "raw_normalized_churn": 0.02105543710021322,
+ "raw_xor_churn_total": 474,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 74,
+ "committed_mask_sha256": "5913977cf8280cbc3f2970e7fb901fb827799aa0b27e4fc03573c4bd86889f65",
+ "committed_normalized_churn": 0.018407960199004977,
+ "committed_xor_churn_total": 148,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 3946,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.203577994601801e-05,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.4770040512084961,
+ "last_committed_score_gap": 5.741115728596924e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 1.203577994601801e-05,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.4770040512084961,
+ "last_raw_score_gap": 5.741115728596924e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0564182810485363,
+ "observability_min": 8.748359903165692e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "5913977cf8280cbc3f2970e7fb901fb827799aa0b27e4fc03573c4bd86889f65",
+ "raw_normalized_churn": 0.018407960199004977,
+ "raw_xor_churn_total": 148,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 165,
+ "committed_mask_sha256": "5d3efae05920a101c2982dbd6317433d7d030ebfc63e7fcec3c69903d0a85a6f",
+ "committed_normalized_churn": 0.019860375541646606,
+ "committed_xor_churn_total": 330,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 8143,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.3196196846365638e-07,
+ "last_committed_mask_overlap": 61,
+ "last_committed_normalized_gap": 0.2059800624847412,
+ "last_committed_score_gap": 2.7181535244835686e-08,
+ "last_dwell_count": 61,
+ "last_raw_cutoff_score": 1.3196196846365638e-07,
+ "last_raw_mask_overlap": 61,
+ "last_raw_normalized_gap": 0.2059800624847412,
+ "last_raw_score_gap": 2.7181535244835686e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.041060417890548706,
+ "observability_min": 5.732839536420897e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "5d3efae05920a101c2982dbd6317433d7d030ebfc63e7fcec3c69903d0a85a6f",
+ "raw_normalized_churn": 0.019860375541646606,
+ "raw_xor_churn_total": 330,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 120,
+ "committed_mask_sha256": "9b7ee5c894d8d83550c5d7ef6c9849b9f85817e164bdb6cbe9cede8edba8a225",
+ "committed_normalized_churn": 0.01658374792703151,
+ "committed_xor_churn_total": 240,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 7116,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.778579996260305e-08,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.05432330444455147,
+ "last_committed_score_gap": 4.76881467648127e-09,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 8.778579996260305e-08,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.05432330444455147,
+ "last_raw_score_gap": 4.76881467648127e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12145649641752243,
+ "observability_min": 9.462977068608325e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "9b7ee5c894d8d83550c5d7ef6c9849b9f85817e164bdb6cbe9cede8edba8a225",
+ "raw_normalized_churn": 0.01658374792703151,
+ "raw_xor_churn_total": 240,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "4f1f337b8dfe0f28b66b656cb9821402ec64a581b3efb587cd6563d09d3c8f69",
+ "committed_normalized_churn": 0.0003316749585406302,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 6028,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6825670172693208e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7186415195465088,
+ "last_committed_score_gap": 1.2091624739696272e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.6825670172693208e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7186415195465088,
+ "last_raw_score_gap": 1.2091624739696272e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1105087623000145,
+ "observability_min": 1.3955904876183922e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "4f1f337b8dfe0f28b66b656cb9821402ec64a581b3efb587cd6563d09d3c8f69",
+ "raw_normalized_churn": 0.0003316749585406302,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 19,
+ "committed_mask_sha256": "c2fb197483030f893869d26e9f8efcc72ae52b4785690d06386063a03f6b5ba2",
+ "committed_normalized_churn": 0.005251520176893312,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 3599,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.015153950196691e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.8781198859214783,
+ "last_committed_score_gap": 1.769546724972315e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 2.015153950196691e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.8781198859214783,
+ "last_raw_score_gap": 1.769546724972315e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11610116809606552,
+ "observability_min": 7.687606107253941e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "c2fb197483030f893869d26e9f8efcc72ae52b4785690d06386063a03f6b5ba2",
+ "raw_normalized_churn": 0.005251520176893312,
+ "raw_xor_churn_total": 38,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 938,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005410760059021413,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9183571934700012,
+ "last_committed_score_gap": 0.0004969010478816926,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005410760059021413,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9183571934700012,
+ "last_raw_score_gap": 0.0004969010478816926,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09718641638755798,
+ "observability_min": 3.0333968226159413e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "committed_normalized_churn": 0.006633499170812604,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 1198,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.142702765529975e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.7313700318336487,
+ "last_committed_score_gap": 6.686698907287791e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 9.142702765529975e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.7313700318336487,
+ "last_raw_score_gap": 6.686698907287791e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10566738992929459,
+ "observability_min": 1.2385887870891565e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "raw_normalized_churn": 0.006633499170812604,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "1b54c1d4fa8bd24940823d8736f41c00c0ea2c231837dfb020d8ea1a5300ccb0",
+ "committed_normalized_churn": 0.006396588486140725,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 932,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00016602181131020188,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9638353586196899,
+ "last_committed_score_gap": 0.00016001769108697772,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00016602181131020188,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9638353586196899,
+ "last_raw_score_gap": 0.00016001769108697772,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12203800678253174,
+ "observability_min": 1.9158829189791504e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "1b54c1d4fa8bd24940823d8736f41c00c0ea2c231837dfb020d8ea1a5300ccb0",
+ "raw_normalized_churn": 0.006396588486140725,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "61e28c95e0d667e4e6bca8183c39a82261cfc0cee3105eda59b0ab3947368da5",
+ "committed_normalized_churn": 0.0013568521031207597,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 7360,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.348349532141583e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.5763474702835083,
+ "last_committed_score_gap": 3.0825076464680023e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.348349532141583e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.5763474702835083,
+ "last_raw_score_gap": 3.0825076464680023e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 134,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11137228459119797,
+ "observability_min": 1.6038422812059139e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "61e28c95e0d667e4e6bca8183c39a82261cfc0cee3105eda59b0ab3947368da5",
+ "raw_normalized_churn": 0.0013568521031207597,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ }
+ ],
+ "task_id": 771
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 129,
+ "committed_mask_sha256": "666ec7777f87231fa983cf7e4980cb481b425b49504592375d2bae34c8278231",
+ "committed_normalized_churn": 0.007899571341090018,
+ "committed_xor_churn_total": 258,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 16201,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.2547889955149003e-07,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": 0.16576361656188965,
+ "last_committed_score_gap": 3.737619636012823e-08,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 2.2547889955149003e-07,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.16576361656188965,
+ "last_raw_score_gap": 3.737619636012823e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03273673728108406,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "666ec7777f87231fa983cf7e4980cb481b425b49504592375d2bae34c8278231",
+ "raw_normalized_churn": 0.007899571341090018,
+ "raw_xor_churn_total": 258,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 609,
+ "committed_mask_sha256": "6e289d88d88e35534d2fed7f57f27b6cccbbd72ee04815b3cf0bc02e12095b55",
+ "committed_normalized_churn": 0.03483981693363845,
+ "committed_xor_churn_total": 1218,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 16871,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 23,
+ "last_committed_cutoff_score": 5.424540372445108e-09,
+ "last_committed_mask_overlap": 357,
+ "last_committed_normalized_gap": 0.0026772047858685255,
+ "last_committed_score_gap": 1.4522605340516748e-11,
+ "last_dwell_count": 357,
+ "last_raw_cutoff_score": 5.424540372445108e-09,
+ "last_raw_mask_overlap": 357,
+ "last_raw_normalized_gap": 0.0026772047858685255,
+ "last_raw_score_gap": 1.4522605340516748e-11,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09986503422260284,
+ "observability_min": 3.390550284976257e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "6e289d88d88e35534d2fed7f57f27b6cccbbd72ee04815b3cf0bc02e12095b55",
+ "raw_normalized_churn": 0.03483981693363845,
+ "raw_xor_churn_total": 1218,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 122,
+ "committed_mask_sha256": "6c33faeaf4ea18f1b18014ea676533c3f1861c99bb28bd6beb1f8402ac531a93",
+ "committed_normalized_churn": 0.009859382576369808,
+ "committed_xor_churn_total": 244,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 12252,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 6,
+ "last_committed_cutoff_score": 7.002365975949942e-08,
+ "last_committed_mask_overlap": 263,
+ "last_committed_normalized_gap": 0.14826847612857819,
+ "last_committed_score_gap": 1.0382301240952074e-08,
+ "last_dwell_count": 263,
+ "last_raw_cutoff_score": 7.002365975949942e-08,
+ "last_raw_mask_overlap": 263,
+ "last_raw_normalized_gap": 0.14826847612857819,
+ "last_raw_score_gap": 1.0382301240952074e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05831507220864296,
+ "observability_min": 8.296628939419293e-10,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "6c33faeaf4ea18f1b18014ea676533c3f1861c99bb28bd6beb1f8402ac531a93",
+ "raw_normalized_churn": 0.009859382576369808,
+ "raw_xor_churn_total": 244,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 51,
+ "committed_mask_sha256": "c075eb8f46af3bf9b3796b31071638a0bef6ec6ca8804240539492043ad835a7",
+ "committed_normalized_churn": 0.00619383045907214,
+ "committed_xor_churn_total": 102,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 8183,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.9500397431547754e-06,
+ "last_committed_mask_overlap": 177,
+ "last_committed_normalized_gap": 0.023488694801926613,
+ "last_committed_score_gap": 6.929258233867586e-08,
+ "last_dwell_count": 177,
+ "last_raw_cutoff_score": 2.9500397431547754e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.023488694801926613,
+ "last_raw_score_gap": 6.929258233867586e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04187816008925438,
+ "observability_min": 1.5631936634008525e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "c075eb8f46af3bf9b3796b31071638a0bef6ec6ca8804240539492043ad835a7",
+ "raw_normalized_churn": 0.00619383045907214,
+ "raw_xor_churn_total": 102,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "751496422f71bf19b2290a56fc773684f0be61d05e2a2503d61737ccffbc85b2",
+ "committed_normalized_churn": 0.0025851938895417154,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 8488,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 7.809199473740591e-07,
+ "last_committed_mask_overlap": 183,
+ "last_committed_normalized_gap": 0.07577043771743774,
+ "last_committed_score_gap": 5.9170645272388356e-08,
+ "last_dwell_count": 183,
+ "last_raw_cutoff_score": 7.809199473740591e-07,
+ "last_raw_mask_overlap": 183,
+ "last_raw_normalized_gap": 0.07577043771743774,
+ "last_raw_score_gap": 5.9170645272388356e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.029164837673306465,
+ "observability_min": 1.5081665916127918e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "751496422f71bf19b2290a56fc773684f0be61d05e2a2503d61737ccffbc85b2",
+ "raw_normalized_churn": 0.0025851938895417154,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 85,
+ "committed_mask_sha256": "619cd7e607f5915ded5d45c262ffac4372068f15f0b9662da9810eee2432ed05",
+ "committed_normalized_churn": 0.017598343685300208,
+ "committed_xor_churn_total": 170,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 4745,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.4480417576123727e-07,
+ "last_committed_mask_overlap": 103,
+ "last_committed_normalized_gap": 0.0064085377380251884,
+ "last_committed_score_gap": 9.27983023757406e-10,
+ "last_dwell_count": 103,
+ "last_raw_cutoff_score": 1.4480417576123727e-07,
+ "last_raw_mask_overlap": 103,
+ "last_raw_normalized_gap": 0.0064085377380251884,
+ "last_raw_score_gap": 9.27983023757406e-10,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.054027002304792404,
+ "observability_min": 4.8759516424468075e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "619cd7e607f5915ded5d45c262ffac4372068f15f0b9662da9810eee2432ed05",
+ "raw_normalized_churn": 0.017598343685300208,
+ "raw_xor_churn_total": 170,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 30,
+ "committed_mask_sha256": "7c92dc38b7fbe1049698c912e742779b2c8839ef070c5342b8b1b870bdb36d3a",
+ "committed_normalized_churn": 0.008152173913043478,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 3650,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.6654092860335368e-06,
+ "last_committed_mask_overlap": 79,
+ "last_committed_normalized_gap": 0.0003296449431218207,
+ "last_committed_score_gap": 5.489937393576838e-10,
+ "last_dwell_count": 79,
+ "last_raw_cutoff_score": 1.6654092860335368e-06,
+ "last_raw_mask_overlap": 79,
+ "last_raw_normalized_gap": 0.0003296449431218207,
+ "last_raw_score_gap": 5.489937393576838e-10,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.050164595246315,
+ "observability_min": 6.162258614494931e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "7c92dc38b7fbe1049698c912e742779b2c8839ef070c5342b8b1b870bdb36d3a",
+ "raw_normalized_churn": 0.008152173913043478,
+ "raw_xor_churn_total": 60,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 22,
+ "committed_mask_sha256": "bc39469acc8feac6bc72f6ff93bae4d8c807aa4d2786ed33868b12acb8c0af24",
+ "committed_normalized_churn": 0.011122345803842264,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1956,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.540242682400276e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.6909493803977966,
+ "last_committed_score_gap": 3.8280271041912783e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 5.540242682400276e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.6909493803977966,
+ "last_raw_score_gap": 3.8280271041912783e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05362372472882271,
+ "observability_min": 7.44765600302344e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "bc39469acc8feac6bc72f6ff93bae4d8c807aa4d2786ed33868b12acb8c0af24",
+ "raw_normalized_churn": 0.011122345803842264,
+ "raw_xor_churn_total": 44,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 108,
+ "committed_mask_sha256": "bf85f6679b591cd5966f7bbb65248ba10cc0071944220ad1b3952a6d5ed54ada",
+ "committed_normalized_churn": 0.027950310559006212,
+ "committed_xor_churn_total": 216,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 3756,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.8948233559967775e-07,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.034216102212667465,
+ "last_committed_score_gap": 6.483347192443034e-09,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.8948233559967775e-07,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.034216102212667465,
+ "last_raw_score_gap": 6.483347192443034e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03207545354962349,
+ "observability_min": 1.296249934057414e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "bf85f6679b591cd5966f7bbb65248ba10cc0071944220ad1b3952a6d5ed54ada",
+ "raw_normalized_churn": 0.027950310559006212,
+ "raw_xor_churn_total": 216,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 41,
+ "committed_mask_sha256": "5e15a07fff28b255b91a4a5f722efb78e3e7d7ab3204e3f15aa996049c8bd308",
+ "committed_normalized_churn": 0.029710144927536233,
+ "committed_xor_churn_total": 82,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1339,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.0342673704144545e-05,
+ "last_committed_mask_overlap": 28,
+ "last_committed_normalized_gap": 0.13953959941864014,
+ "last_committed_score_gap": 1.443212568119634e-06,
+ "last_dwell_count": 28,
+ "last_raw_cutoff_score": 1.0342673704144545e-05,
+ "last_raw_mask_overlap": 28,
+ "last_raw_normalized_gap": 0.13953959941864014,
+ "last_raw_score_gap": 1.443212568119634e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03959038853645325,
+ "observability_min": 2.803876100188063e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "5e15a07fff28b255b91a4a5f722efb78e3e7d7ab3204e3f15aa996049c8bd308",
+ "raw_normalized_churn": 0.029710144927536233,
+ "raw_xor_churn_total": 82,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 94,
+ "committed_mask_sha256": "2c93b6653b1b45838978f3d98ae451c861634583d015d8593fe6d00caa893de7",
+ "committed_normalized_churn": 0.03295932678821879,
+ "committed_xor_churn_total": 188,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2758,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.402716236498236e-07,
+ "last_committed_mask_overlap": 60,
+ "last_committed_normalized_gap": 0.07634464651346207,
+ "last_committed_score_gap": 1.0708987474572496e-08,
+ "last_dwell_count": 60,
+ "last_raw_cutoff_score": 1.402716236498236e-07,
+ "last_raw_mask_overlap": 60,
+ "last_raw_normalized_gap": 0.07634464651346207,
+ "last_raw_score_gap": 1.0708987474572496e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03539694845676422,
+ "observability_min": 2.3496141920986702e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "2c93b6653b1b45838978f3d98ae451c861634583d015d8593fe6d00caa893de7",
+ "raw_normalized_churn": 0.03295932678821879,
+ "raw_xor_churn_total": 188,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 45,
+ "committed_mask_sha256": "d12ded3f36059c94efcacb9caba86ab52b068bf2e9646b53d2826d7372c3078b",
+ "committed_normalized_churn": 0.018115942028985508,
+ "committed_xor_churn_total": 90,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 2439,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 1.70489542483665e-07,
+ "last_committed_mask_overlap": 49,
+ "last_committed_normalized_gap": 0.04840539023280144,
+ "last_committed_score_gap": 8.252612815340399e-09,
+ "last_dwell_count": 49,
+ "last_raw_cutoff_score": 1.70489542483665e-07,
+ "last_raw_mask_overlap": 49,
+ "last_raw_normalized_gap": 0.04840539023280144,
+ "last_raw_score_gap": 8.252612815340399e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10099761188030243,
+ "observability_min": 2.1728189025793654e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d12ded3f36059c94efcacb9caba86ab52b068bf2e9646b53d2826d7372c3078b",
+ "raw_normalized_churn": 0.018115942028985508,
+ "raw_xor_churn_total": 90,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "4a1b6283eb845adfecb6a9e92f0ec8645bd42f42568ee4ea1d984d7342cd5397",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 2070,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.896245521493256e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.645084023475647,
+ "last_committed_score_gap": 1.2232377230247948e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.896245521493256e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.645084023475647,
+ "last_raw_score_gap": 1.2232377230247948e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10736694931983948,
+ "observability_min": 3.273875748277533e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "4a1b6283eb845adfecb6a9e92f0ec8645bd42f42568ee4ea1d984d7342cd5397",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 13,
+ "committed_mask_sha256": "bbbd9b0fafe10e0d2da721c4189caf9a456f9ee709b08035d0c547ebab5b1b40",
+ "committed_normalized_churn": 0.010466988727858293,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 1229,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.334262252494227e-06,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.6438989043235779,
+ "last_committed_score_gap": 4.078624442627188e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 6.334262252494227e-06,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.6438989043235779,
+ "last_raw_score_gap": 4.078624442627188e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10785167664289474,
+ "observability_min": 6.920857487102694e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "bbbd9b0fafe10e0d2da721c4189caf9a456f9ee709b08035d0c547ebab5b1b40",
+ "raw_normalized_churn": 0.010466988727858293,
+ "raw_xor_churn_total": 26,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 322,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0005191183881834149,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6781460642814636,
+ "last_committed_score_gap": 0.0003520380996633321,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0005191183881834149,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6781460642814636,
+ "last_raw_score_gap": 0.0003520380996633321,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09160400182008743,
+ "observability_min": 8.14018505934655e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "bf422291d257dcc4beff4a49882e4dc8ebb64fd6f9f4b1e08229aacdbb8f4732",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "ed96b5649b0a470c130cd6db684ea1cccb581afd1b182d7ad824dc60b79e7de5",
+ "committed_normalized_churn": 0.012077294685990338,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 409,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.015553612494841e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.1882903277873993,
+ "last_committed_score_gap": 1.5092511603143066e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 8.015553612494841e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.1882903277873993,
+ "last_raw_score_gap": 1.5092511603143066e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10091803967952728,
+ "observability_min": 1.0210123946308158e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ed96b5649b0a470c130cd6db684ea1cccb581afd1b182d7ad824dc60b79e7de5",
+ "raw_normalized_churn": 0.012077294685990338,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "27dd4b3313b714ff21c5ef2c50c8e015ff470323ebbe901ef4015a4f33a6505d",
+ "committed_normalized_churn": 0.006211180124223602,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 320,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.9762383898487315e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6736694574356079,
+ "last_committed_score_gap": 4.026009264634922e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 5.9762383898487315e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6736694574356079,
+ "last_raw_score_gap": 4.026009264634922e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11526400595903397,
+ "observability_min": 5.216726250978354e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "27dd4b3313b714ff21c5ef2c50c8e015ff470323ebbe901ef4015a4f33a6505d",
+ "raw_normalized_churn": 0.006211180124223602,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 9,
+ "committed_mask_sha256": "83d4d0c71b7f1b74ca0795e11ea7fc838b8dc38bee31538e6882251775b12209",
+ "committed_normalized_churn": 0.0035573122529644267,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 2521,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.389617283275584e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.36752790212631226,
+ "last_committed_score_gap": 2.348362613702193e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 6.389617283275584e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.36752790212631226,
+ "last_raw_score_gap": 2.348362613702193e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 46,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10772296786308289,
+ "observability_min": 5.28281063338909e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "83d4d0c71b7f1b74ca0795e11ea7fc838b8dc38bee31538e6882251775b12209",
+ "raw_normalized_churn": 0.0035573122529644267,
+ "raw_xor_churn_total": 18,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ }
+ ],
+ "task_id": 869
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 113,
+ "committed_mask_sha256": "23e41fd0374fc37116e6231770a19229a1784b9e716f2dddfa25ff3b8e573d43",
+ "committed_normalized_churn": 0.00909456740442656,
+ "committed_xor_churn_total": 226,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 12312,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.4355681798861042e-07,
+ "last_committed_mask_overlap": 353,
+ "last_committed_normalized_gap": 0.037918463349342346,
+ "last_committed_score_gap": 5.443453687803412e-09,
+ "last_dwell_count": 353,
+ "last_raw_cutoff_score": 1.4355681798861042e-07,
+ "last_raw_mask_overlap": 353,
+ "last_raw_normalized_gap": 0.037918463349342346,
+ "last_raw_score_gap": 5.443453687803412e-09,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04387785866856575,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "23e41fd0374fc37116e6231770a19229a1784b9e716f2dddfa25ff3b8e573d43",
+ "raw_normalized_churn": 0.00909456740442656,
+ "raw_xor_churn_total": 226,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 301,
+ "committed_mask_sha256": "4ec05be30f0d076f6cf4627ed9883672e56b30204d9f5880c9e0301dbc38506c",
+ "committed_normalized_churn": 0.022631578947368423,
+ "committed_xor_churn_total": 602,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 12999,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 7,
+ "last_committed_cutoff_score": 8.40342373464864e-09,
+ "last_committed_mask_overlap": 373,
+ "last_committed_normalized_gap": 0.02120116539299488,
+ "last_committed_score_gap": 1.7816237374290722e-10,
+ "last_dwell_count": 373,
+ "last_raw_cutoff_score": 8.40342373464864e-09,
+ "last_raw_mask_overlap": 373,
+ "last_raw_normalized_gap": 0.02120116539299488,
+ "last_raw_score_gap": 1.7816237374290722e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09698230773210526,
+ "observability_min": 6.044836853291713e-11,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "4ec05be30f0d076f6cf4627ed9883672e56b30204d9f5880c9e0301dbc38506c",
+ "raw_normalized_churn": 0.022631578947368423,
+ "raw_xor_churn_total": 602,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 71,
+ "committed_mask_sha256": "9570214723c0763c24f8818630c33d778979d693feba248f09e220c6b2c1af93",
+ "committed_normalized_churn": 0.007541157727031333,
+ "committed_xor_churn_total": 142,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 9344,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 9.607022377622343e-08,
+ "last_committed_mask_overlap": 266,
+ "last_committed_normalized_gap": 2.3889328076620586e-05,
+ "last_committed_score_gap": 2.2950530365051236e-12,
+ "last_dwell_count": 266,
+ "last_raw_cutoff_score": 9.607022377622343e-08,
+ "last_raw_mask_overlap": 266,
+ "last_raw_normalized_gap": 2.3889328076620586e-05,
+ "last_raw_score_gap": 2.2950530365051236e-12,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05601523444056511,
+ "observability_min": 1.1970991975474021e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "9570214723c0763c24f8818630c33d778979d693feba248f09e220c6b2c1af93",
+ "raw_normalized_churn": 0.007541157727031333,
+ "raw_xor_churn_total": 142,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 45,
+ "committed_mask_sha256": "fe0640328b410cf235a45209d1eb3342616794e379d841b35364a212b5ccf62e",
+ "committed_normalized_churn": 0.007182761372705506,
+ "committed_xor_churn_total": 90,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6220,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.055236786371097e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.014526058919727802,
+ "last_committed_score_gap": 5.89066075917799e-08,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 4.055236786371097e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.014526058919727802,
+ "last_raw_score_gap": 5.89066075917799e-08,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04150775447487831,
+ "observability_min": 5.570746086647205e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "fe0640328b410cf235a45209d1eb3342616794e379d841b35364a212b5ccf62e",
+ "raw_normalized_churn": 0.007182761372705506,
+ "raw_xor_churn_total": 90,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "6918a44892a0e57f1566773b4068ab0066c5e9b4415a2faf00b135b69fafdb07",
+ "committed_normalized_churn": 0.0026254826254826255,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 6458,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.415805948265188e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.7516260147094727,
+ "last_committed_score_gap": 7.077164809743408e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 9.415805948265188e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.7516260147094727,
+ "last_raw_score_gap": 7.077164809743408e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.026271630078554153,
+ "observability_min": 6.485232262321006e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "6918a44892a0e57f1566773b4068ab0066c5e9b4415a2faf00b135b69fafdb07",
+ "raw_normalized_churn": 0.0026254826254826255,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 68,
+ "committed_mask_sha256": "60d8cee12e5179e2ea98729bda17f80f6be811884cbcaa950194e295899a4c8e",
+ "committed_normalized_churn": 0.01850340136054422,
+ "committed_xor_churn_total": 136,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3607,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.511034438157367e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.03589598089456558,
+ "last_committed_score_gap": 9.013604085339466e-09,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.511034438157367e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.03589598089456558,
+ "last_raw_score_gap": 9.013604085339466e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03314143419265747,
+ "observability_min": 2.9117813937773462e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "60d8cee12e5179e2ea98729bda17f80f6be811884cbcaa950194e295899a4c8e",
+ "raw_normalized_churn": 0.01850340136054422,
+ "raw_xor_churn_total": 136,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 23,
+ "committed_mask_sha256": "c857e4c87e8c38937ec4c51d25c9058cb5b0a2e20cca4aa5212daef472621f56",
+ "committed_normalized_churn": 0.008214285714285714,
+ "committed_xor_churn_total": 46,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2777,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6668441276124213e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.45020541548728943,
+ "last_committed_score_gap": 7.504222594434395e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.6668441276124213e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.45020541548728943,
+ "last_raw_score_gap": 7.504222594434395e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04664970561861992,
+ "observability_min": 1.2576252572671365e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "c857e4c87e8c38937ec4c51d25c9058cb5b0a2e20cca4aa5212daef472621f56",
+ "raw_normalized_churn": 0.008214285714285714,
+ "raw_xor_churn_total": 46,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 10,
+ "committed_mask_sha256": "c0d569320d872ecc7fd76f8828dccf00f170602e08ddf6d4a01c3d32ac68fc74",
+ "committed_normalized_churn": 0.006644518272425249,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1495,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.127585041009297e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.6984828114509583,
+ "last_committed_score_gap": 3.581530165774893e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 5.127585041009297e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.6984828114509583,
+ "last_raw_score_gap": 3.581530165774893e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.056476183235645294,
+ "observability_min": 2.3572489737944124e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "c0d569320d872ecc7fd76f8828dccf00f170602e08ddf6d4a01c3d32ac68fc74",
+ "raw_normalized_churn": 0.006644518272425249,
+ "raw_xor_churn_total": 20,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 67,
+ "committed_mask_sha256": "909c0a6eaa547bbfd465a09011aa85483bd8be09f67633945ceccd84b1075d0a",
+ "committed_normalized_churn": 0.022789115646258504,
+ "committed_xor_churn_total": 134,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2873,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.1053923287818179e-07,
+ "last_committed_mask_overlap": 82,
+ "last_committed_normalized_gap": 0.12826015055179596,
+ "last_committed_score_gap": 1.4177778950852371e-08,
+ "last_dwell_count": 82,
+ "last_raw_cutoff_score": 1.1053923287818179e-07,
+ "last_raw_mask_overlap": 82,
+ "last_raw_normalized_gap": 0.12826015055179596,
+ "last_raw_score_gap": 1.4177778950852371e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04302891716361046,
+ "observability_min": 1.7448344635795365e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "909c0a6eaa547bbfd465a09011aa85483bd8be09f67633945ceccd84b1075d0a",
+ "raw_normalized_churn": 0.022789115646258504,
+ "raw_xor_churn_total": 134,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 29,
+ "committed_mask_sha256": "cc850bbf2482a80177c512f5875344aa07fbdcf028f56a962b1c4dade026cbb5",
+ "committed_normalized_churn": 0.02761904761904762,
+ "committed_xor_churn_total": 58,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1021,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 9.699425390863325e-06,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.13024304807186127,
+ "last_committed_score_gap": 1.2632826837943867e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 9.699425390863325e-06,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.13024304807186127,
+ "last_raw_score_gap": 1.2632826837943867e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04191617667675018,
+ "observability_min": 3.470042884146096e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "cc850bbf2482a80177c512f5875344aa07fbdcf028f56a962b1c4dade026cbb5",
+ "raw_normalized_churn": 0.02761904761904762,
+ "raw_xor_churn_total": 58,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 70,
+ "committed_mask_sha256": "77f5e6b0baa87427b230d1f982d66af46ee2318496c8679074880e03706b752c",
+ "committed_normalized_churn": 0.03225806451612903,
+ "committed_xor_churn_total": 140,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2100,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.261339773212967e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.6149218082427979,
+ "last_committed_score_gap": 1.3905471973885142e-07,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.261339773212967e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.6149218082427979,
+ "last_raw_score_gap": 1.3905471973885142e-07,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05166446417570114,
+ "observability_min": 1.5470128289507556e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "77f5e6b0baa87427b230d1f982d66af46ee2318496c8679074880e03706b752c",
+ "raw_normalized_churn": 0.03225806451612903,
+ "raw_xor_churn_total": 140,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 47,
+ "committed_mask_sha256": "de3c9c4c68264be510ab72fb25006e5938977c1a1d1766cb6acb95613bbb1cbd",
+ "committed_normalized_churn": 0.02486772486772487,
+ "committed_xor_churn_total": 94,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1843,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 1.898072241601767e-07,
+ "last_committed_mask_overlap": 52,
+ "last_committed_normalized_gap": 0.304842084646225,
+ "last_committed_score_gap": 5.786122869722021e-08,
+ "last_dwell_count": 52,
+ "last_raw_cutoff_score": 1.898072241601767e-07,
+ "last_raw_mask_overlap": 52,
+ "last_raw_normalized_gap": 0.304842084646225,
+ "last_raw_score_gap": 5.786122869722021e-08,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09996703267097473,
+ "observability_min": 2.8733413870440927e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "de3c9c4c68264be510ab72fb25006e5938977c1a1d1766cb6acb95613bbb1cbd",
+ "raw_normalized_churn": 0.02486772486772487,
+ "raw_xor_churn_total": 94,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "23a2c7057745d509a1f5ffa058c1f0e28ed40bf48fcd2895dad8ef456a1fbd52",
+ "committed_normalized_churn": 0.0006349206349206349,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1574,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.0647799172147643e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.75300133228302,
+ "last_committed_score_gap": 8.017806976567954e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.0647799172147643e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.75300133228302,
+ "last_raw_score_gap": 8.017806976567954e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10891885310411453,
+ "observability_min": 1.3599287029819607e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "23a2c7057745d509a1f5ffa058c1f0e28ed40bf48fcd2895dad8ef456a1fbd52",
+ "raw_normalized_churn": 0.0006349206349206349,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "2532051ae184ffcd0d36450b286b3458bc2b4a9eea98ff3ced16ae9f988e9824",
+ "committed_normalized_churn": 0.005291005291005291,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 940,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.735718979034573e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.827846884727478,
+ "last_committed_score_gap": 1.4369095879374072e-05,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.735718979034573e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.827846884727478,
+ "last_raw_score_gap": 1.4369095879374072e-05,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.11255506426095963,
+ "observability_min": 1.077787743497538e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "2532051ae184ffcd0d36450b286b3458bc2b4a9eea98ff3ced16ae9f988e9824",
+ "raw_normalized_churn": 0.005291005291005291,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0009782034903764725,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8199619650840759,
+ "last_committed_score_gap": 0.0008020896348170936,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0009782034903764725,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8199619650840759,
+ "last_raw_score_gap": 0.0008020896348170936,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09244658052921295,
+ "observability_min": 4.940023501376345e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "83e537f154b34d5817ef8c3f5b06d5d521ee7d9e77448f2b9c76e027ad222aa4",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.015873015873015872,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 310,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00017633159586694092,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.8382759690284729,
+ "last_committed_score_gap": 0.00014781454228796065,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00017633159586694092,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.8382759690284729,
+ "last_raw_score_gap": 0.00014781454228796065,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10436496138572693,
+ "observability_min": 1.80131447535814e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.015873015873015872,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "committed_normalized_churn": 0.004081632653061225,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 244,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0001480895298300311,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.6649798154830933,
+ "last_committed_score_gap": 9.847655019257218e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0001480895298300311,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.6649798154830933,
+ "last_raw_score_gap": 9.847655019257218e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.12306632101535797,
+ "observability_min": 2.65744990457506e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "raw_normalized_churn": 0.004081632653061225,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "103567299d3307b44ce9f7ed2f34032f015aa00a1770434ed38e838d21178aaf",
+ "committed_normalized_churn": 0.002077922077922078,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1921,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.843092811934184e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.6224151849746704,
+ "last_committed_score_gap": 6.126490461610956e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 9.843092811934184e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.6224151849746704,
+ "last_raw_score_gap": 6.126490461610956e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.1121813952922821,
+ "observability_min": 4.242701301393481e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "103567299d3307b44ce9f7ed2f34032f015aa00a1770434ed38e838d21178aaf",
+ "raw_normalized_churn": 0.002077922077922078,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ }
+ ],
+ "task_id": 851
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 113,
+ "committed_mask_sha256": "b30fd727492c2d92e40c1f931b450a0d309c02de69956c8447d22ae110c4d2b1",
+ "committed_normalized_churn": 0.008841940532081377,
+ "committed_xor_churn_total": 226,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 12667,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.4277075877089374e-07,
+ "last_committed_mask_overlap": 352,
+ "last_committed_normalized_gap": 0.002541556488722563,
+ "last_committed_score_gap": 3.6285996429796796e-10,
+ "last_dwell_count": 352,
+ "last_raw_cutoff_score": 1.4277075877089374e-07,
+ "last_raw_mask_overlap": 352,
+ "last_raw_normalized_gap": 0.002541556488722563,
+ "last_raw_score_gap": 3.6285996429796796e-10,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03661351278424263,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "b30fd727492c2d92e40c1f931b450a0d309c02de69956c8447d22ae110c4d2b1",
+ "raw_normalized_churn": 0.008841940532081377,
+ "raw_xor_churn_total": 226,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 417,
+ "committed_mask_sha256": "9bcca7b947cd0c711b351d09d5db7d30a86d1bded3a514671b8a19268ecf3a50",
+ "committed_normalized_churn": 0.03048245614035088,
+ "committed_xor_churn_total": 834,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 13263,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 18,
+ "last_committed_cutoff_score": 2.2462858240146488e-08,
+ "last_committed_mask_overlap": 362,
+ "last_committed_normalized_gap": 0.017693061381578445,
+ "last_committed_score_gap": 3.9743675017689384e-10,
+ "last_dwell_count": 362,
+ "last_raw_cutoff_score": 2.2462858240146488e-08,
+ "last_raw_mask_overlap": 362,
+ "last_raw_normalized_gap": 0.017693061381578445,
+ "last_raw_score_gap": 3.9743675017689384e-10,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10602586716413498,
+ "observability_min": 2.796427978069005e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "9bcca7b947cd0c711b351d09d5db7d30a86d1bded3a514671b8a19268ecf3a50",
+ "raw_normalized_churn": 0.03048245614035088,
+ "raw_xor_churn_total": 834,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 106,
+ "committed_mask_sha256": "ab68870aa12a59b9d7cc8c1bacf762ec5998e9cf3dfa6948976ac5ebc95327ee",
+ "committed_normalized_churn": 0.010945890128046263,
+ "committed_xor_churn_total": 212,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 9578,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 7,
+ "last_committed_cutoff_score": 1.0374592562811813e-07,
+ "last_committed_mask_overlap": 262,
+ "last_committed_normalized_gap": 0.0379163920879364,
+ "last_committed_score_gap": 3.933671166578279e-09,
+ "last_dwell_count": 262,
+ "last_raw_cutoff_score": 1.0374592562811813e-07,
+ "last_raw_mask_overlap": 262,
+ "last_raw_normalized_gap": 0.0379163920879364,
+ "last_raw_score_gap": 3.933671166578279e-09,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05918871611356735,
+ "observability_min": 6.871231583716053e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "ab68870aa12a59b9d7cc8c1bacf762ec5998e9cf3dfa6948976ac5ebc95327ee",
+ "raw_normalized_churn": 0.010945890128046263,
+ "raw_xor_churn_total": 212,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 32,
+ "committed_mask_sha256": "8cafd713d5a9b1a2b35cac69afe01b69b66a8f620ced940c6b970a025975c357",
+ "committed_normalized_churn": 0.004965859714463066,
+ "committed_xor_churn_total": 64,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6412,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.537717591621913e-06,
+ "last_committed_mask_overlap": 179,
+ "last_committed_normalized_gap": 0.21769340336322784,
+ "last_committed_score_gap": 5.524443622562103e-07,
+ "last_dwell_count": 179,
+ "last_raw_cutoff_score": 2.537717591621913e-06,
+ "last_raw_mask_overlap": 179,
+ "last_raw_normalized_gap": 0.21769340336322784,
+ "last_raw_score_gap": 5.524443622562103e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04250706732273102,
+ "observability_min": 1.952424000251085e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "8cafd713d5a9b1a2b35cac69afe01b69b66a8f620ced940c6b970a025975c357",
+ "raw_normalized_churn": 0.004965859714463066,
+ "raw_xor_churn_total": 64,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "3bdb2b35eaafbc92430c63237baed670b7b3cc2219f2c4ad21387f502e674313",
+ "committed_normalized_churn": 0.0025525525525525524,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 6643,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 8.147260928126343e-07,
+ "last_committed_mask_overlap": 184,
+ "last_committed_normalized_gap": 0.012944423593580723,
+ "last_committed_score_gap": 1.0546159501245711e-08,
+ "last_dwell_count": 184,
+ "last_raw_cutoff_score": 8.147260928126343e-07,
+ "last_raw_mask_overlap": 184,
+ "last_raw_normalized_gap": 0.012944423593580723,
+ "last_raw_score_gap": 1.0546159501245711e-08,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.032716672867536545,
+ "observability_min": 2.9948957092074124e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "3bdb2b35eaafbc92430c63237baed670b7b3cc2219f2c4ad21387f502e674313",
+ "raw_normalized_churn": 0.0025525525525525524,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 65,
+ "committed_mask_sha256": "532b483bfd74990f513dd45c7ea186a61454945f4601b8985f98f4474f53520e",
+ "committed_normalized_churn": 0.017195767195767195,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3715,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 2.0358400831810286e-07,
+ "last_committed_mask_overlap": 104,
+ "last_committed_normalized_gap": 0.044201113283634186,
+ "last_committed_score_gap": 8.998640055324358e-09,
+ "last_dwell_count": 104,
+ "last_raw_cutoff_score": 2.0358400831810286e-07,
+ "last_raw_mask_overlap": 104,
+ "last_raw_normalized_gap": 0.044201113283634186,
+ "last_raw_score_gap": 8.998640055324358e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04879630729556084,
+ "observability_min": 3.942557835756588e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "532b483bfd74990f513dd45c7ea186a61454945f4601b8985f98f4474f53520e",
+ "raw_normalized_churn": 0.017195767195767195,
+ "raw_xor_churn_total": 130,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 18,
+ "committed_mask_sha256": "b8897e00c9d17c361dc0f65b4e467ee182ed6cc8debb64169bb9300f11364788",
+ "committed_normalized_churn": 0.00625,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 2862,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.5478649402211886e-06,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.0886446163058281,
+ "last_committed_score_gap": 1.3720989500143332e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 1.5478649402211886e-06,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.0886446163058281,
+ "last_raw_score_gap": 1.3720989500143332e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05391395837068558,
+ "observability_min": 1.2623313239146228e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "b8897e00c9d17c361dc0f65b4e467ee182ed6cc8debb64169bb9300f11364788",
+ "raw_normalized_churn": 0.00625,
+ "raw_xor_churn_total": 36,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 17,
+ "committed_mask_sha256": "e4dfcf4d97946f426b65d500aac31bdcff75aca5282fc99ace2bcad00db50e2e",
+ "committed_normalized_churn": 0.010981912144702842,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1531,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 4.4409185306903964e-07,
+ "last_committed_mask_overlap": 42,
+ "last_committed_normalized_gap": 0.0903315618634224,
+ "last_committed_score_gap": 4.011550913674e-08,
+ "last_dwell_count": 42,
+ "last_raw_cutoff_score": 4.4409185306903964e-07,
+ "last_raw_mask_overlap": 42,
+ "last_raw_normalized_gap": 0.0903315618634224,
+ "last_raw_score_gap": 4.011550913674e-08,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.059115931391716,
+ "observability_min": 2.905752580772969e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "e4dfcf4d97946f426b65d500aac31bdcff75aca5282fc99ace2bcad00db50e2e",
+ "raw_normalized_churn": 0.010981912144702842,
+ "raw_xor_churn_total": 34,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 70,
+ "committed_mask_sha256": "397db6193dbe014f5d393eac568d79a032b7630c478801cefbb5cd66dfd52d9c",
+ "committed_normalized_churn": 0.023148148148148147,
+ "committed_xor_churn_total": 140,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 2954,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 3,
+ "last_committed_cutoff_score": 1.5039208278722072e-07,
+ "last_committed_mask_overlap": 81,
+ "last_committed_normalized_gap": 0.062321752309799194,
+ "last_committed_score_gap": 9.372698173137906e-09,
+ "last_dwell_count": 81,
+ "last_raw_cutoff_score": 1.5039208278722072e-07,
+ "last_raw_mask_overlap": 81,
+ "last_raw_normalized_gap": 0.062321752309799194,
+ "last_raw_score_gap": 9.372698173137906e-09,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03651866689324379,
+ "observability_min": 3.2067944744085253e-07,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "397db6193dbe014f5d393eac568d79a032b7630c478801cefbb5cd66dfd52d9c",
+ "raw_normalized_churn": 0.023148148148148147,
+ "raw_xor_churn_total": 140,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 24,
+ "committed_mask_sha256": "c5e02bba39c8bcf6069cd1e1fe78cc2b3ec993546463f737001553192d1433dd",
+ "committed_normalized_churn": 0.022222222222222223,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1056,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 1,
+ "last_committed_cutoff_score": 1.119716398534365e-05,
+ "last_committed_mask_overlap": 29,
+ "last_committed_normalized_gap": 0.21295973658561707,
+ "last_committed_score_gap": 2.3845450414228253e-06,
+ "last_dwell_count": 29,
+ "last_raw_cutoff_score": 1.119716398534365e-05,
+ "last_raw_mask_overlap": 29,
+ "last_raw_normalized_gap": 0.21295973658561707,
+ "last_raw_score_gap": 2.3845450414228253e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03480956330895424,
+ "observability_min": 2.1686106776996894e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "c5e02bba39c8bcf6069cd1e1fe78cc2b3ec993546463f737001553192d1433dd",
+ "raw_normalized_churn": 0.022222222222222223,
+ "raw_xor_churn_total": 48,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 78,
+ "committed_mask_sha256": "5a9c6287e6c97f2c40ce81a9a2e78f3280134592ed607a0308d2d2bcf6362a75",
+ "committed_normalized_churn": 0.03494623655913978,
+ "committed_xor_churn_total": 156,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2154,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 2.0360604935376614e-07,
+ "last_committed_mask_overlap": 58,
+ "last_committed_normalized_gap": 0.007414062973111868,
+ "last_committed_score_gap": 1.5095480421223328e-09,
+ "last_dwell_count": 58,
+ "last_raw_cutoff_score": 2.0360604935376614e-07,
+ "last_raw_mask_overlap": 58,
+ "last_raw_normalized_gap": 0.007414062973111868,
+ "last_raw_score_gap": 1.5095480421223328e-09,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04460650309920311,
+ "observability_min": 9.180801896491175e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "5a9c6287e6c97f2c40ce81a9a2e78f3280134592ed607a0308d2d2bcf6362a75",
+ "raw_normalized_churn": 0.03494623655913978,
+ "raw_xor_churn_total": 156,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 34,
+ "committed_mask_sha256": "53bb1c8d033ac57650db7394bf6fc0fba300bf8cc4dd02fa52878b29753b24cc",
+ "committed_normalized_churn": 0.01748971193415638,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 1910,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 4,
+ "last_committed_cutoff_score": 2.958615539228049e-07,
+ "last_committed_mask_overlap": 50,
+ "last_committed_normalized_gap": 0.027536040171980858,
+ "last_committed_score_gap": 8.146855634549865e-09,
+ "last_dwell_count": 50,
+ "last_raw_cutoff_score": 2.958615539228049e-07,
+ "last_raw_mask_overlap": 50,
+ "last_raw_normalized_gap": 0.027536040171980858,
+ "last_raw_score_gap": 8.146855634549865e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09452247619628906,
+ "observability_min": 8.003800644473813e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "53bb1c8d033ac57650db7394bf6fc0fba300bf8cc4dd02fa52878b29753b24cc",
+ "raw_normalized_churn": 0.01748971193415638,
+ "raw_xor_churn_total": 68,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "dbe34a46aac3135c93751fe0fea019702495907b1cfd7394fa72e2100565f049",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1620,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.6267233149847016e-05,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7912289500236511,
+ "last_committed_score_gap": 1.2871105354861356e-05,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 1.6267233149847016e-05,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7912289500236511,
+ "last_raw_score_gap": 1.2871105354861356e-05,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10417813807725906,
+ "observability_min": 1.3132063436671615e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "dbe34a46aac3135c93751fe0fea019702495907b1cfd7394fa72e2100565f049",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 3,
+ "committed_mask_sha256": "aea9277157cac513770f6cab67ce3bbba4da4c32ef44439f177020020dd6baaa",
+ "committed_normalized_churn": 0.0030864197530864196,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 969,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.4493355593003798e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.408037394285202,
+ "last_committed_score_gap": 5.913831046200357e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.4493355593003798e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.408037394285202,
+ "last_raw_score_gap": 5.913831046200357e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09991583228111267,
+ "observability_min": 1.9054866129408765e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "aea9277157cac513770f6cab67ce3bbba4da4c32ef44439f177020020dd6baaa",
+ "raw_normalized_churn": 0.0030864197530864196,
+ "raw_xor_churn_total": 6,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "58ca4272bcb51e7fecec556e7878056a906d8d41ca8ab8a3b9f7543bf14ac247",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.0002924121799878776,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.84930020570755,
+ "last_committed_score_gap": 0.0002483457210473716,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.0002924121799878776,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.84930020570755,
+ "last_raw_score_gap": 0.0002483457210473716,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08773360401391983,
+ "observability_min": 8.310416887979954e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "58ca4272bcb51e7fecec556e7878056a906d8d41ca8ab8a3b9f7543bf14ac247",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 2,
+ "committed_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "committed_normalized_churn": 0.006172839506172839,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 322,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00014599172573070973,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.9350185394287109,
+ "last_committed_score_gap": 0.00013650496839545667,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 0.00014599172573070973,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.9350185394287109,
+ "last_raw_score_gap": 0.00013650496839545667,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09960097819566727,
+ "observability_min": 1.2622207279378017e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "75008ab6b63e35c5cba2a68a73ef77e6ec8f413e05d353516c9c29ebc1f6ae09",
+ "raw_normalized_churn": 0.006172839506172839,
+ "raw_xor_churn_total": 4,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 7.89464611443691e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.8647401332855225,
+ "last_committed_score_gap": 6.826817116234452e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 7.89464611443691e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.8647401332855225,
+ "last_raw_score_gap": 6.826817116234452e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10713832825422287,
+ "observability_min": 4.3447503372817664e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "4663ddb0ff0e73352f07f05743fcf0adb4ec55d54e4e04750c4b5459e730fe12",
+ "committed_normalized_churn": 0.0035353535353535356,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 1973,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 5.822446382808266e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.3287775218486786,
+ "last_committed_score_gap": 1.91428944162908e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 5.822446382808266e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.3287775218486786,
+ "last_raw_score_gap": 1.91428944162908e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 36,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.10632011294364929,
+ "observability_min": 1.3809284826749035e-09,
+ "observability_trace": 1.0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "4663ddb0ff0e73352f07f05743fcf0adb4ec55d54e4e04750c4b5459e730fe12",
+ "raw_normalized_churn": 0.0035353535353535356,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ }
+ ],
+ "task_id": 728
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 159,
+ "committed_mask_sha256": "023fc252834001f7d6883cd0af4dc28e6fb21d701a5438c718ae7cd570ed7772",
+ "committed_normalized_churn": 0.01178650852483321,
+ "committed_xor_churn_total": 318,
+ "confirmation_two": false,
+ "current_selected_count": 355,
+ "dwell_total": 13331,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 5,
+ "last_committed_cutoff_score": 1.604381054676196e-07,
+ "last_committed_mask_overlap": 350,
+ "last_committed_normalized_gap": 0.17768791317939758,
+ "last_committed_score_gap": 2.8507912475106423e-08,
+ "last_dwell_count": 350,
+ "last_raw_cutoff_score": 1.604381054676196e-07,
+ "last_raw_mask_overlap": 350,
+ "last_raw_normalized_gap": 0.17768791317939758,
+ "last_raw_score_gap": 2.8507912475106423e-08,
+ "last_token_count": 1,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.052964843809604645,
+ "observability_min": 0.0,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "023fc252834001f7d6883cd0af4dc28e6fb21d701a5438c718ae7cd570ed7772",
+ "raw_normalized_churn": 0.01178650852483321,
+ "raw_xor_churn_total": 318,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 303,
+ "committed_mask_sha256": "92f3406772e448b3bf16b24299cf079086d508c896a12df31f3dc19aa1020d14",
+ "committed_normalized_churn": 0.02098337950138504,
+ "committed_xor_churn_total": 606,
+ "confirmation_two": false,
+ "current_selected_count": 380,
+ "dwell_total": 14137,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.332782500502617e-08,
+ "last_committed_mask_overlap": 380,
+ "last_committed_normalized_gap": 0.09469230473041534,
+ "last_committed_score_gap": 2.2089654549972693e-09,
+ "last_dwell_count": 380,
+ "last_raw_cutoff_score": 2.332782500502617e-08,
+ "last_raw_mask_overlap": 380,
+ "last_raw_normalized_gap": 0.09469230473041534,
+ "last_raw_score_gap": 2.2089654549972693e-09,
+ "last_token_count": 1,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09210807830095291,
+ "observability_min": 1.1947070888140843e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "92f3406772e448b3bf16b24299cf079086d508c896a12df31f3dc19aa1020d14",
+ "raw_normalized_churn": 0.02098337950138504,
+ "raw_xor_churn_total": 606,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 85,
+ "committed_mask_sha256": "bd5dcfc22c894a85ad79274be1cbf8c2a02d4152dea0526848ddc38449317fdd",
+ "committed_normalized_churn": 0.008315398160829584,
+ "committed_xor_churn_total": 170,
+ "confirmation_two": false,
+ "current_selected_count": 269,
+ "dwell_total": 10137,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 9.33086496957003e-08,
+ "last_committed_mask_overlap": 269,
+ "last_committed_normalized_gap": 0.3894367516040802,
+ "last_committed_score_gap": 3.633781631151578e-08,
+ "last_dwell_count": 269,
+ "last_raw_cutoff_score": 9.33086496957003e-08,
+ "last_raw_mask_overlap": 269,
+ "last_raw_normalized_gap": 0.3894367516040802,
+ "last_raw_score_gap": 3.633781631151578e-08,
+ "last_token_count": 1,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.038324013352394104,
+ "observability_min": 8.448434840602204e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "bd5dcfc22c894a85ad79274be1cbf8c2a02d4152dea0526848ddc38449317fdd",
+ "raw_normalized_churn": 0.008315398160829584,
+ "raw_xor_churn_total": 170,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 26,
+ "committed_mask_sha256": "93e412722b3f8c334f9552ae7c847caae0cd3e362a6c061d77b7b3cf73927f4b",
+ "committed_normalized_churn": 0.0038224051749485444,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": false,
+ "current_selected_count": 179,
+ "dwell_total": 6776,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 2,
+ "last_committed_cutoff_score": 2.7923774723603856e-06,
+ "last_committed_mask_overlap": 177,
+ "last_committed_normalized_gap": 0.05090902000665665,
+ "last_committed_score_gap": 1.421572051185649e-07,
+ "last_dwell_count": 177,
+ "last_raw_cutoff_score": 2.7923774723603856e-06,
+ "last_raw_mask_overlap": 177,
+ "last_raw_normalized_gap": 0.05090902000665665,
+ "last_raw_score_gap": 1.421572051185649e-07,
+ "last_token_count": 1,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.04231423884630203,
+ "observability_min": 2.6696642407841864e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "93e412722b3f8c334f9552ae7c847caae0cd3e362a6c061d77b7b3cf73927f4b",
+ "raw_normalized_churn": 0.0038224051749485444,
+ "raw_xor_churn_total": 52,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 14,
+ "committed_mask_sha256": "26425c2b1ae194cca834286553adbf368eabfd65ea8d6abcbc6260f33b5967a4",
+ "committed_normalized_churn": 0.001991465149359886,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": false,
+ "current_selected_count": 185,
+ "dwell_total": 7016,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.7039632161395275e-07,
+ "last_committed_mask_overlap": 185,
+ "last_committed_normalized_gap": 0.7450692653656006,
+ "last_committed_score_gap": 2.7597090479503095e-07,
+ "last_dwell_count": 185,
+ "last_raw_cutoff_score": 3.7039632161395275e-07,
+ "last_raw_mask_overlap": 185,
+ "last_raw_normalized_gap": 0.7450692653656006,
+ "last_raw_score_gap": 2.7597090479503095e-07,
+ "last_token_count": 1,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.023491786792874336,
+ "observability_min": 2.191741970136718e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "26425c2b1ae194cca834286553adbf368eabfd65ea8d6abcbc6260f33b5967a4",
+ "raw_normalized_churn": 0.001991465149359886,
+ "raw_xor_churn_total": 28,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 74,
+ "committed_mask_sha256": "ca654da2eaaccc46d7668af02ab6b96b43ad1f3dbefee52cba17495c74c2a2cb",
+ "committed_normalized_churn": 0.018546365914786967,
+ "committed_xor_churn_total": 148,
+ "confirmation_two": false,
+ "current_selected_count": 105,
+ "dwell_total": 3916,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.1106612280163972e-07,
+ "last_committed_mask_overlap": 105,
+ "last_committed_normalized_gap": 0.03776136040687561,
+ "last_committed_score_gap": 7.970143656166329e-09,
+ "last_dwell_count": 105,
+ "last_raw_cutoff_score": 2.1106612280163972e-07,
+ "last_raw_mask_overlap": 105,
+ "last_raw_normalized_gap": 0.03776136040687561,
+ "last_raw_score_gap": 7.970143656166329e-09,
+ "last_token_count": 1,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03024403750896454,
+ "observability_min": 1.4476974286026234e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "ca654da2eaaccc46d7668af02ab6b96b43ad1f3dbefee52cba17495c74c2a2cb",
+ "raw_normalized_churn": 0.018546365914786967,
+ "raw_xor_churn_total": 148,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 11,
+ "committed_mask_sha256": "c53027c1f35b5fca8b61a84c832319b13aec42c6080574e9e9821b013f863510",
+ "committed_normalized_churn": 0.003618421052631579,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": false,
+ "current_selected_count": 80,
+ "dwell_total": 3029,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 8.89575574092305e-07,
+ "last_committed_mask_overlap": 80,
+ "last_committed_normalized_gap": 0.1251688003540039,
+ "last_committed_score_gap": 1.1134710575788631e-07,
+ "last_dwell_count": 80,
+ "last_raw_cutoff_score": 8.89575574092305e-07,
+ "last_raw_mask_overlap": 80,
+ "last_raw_normalized_gap": 0.1251688003540039,
+ "last_raw_score_gap": 1.1134710575788631e-07,
+ "last_token_count": 1,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.039790503680706024,
+ "observability_min": 4.868075507147296e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "c53027c1f35b5fca8b61a84c832319b13aec42c6080574e9e9821b013f863510",
+ "raw_normalized_churn": 0.003618421052631579,
+ "raw_xor_churn_total": 22,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 8,
+ "committed_mask_sha256": "6c7c52e26d1632346078baa463e7f2f53e6759eb4a4864333dd8096683382c46",
+ "committed_normalized_churn": 0.004895960832313341,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": false,
+ "current_selected_count": 43,
+ "dwell_total": 1626,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.294764496786229e-07,
+ "last_committed_mask_overlap": 43,
+ "last_committed_normalized_gap": 0.5532433986663818,
+ "last_committed_score_gap": 1.822806723339454e-07,
+ "last_dwell_count": 43,
+ "last_raw_cutoff_score": 3.294764496786229e-07,
+ "last_raw_mask_overlap": 43,
+ "last_raw_normalized_gap": 0.5532433986663818,
+ "last_raw_score_gap": 1.822806723339454e-07,
+ "last_token_count": 1,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.05347816273570061,
+ "observability_min": 4.4118900177636533e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "6c7c52e26d1632346078baa463e7f2f53e6759eb4a4864333dd8096683382c46",
+ "raw_normalized_churn": 0.004895960832313341,
+ "raw_xor_churn_total": 16,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 76,
+ "committed_mask_sha256": "def79f926cab62ea41cffae92b80f9ff2e7f26ebf5cabf070ba91b0bf10e2e86",
+ "committed_normalized_churn": 0.023809523809523808,
+ "committed_xor_churn_total": 152,
+ "confirmation_two": false,
+ "current_selected_count": 84,
+ "dwell_total": 3116,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.248603922476832e-07,
+ "last_committed_mask_overlap": 84,
+ "last_committed_normalized_gap": 0.568244457244873,
+ "last_committed_score_gap": 7.095122356304273e-08,
+ "last_dwell_count": 84,
+ "last_raw_cutoff_score": 1.248603922476832e-07,
+ "last_raw_mask_overlap": 84,
+ "last_raw_normalized_gap": 0.568244457244873,
+ "last_raw_score_gap": 7.095122356304273e-08,
+ "last_token_count": 1,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.032171085476875305,
+ "observability_min": 6.2093738506519e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "def79f926cab62ea41cffae92b80f9ff2e7f26ebf5cabf070ba91b0bf10e2e86",
+ "raw_normalized_churn": 0.023809523809523808,
+ "raw_xor_churn_total": 152,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 26,
+ "committed_mask_sha256": "6f8719682753e9d94a0cca1cfb9a190ee797232768c9b64ddf103b9c246fb627",
+ "committed_normalized_churn": 0.02280701754385965,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": false,
+ "current_selected_count": 30,
+ "dwell_total": 1114,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 6.611341632378753e-06,
+ "last_committed_mask_overlap": 30,
+ "last_committed_normalized_gap": 0.2290026694536209,
+ "last_committed_score_gap": 1.5140149116632529e-06,
+ "last_dwell_count": 30,
+ "last_raw_cutoff_score": 6.611341632378753e-06,
+ "last_raw_mask_overlap": 30,
+ "last_raw_normalized_gap": 0.2290026694536209,
+ "last_raw_score_gap": 1.5140149116632529e-06,
+ "last_token_count": 1,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03300607204437256,
+ "observability_min": 4.884915938418999e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "6f8719682753e9d94a0cca1cfb9a190ee797232768c9b64ddf103b9c246fb627",
+ "raw_normalized_churn": 0.02280701754385965,
+ "raw_xor_churn_total": 52,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 65,
+ "committed_mask_sha256": "f1081bfda3a60431424f8340fbebc86492c777e8f2241f287938c1bf498dd468",
+ "committed_normalized_churn": 0.027589134125636672,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": false,
+ "current_selected_count": 62,
+ "dwell_total": 2291,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 2.118670323625338e-07,
+ "last_committed_mask_overlap": 62,
+ "last_committed_normalized_gap": 0.45236942172050476,
+ "last_committed_score_gap": 9.584216797975387e-08,
+ "last_dwell_count": 62,
+ "last_raw_cutoff_score": 2.118670323625338e-07,
+ "last_raw_mask_overlap": 62,
+ "last_raw_normalized_gap": 0.45236942172050476,
+ "last_raw_score_gap": 9.584216797975387e-08,
+ "last_token_count": 1,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.03927992656826973,
+ "observability_min": 4.803929982699628e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "f1081bfda3a60431424f8340fbebc86492c777e8f2241f287938c1bf498dd468",
+ "raw_normalized_churn": 0.027589134125636672,
+ "raw_xor_churn_total": 130,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 28,
+ "committed_mask_sha256": "619739a1ec00c775621d149a429ff7c781f917ceed44f0087971515e72986f01",
+ "committed_normalized_churn": 0.01364522417153996,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": false,
+ "current_selected_count": 54,
+ "dwell_total": 2024,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.601741956847036e-07,
+ "last_committed_mask_overlap": 54,
+ "last_committed_normalized_gap": 0.05339590832591057,
+ "last_committed_score_gap": 8.552646590942459e-09,
+ "last_dwell_count": 54,
+ "last_raw_cutoff_score": 1.601741956847036e-07,
+ "last_raw_mask_overlap": 54,
+ "last_raw_normalized_gap": 0.05339590832591057,
+ "last_raw_score_gap": 8.552646590942459e-09,
+ "last_token_count": 1,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08122210949659348,
+ "observability_min": 6.564563648225885e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "619739a1ec00c775621d149a429ff7c781f917ceed44f0087971515e72986f01",
+ "raw_normalized_churn": 0.01364522417153996,
+ "raw_xor_churn_total": 56,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "committed_mask_sha256": "36b63dda0d3849c7b24a259e6d7d254aef438279d7252d62410cb1395a028dde",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": false,
+ "current_selected_count": 45,
+ "dwell_total": 1705,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 3.2478619687026367e-06,
+ "last_committed_mask_overlap": 45,
+ "last_committed_normalized_gap": 0.7008113861083984,
+ "last_committed_score_gap": 2.276138729939703e-06,
+ "last_dwell_count": 45,
+ "last_raw_cutoff_score": 3.2478619687026367e-06,
+ "last_raw_mask_overlap": 45,
+ "last_raw_normalized_gap": 0.7008113861083984,
+ "last_raw_score_gap": 2.276138729939703e-06,
+ "last_token_count": 1,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08697356283664703,
+ "observability_min": 5.758539955991182e-08,
+ "observability_trace": 0.9999999403953552,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "36b63dda0d3849c7b24a259e6d7d254aef438279d7252d62410cb1395a028dde",
+ "raw_normalized_churn": 0.0029239766081871343,
+ "raw_xor_churn_total": 10,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 7,
+ "committed_mask_sha256": "aaca6323ce62af2c72f74d22c57cd5a4700ba18e01312cce2a5ba9d8e025bd6c",
+ "committed_normalized_churn": 0.00682261208576998,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": false,
+ "current_selected_count": 27,
+ "dwell_total": 1019,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 1.1829020877485164e-05,
+ "last_committed_mask_overlap": 27,
+ "last_committed_normalized_gap": 0.7755933403968811,
+ "last_committed_score_gap": 9.174509614240378e-06,
+ "last_dwell_count": 27,
+ "last_raw_cutoff_score": 1.1829020877485164e-05,
+ "last_raw_mask_overlap": 27,
+ "last_raw_normalized_gap": 0.7755933403968811,
+ "last_raw_score_gap": 9.174509614240378e-06,
+ "last_token_count": 1,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08059482276439667,
+ "observability_min": 1.9990001476344332e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "aaca6323ce62af2c72f74d22c57cd5a4700ba18e01312cce2a5ba9d8e025bd6c",
+ "raw_normalized_churn": 0.00682261208576998,
+ "raw_xor_churn_total": 14,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "f7fefad7c64a40cfa83768d277b4aee083fab1e6b19155cc5a9ca8e763a2037b",
+ "committed_normalized_churn": 0.0037593984962406013,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 265,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 0.00017625071632210165,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.9073684811592102,
+ "last_committed_score_gap": 0.00015992434055078775,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 0.00017625071632210165,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.9073684811592102,
+ "last_raw_score_gap": 0.00015992434055078775,
+ "last_token_count": 1,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.07912930846214294,
+ "observability_min": 9.344193330207418e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "f7fefad7c64a40cfa83768d277b4aee083fab1e6b19155cc5a9ca8e763a2037b",
+ "raw_normalized_churn": 0.0037593984962406013,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 4,
+ "committed_mask_sha256": "80266e8a7d52a1790cf178e09a40f1813d0d3facd8eeadb08250e2042e649a22",
+ "committed_normalized_churn": 0.011695906432748537,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": false,
+ "current_selected_count": 9,
+ "dwell_total": 338,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.227324461680837e-05,
+ "last_committed_mask_overlap": 9,
+ "last_committed_normalized_gap": 0.5677257180213928,
+ "last_committed_score_gap": 2.399960794718936e-05,
+ "last_dwell_count": 9,
+ "last_raw_cutoff_score": 4.227324461680837e-05,
+ "last_raw_mask_overlap": 9,
+ "last_raw_normalized_gap": 0.5677257180213928,
+ "last_raw_score_gap": 2.399960794718936e-05,
+ "last_token_count": 1,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.08514811098575592,
+ "observability_min": 1.1766224616849286e-07,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "80266e8a7d52a1790cf178e09a40f1813d0d3facd8eeadb08250e2042e649a22",
+ "raw_normalized_churn": 0.011695906432748537,
+ "raw_xor_churn_total": 8,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "committed_mask_sha256": "fa181db8e06570134716ba3f7c59416c277c02e0f52cc5ebf11e36a5bd63c0d3",
+ "committed_normalized_churn": 0.0037593984962406013,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": false,
+ "current_selected_count": 7,
+ "dwell_total": 265,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.1820076148724183e-05,
+ "last_committed_mask_overlap": 7,
+ "last_committed_normalized_gap": 0.7875859141349792,
+ "last_committed_score_gap": 3.2936903153313324e-05,
+ "last_dwell_count": 7,
+ "last_raw_cutoff_score": 4.1820076148724183e-05,
+ "last_raw_mask_overlap": 7,
+ "last_raw_normalized_gap": 0.7875859141349792,
+ "last_raw_score_gap": 3.2936903153313324e-05,
+ "last_token_count": 1,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.0873594805598259,
+ "observability_min": 5.977687322911152e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "fa181db8e06570134716ba3f7c59416c277c02e0f52cc5ebf11e36a5bd63c0d3",
+ "raw_normalized_churn": 0.0037593984962406013,
+ "raw_xor_churn_total": 2,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "committed_mask_sha256": "c147932e3e636816bff5be811ec14ac4bb716868a049db8bf0b0fdd7696514a5",
+ "committed_normalized_churn": 0.0028708133971291866,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": false,
+ "current_selected_count": 55,
+ "dwell_total": 2084,
+ "l2norm_eps": 1e-06,
+ "last_admission_count": 0,
+ "last_committed_cutoff_score": 4.44076567873708e-06,
+ "last_committed_mask_overlap": 55,
+ "last_committed_normalized_gap": 0.47586899995803833,
+ "last_committed_score_gap": 2.113222763000522e-06,
+ "last_dwell_count": 55,
+ "last_raw_cutoff_score": 4.44076567873708e-06,
+ "last_raw_mask_overlap": 55,
+ "last_raw_normalized_gap": 0.47586899995803833,
+ "last_raw_score_gap": 2.113222763000522e-06,
+ "last_token_count": 1,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observability_diagonal_bytes": 8192,
+ "observability_dtype": "torch.float32",
+ "observability_max": 0.09505678713321686,
+ "observability_min": 3.786190916343912e-08,
+ "observability_trace": 1.0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "c147932e3e636816bff5be811ec14ac4bb716868a049db8bf0b0fdd7696514a5",
+ "raw_normalized_churn": 0.0028708133971291866,
+ "raw_xor_churn_total": 12,
+ "selection_method": "causal_observability_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 704
+ }
+ ],
+ "query_ema32_confirm2_mse_target_fisher_quota": [
+ {
+ "layers": [
+ {
+ "admissions_total": 50,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2bb8e8a75f056af7496a4beb1519acee91b1cd06cb38e508ec27aeacbf28461c",
+ "committed_normalized_churn": 0.0037064492216456633,
+ "committed_xor_churn_total": 100,
+ "confirmation_two": true,
+ "current_mask_sha256": "2bb8e8a75f056af7496a4beb1519acee91b1cd06cb38e508ec27aeacbf28461c",
+ "current_selected_count": 355,
+ "dwell_total": 13440,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0984385340483414e-09,
+ "last_committed_normalized_gap": -0.9988289475440979,
+ "last_committed_score_gap": -1.7898581745612319e-06,
+ "last_cutoff_score_margin": 8.869918133314059e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 352,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7265472607164156e-08,
+ "last_raw_normalized_gap": 0.05137373507022858,
+ "last_raw_score_gap": 8.869918133314059e-10,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "34142680787076ce7c3b5c55624f239d1950e4ad95ab938dcd6e8f7e63a9103a",
+ "raw_normalized_churn": 0.026167531504818382,
+ "raw_xor_churn_total": 706,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 256,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "79380509f9b241d09b50dbc5849f79568fb864b6f37e07786bd538940e7bba87",
+ "committed_normalized_churn": 0.01772853185595568,
+ "committed_xor_churn_total": 512,
+ "confirmation_two": true,
+ "current_mask_sha256": "79380509f9b241d09b50dbc5849f79568fb864b6f37e07786bd538940e7bba87",
+ "current_selected_count": 380,
+ "dwell_total": 14184,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.660273724057859e-10,
+ "last_committed_normalized_gap": -0.9968042969703674,
+ "last_committed_score_gap": -5.178818085482817e-08,
+ "last_cutoff_score_margin": 3.3185676429070554e-12,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 375,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5977090761509771e-09,
+ "last_raw_normalized_gap": 0.002077078679576516,
+ "last_raw_score_gap": 3.3185676429070554e-12,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "63356af2ce2fe36f3e8394ccbc0e24de441a7c5d1c5b8f2d21dea2e865a00ba9",
+ "raw_normalized_churn": 0.11447368421052631,
+ "raw_xor_churn_total": 3306,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 101,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0d970febeb18988e9174ad18c77e038b4c9a1169508fe5dad8a7d916a5160d06",
+ "committed_normalized_churn": 0.009880649579338681,
+ "committed_xor_churn_total": 202,
+ "confirmation_two": true,
+ "current_mask_sha256": "0d970febeb18988e9174ad18c77e038b4c9a1169508fe5dad8a7d916a5160d06",
+ "current_selected_count": 269,
+ "dwell_total": 10121,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.772470445033264e-10,
+ "last_committed_normalized_gap": -0.991985023021698,
+ "last_committed_score_gap": -9.619728302823205e-08,
+ "last_cutoff_score_margin": 3.2086511225770664e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 269,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.677736751394605e-09,
+ "last_raw_normalized_gap": 0.036975666880607605,
+ "last_raw_score_gap": 3.2086511225770664e-10,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "72ccccd9454beb29b643753d6089e2856313b05228e462c66dfa2986e515244d",
+ "raw_normalized_churn": 0.06808843670514576,
+ "raw_xor_churn_total": 1392,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "06f104af162e1ebd345abeadd7968da1125d919fecc0279d5747bee742cce1f2",
+ "committed_normalized_churn": 0.0011761246692149367,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "06f104af162e1ebd345abeadd7968da1125d919fecc0279d5747bee742cce1f2",
+ "current_selected_count": 179,
+ "dwell_total": 6794,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.933304787371526e-07,
+ "last_committed_normalized_gap": -0.8674444556236267,
+ "last_committed_score_gap": -1.2651559018195258e-06,
+ "last_cutoff_score_margin": 6.61222401276973e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.594527188648499e-07,
+ "last_raw_normalized_gap": 0.2548527419567108,
+ "last_raw_score_gap": 6.61222401276973e-08,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "95620f3dc7d781cca36ad528fc636f6fe9cb3b1ea20d594653b25a11d44f09cc",
+ "raw_normalized_churn": 0.016612760952660982,
+ "raw_xor_churn_total": 226,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "81d08d49c6d9191283c944f544ac619ccd5ee04d1a4bb3df46e3e2454f3525e0",
+ "committed_normalized_churn": 0.0015647226173541964,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "81d08d49c6d9191283c944f544ac619ccd5ee04d1a4bb3df46e3e2454f3525e0",
+ "current_selected_count": 185,
+ "dwell_total": 7019,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.441182272467813e-08,
+ "last_committed_normalized_gap": -0.7474905252456665,
+ "last_committed_score_gap": -1.0186752774643537e-07,
+ "last_cutoff_score_margin": 1.293787121880996e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.950459408017196e-08,
+ "last_raw_normalized_gap": 0.18614411354064941,
+ "last_raw_score_gap": 1.293787121880996e-08,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "641b6513cc05769aed663ca474a2efba79e1b55f8b22443f54c2944fb5b2c997",
+ "raw_normalized_churn": 0.011522048364153627,
+ "raw_xor_churn_total": 162,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 52,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "adfb738021b1e6b17955076110a382977253d472be86efd0787b9623898a984f",
+ "committed_normalized_churn": 0.013032581453634085,
+ "committed_xor_churn_total": 104,
+ "confirmation_two": true,
+ "current_mask_sha256": "adfb738021b1e6b17955076110a382977253d472be86efd0787b9623898a984f",
+ "current_selected_count": 105,
+ "dwell_total": 3938,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.654245320371956e-09,
+ "last_committed_normalized_gap": -0.8907546997070312,
+ "last_committed_score_gap": -7.056425488372042e-08,
+ "last_cutoff_score_margin": 1.1220322448934894e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.748783778372399e-08,
+ "last_raw_normalized_gap": 0.04081922397017479,
+ "last_raw_score_gap": 1.1220322448934894e-09,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "c431cfc60c045a6a13f149112e1b24d2e724a165f19bb557fadcc66f6718fa5e",
+ "raw_normalized_churn": 0.08170426065162907,
+ "raw_xor_churn_total": 652,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "30cacf7b6a82f1210e1a065da9946300a2c2c8494df98b7d6bd4639577d732e4",
+ "committed_normalized_churn": 0.000986842105263158,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "30cacf7b6a82f1210e1a065da9946300a2c2c8494df98b7d6bd4639577d732e4",
+ "current_selected_count": 80,
+ "dwell_total": 3037,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.02229022206302e-08,
+ "last_committed_normalized_gap": 0.011300353333353996,
+ "last_committed_score_gap": 6.8054006874263e-10,
+ "last_cutoff_score_margin": 6.8054006874263e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.02229022206302e-08,
+ "last_raw_normalized_gap": 0.011300353333353996,
+ "last_raw_score_gap": 6.8054006874263e-10,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "30cacf7b6a82f1210e1a065da9946300a2c2c8494df98b7d6bd4639577d732e4",
+ "raw_normalized_churn": 0.010197368421052632,
+ "raw_xor_churn_total": 62,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8bbf53aea28b45141c5cfddc29c268bb4c777d107d822e0509e7eadfe2c5c081",
+ "committed_normalized_churn": 0.0036719706242350062,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "8bbf53aea28b45141c5cfddc29c268bb4c777d107d822e0509e7eadfe2c5c081",
+ "current_selected_count": 43,
+ "dwell_total": 1628,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.033644008747615e-08,
+ "last_committed_normalized_gap": -0.8063325881958008,
+ "last_committed_score_gap": -8.467058876249212e-08,
+ "last_cutoff_score_margin": 4.114895091333892e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.814551684579783e-08,
+ "last_raw_normalized_gap": 0.007076891604810953,
+ "last_raw_score_gap": 4.114895091333892e-10,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "eb5d3c04c6554e6e574ce5ba9e557820ce8ae28c2b0e76af1a7e18849cb2909d",
+ "raw_normalized_churn": 0.027539779681762546,
+ "raw_xor_churn_total": 90,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 39,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8bcb0784a59252d04525c1255d3763560a1c0405121a0cda161f32ef5003582a",
+ "committed_normalized_churn": 0.012218045112781954,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": true,
+ "current_mask_sha256": "8bcb0784a59252d04525c1255d3763560a1c0405121a0cda161f32ef5003582a",
+ "current_selected_count": 84,
+ "dwell_total": 3153,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1954354839360803e-08,
+ "last_committed_normalized_gap": -0.5982975959777832,
+ "last_committed_score_gap": -1.7804875795945918e-08,
+ "last_cutoff_score_margin": 3.7072034331231407e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7120436623940805e-08,
+ "last_raw_normalized_gap": 0.02165367268025875,
+ "last_raw_score_gap": 3.7072034331231407e-10,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "9b41204c06554159d2d062c2fe5f58dc638acf587a2c396a9359b5ad732fed6d",
+ "raw_normalized_churn": 0.06547619047619048,
+ "raw_xor_churn_total": 418,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2917e5bc555e2cb0bad06eb020967794c4ca85f51d5ee757d3251597731bc251",
+ "committed_normalized_churn": 0.0017543859649122807,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "2917e5bc555e2cb0bad06eb020967794c4ca85f51d5ee757d3251597731bc251",
+ "current_selected_count": 30,
+ "dwell_total": 1138,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.086895384920354e-07,
+ "last_committed_normalized_gap": -0.53944331407547,
+ "last_committed_score_gap": -5.958206088507723e-07,
+ "last_cutoff_score_margin": 8.342715318576666e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.92116691677802e-07,
+ "last_raw_normalized_gap": 0.14089646935462952,
+ "last_raw_score_gap": 8.342715318576666e-08,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "52a808ff7385e0044158c594a41228eff02be7d6c7d2badc9c3773b8fdd0dabe",
+ "raw_normalized_churn": 0.03070175438596491,
+ "raw_xor_churn_total": 70,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 34,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "72057202e02bf5295294efb24a44ba98899d6c1b87410ed58e19fc8b1b4d71c9",
+ "committed_normalized_churn": 0.014431239388794566,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_mask_sha256": "72057202e02bf5295294efb24a44ba98899d6c1b87410ed58e19fc8b1b4d71c9",
+ "current_selected_count": 62,
+ "dwell_total": 2322,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.584466388266264e-10,
+ "last_committed_normalized_gap": -0.9866904616355896,
+ "last_committed_score_gap": -5.6226909350698406e-08,
+ "last_cutoff_score_margin": 2.916245023243391e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.733888055355237e-08,
+ "last_raw_normalized_gap": 0.01681910827755928,
+ "last_raw_score_gap": 2.916245023243391e-10,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "07b1c93934264f1a6e9775f05e5ebe0c84176fbf4ea70773e470ceed3e23aa8b",
+ "raw_normalized_churn": 0.11290322580645161,
+ "raw_xor_churn_total": 532,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "298e2d48311229dd69d05efde9df52d7b509f95afb7f9abce0ece7c354b9f4dd",
+ "committed_normalized_churn": 0.004873294346978557,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "298e2d48311229dd69d05efde9df52d7b509f95afb7f9abce0ece7c354b9f4dd",
+ "current_selected_count": 54,
+ "dwell_total": 2042,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.951263494172963e-08,
+ "last_committed_normalized_gap": -0.6433628797531128,
+ "last_committed_score_gap": -7.127963641551105e-08,
+ "last_cutoff_score_margin": 1.831338636293367e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.493754511893712e-08,
+ "last_raw_normalized_gap": 0.02820153720676899,
+ "last_raw_score_gap": 1.831338636293367e-09,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "ba7392a1ebfdd8cae3fe0602e14185e828e5910e302f1bfbce0f1bbe199d4ecd",
+ "raw_normalized_churn": 0.047270955165692005,
+ "raw_xor_churn_total": 194,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5f2cadc9793108d8a1d28cda67b310f99f8c3ac9cc3871d47065160a6342cb51",
+ "committed_normalized_churn": 0.0017543859649122807,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "5f2cadc9793108d8a1d28cda67b310f99f8c3ac9cc3871d47065160a6342cb51",
+ "current_selected_count": 45,
+ "dwell_total": 1707,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2067615671185195e-06,
+ "last_committed_normalized_gap": -0.1262798309326172,
+ "last_committed_score_gap": -1.7441470845369622e-07,
+ "last_cutoff_score_margin": 1.0955045581795275e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3163120229364722e-06,
+ "last_raw_normalized_gap": 0.0832252949476242,
+ "last_raw_score_gap": 1.0955045581795275e-07,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "9f03cda0ba028f4d7fb5c321047bb78c5dc47a33eb720f5dbe56282359fa4480",
+ "raw_normalized_churn": 0.02046783625730994,
+ "raw_xor_churn_total": 70,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c3288645627c8fc9c0285ca4edf142ea8614c7eb8d524028b635f3e8ca6862e2",
+ "committed_normalized_churn": 0.001949317738791423,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "c3288645627c8fc9c0285ca4edf142ea8614c7eb8d524028b635f3e8ca6862e2",
+ "current_selected_count": 27,
+ "dwell_total": 1024,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.577883257501526e-07,
+ "last_committed_normalized_gap": -0.6373227834701538,
+ "last_committed_score_gap": -9.801863143366063e-07,
+ "last_cutoff_score_margin": 8.14814029581612e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.990710398393276e-07,
+ "last_raw_normalized_gap": 0.09062843769788742,
+ "last_raw_score_gap": 8.14814029581612e-08,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "e063a9d257ae9aee7f5fa18ca46877e66cfd54cbb26696ce2dde417d9f9327ab",
+ "raw_normalized_churn": 0.03216374269005848,
+ "raw_xor_churn_total": 66,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.782953692483716e-05,
+ "last_committed_normalized_gap": 0.7200399041175842,
+ "last_committed_score_gap": 3.443917375989258e-05,
+ "last_cutoff_score_margin": 3.443917375989258e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.782953692483716e-05,
+ "last_raw_normalized_gap": 0.7200399041175842,
+ "last_raw_score_gap": 3.443917375989258e-05,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ee53178b08ca5dc2b9be1ce7d24a9d9f66eabd361a980adddd7931d54d976e5a",
+ "committed_normalized_churn": 0.0029239766081871343,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "ee53178b08ca5dc2b9be1ce7d24a9d9f66eabd361a980adddd7931d54d976e5a",
+ "current_selected_count": 9,
+ "dwell_total": 341,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.1762872317340225e-06,
+ "last_committed_normalized_gap": 0.22554375231266022,
+ "last_committed_score_gap": 1.1674792403937317e-06,
+ "last_cutoff_score_margin": 1.1674792403937317e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.1762872317340225e-06,
+ "last_raw_normalized_gap": 0.22554375231266022,
+ "last_raw_score_gap": 1.1674792403937317e-06,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "ee53178b08ca5dc2b9be1ce7d24a9d9f66eabd361a980adddd7931d54d976e5a",
+ "raw_normalized_churn": 0.038011695906432746,
+ "raw_xor_churn_total": 26,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2368783245619852e-05,
+ "last_committed_normalized_gap": 0.9048261046409607,
+ "last_committed_score_gap": 1.11915978777688e-05,
+ "last_cutoff_score_margin": 1.11915978777688e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2368783245619852e-05,
+ "last_raw_normalized_gap": 0.9048261046409607,
+ "last_raw_score_gap": 1.11915978777688e-05,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b6c0c0a6c87a10b03ba804699baa375ca76ca6399d5169f99c81f872c96feab6",
+ "committed_normalized_churn": 0.004784688995215311,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "b6c0c0a6c87a10b03ba804699baa375ca76ca6399d5169f99c81f872c96feab6",
+ "current_selected_count": 55,
+ "dwell_total": 2080,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5223645277728792e-07,
+ "last_committed_normalized_gap": -0.34188613295555115,
+ "last_committed_score_gap": -7.908590760052903e-08,
+ "last_cutoff_score_margin": 3.103735934928409e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.83273812126572e-07,
+ "last_raw_normalized_gap": 0.16934967041015625,
+ "last_raw_score_gap": 3.103735934928409e-08,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "357c748298422829d4ae347b361640bfa338a0c8cb3270e48c837587a20c29ef",
+ "raw_normalized_churn": 0.021052631578947368,
+ "raw_xor_churn_total": 88,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ],
+ "task_id": 666
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3b78641e2b25445fbb8c20d4d447b58d5d204c3d9f955d1a57825352c3cbf32f",
+ "committed_normalized_churn": 0.002568351284175642,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "3b78641e2b25445fbb8c20d4d447b58d5d204c3d9f955d1a57825352c3cbf32f",
+ "current_selected_count": 355,
+ "dwell_total": 12039,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.5722396152237934e-09,
+ "last_committed_normalized_gap": -0.9641019105911255,
+ "last_committed_score_gap": -9.59382546739107e-08,
+ "last_cutoff_score_margin": 2.8023503517715653e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 353,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9416262375671067e-08,
+ "last_raw_normalized_gap": 0.14433005452156067,
+ "last_raw_score_gap": 2.8023503517715653e-09,
+ "layer_index": 0,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "c49c7ac2dd0390655ecb7cbe4f27a4b24943526c7ca75b9d5bf94825fe895e21",
+ "raw_normalized_churn": 0.01946975973487987,
+ "raw_xor_churn_total": 470,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 174,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ed114a98d04049c52107f2f799644d4a366da5a3c0a4428517023a4b528f166b",
+ "committed_normalized_churn": 0.01346749226006192,
+ "committed_xor_churn_total": 348,
+ "confirmation_two": true,
+ "current_mask_sha256": "ed114a98d04049c52107f2f799644d4a366da5a3c0a4428517023a4b528f166b",
+ "current_selected_count": 380,
+ "dwell_total": 12746,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.335492389760052e-11,
+ "last_committed_normalized_gap": -0.9977933764457703,
+ "last_committed_score_gap": -1.056052845171962e-08,
+ "last_cutoff_score_margin": 1.5920154083914895e-11,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 379,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7905233679348385e-09,
+ "last_raw_normalized_gap": 0.005705078132450581,
+ "last_raw_score_gap": 1.5920154083914895e-11,
+ "layer_index": 1,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "d2a536afcd6937bbc0d0b41d6be1c4e208373be7cb7ab453ac45db5ba088f2ad",
+ "raw_normalized_churn": 0.10270897832817337,
+ "raw_xor_churn_total": 2654,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 39,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "86e96d2a22e220b12d07ed3d790aa1138536df05f0ae9822379c8f01cb1563a2",
+ "committed_normalized_churn": 0.004264159195276624,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": true,
+ "current_mask_sha256": "86e96d2a22e220b12d07ed3d790aa1138536df05f0ae9822379c8f01cb1563a2",
+ "current_selected_count": 269,
+ "dwell_total": 9107,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3153902411744411e-09,
+ "last_committed_normalized_gap": -0.9285539984703064,
+ "last_committed_score_gap": -1.7095580062687077e-08,
+ "last_cutoff_score_margin": 5.405187408769052e-11,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 268,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.558539654757169e-09,
+ "last_raw_normalized_gap": 0.006315548904240131,
+ "last_raw_score_gap": 5.405187408769052e-11,
+ "layer_index": 2,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "07250f49009c5b9272f549dca13dde7e69b14334a8ef28ce77179ffbc42875f5",
+ "raw_normalized_churn": 0.035643997375902035,
+ "raw_xor_churn_total": 652,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "99781e795d07ac0d47cd643d33e7e2339e008ee2040f4a1f61a187f296946824",
+ "committed_normalized_churn": 0.000821557673348669,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "99781e795d07ac0d47cd643d33e7e2339e008ee2040f4a1f61a187f296946824",
+ "current_selected_count": 179,
+ "dwell_total": 6081,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5283842458302388e-07,
+ "last_committed_normalized_gap": -0.14898066222667694,
+ "last_committed_score_gap": -2.675611199265404e-08,
+ "last_cutoff_score_margin": 2.675611199265404e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7959453657567792e-07,
+ "last_raw_normalized_gap": 0.14898066222667694,
+ "last_raw_score_gap": 2.675611199265404e-08,
+ "layer_index": 4,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "bbaf44fead5a59f555b7ec7098c8872f9b45c5a9fa38b2ddd1dd9a9278a7cb18",
+ "raw_normalized_churn": 0.010680249753532697,
+ "raw_xor_churn_total": 130,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 15,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "62707d78e4fbaef211036fd0dead549f9daf8f9b515ccc7ed662995a3c33d0be",
+ "committed_normalized_churn": 0.0023847376788553257,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_mask_sha256": "62707d78e4fbaef211036fd0dead549f9daf8f9b515ccc7ed662995a3c33d0be",
+ "current_selected_count": 185,
+ "dwell_total": 6275,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.322663009290409e-08,
+ "last_committed_normalized_gap": -0.09944576025009155,
+ "last_committed_score_gap": -8.086217917480099e-09,
+ "last_cutoff_score_margin": 6.320533429970965e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 183,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.131284801038419e-08,
+ "last_raw_normalized_gap": 0.07773105800151825,
+ "last_raw_score_gap": 6.320533429970965e-09,
+ "layer_index": 5,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "79880654e064c3719016115709afb8dc69d80e3fd5065a119917b51a35189a41",
+ "raw_normalized_churn": 0.009538950715421303,
+ "raw_xor_churn_total": 120,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 35,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8160379f4ab3605f67b97fdfc0167cde51f66effc0ca00065dcaf3348c28613e",
+ "committed_normalized_churn": 0.00980392156862745,
+ "committed_xor_churn_total": 70,
+ "confirmation_two": true,
+ "current_mask_sha256": "8160379f4ab3605f67b97fdfc0167cde51f66effc0ca00065dcaf3348c28613e",
+ "current_selected_count": 105,
+ "dwell_total": 3535,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.670742560439976e-08,
+ "last_committed_normalized_gap": -0.741285502910614,
+ "last_committed_score_gap": -7.652384681477997e-08,
+ "last_cutoff_score_margin": 8.081073588073195e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.28532223647926e-08,
+ "last_raw_normalized_gap": 0.02459750697016716,
+ "last_raw_score_gap": 8.081073588073195e-10,
+ "layer_index": 6,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "d3647fd0fe885530261f8fd1359f4aa43ca54b9b4a1905912065e7df18317b4e",
+ "raw_normalized_churn": 0.04733893557422969,
+ "raw_xor_churn_total": 338,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "631859f6574036658169af942a69c0b8378476e12ecdc8fd9a422df5fcb40a2b",
+ "committed_normalized_churn": 0.0011029411764705882,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "631859f6574036658169af942a69c0b8378476e12ecdc8fd9a422df5fcb40a2b",
+ "current_selected_count": 80,
+ "dwell_total": 2717,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8863648421074686e-08,
+ "last_committed_normalized_gap": -0.9048296213150024,
+ "last_committed_score_gap": -1.79345590822777e-07,
+ "last_cutoff_score_margin": 7.680780811369914e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2324535703100992e-07,
+ "last_raw_normalized_gap": 0.6232105493545532,
+ "last_raw_score_gap": 7.680780811369914e-08,
+ "layer_index": 8,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "6e76e4e2ab0369949d5581c26bb4cc3e072887cb7f3628e4b4ba04f8a84d5fc4",
+ "raw_normalized_churn": 0.01213235294117647,
+ "raw_xor_churn_total": 66,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "526581881c652648720352e70a8cf23b40994fdab78b8543ae60fc1b9db6ac79",
+ "committed_normalized_churn": 0.005471956224350205,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "526581881c652648720352e70a8cf23b40994fdab78b8543ae60fc1b9db6ac79",
+ "current_selected_count": 43,
+ "dwell_total": 1454,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.524556704969655e-08,
+ "last_committed_normalized_gap": -0.6446191668510437,
+ "last_committed_score_gap": -1.546254964068794e-07,
+ "last_cutoff_score_margin": 3.888331434609427e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.550766577604008e-08,
+ "last_raw_normalized_gap": 0.04071224480867386,
+ "last_raw_score_gap": 3.888331434609427e-09,
+ "layer_index": 9,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "12318d58ab0bc61a5cf9b587a4c5bed92163a8e0b7d1a118113f7b64a2b6747a",
+ "raw_normalized_churn": 0.029411764705882353,
+ "raw_xor_churn_total": 86,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 24,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7273f43106ed831fd5039d29a4c8aefe66e709a65211871614c8db43447dabeb",
+ "committed_normalized_churn": 0.008403361344537815,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_mask_sha256": "7273f43106ed831fd5039d29a4c8aefe66e709a65211871614c8db43447dabeb",
+ "current_selected_count": 84,
+ "dwell_total": 2832,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.669033769668431e-09,
+ "last_committed_normalized_gap": -0.8454755544662476,
+ "last_committed_score_gap": -3.648939639333548e-08,
+ "last_cutoff_score_margin": 1.0266569816508309e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2621659273293062e-08,
+ "last_raw_normalized_gap": 0.08134088665246964,
+ "last_raw_score_gap": 1.0266569816508309e-09,
+ "layer_index": 10,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "1fd8b7e6fdb5304d69df5316bc0b181c3ca6153ea893ca718872fd06872988f0",
+ "raw_normalized_churn": 0.07247899159663866,
+ "raw_xor_churn_total": 414,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a204eaf2388aa73ffeed8c863ca0fba138c40cfd84895985b598b933c08f4b7e",
+ "committed_normalized_churn": 0.00980392156862745,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "a204eaf2388aa73ffeed8c863ca0fba138c40cfd84895985b598b933c08f4b7e",
+ "current_selected_count": 30,
+ "dwell_total": 1010,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0160102874579025e-06,
+ "last_committed_normalized_gap": -0.2918199896812439,
+ "last_committed_score_gap": -4.1866769606713206e-07,
+ "last_cutoff_score_margin": 1.460675775888376e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2914122180518461e-06,
+ "last_raw_normalized_gap": 0.1131068542599678,
+ "last_raw_score_gap": 1.460675775888376e-07,
+ "layer_index": 12,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "36ba7093322463941d5994c1b91578b92128372aaeec450d8427ad8b4c553af8",
+ "raw_normalized_churn": 0.05196078431372549,
+ "raw_xor_churn_total": 106,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 25,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "733ad31412b92e37617f4a2262280dd18cde4e84c3d251e0a7073a444c9d54f0",
+ "committed_normalized_churn": 0.011859582542694497,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_mask_sha256": "733ad31412b92e37617f4a2262280dd18cde4e84c3d251e0a7073a444c9d54f0",
+ "current_selected_count": 62,
+ "dwell_total": 2083,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.65309241850764e-08,
+ "last_committed_normalized_gap": -0.8944956064224243,
+ "last_committed_score_gap": -1.4015377303167043e-07,
+ "last_cutoff_score_margin": 9.389502508838632e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9669662282572062e-08,
+ "last_raw_normalized_gap": 0.031646814197301865,
+ "last_raw_score_gap": 9.389502508838632e-10,
+ "layer_index": 13,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "bdcd5471d4f4be6fa9fcbf21831484a1c5a8aec24154ebece279d492562ef31e",
+ "raw_normalized_churn": 0.075426944971537,
+ "raw_xor_churn_total": 318,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 17,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8af18677c1851b75d0b9cef5b22a58c2ea3efed09961404e9e3a92c9f02bd378",
+ "committed_normalized_churn": 0.009259259259259259,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_mask_sha256": "8af18677c1851b75d0b9cef5b22a58c2ea3efed09961404e9e3a92c9f02bd378",
+ "current_selected_count": 54,
+ "dwell_total": 1819,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.305010095772559e-09,
+ "last_committed_normalized_gap": -0.8600849509239197,
+ "last_committed_score_gap": -5.7199699199372844e-08,
+ "last_cutoff_score_margin": 6.7998264796642616e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2454366305501026e-08,
+ "last_raw_normalized_gap": 0.209519624710083,
+ "last_raw_score_gap": 6.7998264796642616e-09,
+ "layer_index": 14,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "8d9db4bf8f2e1e560fce9282f080a9e0050fbf45678fdf15756e4b7cadf80084",
+ "raw_normalized_churn": 0.08115468409586056,
+ "raw_xor_churn_total": 298,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ef2b903ca2ccfd6cb88124e551a92f0cca5ee9054ae6b3ae2c6c00e774d189c2",
+ "committed_normalized_churn": 0.00065359477124183,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "ef2b903ca2ccfd6cb88124e551a92f0cca5ee9054ae6b3ae2c6c00e774d189c2",
+ "current_selected_count": 45,
+ "dwell_total": 1529,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5225019751596847e-06,
+ "last_committed_normalized_gap": 0.8047659397125244,
+ "last_committed_score_gap": 1.2252577334948e-06,
+ "last_cutoff_score_margin": 1.2252577334948e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5225019751596847e-06,
+ "last_raw_normalized_gap": 0.8047659397125244,
+ "last_raw_score_gap": 1.2252577334948e-06,
+ "layer_index": 16,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "ef2b903ca2ccfd6cb88124e551a92f0cca5ee9054ae6b3ae2c6c00e774d189c2",
+ "raw_normalized_churn": 0.00065359477124183,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "committed_normalized_churn": 0.0032679738562091504,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "current_selected_count": 27,
+ "dwell_total": 915,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3847085256202263e-06,
+ "last_committed_normalized_gap": 0.6247804760932922,
+ "last_committed_score_gap": 8.65138872541138e-07,
+ "last_cutoff_score_margin": 8.65138872541138e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3847085256202263e-06,
+ "last_raw_normalized_gap": 0.6247804760932922,
+ "last_raw_score_gap": 8.65138872541138e-07,
+ "layer_index": 17,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "raw_normalized_churn": 0.00980392156862745,
+ "raw_xor_churn_total": 18,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "current_selected_count": 7,
+ "dwell_total": 238,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.856310235685669e-05,
+ "last_committed_normalized_gap": 0.9568685293197632,
+ "last_committed_score_gap": 5.6037188187474385e-05,
+ "last_cutoff_score_margin": 5.6037188187474385e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.856310235685669e-05,
+ "last_raw_normalized_gap": 0.9568685293197632,
+ "last_raw_score_gap": 5.6037188187474385e-05,
+ "layer_index": 18,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "committed_normalized_churn": 0.00980392156862745,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "current_selected_count": 9,
+ "dwell_total": 303,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3414328350336291e-05,
+ "last_committed_normalized_gap": 0.8465943336486816,
+ "last_committed_score_gap": 1.1356494724168442e-05,
+ "last_cutoff_score_margin": 1.1356494724168442e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3414328350336291e-05,
+ "last_raw_normalized_gap": 0.8465943336486816,
+ "last_raw_score_gap": 1.1356494724168442e-05,
+ "layer_index": 20,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "raw_normalized_churn": 0.05228758169934641,
+ "raw_xor_churn_total": 32,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "committed_normalized_churn": 0.004201680672268907,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "current_selected_count": 7,
+ "dwell_total": 237,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7151054635178298e-05,
+ "last_committed_normalized_gap": 0.9146240949630737,
+ "last_committed_score_gap": 1.5686768165323883e-05,
+ "last_cutoff_score_margin": 1.5686768165323883e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7151054635178298e-05,
+ "last_raw_normalized_gap": 0.9146240949630737,
+ "last_raw_score_gap": 1.5686768165323883e-05,
+ "layer_index": 21,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "raw_normalized_churn": 0.02100840336134454,
+ "raw_xor_churn_total": 10,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8d56de233c714081094dcaca0be5695523209ef94d7703deec4d03ce33f0d087",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "8d56de233c714081094dcaca0be5695523209ef94d7703deec4d03ce33f0d087",
+ "current_selected_count": 55,
+ "dwell_total": 1870,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.241842018222087e-07,
+ "last_committed_normalized_gap": 0.555128812789917,
+ "last_committed_score_gap": 2.909897602876299e-07,
+ "last_cutoff_score_margin": 2.909897602876299e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.241842018222087e-07,
+ "last_raw_normalized_gap": 0.555128812789917,
+ "last_raw_score_gap": 2.909897602876299e-07,
+ "layer_index": 22,
+ "mask_transition_count": 34,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "8d56de233c714081094dcaca0be5695523209ef94d7703deec4d03ce33f0d087",
+ "raw_normalized_churn": 0.0042780748663101605,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 35,
+ "tokens_observed": 324
+ }
+ ],
+ "task_id": 795
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 19,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5808a8fbbc773245055d608e54fa6c5f9314aa58b2cc6751d5f8de018b698844",
+ "committed_normalized_churn": 0.002140845070422535,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_mask_sha256": "5808a8fbbc773245055d608e54fa6c5f9314aa58b2cc6751d5f8de018b698844",
+ "current_selected_count": 355,
+ "dwell_total": 8856,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.567845764327558e-08,
+ "last_committed_normalized_gap": -0.9921254515647888,
+ "last_committed_score_gap": -1.9753667857003165e-06,
+ "last_cutoff_score_margin": 1.7640999772083887e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 353,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.776651169573597e-08,
+ "last_raw_normalized_gap": 0.004671069327741861,
+ "last_raw_score_gap": 1.7640999772083887e-10,
+ "layer_index": 0,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "bfc65459aed93660981d2928a16b4e6588dfca5c99d12d2006d57b59cabd604e",
+ "raw_normalized_churn": 0.01892957746478873,
+ "raw_xor_churn_total": 336,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 210,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "df63b8dd9d3888605a8542c03ce4a34fe643b18beb11e40b830e088de04f8a8b",
+ "committed_normalized_churn": 0.022105263157894735,
+ "committed_xor_churn_total": 420,
+ "confirmation_two": true,
+ "current_mask_sha256": "df63b8dd9d3888605a8542c03ce4a34fe643b18beb11e40b830e088de04f8a8b",
+ "current_selected_count": 380,
+ "dwell_total": 9290,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.741659370173124e-10,
+ "last_committed_normalized_gap": -0.9980370998382568,
+ "last_committed_score_gap": -2.9194282546995964e-07,
+ "last_cutoff_score_margin": 4.2570391656227e-12,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 373,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.776179007848214e-09,
+ "last_raw_normalized_gap": 0.0008913064375519753,
+ "last_raw_score_gap": 4.2570391656227e-12,
+ "layer_index": 1,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "866fbe90d2fda12e2ef5773026fc24f882fbee094e6f5184484894576fa8f5af",
+ "raw_normalized_churn": 0.17926315789473685,
+ "raw_xor_churn_total": 3406,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 46,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8c9684b2f942679b212f311efdb6c061350f741198dda83960379519285a25a3",
+ "committed_normalized_churn": 0.006840148698884758,
+ "committed_xor_churn_total": 92,
+ "confirmation_two": true,
+ "current_mask_sha256": "8c9684b2f942679b212f311efdb6c061350f741198dda83960379519285a25a3",
+ "current_selected_count": 269,
+ "dwell_total": 6679,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.9408128133829905e-09,
+ "last_committed_normalized_gap": -0.7363186478614807,
+ "last_committed_score_gap": -1.9381916516181263e-08,
+ "last_cutoff_score_margin": 3.368301193518164e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 266,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3392940090284355e-08,
+ "last_raw_normalized_gap": 0.02514982596039772,
+ "last_raw_score_gap": 3.368301193518164e-10,
+ "layer_index": 2,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "359d8bb9240b2d282353ac9bc31a5b493dbca6c7ea00b3da640de8034bfc2923",
+ "raw_normalized_churn": 0.07672862453531598,
+ "raw_xor_churn_total": 1032,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "248139f0dea89c75e65dcc6e1949be9477e4eba7ffd435edf396b37cd964222b",
+ "committed_normalized_churn": 0.000893854748603352,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "248139f0dea89c75e65dcc6e1949be9477e4eba7ffd435edf396b37cd964222b",
+ "current_selected_count": 179,
+ "dwell_total": 4471,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1093549662509758e-07,
+ "last_committed_normalized_gap": -0.15367548167705536,
+ "last_committed_score_gap": -3.830163564089162e-08,
+ "last_cutoff_score_margin": 3.830163564089162e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.492371322659892e-07,
+ "last_raw_normalized_gap": 0.15367548167705536,
+ "last_raw_score_gap": 3.830163564089162e-08,
+ "layer_index": 4,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "738310d7d75b119d5a8b6a0d9914909d6ac49d1c852433cac114fa085172dd2d",
+ "raw_normalized_churn": 0.008938547486033519,
+ "raw_xor_churn_total": 80,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 12,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f4983fab423ad84234f7d5b52f34f27f0457b422fb3af14e7ce9805a952eeb1c",
+ "committed_normalized_churn": 0.0025945945945945945,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_mask_sha256": "f4983fab423ad84234f7d5b52f34f27f0457b422fb3af14e7ce9805a952eeb1c",
+ "current_selected_count": 185,
+ "dwell_total": 4613,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.061058938489623e-07,
+ "last_committed_normalized_gap": 0.05516793206334114,
+ "last_committed_score_gap": 5.8536429037303606e-09,
+ "last_cutoff_score_margin": 5.8536429037303606e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 183,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.061058938489623e-07,
+ "last_raw_normalized_gap": 0.05516793206334114,
+ "last_raw_score_gap": 5.8536429037303606e-09,
+ "layer_index": 5,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "f4983fab423ad84234f7d5b52f34f27f0457b422fb3af14e7ce9805a952eeb1c",
+ "raw_normalized_churn": 0.012324324324324324,
+ "raw_xor_churn_total": 114,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 32,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f3f4367a7bbac0b431a2ba201432584a66ec26230a8b54b85e1f4f0f7f4b62b5",
+ "committed_normalized_churn": 0.01219047619047619,
+ "committed_xor_churn_total": 64,
+ "confirmation_two": true,
+ "current_mask_sha256": "f3f4367a7bbac0b431a2ba201432584a66ec26230a8b54b85e1f4f0f7f4b62b5",
+ "current_selected_count": 105,
+ "dwell_total": 2593,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.057122555105707e-08,
+ "last_committed_normalized_gap": -0.25515511631965637,
+ "last_committed_score_gap": -1.0472522404825213e-08,
+ "last_cutoff_score_margin": 7.754284325756089e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.856934682744395e-08,
+ "last_raw_normalized_gap": 0.2010478526353836,
+ "last_raw_score_gap": 7.754284325756089e-09,
+ "layer_index": 6,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "724b5deb38c7b47c66708910f4cda31d5f654d0fc0786b40825e27ef6705ebbe",
+ "raw_normalized_churn": 0.06895238095238095,
+ "raw_xor_churn_total": 362,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f1b5669fd4857b75748ca0dab124929c6d65d3f4cc8ab91f674411019893cd95",
+ "committed_normalized_churn": 0.0005,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "f1b5669fd4857b75748ca0dab124929c6d65d3f4cc8ab91f674411019893cd95",
+ "current_selected_count": 80,
+ "dwell_total": 1999,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3891174432956177e-07,
+ "last_committed_normalized_gap": 0.28952041268348694,
+ "last_committed_score_gap": 4.021778465812531e-08,
+ "last_cutoff_score_margin": 4.021778465812531e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3891174432956177e-07,
+ "last_raw_normalized_gap": 0.28952041268348694,
+ "last_raw_score_gap": 4.021778465812531e-08,
+ "layer_index": 8,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "f1b5669fd4857b75748ca0dab124929c6d65d3f4cc8ab91f674411019893cd95",
+ "raw_normalized_churn": 0.012,
+ "raw_xor_churn_total": 48,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "866c3d858d038b6dcf9f2a05376bdeb890f778c1a2423c746bccc5018c0cae97",
+ "committed_normalized_churn": 0.0018604651162790699,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "866c3d858d038b6dcf9f2a05376bdeb890f778c1a2423c746bccc5018c0cae97",
+ "current_selected_count": 43,
+ "dwell_total": 1073,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.927191892851624e-08,
+ "last_committed_normalized_gap": 0.04289329797029495,
+ "last_committed_score_gap": 2.542368093827463e-09,
+ "last_cutoff_score_margin": 2.542368093827463e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.927191892851624e-08,
+ "last_raw_normalized_gap": 0.04289329797029495,
+ "last_raw_score_gap": 2.542368093827463e-09,
+ "layer_index": 9,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "866c3d858d038b6dcf9f2a05376bdeb890f778c1a2423c746bccc5018c0cae97",
+ "raw_normalized_churn": 0.03255813953488372,
+ "raw_xor_churn_total": 70,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0ed947036a96462adcea196878da392463d89feab4f07ee4412d4020df0a9a03",
+ "committed_normalized_churn": 0.014761904761904763,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "0ed947036a96462adcea196878da392463d89feab4f07ee4412d4020df0a9a03",
+ "current_selected_count": 84,
+ "dwell_total": 2069,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6730679064380638e-08,
+ "last_committed_normalized_gap": -0.2700972557067871,
+ "last_committed_score_gap": -6.191113399722781e-09,
+ "last_cutoff_score_margin": 2.331008275291424e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0868300865117817e-08,
+ "last_raw_normalized_gap": 0.11170091480016708,
+ "last_raw_score_gap": 2.331008275291424e-09,
+ "layer_index": 10,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "7452a1d14f9a82e340bd24450a1e5d9e14cd009756781378080a296cf14eb258",
+ "raw_normalized_churn": 0.12,
+ "raw_xor_churn_total": 504,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "20bf757b3174c4f744b8a086ff79aa6171aebe883c64613d1b3535d0ea014d81",
+ "committed_normalized_churn": 0.004,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "20bf757b3174c4f744b8a086ff79aa6171aebe883c64613d1b3535d0ea014d81",
+ "current_selected_count": 30,
+ "dwell_total": 747,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.560396172972105e-07,
+ "last_committed_normalized_gap": 0.31176602840423584,
+ "last_committed_score_gap": 2.0453086335692205e-07,
+ "last_cutoff_score_margin": 2.0453086335692205e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.560396172972105e-07,
+ "last_raw_normalized_gap": 0.31176602840423584,
+ "last_raw_score_gap": 2.0453086335692205e-07,
+ "layer_index": 12,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "20bf757b3174c4f744b8a086ff79aa6171aebe883c64613d1b3535d0ea014d81",
+ "raw_normalized_churn": 0.04533333333333334,
+ "raw_xor_churn_total": 68,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 27,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e2b19e0a247be83858631a918007d5c0b031678352fa63816e4b21a9ddc9a8fb",
+ "committed_normalized_churn": 0.017419354838709676,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_mask_sha256": "e2b19e0a247be83858631a918007d5c0b031678352fa63816e4b21a9ddc9a8fb",
+ "current_selected_count": 62,
+ "dwell_total": 1523,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4030175183042957e-08,
+ "last_committed_normalized_gap": -0.29546794295310974,
+ "last_committed_score_gap": -1.0077819467824156e-08,
+ "last_cutoff_score_margin": 1.219406797758893e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7614499131800585e-08,
+ "last_raw_normalized_gap": 0.0441582091152668,
+ "last_raw_score_gap": 1.219406797758893e-09,
+ "layer_index": 13,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "23a8a9ff4740e12d49ed6ab265f0f75767f25c74d178ae83993821e8e617fbfa",
+ "raw_normalized_churn": 0.12903225806451613,
+ "raw_xor_churn_total": 400,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 12,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "72104b9da2be161eca7f764a87d3b6c30905f593fdc055b4cea495d7e36289fa",
+ "committed_normalized_churn": 0.008888888888888889,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_mask_sha256": "72104b9da2be161eca7f764a87d3b6c30905f593fdc055b4cea495d7e36289fa",
+ "current_selected_count": 54,
+ "dwell_total": 1338,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.130129541290444e-08,
+ "last_committed_normalized_gap": -0.17358215153217316,
+ "last_committed_score_gap": -1.9177072374532145e-08,
+ "last_cutoff_score_margin": 4.305185541397805e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.560648095430224e-08,
+ "last_raw_normalized_gap": 0.045030269771814346,
+ "last_raw_score_gap": 4.305185541397805e-09,
+ "layer_index": 14,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "486185bbf7d7914f3edb3b1f92c646a8033271d607787f337f279fa56dda635b",
+ "raw_normalized_churn": 0.06,
+ "raw_xor_churn_total": 162,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5bb5dd0a03ab46d57be5f7c104cab91279d36403b6dd8808a340ceb1280b461b",
+ "committed_normalized_churn": 0.0017777777777777779,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "5bb5dd0a03ab46d57be5f7c104cab91279d36403b6dd8808a340ceb1280b461b",
+ "current_selected_count": 45,
+ "dwell_total": 1123,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0166897936869645e-06,
+ "last_committed_normalized_gap": 0.3344857096672058,
+ "last_committed_score_gap": 3.4006819760179496e-07,
+ "last_cutoff_score_margin": 3.4006819760179496e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0166897936869645e-06,
+ "last_raw_normalized_gap": 0.3344857096672058,
+ "last_raw_score_gap": 3.4006819760179496e-07,
+ "layer_index": 16,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "5bb5dd0a03ab46d57be5f7c104cab91279d36403b6dd8808a340ceb1280b461b",
+ "raw_normalized_churn": 0.006222222222222222,
+ "raw_xor_churn_total": 14,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5060b6ea69d1f1770dcf4c2c7e5ee786ffcf1404dc406b850c2ff67bb3b61848",
+ "committed_normalized_churn": 0.0014814814814814814,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "5060b6ea69d1f1770dcf4c2c7e5ee786ffcf1404dc406b850c2ff67bb3b61848",
+ "current_selected_count": 27,
+ "dwell_total": 674,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.8276551802264294e-06,
+ "last_committed_normalized_gap": 0.636661946773529,
+ "last_committed_score_gap": 1.800260406525922e-06,
+ "last_cutoff_score_margin": 1.800260406525922e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.8276551802264294e-06,
+ "last_raw_normalized_gap": 0.636661946773529,
+ "last_raw_score_gap": 1.800260406525922e-06,
+ "layer_index": 17,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "5060b6ea69d1f1770dcf4c2c7e5ee786ffcf1404dc406b850c2ff67bb3b61848",
+ "raw_normalized_churn": 0.016296296296296295,
+ "raw_xor_churn_total": 22,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "current_selected_count": 7,
+ "dwell_total": 175,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.2556744776666164e-05,
+ "last_committed_normalized_gap": 0.9316623210906982,
+ "last_committed_score_gap": 4.896513928542845e-05,
+ "last_cutoff_score_margin": 4.896513928542845e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.2556744776666164e-05,
+ "last_raw_normalized_gap": 0.9316623210906982,
+ "last_raw_score_gap": 4.896513928542845e-05,
+ "layer_index": 18,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "917918882bdd872c2147a355371cf0d0c10fdee7bdb43c0068301aa1e10745ef",
+ "committed_normalized_churn": 0.008888888888888889,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "917918882bdd872c2147a355371cf0d0c10fdee7bdb43c0068301aa1e10745ef",
+ "current_selected_count": 9,
+ "dwell_total": 223,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.8847372959717177e-05,
+ "last_committed_normalized_gap": 0.6805850863456726,
+ "last_committed_score_gap": 1.963309114216827e-05,
+ "last_cutoff_score_margin": 1.963309114216827e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.8847372959717177e-05,
+ "last_raw_normalized_gap": 0.6805850863456726,
+ "last_raw_score_gap": 1.963309114216827e-05,
+ "layer_index": 20,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "917918882bdd872c2147a355371cf0d0c10fdee7bdb43c0068301aa1e10745ef",
+ "raw_normalized_churn": 0.035555555555555556,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "committed_normalized_churn": 0.005714285714285714,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "current_selected_count": 7,
+ "dwell_total": 174,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2455729524372146e-05,
+ "last_committed_normalized_gap": 0.9215488433837891,
+ "last_committed_score_gap": 2.9909539080108516e-05,
+ "last_cutoff_score_margin": 2.9909539080108516e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2455729524372146e-05,
+ "last_raw_normalized_gap": 0.9215488433837891,
+ "last_raw_score_gap": 2.9909539080108516e-05,
+ "layer_index": 21,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "raw_normalized_churn": 0.005714285714285714,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fcfcd2c513aece10e323400c7d7f8b00c7ad6e389a9d8ea173f46e60845b95e0",
+ "committed_normalized_churn": 0.002909090909090909,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "fcfcd2c513aece10e323400c7d7f8b00c7ad6e389a9d8ea173f46e60845b95e0",
+ "current_selected_count": 55,
+ "dwell_total": 1371,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1087093909623036e-08,
+ "last_committed_normalized_gap": -0.9301942586898804,
+ "last_committed_score_gap": -1.477406925687319e-07,
+ "last_cutoff_score_margin": 2.427327672194224e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5882778825471178e-07,
+ "last_raw_normalized_gap": 0.015282764099538326,
+ "last_raw_score_gap": 2.427327672194224e-09,
+ "layer_index": 22,
+ "mask_transition_count": 25,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "f7cd2d6a826f75c636ae95fd8137d70a9a486d60ffa5a9f4a7be181b94d3c00b",
+ "raw_normalized_churn": 0.01890909090909091,
+ "raw_xor_churn_total": 52,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 26,
+ "tokens_observed": 116
+ }
+ ],
+ "task_id": 944
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 37,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fc94a4515da07bf25c5fee5280399c07c899a22252861867745d97d445d2b548",
+ "committed_normalized_churn": 0.0028169014084507044,
+ "committed_xor_churn_total": 74,
+ "confirmation_two": true,
+ "current_mask_sha256": "fc94a4515da07bf25c5fee5280399c07c899a22252861867745d97d445d2b548",
+ "current_selected_count": 355,
+ "dwell_total": 13098,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.419388602438517e-10,
+ "last_committed_normalized_gap": -0.9964268803596497,
+ "last_committed_score_gap": -2.6267906605426106e-07,
+ "last_cutoff_score_margin": 1.5755219351376581e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4626858835242729e-08,
+ "last_raw_normalized_gap": 0.010771430097520351,
+ "last_raw_score_gap": 1.5755219351376581e-10,
+ "layer_index": 0,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "7c25a60eaefac052a5fbce3fc5f876ae919a35a7b592e29ceb2ff1b8e3443359",
+ "raw_normalized_churn": 0.017967263037685574,
+ "raw_xor_churn_total": 472,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 208,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fd683f1f0f6d8722d785066d3b2dbcaed880a31f6ca4fe83ef6df1a36075927f",
+ "committed_normalized_churn": 0.014793741109530583,
+ "committed_xor_churn_total": 416,
+ "confirmation_two": true,
+ "current_mask_sha256": "fd683f1f0f6d8722d785066d3b2dbcaed880a31f6ca4fe83ef6df1a36075927f",
+ "current_selected_count": 380,
+ "dwell_total": 13852,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.417472389464436e-10,
+ "last_committed_normalized_gap": -0.9738508462905884,
+ "last_committed_score_gap": -5.278965709010208e-09,
+ "last_cutoff_score_margin": 5.1772142128925225e-11,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 375,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.6424232780804e-10,
+ "last_raw_normalized_gap": 0.0779416486620903,
+ "last_raw_score_gap": 5.1772142128925225e-11,
+ "layer_index": 1,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "511fb5c62bf7b262238dbfb5a9486900c447263db72fda320b55a58b7a6af47d",
+ "raw_normalized_churn": 0.1221194879089616,
+ "raw_xor_churn_total": 3434,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 39,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "01befbca57359a691eef225b7f51b43cd99e76182af450795cdcd20278f44744",
+ "committed_normalized_churn": 0.003918416557821762,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": true,
+ "current_mask_sha256": "01befbca57359a691eef225b7f51b43cd99e76182af450795cdcd20278f44744",
+ "current_selected_count": 269,
+ "dwell_total": 9914,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.240766045462749e-09,
+ "last_committed_normalized_gap": -0.9237114787101746,
+ "last_committed_score_gap": -1.5023349675402642e-08,
+ "last_cutoff_score_margin": 6.506395422434252e-11,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 267,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.272062703591928e-09,
+ "last_raw_normalized_gap": 0.015230102464556694,
+ "last_raw_score_gap": 6.506395422434252e-11,
+ "layer_index": 2,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "910fd684d1e2d1d3a1d58d36b0f36a13f1c4253d614c14e2d59d5758baf6d762",
+ "raw_normalized_churn": 0.03868180448106099,
+ "raw_xor_churn_total": 770,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7342c092e527b2d027e2bbbe031871b06b16388036a8519d8906c7a0faca4380",
+ "committed_normalized_churn": 0.0004529669334138608,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "7342c092e527b2d027e2bbbe031871b06b16388036a8519d8906c7a0faca4380",
+ "current_selected_count": 179,
+ "dwell_total": 6620,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3761162165337737e-07,
+ "last_committed_normalized_gap": 0.2992125153541565,
+ "last_committed_score_gap": 4.1175120202296966e-08,
+ "last_cutoff_score_margin": 4.1175120202296966e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3761162165337737e-07,
+ "last_raw_normalized_gap": 0.2992125153541565,
+ "last_raw_score_gap": 4.1175120202296966e-08,
+ "layer_index": 4,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "7342c092e527b2d027e2bbbe031871b06b16388036a8519d8906c7a0faca4380",
+ "raw_normalized_churn": 0.009059338668277215,
+ "raw_xor_churn_total": 120,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b1f3ed5e4b2f0bc624d75e4061645b87de9a1beac546839f303ee9dfaf60003a",
+ "committed_normalized_churn": 0.0010226442658875091,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "b1f3ed5e4b2f0bc624d75e4061645b87de9a1beac546839f303ee9dfaf60003a",
+ "current_selected_count": 185,
+ "dwell_total": 6838,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.2776349573614425e-08,
+ "last_committed_normalized_gap": -0.5935273170471191,
+ "last_committed_score_gap": -6.246158790190748e-08,
+ "last_cutoff_score_margin": 8.23074941536106e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.232210919028148e-08,
+ "last_raw_normalized_gap": 0.1138068214058876,
+ "last_raw_score_gap": 8.23074941536106e-09,
+ "layer_index": 5,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "adfbef9239f339ac41bc3303ab4ca65622040812e346a1c6609ef85c26cbec25",
+ "raw_normalized_churn": 0.01139517896274653,
+ "raw_xor_churn_total": 156,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 41,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "40ca19f39f9c99bea4bee19ab0da56422847c4a42ceb5710da1d3e87a77036b6",
+ "committed_normalized_churn": 0.010553410553410553,
+ "committed_xor_churn_total": 82,
+ "confirmation_two": true,
+ "current_mask_sha256": "40ca19f39f9c99bea4bee19ab0da56422847c4a42ceb5710da1d3e87a77036b6",
+ "current_selected_count": 105,
+ "dwell_total": 3844,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.9890485702944716e-08,
+ "last_committed_normalized_gap": -0.2587410509586334,
+ "last_committed_score_gap": -6.9428978122232365e-09,
+ "last_cutoff_score_margin": 6.136904318054803e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.178388669449305e-08,
+ "last_raw_normalized_gap": 0.028171760961413383,
+ "last_raw_score_gap": 6.136904318054803e-10,
+ "layer_index": 6,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "d426c43b799608cc9dd099f8359a96c0aeb666176a9802790d08f4b333471f6f",
+ "raw_normalized_churn": 0.04993564993564994,
+ "raw_xor_churn_total": 388,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6d411ef3e7dc19ccdb731d830369cffb569f4baa41bd41585932b114f98688d5",
+ "committed_normalized_churn": 0.0013513513513513514,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "6d411ef3e7dc19ccdb731d830369cffb569f4baa41bd41585932b114f98688d5",
+ "current_selected_count": 80,
+ "dwell_total": 2956,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2338411181644915e-07,
+ "last_committed_normalized_gap": -0.4674293100833893,
+ "last_committed_score_gap": -1.0829238306087063e-07,
+ "last_cutoff_score_margin": 9.588063676346792e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2979387520317687e-07,
+ "last_raw_normalized_gap": 0.007387146353721619,
+ "last_raw_score_gap": 9.588063676346792e-10,
+ "layer_index": 8,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "d251b3e4fcdee644c483fc2ed8b485dac34afdddfa64f4c6e194d348f3a3ab89",
+ "raw_normalized_churn": 0.01722972972972973,
+ "raw_xor_churn_total": 102,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "452fbc04c9f81457783e485c6f68abe2b933f7ffbf4b62b6bb27c5c0f0793677",
+ "committed_normalized_churn": 0.00251414204902577,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "452fbc04c9f81457783e485c6f68abe2b933f7ffbf4b62b6bb27c5c0f0793677",
+ "current_selected_count": 43,
+ "dwell_total": 1587,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.064579866598251e-08,
+ "last_committed_normalized_gap": 0.17566318809986115,
+ "last_committed_score_gap": 8.89660256575553e-09,
+ "last_cutoff_score_margin": 8.89660256575553e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.064579866598251e-08,
+ "last_raw_normalized_gap": 0.17566318809986115,
+ "last_raw_score_gap": 8.89660256575553e-09,
+ "layer_index": 9,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "452fbc04c9f81457783e485c6f68abe2b933f7ffbf4b62b6bb27c5c0f0793677",
+ "raw_normalized_churn": 0.01759899434318039,
+ "raw_xor_churn_total": 56,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 30,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3ef778e980a8c57777b679964f5eda3820ae85297acd6f2767c07b15c9e38961",
+ "committed_normalized_churn": 0.009652509652509652,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_mask_sha256": "3ef778e980a8c57777b679964f5eda3820ae85297acd6f2767c07b15c9e38961",
+ "current_selected_count": 84,
+ "dwell_total": 3078,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0548368400975505e-08,
+ "last_committed_normalized_gap": -0.5709992051124573,
+ "last_committed_score_gap": -1.4039856388592398e-08,
+ "last_cutoff_score_margin": 3.594813335894287e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.792224857410929e-08,
+ "last_raw_normalized_gap": 0.02005782537162304,
+ "last_raw_score_gap": 3.594813335894287e-10,
+ "layer_index": 10,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "d9ff376a572991a70e2b2bf282937d83659b8374b6bf14c5f6f37cc79daa3992",
+ "raw_normalized_churn": 0.05791505791505792,
+ "raw_xor_churn_total": 360,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d2f898221d2c125ace2a2dd5992372245c86233cfc36eea7b22a7da3253863cd",
+ "committed_normalized_churn": 0.0018018018018018018,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "d2f898221d2c125ace2a2dd5992372245c86233cfc36eea7b22a7da3253863cd",
+ "current_selected_count": 30,
+ "dwell_total": 1108,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.907636015464959e-07,
+ "last_committed_normalized_gap": 0.4904058575630188,
+ "last_committed_score_gap": 4.368356769646198e-07,
+ "last_cutoff_score_margin": 4.368356769646198e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.907636015464959e-07,
+ "last_raw_normalized_gap": 0.4904058575630188,
+ "last_raw_score_gap": 4.368356769646198e-07,
+ "layer_index": 12,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "d2f898221d2c125ace2a2dd5992372245c86233cfc36eea7b22a7da3253863cd",
+ "raw_normalized_churn": 0.02972972972972973,
+ "raw_xor_churn_total": 66,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 26,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "42a3c8d01c74954569b628244659ebc7285f9af726384f6eca51beca68bb7151",
+ "committed_normalized_churn": 0.011333914559721011,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_mask_sha256": "42a3c8d01c74954569b628244659ebc7285f9af726384f6eca51beca68bb7151",
+ "current_selected_count": 62,
+ "dwell_total": 2268,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2253543957285729e-08,
+ "last_committed_normalized_gap": -0.7320432662963867,
+ "last_committed_score_gap": -3.347601662540001e-08,
+ "last_cutoff_score_margin": 1.5757191107468316e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7230947335633573e-08,
+ "last_raw_normalized_gap": 0.09144704043865204,
+ "last_raw_score_gap": 1.5757191107468316e-09,
+ "layer_index": 13,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "cc5272086eeca4e28cd20d3a171e5e7bd340ce0e31719b2ddc13d1d290d6e8c9",
+ "raw_normalized_churn": 0.08718395815170009,
+ "raw_xor_churn_total": 400,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "281c5d50a10eb462c68361d250903bb59cb2237a50faf4dad982f5689e85b9e3",
+ "committed_normalized_churn": 0.0045045045045045045,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "281c5d50a10eb462c68361d250903bb59cb2237a50faf4dad982f5689e85b9e3",
+ "current_selected_count": 54,
+ "dwell_total": 1989,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8278010216477014e-08,
+ "last_committed_normalized_gap": 0.08244533836841583,
+ "last_committed_score_gap": 1.5069367975684145e-09,
+ "last_cutoff_score_margin": 1.5069367975684145e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8278010216477014e-08,
+ "last_raw_normalized_gap": 0.08244533836841583,
+ "last_raw_score_gap": 1.5069367975684145e-09,
+ "layer_index": 14,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "281c5d50a10eb462c68361d250903bb59cb2237a50faf4dad982f5689e85b9e3",
+ "raw_normalized_churn": 0.03553553553553553,
+ "raw_xor_churn_total": 142,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8b517eba5df7c821a6b02dcf259bf0eebbf1628e6e9989c742e6abf8304cee55",
+ "committed_normalized_churn": 0.0006006006006006006,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "8b517eba5df7c821a6b02dcf259bf0eebbf1628e6e9989c742e6abf8304cee55",
+ "current_selected_count": 45,
+ "dwell_total": 1664,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6914888192332e-06,
+ "last_committed_normalized_gap": -0.059978023171424866,
+ "last_committed_score_gap": -1.0792530247272225e-07,
+ "last_cutoff_score_margin": 7.77798732087831e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7994141217059223e-06,
+ "last_raw_normalized_gap": 0.043225109577178955,
+ "last_raw_score_gap": 7.77798732087831e-08,
+ "layer_index": 16,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "4910e5fa9c709c208e2d154c250215411ca2f3ad5de48f3b77f8798ebb05e133",
+ "raw_normalized_churn": 0.0012012012012012011,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5f62608cd31d75ef6804459849fa8f7f385e407ecea44937b5bc7d775449c433",
+ "committed_normalized_churn": 0.001001001001001001,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "5f62608cd31d75ef6804459849fa8f7f385e407ecea44937b5bc7d775449c433",
+ "current_selected_count": 27,
+ "dwell_total": 998,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.7860144200531067e-06,
+ "last_committed_normalized_gap": 0.77060866355896,
+ "last_committed_score_gap": 2.146926817658823e-06,
+ "last_cutoff_score_margin": 2.146926817658823e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7860144200531067e-06,
+ "last_raw_normalized_gap": 0.77060866355896,
+ "last_raw_score_gap": 2.146926817658823e-06,
+ "layer_index": 17,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "5f62608cd31d75ef6804459849fa8f7f385e407ecea44937b5bc7d775449c433",
+ "raw_normalized_churn": 0.003003003003003003,
+ "raw_xor_churn_total": 6,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "current_selected_count": 7,
+ "dwell_total": 259,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.691562596941367e-05,
+ "last_committed_normalized_gap": 0.40703514218330383,
+ "last_committed_score_gap": 1.5025956599856727e-05,
+ "last_cutoff_score_margin": 1.5025956599856727e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.691562596941367e-05,
+ "last_raw_normalized_gap": 0.40703514218330383,
+ "last_raw_score_gap": 1.5025956599856727e-05,
+ "layer_index": 18,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "committed_normalized_churn": 0.003003003003003003,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "current_selected_count": 9,
+ "dwell_total": 332,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4947113413654733e-05,
+ "last_committed_normalized_gap": -0.7868244051933289,
+ "last_committed_score_gap": -5.51693192392122e-05,
+ "last_cutoff_score_margin": 1.519107991043711e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.0138193324091844e-05,
+ "last_raw_normalized_gap": 0.5040474534034729,
+ "last_raw_score_gap": 1.519107991043711e-05,
+ "layer_index": 20,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "raw_normalized_churn": 0.024024024024024024,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "committed_normalized_churn": 0.003861003861003861,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "current_selected_count": 7,
+ "dwell_total": 258,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3490761375578586e-05,
+ "last_committed_normalized_gap": 0.8838837146759033,
+ "last_committed_score_gap": 1.1924264072149526e-05,
+ "last_cutoff_score_margin": 1.1924264072149526e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3490761375578586e-05,
+ "last_raw_normalized_gap": 0.8838837146759033,
+ "last_raw_score_gap": 1.1924264072149526e-05,
+ "layer_index": 21,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "raw_normalized_churn": 0.003861003861003861,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "63bb3066ad011657b10d6e61926cc12fe665a9130b586df42d68347a6343a0b1",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "63bb3066ad011657b10d6e61926cc12fe665a9130b586df42d68347a6343a0b1",
+ "current_selected_count": 55,
+ "dwell_total": 2035,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.874979365216859e-07,
+ "last_committed_normalized_gap": 0.7524713277816772,
+ "last_committed_score_gap": 4.420753612066619e-07,
+ "last_cutoff_score_margin": 4.420753612066619e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.874979365216859e-07,
+ "last_raw_normalized_gap": 0.7524713277816772,
+ "last_raw_score_gap": 4.420753612066619e-07,
+ "layer_index": 22,
+ "mask_transition_count": 37,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "63bb3066ad011657b10d6e61926cc12fe665a9130b586df42d68347a6343a0b1",
+ "raw_normalized_churn": 0.0019656019656019656,
+ "raw_xor_churn_total": 8,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 38,
+ "tokens_observed": 286
+ }
+ ],
+ "task_id": 653
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 20,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "94e117a599e09856ff0d9e46fe4cdc631cfbe4f05637e31f7139daacd3b84550",
+ "committed_normalized_churn": 0.0026827632461435278,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_mask_sha256": "94e117a599e09856ff0d9e46fe4cdc631cfbe4f05637e31f7139daacd3b84550",
+ "current_selected_count": 355,
+ "dwell_total": 7435,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.091179946399734e-08,
+ "last_committed_normalized_gap": -0.888258695602417,
+ "last_committed_score_gap": -8.67405489657358e-08,
+ "last_cutoff_score_margin": 3.182615060381977e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.91913578362346e-08,
+ "last_raw_normalized_gap": 0.16583584249019623,
+ "last_raw_score_gap": 3.182615060381977e-09,
+ "layer_index": 0,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "e0d3d086829dca60884f7599ac09e45da4eb12489249620b58efbfd75889262f",
+ "raw_normalized_churn": 0.01596244131455399,
+ "raw_xor_churn_total": 238,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 142,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1a44365be3e1c418ad9f398c070e8c432db8200971cdf3947e026a97021ad465",
+ "committed_normalized_churn": 0.017794486215538845,
+ "committed_xor_churn_total": 284,
+ "confirmation_two": true,
+ "current_mask_sha256": "1a44365be3e1c418ad9f398c070e8c432db8200971cdf3947e026a97021ad465",
+ "current_selected_count": 380,
+ "dwell_total": 7838,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0496818692029564e-10,
+ "last_committed_normalized_gap": -0.9877015352249146,
+ "last_committed_score_gap": -8.430119713409567e-09,
+ "last_cutoff_score_margin": 9.828804437006511e-12,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 378,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1469255262474007e-09,
+ "last_raw_normalized_gap": 0.004578083753585815,
+ "last_raw_score_gap": 9.828804437006511e-12,
+ "layer_index": 1,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "cc75bdb4f68e80f0dc67a4ffc3002d3eda49ea438863ebeea65761d848389ef3",
+ "raw_normalized_churn": 0.1449874686716792,
+ "raw_xor_churn_total": 2314,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 29,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2fe011b20ea6ea42550abc38f16949b2da449e8fb4abe5e90b8eced466483717",
+ "committed_normalized_churn": 0.005133651973800672,
+ "committed_xor_churn_total": 58,
+ "confirmation_two": true,
+ "current_mask_sha256": "2fe011b20ea6ea42550abc38f16949b2da449e8fb4abe5e90b8eced466483717",
+ "current_selected_count": 269,
+ "dwell_total": 5620,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1752000201047395e-09,
+ "last_committed_normalized_gap": -0.9880784153938293,
+ "last_committed_score_gap": -1.8028389092705766e-07,
+ "last_cutoff_score_margin": 1.5898393712632242e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 266,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.936897444300484e-09,
+ "last_raw_normalized_gap": 0.0017789611592888832,
+ "last_raw_score_gap": 1.5898393712632242e-11,
+ "layer_index": 2,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "c0ce960782505b242e182a6a61a365b90c54aefcb2ee6437742504dc19480e6a",
+ "raw_normalized_churn": 0.03558151885289432,
+ "raw_xor_churn_total": 402,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "174424b114bf47931855da162c2a0b697ef0e71a5b73f040877a6b2135223399",
+ "committed_normalized_churn": 0.0005320563979781857,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "174424b114bf47931855da162c2a0b697ef0e71a5b73f040877a6b2135223399",
+ "current_selected_count": 179,
+ "dwell_total": 3757,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.6553121301731153e-07,
+ "last_committed_normalized_gap": -0.38275808095932007,
+ "last_committed_score_gap": -1.646586440529063e-07,
+ "last_cutoff_score_margin": 5.414364068201394e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.914664207764872e-07,
+ "last_raw_normalized_gap": 0.018576286733150482,
+ "last_raw_score_gap": 5.414364068201394e-09,
+ "layer_index": 4,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "90ac21a79752153376f984c61339ac799d2791ffbffb23a0ed85410bd9dac6bb",
+ "raw_normalized_churn": 0.0074487895716946,
+ "raw_xor_churn_total": 56,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "86b9668b990ee016a2923393958806f12df57ba091a8040e4e7567787d004f14",
+ "committed_normalized_churn": 0.002059202059202059,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "86b9668b990ee016a2923393958806f12df57ba091a8040e4e7567787d004f14",
+ "current_selected_count": 185,
+ "dwell_total": 3877,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.948858555233528e-08,
+ "last_committed_normalized_gap": -0.8480835556983948,
+ "last_committed_score_gap": -3.879245298321621e-07,
+ "last_cutoff_score_margin": 2.845084168257017e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0120958648940359e-07,
+ "last_raw_normalized_gap": 0.0028110817074775696,
+ "last_raw_score_gap": 2.845084168257017e-10,
+ "layer_index": 5,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "a9856b48175e3269a297a9d8b0055d28096cf1007aca5475c033bcb5ad38143b",
+ "raw_normalized_churn": 0.008494208494208495,
+ "raw_xor_churn_total": 66,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 18,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "dff4675dc4359fc66523220928995becd677c9092a706d43228e42dfe9244875",
+ "committed_normalized_churn": 0.00816326530612245,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_mask_sha256": "dff4675dc4359fc66523220928995becd677c9092a706d43228e42dfe9244875",
+ "current_selected_count": 105,
+ "dwell_total": 2187,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3987681174730824e-08,
+ "last_committed_normalized_gap": -0.7987373471260071,
+ "last_committed_score_gap": -9.519826704718071e-08,
+ "last_cutoff_score_margin": 5.937653924092956e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.695969041928038e-08,
+ "last_raw_normalized_gap": 0.16065216064453125,
+ "last_raw_score_gap": 5.937653924092956e-09,
+ "layer_index": 6,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "7c324ea07b6e349265b93e79df334104e4ce31da5a7f462d19c13a4c09124bfa",
+ "raw_normalized_churn": 0.04126984126984127,
+ "raw_xor_churn_total": 182,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "30cdfa43291eec672c25f373902eec1efa9887cd7715c2cffbb867880e3c8e17",
+ "committed_normalized_churn": 0.002380952380952381,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "30cdfa43291eec672c25f373902eec1efa9887cd7715c2cffbb867880e3c8e17",
+ "current_selected_count": 80,
+ "dwell_total": 1676,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.354738163987349e-08,
+ "last_committed_normalized_gap": -0.5893843770027161,
+ "last_committed_score_gap": -7.686017511332466e-08,
+ "last_cutoff_score_margin": 5.012886461486232e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.05844343067929e-07,
+ "last_raw_normalized_gap": 0.4736092984676361,
+ "last_raw_score_gap": 5.012886461486232e-08,
+ "layer_index": 8,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "d51c67c99ce6588ab0c887ff3d607350ce5c3959938d444b43f9e642727cf509",
+ "raw_normalized_churn": 0.009523809523809525,
+ "raw_xor_churn_total": 32,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b9f65c2181d47875e6b31c6142692ab3fbfab9422ad4834d7270dce1e0bcf99a",
+ "committed_normalized_churn": 0.004429678848283499,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "b9f65c2181d47875e6b31c6142692ab3fbfab9422ad4834d7270dce1e0bcf99a",
+ "current_selected_count": 43,
+ "dwell_total": 899,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.116151496371458e-08,
+ "last_committed_normalized_gap": -0.37559768557548523,
+ "last_committed_score_gap": -3.6790581248169474e-08,
+ "last_cutoff_score_margin": 1.9247110571996018e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.795209621188405e-08,
+ "last_raw_normalized_gap": 0.019649513065814972,
+ "last_raw_score_gap": 1.9247110571996018e-09,
+ "layer_index": 9,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "23e45e3015d7881ee052a22925be1036207b93d69e1321e9b38e0f04b138888e",
+ "raw_normalized_churn": 0.026578073089700997,
+ "raw_xor_churn_total": 48,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 24,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e5801bc6f739c73ccd0b412ad18f74677b848638cd838c18860b41af0ae6b74c",
+ "committed_normalized_churn": 0.013605442176870748,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_mask_sha256": "e5801bc6f739c73ccd0b412ad18f74677b848638cd838c18860b41af0ae6b74c",
+ "current_selected_count": 84,
+ "dwell_total": 1740,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.705167336448994e-09,
+ "last_committed_normalized_gap": -0.5654757618904114,
+ "last_committed_score_gap": -1.262999038686985e-08,
+ "last_cutoff_score_margin": 9.823253321883385e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4762761679776304e-08,
+ "last_raw_normalized_gap": 0.06654075533151627,
+ "last_raw_score_gap": 9.823253321883385e-10,
+ "layer_index": 10,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "befa1ff6a8b3cbac43d393de8bc80d67bb672f6b2061642fbeed4dde757b6b65",
+ "raw_normalized_churn": 0.08843537414965986,
+ "raw_xor_churn_total": 312,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cc9936ab2626ce6914bcd82f827ec04f8a2956f491be51a89c8684e682d7d90a",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "cc9936ab2626ce6914bcd82f827ec04f8a2956f491be51a89c8684e682d7d90a",
+ "current_selected_count": 30,
+ "dwell_total": 625,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.15207000009832e-07,
+ "last_committed_normalized_gap": 0.15475499629974365,
+ "last_committed_score_gap": 9.520636012894101e-08,
+ "last_cutoff_score_margin": 9.520636012894101e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.15207000009832e-07,
+ "last_raw_normalized_gap": 0.15475499629974365,
+ "last_raw_score_gap": 9.520636012894101e-08,
+ "layer_index": 12,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "cc9936ab2626ce6914bcd82f827ec04f8a2956f491be51a89c8684e682d7d90a",
+ "raw_normalized_churn": 0.04285714285714286,
+ "raw_xor_churn_total": 54,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 20,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b31557971848a0412f0a5a7888eb5e496c045e12065dbd424fe541c2384a7e38",
+ "committed_normalized_churn": 0.015360983102918587,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_mask_sha256": "b31557971848a0412f0a5a7888eb5e496c045e12065dbd424fe541c2384a7e38",
+ "current_selected_count": 62,
+ "dwell_total": 1282,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.869801699200707e-09,
+ "last_committed_normalized_gap": -0.8131631016731262,
+ "last_committed_score_gap": -3.425143901836236e-08,
+ "last_cutoff_score_margin": 7.282849878720299e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1021204332782872e-08,
+ "last_raw_normalized_gap": 0.03464525565505028,
+ "last_raw_score_gap": 7.282849878720299e-10,
+ "layer_index": 13,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "622d3e34c0f09cbe26b1bf367031d2ceb47553ab68c0fd5561a566d7822dcac4",
+ "raw_normalized_churn": 0.0706605222734255,
+ "raw_xor_churn_total": 184,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b4cb20c0249ca7c87a6f25e6ad472f8e289a6ae103908a2b4d58c6b403ac7deb",
+ "committed_normalized_churn": 0.009700176366843033,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "b4cb20c0249ca7c87a6f25e6ad472f8e289a6ae103908a2b4d58c6b403ac7deb",
+ "current_selected_count": 54,
+ "dwell_total": 1123,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0541323308975734e-08,
+ "last_committed_normalized_gap": -0.6310195326805115,
+ "last_committed_score_gap": -3.5129168907133135e-08,
+ "last_cutoff_score_margin": 2.1252510862268537e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.76440754731766e-08,
+ "last_raw_normalized_gap": 0.07687907665967941,
+ "last_raw_score_gap": 2.1252510862268537e-09,
+ "layer_index": 14,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "bc5804d972977ebd134f48d627d055c43b3c1e5ed5cbeaeff80df6a6b73bd6d5",
+ "raw_normalized_churn": 0.0582010582010582,
+ "raw_xor_churn_total": 132,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "current_selected_count": 45,
+ "dwell_total": 945,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3235465960169677e-06,
+ "last_committed_normalized_gap": 0.5020927786827087,
+ "last_committed_score_gap": 1.1666360251183505e-06,
+ "last_cutoff_score_margin": 1.1666360251183505e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3235465960169677e-06,
+ "last_raw_normalized_gap": 0.5020927786827087,
+ "last_raw_score_gap": 1.1666360251183505e-06,
+ "layer_index": 16,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2e74e5fb69de6ebf2adf1a6a8a374025d1437d923a1b4d24c4dcd0e90299df55",
+ "committed_normalized_churn": 0.001763668430335097,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "2e74e5fb69de6ebf2adf1a6a8a374025d1437d923a1b4d24c4dcd0e90299df55",
+ "current_selected_count": 27,
+ "dwell_total": 566,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.654469426488504e-06,
+ "last_committed_normalized_gap": 0.5151748657226562,
+ "last_committed_score_gap": 1.3675158925252617e-06,
+ "last_cutoff_score_margin": 1.3675158925252617e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.654469426488504e-06,
+ "last_raw_normalized_gap": 0.5151748657226562,
+ "last_raw_score_gap": 1.3675158925252617e-06,
+ "layer_index": 17,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "2e74e5fb69de6ebf2adf1a6a8a374025d1437d923a1b4d24c4dcd0e90299df55",
+ "raw_normalized_churn": 0.003527336860670194,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.834786134073511e-05,
+ "last_committed_normalized_gap": 0.9060350656509399,
+ "last_committed_score_gap": 5.286520899971947e-05,
+ "last_cutoff_score_margin": 5.286520899971947e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.834786134073511e-05,
+ "last_raw_normalized_gap": 0.9060350656509399,
+ "last_raw_score_gap": 5.286520899971947e-05,
+ "layer_index": 18,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "current_selected_count": 9,
+ "dwell_total": 189,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.787912959931418e-05,
+ "last_committed_normalized_gap": 0.8971387147903442,
+ "last_committed_score_gap": 5.192560638533905e-05,
+ "last_cutoff_score_margin": 5.192560638533905e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.787912959931418e-05,
+ "last_raw_normalized_gap": 0.8971387147903442,
+ "last_raw_score_gap": 5.192560638533905e-05,
+ "layer_index": 20,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "raw_normalized_churn": 0.010582010582010581,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "current_selected_count": 7,
+ "dwell_total": 147,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.7879419576493092e-05,
+ "last_committed_normalized_gap": 0.9584416747093201,
+ "last_committed_score_gap": 2.6720797904999927e-05,
+ "last_cutoff_score_margin": 2.6720797904999927e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7879419576493092e-05,
+ "last_raw_normalized_gap": 0.9584416747093201,
+ "last_raw_score_gap": 2.6720797904999927e-05,
+ "layer_index": 21,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ef0aadec36cafce3a3df8bf66471aef6aa6b2473f0b3e8a70dbf6bbd9baf7684",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "ef0aadec36cafce3a3df8bf66471aef6aa6b2473f0b3e8a70dbf6bbd9baf7684",
+ "current_selected_count": 55,
+ "dwell_total": 1155,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5250727730963263e-07,
+ "last_committed_normalized_gap": 0.2585107386112213,
+ "last_committed_score_gap": 6.527584162085986e-08,
+ "last_cutoff_score_margin": 6.527584162085986e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5250727730963263e-07,
+ "last_raw_normalized_gap": 0.2585107386112213,
+ "last_raw_score_gap": 6.527584162085986e-08,
+ "layer_index": 22,
+ "mask_transition_count": 21,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "ef0aadec36cafce3a3df8bf66471aef6aa6b2473f0b3e8a70dbf6bbd9baf7684",
+ "raw_normalized_churn": 0.003463203463203463,
+ "raw_xor_churn_total": 8,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 22,
+ "tokens_observed": 292
+ }
+ ],
+ "task_id": 857
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 63,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9287bdd33d96c738621f2b4e7ea7bf6b349eddc036f21d3924d2745d45b442e3",
+ "committed_normalized_churn": 0.0026487281900357366,
+ "committed_xor_churn_total": 126,
+ "confirmation_two": true,
+ "current_mask_sha256": "9287bdd33d96c738621f2b4e7ea7bf6b349eddc036f21d3924d2745d45b442e3",
+ "current_selected_count": 355,
+ "dwell_total": 23722,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.951276221300873e-10,
+ "last_committed_normalized_gap": -0.9975318312644958,
+ "last_committed_score_gap": -2.8094359549868386e-07,
+ "last_cutoff_score_margin": 1.0290701624171561e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 353,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.826837121806875e-09,
+ "last_raw_normalized_gap": 0.010472038760781288,
+ "last_raw_score_gap": 1.0290701624171561e-10,
+ "layer_index": 0,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "e51093af8532ac6cca3ff2f96a85085d2bee87e770138ce308ec77922c02a027",
+ "raw_normalized_churn": 0.020306916123607317,
+ "raw_xor_churn_total": 966,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 419,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4d4795f0c8f88f7728d1894841eabc4ede6b49452fce8da78238bb42ca77ff8e",
+ "committed_normalized_churn": 0.01645718774548311,
+ "committed_xor_churn_total": 838,
+ "confirmation_two": true,
+ "current_mask_sha256": "4d4795f0c8f88f7728d1894841eabc4ede6b49452fce8da78238bb42ca77ff8e",
+ "current_selected_count": 380,
+ "dwell_total": 25041,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3413922750338259e-10,
+ "last_committed_normalized_gap": -0.9937372803688049,
+ "last_committed_score_gap": -2.1284558116008157e-08,
+ "last_cutoff_score_margin": 3.2480129696921267e-12,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 377,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.65929311693958e-10,
+ "last_raw_normalized_gap": 0.004877414088696241,
+ "last_raw_score_gap": 3.2480129696921267e-12,
+ "layer_index": 1,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "b9d864aff64214471a5c28272a63403d73ee082ad7f661be968297d80644ce90",
+ "raw_normalized_churn": 0.1289080911233307,
+ "raw_xor_churn_total": 6564,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 99,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f06418711b7a7d7a3d6ffb844340e97d5df5f9f2922dcdf7754655e2d4082313",
+ "committed_normalized_churn": 0.005492981190700771,
+ "committed_xor_churn_total": 198,
+ "confirmation_two": true,
+ "current_mask_sha256": "f06418711b7a7d7a3d6ffb844340e97d5df5f9f2922dcdf7754655e2d4082313",
+ "current_selected_count": 269,
+ "dwell_total": 17924,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8612043850563253e-10,
+ "last_committed_normalized_gap": -0.987464964389801,
+ "last_committed_score_gap": -1.4661919678360391e-08,
+ "last_cutoff_score_margin": 2.4687585309379756e-11,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 268,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.3985609881881373e-09,
+ "last_raw_normalized_gap": 0.007264128886163235,
+ "last_raw_score_gap": 2.4687585309379756e-11,
+ "layer_index": 2,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "3167cc0f552c10659eb3b1cbe3437d41db3947c346b75f9217d7a9bf062112cf",
+ "raw_normalized_churn": 0.05232203295788714,
+ "raw_xor_churn_total": 1886,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d3b6890ada3764c5025a174b5cb465d58c1a7529c1510f41f33752ec53d07c6a",
+ "committed_normalized_churn": 0.0009172017009922455,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "d3b6890ada3764c5025a174b5cb465d58c1a7529c1510f41f33752ec53d07c6a",
+ "current_selected_count": 179,
+ "dwell_total": 11982,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3488000522320363e-07,
+ "last_committed_normalized_gap": 0.4027631878852844,
+ "last_committed_score_gap": 9.460102035063755e-08,
+ "last_cutoff_score_margin": 9.460102035063755e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3488000522320363e-07,
+ "last_raw_normalized_gap": 0.4027631878852844,
+ "last_raw_score_gap": 9.460102035063755e-08,
+ "layer_index": 4,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "d3b6890ada3764c5025a174b5cb465d58c1a7529c1510f41f33752ec53d07c6a",
+ "raw_normalized_churn": 0.00925539898273993,
+ "raw_xor_churn_total": 222,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 18,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "84b0a2ddced22b1f4951a5c46c8d6f7be0379ced03c191b4f89e7d8dcd8cf683",
+ "committed_normalized_churn": 0.0014521984671238403,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_mask_sha256": "84b0a2ddced22b1f4951a5c46c8d6f7be0379ced03c191b4f89e7d8dcd8cf683",
+ "current_selected_count": 185,
+ "dwell_total": 12377,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0287250990236316e-08,
+ "last_committed_normalized_gap": -0.008006335236132145,
+ "last_committed_score_gap": -1.6373746802855749e-10,
+ "last_cutoff_score_margin": 1.1255174570123927e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0450988458264874e-08,
+ "last_raw_normalized_gap": 0.005503486841917038,
+ "last_raw_score_gap": 1.1255174570123927e-10,
+ "layer_index": 5,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "c8c0902df51e01e60a328f6669a7c1ec83cf226ca5241949e763aba3670f555c",
+ "raw_normalized_churn": 0.007745058491327148,
+ "raw_xor_churn_total": 192,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 56,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "84e65bb960ed0822928e35ff8306e16643d46c3be3c5472189be77076bdfb8ac",
+ "committed_normalized_churn": 0.007960199004975124,
+ "committed_xor_churn_total": 112,
+ "confirmation_two": true,
+ "current_mask_sha256": "84e65bb960ed0822928e35ff8306e16643d46c3be3c5472189be77076bdfb8ac",
+ "current_selected_count": 105,
+ "dwell_total": 6979,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4069521487035672e-08,
+ "last_committed_normalized_gap": -0.15054874122142792,
+ "last_committed_score_gap": -4.265855224616644e-09,
+ "last_cutoff_score_margin": 5.156248761295501e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4585146363165222e-08,
+ "last_raw_normalized_gap": 0.020973024889826775,
+ "last_raw_score_gap": 5.156248761295501e-10,
+ "layer_index": 6,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "93c450b30824bad99bdd6b7ddfc132784d966a480d06601969f57d09c4b89405",
+ "raw_normalized_churn": 0.03994314143567875,
+ "raw_xor_churn_total": 562,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "72bae740cdf2870b63eb4a16c0d32876e1342b2ab894ff4457b5de00b72651b2",
+ "committed_normalized_churn": 0.0016791044776119403,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "72bae740cdf2870b63eb4a16c0d32876e1342b2ab894ff4457b5de00b72651b2",
+ "current_selected_count": 80,
+ "dwell_total": 5351,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5794567786997504e-07,
+ "last_committed_normalized_gap": -0.4060863256454468,
+ "last_committed_score_gap": -1.0799477934142487e-07,
+ "last_cutoff_score_margin": 6.811887942603789e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6475756581257883e-07,
+ "last_raw_normalized_gap": 0.04134491831064224,
+ "last_raw_score_gap": 6.811887942603789e-09,
+ "layer_index": 8,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "4ec9f8ab04772d4e45f346b0945fa32c5b2f9373575ba1d20892b05ef94867cb",
+ "raw_normalized_churn": 0.008395522388059701,
+ "raw_xor_churn_total": 90,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "881d03b8edcbdec2de927b8024236cd93181a33de9553a0ccd56434585daa237",
+ "committed_normalized_churn": 0.0020826102047900035,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "881d03b8edcbdec2de927b8024236cd93181a33de9553a0ccd56434585daa237",
+ "current_selected_count": 43,
+ "dwell_total": 2875,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.110330978501224e-08,
+ "last_committed_normalized_gap": 0.33585605025291443,
+ "last_committed_score_gap": 3.0597597344694805e-08,
+ "last_cutoff_score_margin": 3.0597597344694805e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.110330978501224e-08,
+ "last_raw_normalized_gap": 0.33585605025291443,
+ "last_raw_score_gap": 3.0597597344694805e-08,
+ "layer_index": 9,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "881d03b8edcbdec2de927b8024236cd93181a33de9553a0ccd56434585daa237",
+ "raw_normalized_churn": 0.016660881638320028,
+ "raw_xor_churn_total": 96,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 48,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "21ebb0eaf7a2e8a558022e5a3b8a007ad054cd8284e8980ad9da7b8f68470ea1",
+ "committed_normalized_churn": 0.008528784648187633,
+ "committed_xor_churn_total": 96,
+ "confirmation_two": true,
+ "current_mask_sha256": "21ebb0eaf7a2e8a558022e5a3b8a007ad054cd8284e8980ad9da7b8f68470ea1",
+ "current_selected_count": 84,
+ "dwell_total": 5580,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3423972156090258e-08,
+ "last_committed_normalized_gap": -0.640726625919342,
+ "last_committed_score_gap": -2.3940252447118837e-08,
+ "last_cutoff_score_margin": 2.3700144069493945e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6724607476703568e-08,
+ "last_raw_normalized_gap": 0.14170822501182556,
+ "last_raw_score_gap": 2.3700144069493945e-09,
+ "layer_index": 10,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "216e3f9b604a80b03c93cb335979af5b73f71a3d3c7904d52dd926995e66964f",
+ "raw_normalized_churn": 0.05863539445628998,
+ "raw_xor_churn_total": 660,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "97008020d6ffba9c951be9241a18e133f76308e71d98d99af4f18fb8d3f96def",
+ "committed_normalized_churn": 0.005472636815920398,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "97008020d6ffba9c951be9241a18e133f76308e71d98d99af4f18fb8d3f96def",
+ "current_selected_count": 30,
+ "dwell_total": 1999,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.819610914339137e-07,
+ "last_committed_normalized_gap": 0.614456057548523,
+ "last_committed_score_gap": 4.804807076652651e-07,
+ "last_cutoff_score_margin": 4.804807076652651e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.819610914339137e-07,
+ "last_raw_normalized_gap": 0.614456057548523,
+ "last_raw_score_gap": 4.804807076652651e-07,
+ "layer_index": 12,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "97008020d6ffba9c951be9241a18e133f76308e71d98d99af4f18fb8d3f96def",
+ "raw_normalized_churn": 0.030845771144278607,
+ "raw_xor_churn_total": 124,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 46,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "79883b3da757c075afa75866e9f7bddb40ba8061a8756d2d620d5a00a338a03f",
+ "committed_normalized_churn": 0.011073663938372653,
+ "committed_xor_churn_total": 92,
+ "confirmation_two": true,
+ "current_mask_sha256": "79883b3da757c075afa75866e9f7bddb40ba8061a8756d2d620d5a00a338a03f",
+ "current_selected_count": 62,
+ "dwell_total": 4108,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4383227053826886e-08,
+ "last_committed_normalized_gap": 0.20483900606632233,
+ "last_committed_score_gap": 2.946245913904022e-09,
+ "last_cutoff_score_margin": 2.946245913904022e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4383227053826886e-08,
+ "last_raw_normalized_gap": 0.20483900606632233,
+ "last_raw_score_gap": 2.946245913904022e-09,
+ "layer_index": 13,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "79883b3da757c075afa75866e9f7bddb40ba8061a8756d2d620d5a00a338a03f",
+ "raw_normalized_churn": 0.065479056331247,
+ "raw_xor_churn_total": 544,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 18,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "881ed300b5274261500f97f02fa955999c311f088087ef5107ba0305591d644c",
+ "committed_normalized_churn": 0.004975124378109453,
+ "committed_xor_churn_total": 36,
+ "confirmation_two": true,
+ "current_mask_sha256": "881ed300b5274261500f97f02fa955999c311f088087ef5107ba0305591d644c",
+ "current_selected_count": 54,
+ "dwell_total": 3600,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4464533510126785e-08,
+ "last_committed_normalized_gap": -0.08839787542819977,
+ "last_committed_score_gap": -2.3723210063053557e-09,
+ "last_cutoff_score_margin": 2.3723210063053557e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.683685451643214e-08,
+ "last_raw_normalized_gap": 0.08839787542819977,
+ "last_raw_score_gap": 2.3723210063053557e-09,
+ "layer_index": 14,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "85d583ae06afc9a9e58791561822b06824e4bfdc97c480669124628d444ff633",
+ "raw_normalized_churn": 0.0406301824212272,
+ "raw_xor_churn_total": 294,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "848d0673fd56a86524b5180a45df7acd8af0c1e19f6df2d123b0dc542c77b136",
+ "committed_normalized_churn": 0.0009950248756218905,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "848d0673fd56a86524b5180a45df7acd8af0c1e19f6df2d123b0dc542c77b136",
+ "current_selected_count": 45,
+ "dwell_total": 3012,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.112311439210316e-07,
+ "last_committed_normalized_gap": 0.504382848739624,
+ "last_committed_score_gap": 3.0829448860458797e-07,
+ "last_cutoff_score_margin": 3.0829448860458797e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.112311439210316e-07,
+ "last_raw_normalized_gap": 0.504382848739624,
+ "last_raw_score_gap": 3.0829448860458797e-07,
+ "layer_index": 16,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "848d0673fd56a86524b5180a45df7acd8af0c1e19f6df2d123b0dc542c77b136",
+ "raw_normalized_churn": 0.004975124378109453,
+ "raw_xor_churn_total": 30,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "112de2dde592cfc9f117a4c81eb2ef1d3511f577c28311323589cbd2b50983be",
+ "committed_normalized_churn": 0.001658374792703151,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "112de2dde592cfc9f117a4c81eb2ef1d3511f577c28311323589cbd2b50983be",
+ "current_selected_count": 27,
+ "dwell_total": 1806,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6356482319679344e-06,
+ "last_committed_normalized_gap": 0.7139694094657898,
+ "last_committed_score_gap": 1.1678027931338875e-06,
+ "last_cutoff_score_margin": 1.1678027931338875e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6356482319679344e-06,
+ "last_raw_normalized_gap": 0.7139694094657898,
+ "last_raw_score_gap": 1.1678027931338875e-06,
+ "layer_index": 17,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "112de2dde592cfc9f117a4c81eb2ef1d3511f577c28311323589cbd2b50983be",
+ "raw_normalized_churn": 0.004975124378109453,
+ "raw_xor_churn_total": 18,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "current_selected_count": 7,
+ "dwell_total": 469,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.239256617845967e-05,
+ "last_committed_normalized_gap": 0.8238052129745483,
+ "last_committed_score_gap": 5.1399321819189936e-05,
+ "last_cutoff_score_margin": 5.1399321819189936e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.239256617845967e-05,
+ "last_raw_normalized_gap": 0.8238052129745483,
+ "last_raw_score_gap": 5.1399321819189936e-05,
+ "layer_index": 18,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "committed_normalized_churn": 0.001658374792703151,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "current_selected_count": 9,
+ "dwell_total": 602,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5778723536641337e-05,
+ "last_committed_normalized_gap": 0.8158631920814514,
+ "last_committed_score_gap": 1.2873279956693295e-05,
+ "last_cutoff_score_margin": 1.2873279956693295e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5778723536641337e-05,
+ "last_raw_normalized_gap": 0.8158631920814514,
+ "last_raw_score_gap": 1.2873279956693295e-05,
+ "layer_index": 20,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "raw_normalized_churn": 0.014925373134328358,
+ "raw_xor_churn_total": 18,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "current_selected_count": 7,
+ "dwell_total": 469,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.43609723233385e-06,
+ "last_committed_normalized_gap": 0.917253315448761,
+ "last_committed_score_gap": 7.738038220850285e-06,
+ "last_cutoff_score_margin": 7.738038220850285e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.43609723233385e-06,
+ "last_raw_normalized_gap": 0.917253315448761,
+ "last_raw_score_gap": 7.738038220850285e-06,
+ "layer_index": 21,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ff2b6ab440c41ce3aa6bbacc10a579fb5c032a6e65b508fa5908bcf5bddf966b",
+ "committed_normalized_churn": 0.0008141112618724559,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "ff2b6ab440c41ce3aa6bbacc10a579fb5c032a6e65b508fa5908bcf5bddf966b",
+ "current_selected_count": 55,
+ "dwell_total": 3682,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.141056990647485e-07,
+ "last_committed_normalized_gap": 0.5593439936637878,
+ "last_committed_score_gap": 2.316275384828259e-07,
+ "last_cutoff_score_margin": 2.316275384828259e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.141056990647485e-07,
+ "last_raw_normalized_gap": 0.5593439936637878,
+ "last_raw_score_gap": 2.316275384828259e-07,
+ "layer_index": 22,
+ "mask_transition_count": 67,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "ff2b6ab440c41ce3aa6bbacc10a579fb5c032a6e65b508fa5908bcf5bddf966b",
+ "raw_normalized_churn": 0.0035278154681139757,
+ "raw_xor_churn_total": 26,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 68,
+ "tokens_observed": 179
+ }
+ ],
+ "task_id": 884
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 24,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ea61981be3d4b30ef3e4f5173e5ffff853ff6184c9e1b7ba789055f663fe6977",
+ "committed_normalized_churn": 0.002414486921529175,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_mask_sha256": "ea61981be3d4b30ef3e4f5173e5ffff853ff6184c9e1b7ba789055f663fe6977",
+ "current_selected_count": 355,
+ "dwell_total": 9916,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.782077984126886e-10,
+ "last_committed_normalized_gap": -0.9899848699569702,
+ "last_committed_score_gap": -3.7385312623428035e-08,
+ "last_cutoff_score_margin": 1.9178578725131956e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 355,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.806841254392566e-08,
+ "last_raw_normalized_gap": 0.10614423453807831,
+ "last_raw_score_gap": 1.9178578725131956e-09,
+ "layer_index": 0,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "2a0bc93c0a213fad4c5dac98e3d5a7e0f505a9dcbac56894cb8152f3e435d23c",
+ "raw_normalized_churn": 0.018309859154929577,
+ "raw_xor_churn_total": 364,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 152,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "63f4951223781873e86b6378c50ce1984325d7b26ff93bc9c958261c46731a73",
+ "committed_normalized_churn": 0.014285714285714285,
+ "committed_xor_churn_total": 304,
+ "confirmation_two": true,
+ "current_mask_sha256": "63f4951223781873e86b6378c50ce1984325d7b26ff93bc9c958261c46731a73",
+ "current_selected_count": 380,
+ "dwell_total": 10488,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.591034216827055e-11,
+ "last_committed_normalized_gap": -0.9944819211959839,
+ "last_committed_score_gap": -1.7285344711126527e-08,
+ "last_cutoff_score_margin": 4.32542890393961e-12,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 380,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.227211304273169e-09,
+ "last_raw_normalized_gap": 0.0019420828903093934,
+ "last_raw_score_gap": 4.32542890393961e-12,
+ "layer_index": 1,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "683ae2e21b3f574a81622c2edac7f21a8104730c992b67f5499ed69e19c7446f",
+ "raw_normalized_churn": 0.10610902255639097,
+ "raw_xor_churn_total": 2258,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 63,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "543052a1a74d737f8c28f9086bbb6536bd25cfb5b2b96821640356bf7b699c0d",
+ "committed_normalized_churn": 0.008364312267657992,
+ "committed_xor_churn_total": 126,
+ "confirmation_two": true,
+ "current_mask_sha256": "543052a1a74d737f8c28f9086bbb6536bd25cfb5b2b96821640356bf7b699c0d",
+ "current_selected_count": 269,
+ "dwell_total": 7469,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.7787470930084055e-09,
+ "last_committed_normalized_gap": -0.7877312302589417,
+ "last_committed_score_gap": -1.4022961458692862e-08,
+ "last_cutoff_score_margin": 1.574163022155517e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 269,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.013366053522986e-09,
+ "last_raw_normalized_gap": 0.017464762553572655,
+ "last_raw_score_gap": 1.574163022155517e-10,
+ "layer_index": 2,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "f9c2371d43eafddf79c9665b9d2b1037e5121fc569d674d8bb770d3e4e2abf00",
+ "raw_normalized_churn": 0.05934678704195433,
+ "raw_xor_churn_total": 894,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "243d4a3daeccb38bf75c1f91f098fe08fe7e9d861e443c4995c1054a8cdfca79",
+ "committed_normalized_churn": 0.0009976057462090981,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "243d4a3daeccb38bf75c1f91f098fe08fe7e9d861e443c4995c1054a8cdfca79",
+ "current_selected_count": 179,
+ "dwell_total": 5007,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7774794969227514e-07,
+ "last_committed_normalized_gap": 0.1059669479727745,
+ "last_committed_score_gap": 1.88354079000419e-08,
+ "last_cutoff_score_margin": 1.88354079000419e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7774794969227514e-07,
+ "last_raw_normalized_gap": 0.1059669479727745,
+ "last_raw_score_gap": 1.88354079000419e-08,
+ "layer_index": 4,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "243d4a3daeccb38bf75c1f91f098fe08fe7e9d861e443c4995c1054a8cdfca79",
+ "raw_normalized_churn": 0.006983240223463687,
+ "raw_xor_churn_total": 70,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "962dbe3362da998ee72a9ac9e549de01de84f0f61dd1c6f8e29b67776ce5eb78",
+ "committed_normalized_churn": 0.0017374517374517374,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "962dbe3362da998ee72a9ac9e549de01de84f0f61dd1c6f8e29b67776ce5eb78",
+ "current_selected_count": 185,
+ "dwell_total": 5171,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.562714898767808e-08,
+ "last_committed_normalized_gap": -0.29702821373939514,
+ "last_committed_score_gap": -3.195490450025318e-08,
+ "last_cutoff_score_margin": 2.0550984913825232e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.94377273855207e-08,
+ "last_raw_normalized_gap": 0.20667190849781036,
+ "last_raw_score_gap": 2.0550984913825232e-08,
+ "layer_index": 5,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "bc6cfa86bf481c528665909296cd9849f539a767600c0cfe5473fea13fe7a196",
+ "raw_normalized_churn": 0.00945945945945946,
+ "raw_xor_churn_total": 98,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 26,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "149c7b3f05d15f36e2b208aaaf12f10073d38fce4fc246c7294cde8c40615590",
+ "committed_normalized_churn": 0.008843537414965987,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_mask_sha256": "149c7b3f05d15f36e2b208aaaf12f10073d38fce4fc246c7294cde8c40615590",
+ "current_selected_count": 105,
+ "dwell_total": 2914,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4490187655601403e-08,
+ "last_committed_normalized_gap": -0.49587592482566833,
+ "last_committed_score_gap": -2.408949484333789e-08,
+ "last_cutoff_score_margin": 4.9501984733524296e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.367099393220997e-08,
+ "last_raw_normalized_gap": 0.11335209012031555,
+ "last_raw_score_gap": 4.9501984733524296e-09,
+ "layer_index": 6,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "8a894ea8bb99387e2ca855b082273998d1cfe289220ad9ca079e4e81f442330e",
+ "raw_normalized_churn": 0.05714285714285714,
+ "raw_xor_churn_total": 336,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "812dd3b1bc42f7d9c280ecd19c83edcc340fb379780db94a5cc33da31ad84f0a",
+ "committed_normalized_churn": 0.0008928571428571428,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "812dd3b1bc42f7d9c280ecd19c83edcc340fb379780db94a5cc33da31ad84f0a",
+ "current_selected_count": 80,
+ "dwell_total": 2238,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.296697728837898e-08,
+ "last_committed_normalized_gap": 0.11275680363178253,
+ "last_committed_score_gap": 9.35509092414577e-09,
+ "last_cutoff_score_margin": 9.35509092414577e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.296697728837898e-08,
+ "last_raw_normalized_gap": 0.11275680363178253,
+ "last_raw_score_gap": 9.35509092414577e-09,
+ "layer_index": 8,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "812dd3b1bc42f7d9c280ecd19c83edcc340fb379780db94a5cc33da31ad84f0a",
+ "raw_normalized_churn": 0.011160714285714286,
+ "raw_xor_churn_total": 50,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8ba7ab6136a5fbc6da3f5b079e022a84fa1c1a39056a532345ae8433d34d24e5",
+ "committed_normalized_churn": 0.004152823920265781,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "8ba7ab6136a5fbc6da3f5b079e022a84fa1c1a39056a532345ae8433d34d24e5",
+ "current_selected_count": 43,
+ "dwell_total": 1199,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.612585679022231e-08,
+ "last_committed_normalized_gap": 0.5715174674987793,
+ "last_committed_score_gap": 3.779208412879598e-08,
+ "last_cutoff_score_margin": 3.779208412879598e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.612585679022231e-08,
+ "last_raw_normalized_gap": 0.5715174674987793,
+ "last_raw_score_gap": 3.779208412879598e-08,
+ "layer_index": 9,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "8ba7ab6136a5fbc6da3f5b079e022a84fa1c1a39056a532345ae8433d34d24e5",
+ "raw_normalized_churn": 0.020764119601328904,
+ "raw_xor_churn_total": 50,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a14f50937d0c26fd8ec7b01c4a9553731fcca7da8413dca565af8f6762557488",
+ "committed_normalized_churn": 0.013180272108843538,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "a14f50937d0c26fd8ec7b01c4a9553731fcca7da8413dca565af8f6762557488",
+ "current_selected_count": 84,
+ "dwell_total": 2321,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.107114091160383e-09,
+ "last_committed_normalized_gap": -0.8112906217575073,
+ "last_committed_score_gap": -3.485373056832941e-08,
+ "last_cutoff_score_margin": 1.8971491044794675e-11,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5802150699073536e-08,
+ "last_raw_normalized_gap": 0.0012005638564005494,
+ "last_raw_score_gap": 1.8971491044794675e-11,
+ "layer_index": 10,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "13bcaae7dcc19314715731bc12067963e82f07990013d3cd5bfb60d7d5cdc181",
+ "raw_normalized_churn": 0.0820578231292517,
+ "raw_xor_churn_total": 386,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "29440d8e4a33b9d2697a28a1dec79697a3c6787ffebecf14d9d4d493804d41de",
+ "committed_normalized_churn": 0.002380952380952381,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "29440d8e4a33b9d2697a28a1dec79697a3c6787ffebecf14d9d4d493804d41de",
+ "current_selected_count": 30,
+ "dwell_total": 838,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.8546232872249675e-07,
+ "last_committed_normalized_gap": -0.6743587255477905,
+ "last_committed_score_gap": -7.982400234141096e-07,
+ "last_cutoff_score_margin": 1.808554657145578e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.021288297437422e-07,
+ "last_raw_normalized_gap": 0.25758159160614014,
+ "last_raw_score_gap": 1.808554657145578e-07,
+ "layer_index": 12,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "1701a2b11bb4626a79076f4799fc3cef0044498b7912116d457b35ce156e3768",
+ "raw_normalized_churn": 0.0380952380952381,
+ "raw_xor_churn_total": 64,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 22,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bea916a100ae8a94cdf076ef4dc231d5f33aa01a57390350189a490053c906bf",
+ "committed_normalized_churn": 0.012672811059907835,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_mask_sha256": "bea916a100ae8a94cdf076ef4dc231d5f33aa01a57390350189a490053c906bf",
+ "current_selected_count": 62,
+ "dwell_total": 1714,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.9173834076013918e-08,
+ "last_committed_normalized_gap": -0.3278263807296753,
+ "last_committed_score_gap": -9.351287744152614e-09,
+ "last_cutoff_score_margin": 5.363567368021904e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.297525192318517e-08,
+ "last_raw_normalized_gap": 0.02334497682750225,
+ "last_raw_score_gap": 5.363567368021904e-10,
+ "layer_index": 13,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "23942a17c2a4306d3fd092e01a142b9b584bf464d2ca8b1e1322e2304c539197",
+ "raw_normalized_churn": 0.07258064516129033,
+ "raw_xor_churn_total": 252,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d1eb3b9d0406924375c3b9dc4af150272b7f3aea0fd7e5bbdfc445999dd32e83",
+ "committed_normalized_churn": 0.005291005291005291,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "d1eb3b9d0406924375c3b9dc4af150272b7f3aea0fd7e5bbdfc445999dd32e83",
+ "current_selected_count": 54,
+ "dwell_total": 1504,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.9231956350249675e-08,
+ "last_committed_normalized_gap": 0.10892350226640701,
+ "last_committed_score_gap": 4.273282172562176e-09,
+ "last_cutoff_score_margin": 4.273282172562176e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.9231956350249675e-08,
+ "last_raw_normalized_gap": 0.10892350226640701,
+ "last_raw_score_gap": 4.273282172562176e-09,
+ "layer_index": 14,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d1eb3b9d0406924375c3b9dc4af150272b7f3aea0fd7e5bbdfc445999dd32e83",
+ "raw_normalized_churn": 0.062169312169312166,
+ "raw_xor_churn_total": 188,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "289485ac341764aa15544ab31d009f3609e2acb14192c86ce823985cf4a78437",
+ "committed_normalized_churn": 0.0007936507936507937,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "289485ac341764aa15544ab31d009f3609e2acb14192c86ce823985cf4a78437",
+ "current_selected_count": 45,
+ "dwell_total": 1259,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0845250219281297e-06,
+ "last_committed_normalized_gap": 0.7762221097946167,
+ "last_committed_score_gap": 1.6180543980226503e-06,
+ "last_cutoff_score_margin": 1.6180543980226503e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0845250219281297e-06,
+ "last_raw_normalized_gap": 0.7762221097946167,
+ "last_raw_score_gap": 1.6180543980226503e-06,
+ "layer_index": 16,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "289485ac341764aa15544ab31d009f3609e2acb14192c86ce823985cf4a78437",
+ "raw_normalized_churn": 0.00873015873015873,
+ "raw_xor_churn_total": 22,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "committed_normalized_churn": 0.0013227513227513227,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "current_selected_count": 27,
+ "dwell_total": 755,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.98632585327141e-06,
+ "last_committed_normalized_gap": 0.8695526719093323,
+ "last_committed_score_gap": 2.5967676720028976e-06,
+ "last_cutoff_score_margin": 2.5967676720028976e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.98632585327141e-06,
+ "last_raw_normalized_gap": 0.8695526719093323,
+ "last_raw_score_gap": 2.5967676720028976e-06,
+ "layer_index": 17,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "raw_normalized_churn": 0.0013227513227513227,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5529145204927772e-05,
+ "last_committed_normalized_gap": 0.7348328828811646,
+ "last_committed_score_gap": 1.8759656086331233e-05,
+ "last_cutoff_score_margin": 1.8759656086331233e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5529145204927772e-05,
+ "last_raw_normalized_gap": 0.7348328828811646,
+ "last_raw_score_gap": 1.8759656086331233e-05,
+ "layer_index": 18,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "current_selected_count": 9,
+ "dwell_total": 252,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.93996854958823e-06,
+ "last_committed_normalized_gap": 0.7609079480171204,
+ "last_committed_score_gap": 7.5634011409420054e-06,
+ "last_cutoff_score_margin": 7.5634011409420054e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.93996854958823e-06,
+ "last_raw_normalized_gap": 0.7609079480171204,
+ "last_raw_score_gap": 7.5634011409420054e-06,
+ "layer_index": 20,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "current_selected_count": 7,
+ "dwell_total": 196,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0381436368334107e-05,
+ "last_committed_normalized_gap": 0.7520419359207153,
+ "last_committed_score_gap": 7.807275324012153e-06,
+ "last_cutoff_score_margin": 7.807275324012153e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0381436368334107e-05,
+ "last_raw_normalized_gap": 0.7520419359207153,
+ "last_raw_score_gap": 7.807275324012153e-06,
+ "layer_index": 21,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "02b468383d901239efd9186ce76abce1d374f1113d9c952cd46610a625f4edbc",
+ "committed_normalized_churn": 0.0006493506493506494,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "02b468383d901239efd9186ce76abce1d374f1113d9c952cd46610a625f4edbc",
+ "current_selected_count": 55,
+ "dwell_total": 1539,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.169327662064461e-07,
+ "last_committed_normalized_gap": 0.4962574541568756,
+ "last_committed_score_gap": 3.061574886942253e-07,
+ "last_cutoff_score_margin": 3.061574886942253e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.169327662064461e-07,
+ "last_raw_normalized_gap": 0.4962574541568756,
+ "last_raw_score_gap": 3.061574886942253e-07,
+ "layer_index": 22,
+ "mask_transition_count": 28,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "02b468383d901239efd9186ce76abce1d374f1113d9c952cd46610a625f4edbc",
+ "raw_normalized_churn": 0.005194805194805195,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 29,
+ "tokens_observed": 167
+ }
+ ],
+ "task_id": 878
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 148,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "440331e682b0881029b949438a0e9c1bcf45d478ca0f5b10769d0f371fa4b011",
+ "committed_normalized_churn": 0.003182453499623696,
+ "committed_xor_churn_total": 296,
+ "confirmation_two": true,
+ "current_mask_sha256": "440331e682b0881029b949438a0e9c1bcf45d478ca0f5b10769d0f371fa4b011",
+ "current_selected_count": 355,
+ "dwell_total": 46357,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2779318431531692e-09,
+ "last_committed_normalized_gap": -0.9986295104026794,
+ "last_committed_score_gap": -1.6598364709352609e-06,
+ "last_cutoff_score_margin": 3.189812858295227e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2547065608714547e-08,
+ "last_raw_normalized_gap": 0.025422779843211174,
+ "last_raw_score_gap": 3.189812858295227e-10,
+ "layer_index": 0,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "560931505f973b77b130596b22b4e6809104c4504d1a7baf325238732cde7a87",
+ "raw_normalized_churn": 0.030813890979464572,
+ "raw_xor_churn_total": 2866,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 795,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "165d7585e6449405434460663eb86b0042e43e23922c959bc20e29788a69af63",
+ "committed_normalized_churn": 0.01597026918441141,
+ "committed_xor_churn_total": 1590,
+ "confirmation_two": true,
+ "current_mask_sha256": "165d7585e6449405434460663eb86b0042e43e23922c959bc20e29788a69af63",
+ "current_selected_count": 380,
+ "dwell_total": 48985,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.601855437853409e-11,
+ "last_committed_normalized_gap": -0.9939656853675842,
+ "last_committed_score_gap": -9.227308694903513e-09,
+ "last_cutoff_score_margin": 5.112177348109981e-11,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 379,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.759404147516079e-10,
+ "last_raw_normalized_gap": 0.07563059031963348,
+ "last_raw_score_gap": 5.112177348109981e-11,
+ "layer_index": 1,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "06c3b3ed15c23c69050e0d0c937b81c0fe75aff6d250cfa350e616fc8946441a",
+ "raw_normalized_churn": 0.15052229811169143,
+ "raw_xor_churn_total": 14986,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 299,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6595b8c268391d5204107174635b78d148cbfd65dc68b8a442204eb4ee98acfe",
+ "committed_normalized_churn": 0.00848491727915094,
+ "committed_xor_churn_total": 598,
+ "confirmation_two": true,
+ "current_mask_sha256": "6595b8c268391d5204107174635b78d148cbfd65dc68b8a442204eb4ee98acfe",
+ "current_selected_count": 269,
+ "dwell_total": 34940,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0989914533965361e-10,
+ "last_committed_normalized_gap": -0.9948010444641113,
+ "last_committed_score_gap": -2.102885687804701e-08,
+ "last_cutoff_score_margin": 3.815125992900903e-11,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 269,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.027246009423834e-09,
+ "last_raw_normalized_gap": 0.012602629140019417,
+ "last_raw_score_gap": 3.815125992900903e-11,
+ "layer_index": 2,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "d963c33603a073fe966ae885b17b22a7fbf78d4e8ba1adad68251f35c79a17f5",
+ "raw_normalized_churn": 0.07537103777065184,
+ "raw_xor_churn_total": 5312,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "43deb0eb554639e0617859c85871e848863d0126b14e47a970ca4a5e5990d991",
+ "committed_normalized_churn": 0.0013220179965030491,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "43deb0eb554639e0617859c85871e848863d0126b14e47a970ca4a5e5990d991",
+ "current_selected_count": 179,
+ "dwell_total": 23418,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1869142585728696e-07,
+ "last_committed_normalized_gap": 0.4978652000427246,
+ "last_committed_score_gap": 1.088788508241123e-07,
+ "last_cutoff_score_margin": 1.088788508241123e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1869142585728696e-07,
+ "last_raw_normalized_gap": 0.4978652000427246,
+ "last_raw_score_gap": 1.088788508241123e-07,
+ "layer_index": 4,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "43deb0eb554639e0617859c85871e848863d0126b14e47a970ca4a5e5990d991",
+ "raw_normalized_churn": 0.01411574054330675,
+ "raw_xor_churn_total": 662,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 33,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "923c0702103efd6b6a75f2e5aaacb697cfbe6226c1276ea31798c7d592281578",
+ "committed_normalized_churn": 0.0013616670105219724,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_mask_sha256": "923c0702103efd6b6a75f2e5aaacb697cfbe6226c1276ea31798c7d592281578",
+ "current_selected_count": 185,
+ "dwell_total": 24202,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.97430852672187e-08,
+ "last_committed_normalized_gap": 0.2650887370109558,
+ "last_committed_score_gap": 1.0535444516790449e-08,
+ "last_cutoff_score_margin": 1.0535444516790449e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.97430852672187e-08,
+ "last_raw_normalized_gap": 0.2650887370109558,
+ "last_raw_score_gap": 1.0535444516790449e-08,
+ "layer_index": 5,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "923c0702103efd6b6a75f2e5aaacb697cfbe6226c1276ea31798c7d592281578",
+ "raw_normalized_churn": 0.012585104188157623,
+ "raw_xor_churn_total": 610,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 142,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9d554b44b15dba4ba3a75e96b752798b16091c1efbef75d15056a21b8c1f7c5d",
+ "committed_normalized_churn": 0.010323518720465285,
+ "committed_xor_churn_total": 284,
+ "confirmation_two": true,
+ "current_mask_sha256": "9d554b44b15dba4ba3a75e96b752798b16091c1efbef75d15056a21b8c1f7c5d",
+ "current_selected_count": 105,
+ "dwell_total": 13613,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1440732805567677e-08,
+ "last_committed_normalized_gap": -0.2050294131040573,
+ "last_committed_score_gap": -2.9506583842930922e-09,
+ "last_cutoff_score_margin": 4.261551111994777e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2098412938144065e-08,
+ "last_raw_normalized_gap": 0.03522405028343201,
+ "last_raw_score_gap": 4.261551111994777e-10,
+ "layer_index": 6,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "aa54f91bb01566b72d1dada68c56150823ace39f65b33650bce0caf2e2af7347",
+ "raw_normalized_churn": 0.06317702653580516,
+ "raw_xor_churn_total": 1738,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 20,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "eaf8e946ef242ef060a3e8e14bd319bdc9382e40d35ee431fffd15c52958375b",
+ "committed_normalized_churn": 0.0019083969465648854,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_mask_sha256": "eaf8e946ef242ef060a3e8e14bd319bdc9382e40d35ee431fffd15c52958375b",
+ "current_selected_count": 80,
+ "dwell_total": 10460,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3753850680586766e-07,
+ "last_committed_normalized_gap": 0.458806574344635,
+ "last_committed_score_gap": 6.310357036909409e-08,
+ "last_cutoff_score_margin": 6.310357036909409e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3753850680586766e-07,
+ "last_raw_normalized_gap": 0.458806574344635,
+ "last_raw_score_gap": 6.310357036909409e-08,
+ "layer_index": 8,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "eaf8e946ef242ef060a3e8e14bd319bdc9382e40d35ee431fffd15c52958375b",
+ "raw_normalized_churn": 0.014026717557251909,
+ "raw_xor_churn_total": 294,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 22,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ae8771f94b3a93f58998435d53d2697745f90ee0b49efae49ed59e747bc08c5d",
+ "committed_normalized_churn": 0.0039055565418072077,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_mask_sha256": "ae8771f94b3a93f58998435d53d2697745f90ee0b49efae49ed59e747bc08c5d",
+ "current_selected_count": 43,
+ "dwell_total": 5611,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.3242450570014626e-08,
+ "last_committed_normalized_gap": 0.44051432609558105,
+ "last_committed_score_gap": 1.4643775969602757e-08,
+ "last_cutoff_score_margin": 1.4643775969602757e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.3242450570014626e-08,
+ "last_raw_normalized_gap": 0.44051432609558105,
+ "last_raw_score_gap": 1.4643775969602757e-08,
+ "layer_index": 9,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "ae8771f94b3a93f58998435d53d2697745f90ee0b49efae49ed59e747bc08c5d",
+ "raw_normalized_churn": 0.028226522279424817,
+ "raw_xor_churn_total": 318,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 75,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ffe3c7ba4f5d838ded6dc80e6e66c88cca3c10a000a62644cd723ce2cce10141",
+ "committed_normalized_churn": 0.006815703380588877,
+ "committed_xor_churn_total": 150,
+ "confirmation_two": true,
+ "current_mask_sha256": "ffe3c7ba4f5d838ded6dc80e6e66c88cca3c10a000a62644cd723ce2cce10141",
+ "current_selected_count": 84,
+ "dwell_total": 10929,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.867382383925815e-09,
+ "last_committed_normalized_gap": -0.19518505036830902,
+ "last_committed_score_gap": -2.150532196765198e-09,
+ "last_cutoff_score_margin": 1.2185008557707988e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.16150444396635e-09,
+ "last_raw_normalized_gap": 0.013300227001309395,
+ "last_raw_score_gap": 1.2185008557707988e-10,
+ "layer_index": 10,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "11dbdba9bcc9559396fb096e9fcac4986f7fa5f816b35b376d7fbd2c569fb050",
+ "raw_normalized_churn": 0.06397673573246092,
+ "raw_xor_churn_total": 1408,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 14,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2618ea7ed462ee057cef2705f21376ba659a37c5fa309ac00942238786b1095d",
+ "committed_normalized_churn": 0.0035623409669211198,
+ "committed_xor_churn_total": 28,
+ "confirmation_two": true,
+ "current_mask_sha256": "2618ea7ed462ee057cef2705f21376ba659a37c5fa309ac00942238786b1095d",
+ "current_selected_count": 30,
+ "dwell_total": 3916,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.38725520427397e-07,
+ "last_committed_normalized_gap": -0.08279305696487427,
+ "last_committed_score_gap": -8.473546131426701e-08,
+ "last_cutoff_score_margin": 8.473546131426701e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.023460981741664e-06,
+ "last_raw_normalized_gap": 0.08279305696487427,
+ "last_raw_score_gap": 8.473546131426701e-08,
+ "layer_index": 12,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "e38545b688f62e0380dec46d47521d46093fd3af78b36b7144815cc22561bf05",
+ "raw_normalized_churn": 0.031806615776081425,
+ "raw_xor_churn_total": 250,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 87,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "50f71b372ca82c665cd352e898d40d3793e44233d14f3cdd49b6ba20e1f9e594",
+ "committed_normalized_churn": 0.010711647377493229,
+ "committed_xor_churn_total": 174,
+ "confirmation_two": true,
+ "current_mask_sha256": "50f71b372ca82c665cd352e898d40d3793e44233d14f3cdd49b6ba20e1f9e594",
+ "current_selected_count": 62,
+ "dwell_total": 8035,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.803971372282831e-08,
+ "last_committed_normalized_gap": -0.05010532587766647,
+ "last_committed_score_gap": -9.515641608004444e-10,
+ "last_cutoff_score_margin": 9.515641608004444e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8991277883628754e-08,
+ "last_raw_normalized_gap": 0.05010532587766647,
+ "last_raw_score_gap": 9.515641608004444e-10,
+ "layer_index": 13,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b6c56ad5635202862cf0ed181c6866c349926860c92667cfa79a7281977d0b0d",
+ "raw_normalized_churn": 0.07867520315193302,
+ "raw_xor_churn_total": 1278,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 28,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fe1d9d4c0b26fbc5ac6c1c576e82ea3d776bbe6c873da281538076337642fdf3",
+ "committed_normalized_churn": 0.003958156629912355,
+ "committed_xor_churn_total": 56,
+ "confirmation_two": true,
+ "current_mask_sha256": "fe1d9d4c0b26fbc5ac6c1c576e82ea3d776bbe6c873da281538076337642fdf3",
+ "current_selected_count": 54,
+ "dwell_total": 7046,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.9674121887192086e-08,
+ "last_committed_normalized_gap": 0.019366629421710968,
+ "last_committed_score_gap": 3.810214366239961e-10,
+ "last_cutoff_score_margin": 3.810214366239961e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9674121887192086e-08,
+ "last_raw_normalized_gap": 0.019366629421710968,
+ "last_raw_score_gap": 3.810214366239961e-10,
+ "layer_index": 14,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "fe1d9d4c0b26fbc5ac6c1c576e82ea3d776bbe6c873da281538076337642fdf3",
+ "raw_normalized_churn": 0.03958156629912355,
+ "raw_xor_churn_total": 560,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 12,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5322c985c56af1e7657757452b31ff0f06a0b0ca18b0126cb8415e6929856d96",
+ "committed_normalized_churn": 0.002035623409669211,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_mask_sha256": "5322c985c56af1e7657757452b31ff0f06a0b0ca18b0126cb8415e6929856d96",
+ "current_selected_count": 45,
+ "dwell_total": 5883,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5329983682477177e-07,
+ "last_committed_normalized_gap": -0.7348368763923645,
+ "last_committed_score_gap": -4.2483418383199023e-07,
+ "last_cutoff_score_margin": 2.9478798069249024e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2204016520154255e-07,
+ "last_raw_normalized_gap": 0.09153764694929123,
+ "last_raw_score_gap": 2.9478798069249024e-08,
+ "layer_index": 16,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "c0c859a889cd99128f8c59378fa2131d80123f363e1633a36424fbd29f8a8c2f",
+ "raw_normalized_churn": 0.02357930449533503,
+ "raw_xor_churn_total": 278,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 17,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cbbb0538d11f6e697e25ed90878691fed17bff929e78c244bc325076b90648cf",
+ "committed_normalized_churn": 0.004806333050607859,
+ "committed_xor_churn_total": 34,
+ "confirmation_two": true,
+ "current_mask_sha256": "cbbb0538d11f6e697e25ed90878691fed17bff929e78c244bc325076b90648cf",
+ "current_selected_count": 27,
+ "dwell_total": 3520,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.222648165821738e-06,
+ "last_committed_normalized_gap": 0.41018977761268616,
+ "last_committed_score_gap": 5.015177748646238e-07,
+ "last_cutoff_score_margin": 5.015177748646238e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.222648165821738e-06,
+ "last_raw_normalized_gap": 0.41018977761268616,
+ "last_raw_score_gap": 5.015177748646238e-07,
+ "layer_index": 17,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "cbbb0538d11f6e697e25ed90878691fed17bff929e78c244bc325076b90648cf",
+ "raw_normalized_churn": 0.02374893977947413,
+ "raw_xor_churn_total": 168,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "committed_normalized_churn": 0.0010905125408942203,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "current_selected_count": 7,
+ "dwell_total": 916,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.162924157455564e-05,
+ "last_committed_normalized_gap": 0.7384529113769531,
+ "last_committed_score_gap": 5.28948221472092e-05,
+ "last_cutoff_score_margin": 5.28948221472092e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.162924157455564e-05,
+ "last_raw_normalized_gap": 0.7384529113769531,
+ "last_raw_score_gap": 5.28948221472092e-05,
+ "layer_index": 18,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "raw_normalized_churn": 0.003271537622682661,
+ "raw_xor_churn_total": 6,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "committed_normalized_churn": 0.0016963528413910093,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "current_selected_count": 9,
+ "dwell_total": 1177,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.1163024434354156e-05,
+ "last_committed_normalized_gap": 0.9112750887870789,
+ "last_committed_score_gap": 3.751083932002075e-05,
+ "last_cutoff_score_margin": 3.751083932002075e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.1163024434354156e-05,
+ "last_raw_normalized_gap": 0.9112750887870789,
+ "last_raw_score_gap": 3.751083932002075e-05,
+ "layer_index": 20,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "raw_normalized_churn": 0.03816793893129771,
+ "raw_xor_churn_total": 90,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2f03fe4f24575e56d08a917de737dd56d874031ac12b95d53d5d26b011e3117f",
+ "committed_normalized_churn": 0.0021810250817884407,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "2f03fe4f24575e56d08a917de737dd56d874031ac12b95d53d5d26b011e3117f",
+ "current_selected_count": 7,
+ "dwell_total": 915,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.631686791370157e-05,
+ "last_committed_normalized_gap": 0.955549955368042,
+ "last_committed_score_gap": 1.5591582268825732e-05,
+ "last_cutoff_score_margin": 1.5591582268825732e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.631686791370157e-05,
+ "last_raw_normalized_gap": 0.955549955368042,
+ "last_raw_score_gap": 1.5591582268825732e-05,
+ "layer_index": 21,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "2f03fe4f24575e56d08a917de737dd56d874031ac12b95d53d5d26b011e3117f",
+ "raw_normalized_churn": 0.0054525627044711015,
+ "raw_xor_churn_total": 10,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ce230197965ce3dec0f1c00bf43a117b945d11b0215261a814dd734c7b9d63c9",
+ "committed_normalized_churn": 0.0013879250520471894,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "ce230197965ce3dec0f1c00bf43a117b945d11b0215261a814dd734c7b9d63c9",
+ "current_selected_count": 55,
+ "dwell_total": 7195,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0192359784232394e-07,
+ "last_committed_normalized_gap": 0.5494354367256165,
+ "last_committed_score_gap": 1.1094397933675282e-07,
+ "last_cutoff_score_margin": 1.1094397933675282e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0192359784232394e-07,
+ "last_raw_normalized_gap": 0.5494354367256165,
+ "last_raw_score_gap": 1.1094397933675282e-07,
+ "layer_index": 22,
+ "mask_transition_count": 131,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "ce230197965ce3dec0f1c00bf43a117b945d11b0215261a814dd734c7b9d63c9",
+ "raw_normalized_churn": 0.014295628036086052,
+ "raw_xor_churn_total": 206,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 132,
+ "tokens_observed": 202
+ }
+ ],
+ "task_id": 822
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 72,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "66a6e9ce605e91e00ce29e6b6922e075b2798bfa5e8a73df677fa142991c28de",
+ "committed_normalized_churn": 0.0032193158953722333,
+ "committed_xor_churn_total": 144,
+ "confirmation_two": true,
+ "current_mask_sha256": "66a6e9ce605e91e00ce29e6b6922e075b2798bfa5e8a73df677fa142991c28de",
+ "current_selected_count": 355,
+ "dwell_total": 22293,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6775419942050007e-09,
+ "last_committed_normalized_gap": -0.9496857523918152,
+ "last_committed_score_gap": -3.166372408713869e-08,
+ "last_cutoff_score_margin": 1.2546319538842e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 355,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2653798009409911e-08,
+ "last_raw_normalized_gap": 0.009915062226355076,
+ "last_raw_score_gap": 1.2546319538842e-10,
+ "layer_index": 0,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "17abb137c91ecade3eb6164d8ff91b9a94b11111f9ff3b9a5aeba06a8a6f6238",
+ "raw_normalized_churn": 0.02629107981220657,
+ "raw_xor_churn_total": 1176,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 439,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e305a9c2e23abcf343581fbc10241acc00b7148e0461f9c436e2c15534714a8e",
+ "committed_normalized_churn": 0.0183375104427736,
+ "committed_xor_churn_total": 878,
+ "confirmation_two": true,
+ "current_mask_sha256": "e305a9c2e23abcf343581fbc10241acc00b7148e0461f9c436e2c15534714a8e",
+ "current_selected_count": 380,
+ "dwell_total": 23501,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4423628957871415e-09,
+ "last_committed_normalized_gap": -0.9663209915161133,
+ "last_committed_score_gap": -4.138439635426039e-08,
+ "last_cutoff_score_margin": 3.3217872896784684e-13,
+ "last_mask_churn": 22,
+ "last_mask_overlap": 369,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.627049993681908e-09,
+ "last_raw_normalized_gap": 9.158372267847881e-05,
+ "last_raw_score_gap": 3.3217872896784684e-13,
+ "layer_index": 1,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "46c01fbc79bd0d2d4e3756a41cd8627a8fe56e1e68e1e065791b61095de45a9c",
+ "raw_normalized_churn": 0.12573099415204678,
+ "raw_xor_churn_total": 6020,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 113,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4f79684f96f5ff060a1af5f4d1bd4650406a04ad5e73b3078aaa7ee625aa2014",
+ "committed_normalized_churn": 0.0066678468165457016,
+ "committed_xor_churn_total": 226,
+ "confirmation_two": true,
+ "current_mask_sha256": "4f79684f96f5ff060a1af5f4d1bd4650406a04ad5e73b3078aaa7ee625aa2014",
+ "current_selected_count": 269,
+ "dwell_total": 16834,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.976428963881062e-09,
+ "last_committed_normalized_gap": -0.9301413297653198,
+ "last_committed_score_gap": -5.294459270999141e-08,
+ "last_cutoff_score_margin": 3.141984450394375e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 267,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3296491907510699e-08,
+ "last_raw_normalized_gap": 0.02363017573952675,
+ "last_raw_score_gap": 3.141984450394375e-10,
+ "layer_index": 2,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "69183bce4522e14ae7cd05677053fcf8d41910b14ad203241005bba7a906c721",
+ "raw_normalized_churn": 0.06396412344367734,
+ "raw_xor_churn_total": 2168,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "692501147a610b0286acff95c23b9ab067f6b0b6d015fbfde940e322df92e82f",
+ "committed_normalized_churn": 0.0005320563979781857,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "692501147a610b0286acff95c23b9ab067f6b0b6d015fbfde940e322df92e82f",
+ "current_selected_count": 179,
+ "dwell_total": 11271,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0702631786662096e-07,
+ "last_committed_normalized_gap": -0.6691491007804871,
+ "last_committed_score_gap": -4.1871274447657925e-07,
+ "last_cutoff_score_margin": 2.7279156711301766e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.706053976453404e-07,
+ "last_raw_normalized_gap": 0.0010080788051709533,
+ "last_raw_score_gap": 2.7279156711301766e-10,
+ "layer_index": 4,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "19a1590db2cffdc7df965f9983acf97d68f90d5b6a51d7d7a7e8fe76c4c93903",
+ "raw_normalized_churn": 0.012059945020838875,
+ "raw_xor_churn_total": 272,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 13,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1160c188949f06f35348b6a8241dbdfcf76f1b3f3bc29277e6e15b69f912376b",
+ "committed_normalized_churn": 0.0011154011154011153,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_mask_sha256": "1160c188949f06f35348b6a8241dbdfcf76f1b3f3bc29277e6e15b69f912376b",
+ "current_selected_count": 185,
+ "dwell_total": 11642,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.509687094398032e-08,
+ "last_committed_normalized_gap": 0.0476752407848835,
+ "last_committed_score_gap": 3.58026142066592e-09,
+ "last_cutoff_score_margin": 3.58026142066592e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 183,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.509687094398032e-08,
+ "last_raw_normalized_gap": 0.0476752407848835,
+ "last_raw_score_gap": 3.58026142066592e-09,
+ "layer_index": 5,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "1160c188949f06f35348b6a8241dbdfcf76f1b3f3bc29277e6e15b69f912376b",
+ "raw_normalized_churn": 0.009952809952809952,
+ "raw_xor_churn_total": 232,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 38,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0545ef5d320f4c48040604224a77a226161fd0f349f8be24c0dd967afcc2eaf3",
+ "committed_normalized_churn": 0.005744520030234316,
+ "committed_xor_churn_total": 76,
+ "confirmation_two": true,
+ "current_mask_sha256": "0545ef5d320f4c48040604224a77a226161fd0f349f8be24c0dd967afcc2eaf3",
+ "current_selected_count": 105,
+ "dwell_total": 6577,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0112188419952872e-08,
+ "last_committed_normalized_gap": -0.8426657915115356,
+ "last_committed_score_gap": -5.4159848161816626e-08,
+ "last_cutoff_score_margin": 2.4375346185934177e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.846790974648684e-08,
+ "last_raw_normalized_gap": 0.0633653998374939,
+ "last_raw_score_gap": 2.4375346185934177e-09,
+ "layer_index": 6,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "5a16c914c20f1e64f6c21f4cd264f8c1cdc557afb4689989656aac68469c0341",
+ "raw_normalized_churn": 0.053514739229024944,
+ "raw_xor_churn_total": 708,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4fc32e67be3442032089dfe9baff027d5320a7f7b5ae7951e5a4b969c8b9f4da",
+ "committed_normalized_churn": 0.001388888888888889,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "4fc32e67be3442032089dfe9baff027d5320a7f7b5ae7951e5a4b969c8b9f4da",
+ "current_selected_count": 80,
+ "dwell_total": 5033,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.006930502484465e-08,
+ "last_committed_normalized_gap": -0.6595281958580017,
+ "last_committed_score_gap": -1.3573131241173542e-07,
+ "last_cutoff_score_margin": 3.2420786055809003e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2473483934627438e-07,
+ "last_raw_normalized_gap": 0.025991763919591904,
+ "last_raw_score_gap": 3.2420786055809003e-09,
+ "layer_index": 8,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "c2702f3365cbe92db92b1add999214b7b2fbba65d88eb732172c3e9191be00f1",
+ "raw_normalized_churn": 0.011507936507936509,
+ "raw_xor_churn_total": 116,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9e4785f003c79e0f8cc567dbe8ef8a44cfaa74178b7169ec0262263d0a8c5fd6",
+ "committed_normalized_churn": 0.0018456995201181247,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "9e4785f003c79e0f8cc567dbe8ef8a44cfaa74178b7169ec0262263d0a8c5fd6",
+ "current_selected_count": 43,
+ "dwell_total": 2704,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.322671122101383e-08,
+ "last_committed_normalized_gap": -0.4725608229637146,
+ "last_committed_score_gap": -2.0810045242569686e-08,
+ "last_cutoff_score_margin": 8.114668048619933e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.4036756463583515e-08,
+ "last_raw_normalized_gap": 0.18427033722400665,
+ "last_raw_score_gap": 8.114668048619933e-09,
+ "layer_index": 9,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "12236eee8853d1d64cd31db03ad93e40366283a9c215cea17bc27e6551d2dccd",
+ "raw_normalized_churn": 0.019933554817275746,
+ "raw_xor_churn_total": 108,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 32,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8f7923ab64cfe094474b561ed650f584a74e8793c2d0d7698cf18b2ed0fa00f5",
+ "committed_normalized_churn": 0.006046863189720333,
+ "committed_xor_churn_total": 64,
+ "confirmation_two": true,
+ "current_mask_sha256": "8f7923ab64cfe094474b561ed650f584a74e8793c2d0d7698cf18b2ed0fa00f5",
+ "current_selected_count": 84,
+ "dwell_total": 5260,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.130044916119459e-09,
+ "last_committed_normalized_gap": -0.7990303635597229,
+ "last_committed_score_gap": -2.4372294404884087e-08,
+ "last_cutoff_score_margin": 4.525464447624472e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7250011197234016e-08,
+ "last_raw_normalized_gap": 0.02623455971479416,
+ "last_raw_score_gap": 4.525464447624472e-10,
+ "layer_index": 10,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "db9b82d2fd0cc44128ec2b5659209168f7eff61084c9dab0407ec4b6bb529aaf",
+ "raw_normalized_churn": 0.0691609977324263,
+ "raw_xor_churn_total": 732,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3c5fee2683fc2223a4c1b50b90b23e4f60f043240645e5c926be0079a9aef3e2",
+ "committed_normalized_churn": 0.0031746031746031746,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "3c5fee2683fc2223a4c1b50b90b23e4f60f043240645e5c926be0079a9aef3e2",
+ "current_selected_count": 30,
+ "dwell_total": 1884,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.370101684500696e-07,
+ "last_committed_normalized_gap": -0.6765431761741638,
+ "last_committed_score_gap": -1.5415323559864191e-06,
+ "last_cutoff_score_margin": 1.6900651189644122e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.060590989254706e-06,
+ "last_raw_normalized_gap": 0.15935125946998596,
+ "last_raw_score_gap": 1.6900651189644122e-07,
+ "layer_index": 12,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "eb23df2129487c3d153240268e9ecfd0717a1c2a3be2c8f89803930c0b136c20",
+ "raw_normalized_churn": 0.02328042328042328,
+ "raw_xor_churn_total": 88,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 44,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c464e2cdf51299a59126df18cd9912ffaa6ada093b12409f0a91819f51b76ae6",
+ "committed_normalized_churn": 0.011264720942140297,
+ "committed_xor_churn_total": 88,
+ "confirmation_two": true,
+ "current_mask_sha256": "c464e2cdf51299a59126df18cd9912ffaa6ada093b12409f0a91819f51b76ae6",
+ "current_selected_count": 62,
+ "dwell_total": 3862,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2451828901305362e-08,
+ "last_committed_normalized_gap": -0.5894312262535095,
+ "last_committed_score_gap": -1.7876413238582245e-08,
+ "last_cutoff_score_margin": 7.43197503538795e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7919474732129856e-08,
+ "last_raw_normalized_gap": 0.2661932110786438,
+ "last_raw_score_gap": 7.43197503538795e-09,
+ "layer_index": 13,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "b3bff6b622fa49af08e039734e8b5c209c9c43830ac51bd61dcff40ab49ec5c0",
+ "raw_normalized_churn": 0.08243727598566308,
+ "raw_xor_churn_total": 644,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 12,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ae69772a6d88502ec8969c47967ce75a4531e7cd5989164e1afe9d07af67e1d3",
+ "committed_normalized_churn": 0.003527336860670194,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_mask_sha256": "ae69772a6d88502ec8969c47967ce75a4531e7cd5989164e1afe9d07af67e1d3",
+ "current_selected_count": 54,
+ "dwell_total": 3390,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.335261394317058e-08,
+ "last_committed_normalized_gap": -0.2989695370197296,
+ "last_committed_score_gap": -1.8488655939563614e-08,
+ "last_cutoff_score_margin": 1.7277628217016172e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.2991971699611895e-08,
+ "last_raw_normalized_gap": 0.03260423615574837,
+ "last_raw_score_gap": 1.7277628217016172e-09,
+ "layer_index": 14,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "8c0527a1c6658ef11ff159665f56d3da659b77c8ae525fc26b4b6d483c4dabda",
+ "raw_normalized_churn": 0.04409171075837742,
+ "raw_xor_churn_total": 300,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "058a8e8fff4473cb2e6230efbc217c55b3037710bb920d4a397124ca7d66966a",
+ "committed_normalized_churn": 0.001763668430335097,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "058a8e8fff4473cb2e6230efbc217c55b3037710bb920d4a397124ca7d66966a",
+ "current_selected_count": 45,
+ "dwell_total": 2830,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.471400754686329e-07,
+ "last_committed_normalized_gap": 0.18323735892772675,
+ "last_committed_score_gap": 1.0025649999079178e-07,
+ "last_cutoff_score_margin": 1.0025649999079178e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 44,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.471400754686329e-07,
+ "last_raw_normalized_gap": 0.18323735892772675,
+ "last_raw_score_gap": 1.0025649999079178e-07,
+ "layer_index": 16,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "058a8e8fff4473cb2e6230efbc217c55b3037710bb920d4a397124ca7d66966a",
+ "raw_normalized_churn": 0.016225749559082892,
+ "raw_xor_churn_total": 92,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "85f6c86e931d37d7e2a5c1dacd398ba862c53993b0050ffed03d482c9012bff8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "85f6c86e931d37d7e2a5c1dacd398ba862c53993b0050ffed03d482c9012bff8",
+ "current_selected_count": 27,
+ "dwell_total": 1701,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.616873745064368e-07,
+ "last_committed_normalized_gap": -0.02931826002895832,
+ "last_committed_score_gap": -2.3005839011602802e-08,
+ "last_cutoff_score_margin": 2.3005839011602802e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.846932135180396e-07,
+ "last_raw_normalized_gap": 0.02931826002895832,
+ "last_raw_score_gap": 2.3005839011602802e-08,
+ "layer_index": 17,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "cf0b5977913baaac2f6e660899c5dafafe1862efbaf3ef3b4bfccfd4b65b0549",
+ "raw_normalized_churn": 0.01763668430335097,
+ "raw_xor_churn_total": 60,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "current_selected_count": 7,
+ "dwell_total": 441,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2786905901739374e-05,
+ "last_committed_normalized_gap": 0.8209406137466431,
+ "last_committed_score_gap": 1.8706696209846996e-05,
+ "last_cutoff_score_margin": 1.8706696209846996e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.2786905901739374e-05,
+ "last_raw_normalized_gap": 0.8209406137466431,
+ "last_raw_score_gap": 1.8706696209846996e-05,
+ "layer_index": 18,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "raw_normalized_churn": 0.0045351473922902496,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f02f37f3a13d4e2ef976017d402d84e39a7853079aea2aeee5b2c7f133386980",
+ "committed_normalized_churn": 0.001763668430335097,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "f02f37f3a13d4e2ef976017d402d84e39a7853079aea2aeee5b2c7f133386980",
+ "current_selected_count": 9,
+ "dwell_total": 566,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2735896234516986e-05,
+ "last_committed_normalized_gap": 0.8329399824142456,
+ "last_committed_score_gap": 1.0608237062115222e-05,
+ "last_cutoff_score_margin": 1.0608237062115222e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2735896234516986e-05,
+ "last_raw_normalized_gap": 0.8329399824142456,
+ "last_raw_score_gap": 1.0608237062115222e-05,
+ "layer_index": 20,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "f02f37f3a13d4e2ef976017d402d84e39a7853079aea2aeee5b2c7f133386980",
+ "raw_normalized_churn": 0.012345679012345678,
+ "raw_xor_churn_total": 14,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "current_selected_count": 7,
+ "dwell_total": 441,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.245966455433518e-06,
+ "last_committed_normalized_gap": 0.7534671425819397,
+ "last_committed_score_gap": 6.21306480752537e-06,
+ "last_cutoff_score_margin": 6.21306480752537e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.245966455433518e-06,
+ "last_raw_normalized_gap": 0.7534671425819397,
+ "last_raw_score_gap": 6.21306480752537e-06,
+ "layer_index": 21,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": 0.0045351473922902496,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c55d1e87cde338eaf15492e10e80081f34db650997deda15334520c3ced7dc3d",
+ "committed_normalized_churn": 0.00202020202020202,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "c55d1e87cde338eaf15492e10e80081f34db650997deda15334520c3ced7dc3d",
+ "current_selected_count": 55,
+ "dwell_total": 3458,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.3538344723638147e-07,
+ "last_committed_normalized_gap": 0.6510587334632874,
+ "last_committed_score_gap": 2.1835433017258765e-07,
+ "last_cutoff_score_margin": 2.1835433017258765e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.3538344723638147e-07,
+ "last_raw_normalized_gap": 0.6510587334632874,
+ "last_raw_score_gap": 2.1835433017258765e-07,
+ "layer_index": 22,
+ "mask_transition_count": 63,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "c55d1e87cde338eaf15492e10e80081f34db650997deda15334520c3ced7dc3d",
+ "raw_normalized_churn": 0.015007215007215007,
+ "raw_xor_churn_total": 104,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 64,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 687
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 33,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8ea85cb7d3afa1abeb9f6526e0c3a37dfa5ca105fcb1edaf8dcc092acc588072",
+ "committed_normalized_churn": 0.0030985915492957746,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_mask_sha256": "8ea85cb7d3afa1abeb9f6526e0c3a37dfa5ca105fcb1edaf8dcc092acc588072",
+ "current_selected_count": 355,
+ "dwell_total": 10617,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.818292679928618e-10,
+ "last_committed_normalized_gap": -0.9993811249732971,
+ "last_committed_score_gap": -1.2624904002223047e-06,
+ "last_cutoff_score_margin": 5.430056404520656e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3406895977018394e-08,
+ "last_raw_normalized_gap": 0.023198531940579414,
+ "last_raw_score_gap": 5.430056404520656e-10,
+ "layer_index": 0,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "215876176a8fac2111c47b13223e804efbe0940b7276889c106e6e21268f5bde",
+ "raw_normalized_churn": 0.019906103286384976,
+ "raw_xor_churn_total": 424,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 223,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f70c7a92436d4799e1f145a6075656dfc52e7bffadbf20b1982c725deff010e9",
+ "committed_normalized_churn": 0.01956140350877193,
+ "committed_xor_churn_total": 446,
+ "confirmation_two": true,
+ "current_mask_sha256": "f70c7a92436d4799e1f145a6075656dfc52e7bffadbf20b1982c725deff010e9",
+ "current_selected_count": 380,
+ "dwell_total": 11177,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1996045262984154e-10,
+ "last_committed_normalized_gap": -0.993145227432251,
+ "last_committed_score_gap": -3.186846697644796e-08,
+ "last_cutoff_score_margin": 1.2596590437397026e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 377,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0468637068328235e-09,
+ "last_raw_normalized_gap": 0.012032694183290005,
+ "last_raw_score_gap": 1.2596590437397026e-11,
+ "layer_index": 1,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "95f410802dda66948d9c920d0ee6dc588a46376321333f1ce2c38845d83e1f92",
+ "raw_normalized_churn": 0.12578947368421053,
+ "raw_xor_churn_total": 2868,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 60,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c26e03ffd93e7c247ef15224227351326ebe89333de17de8164e41432fc517b6",
+ "committed_normalized_churn": 0.007434944237918215,
+ "committed_xor_churn_total": 120,
+ "confirmation_two": true,
+ "current_mask_sha256": "c26e03ffd93e7c247ef15224227351326ebe89333de17de8164e41432fc517b6",
+ "current_selected_count": 269,
+ "dwell_total": 8010,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1665755028644753e-09,
+ "last_committed_normalized_gap": -0.9617853760719299,
+ "last_committed_score_gap": -2.936039322776196e-08,
+ "last_cutoff_score_margin": 1.2490142253795966e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 267,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.443162365281751e-09,
+ "last_raw_normalized_gap": 0.02294648066163063,
+ "last_raw_score_gap": 1.2490142253795966e-10,
+ "layer_index": 2,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "845c244782a71b72d14411cabd91742ae467e7777e2502d46a6e581f5336fe12",
+ "raw_normalized_churn": 0.06802973977695168,
+ "raw_xor_churn_total": 1098,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e6938b60acfb340b8b3ab86398cb5e8492e5cbd4b80fa39ddab7ef38ed8dfc59",
+ "committed_normalized_churn": 0.00037243947858472997,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "e6938b60acfb340b8b3ab86398cb5e8492e5cbd4b80fa39ddab7ef38ed8dfc59",
+ "current_selected_count": 179,
+ "dwell_total": 5368,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.732415029209733e-07,
+ "last_committed_normalized_gap": 0.23120902478694916,
+ "last_committed_score_gap": 4.005499931736267e-08,
+ "last_cutoff_score_margin": 4.005499931736267e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.732415029209733e-07,
+ "last_raw_normalized_gap": 0.23120902478694916,
+ "last_raw_score_gap": 4.005499931736267e-08,
+ "layer_index": 4,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "e6938b60acfb340b8b3ab86398cb5e8492e5cbd4b80fa39ddab7ef38ed8dfc59",
+ "raw_normalized_churn": 0.005772811918063315,
+ "raw_xor_churn_total": 62,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8796569d41ba471ca8161380d1d5cef773bdd52d70c425918e3c0001b6943606",
+ "committed_normalized_churn": 0.0016216216216216215,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "8796569d41ba471ca8161380d1d5cef773bdd52d70c425918e3c0001b6943606",
+ "current_selected_count": 185,
+ "dwell_total": 5541,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.583632590675734e-08,
+ "last_committed_normalized_gap": -0.37287449836730957,
+ "last_committed_score_gap": -2.1307460684738544e-08,
+ "last_cutoff_score_margin": 1.9577868215492344e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.604489317079242e-08,
+ "last_raw_normalized_gap": 0.03493247553706169,
+ "last_raw_score_gap": 1.9577868215492344e-09,
+ "layer_index": 5,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "aa862d02ab9bd52cca16efb60609ddc397dceb8abd27853ab5b95fa5665fde96",
+ "raw_normalized_churn": 0.01009009009009009,
+ "raw_xor_churn_total": 112,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 20,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "10848177d1be40369eb036c5201e90a8efcbac762a191b3e3e1d54b1537fb76b",
+ "committed_normalized_churn": 0.006349206349206349,
+ "committed_xor_churn_total": 40,
+ "confirmation_two": true,
+ "current_mask_sha256": "10848177d1be40369eb036c5201e90a8efcbac762a191b3e3e1d54b1537fb76b",
+ "current_selected_count": 105,
+ "dwell_total": 3130,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9410296420451232e-08,
+ "last_committed_normalized_gap": 0.1489318609237671,
+ "last_committed_score_gap": 4.380130036452101e-09,
+ "last_cutoff_score_margin": 4.380130036452101e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9410296420451232e-08,
+ "last_raw_normalized_gap": 0.1489318609237671,
+ "last_raw_score_gap": 4.380130036452101e-09,
+ "layer_index": 6,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "10848177d1be40369eb036c5201e90a8efcbac762a191b3e3e1d54b1537fb76b",
+ "raw_normalized_churn": 0.06349206349206349,
+ "raw_xor_churn_total": 400,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0064fd7de3d82ae1bf175e5e681ef0e3d27708f4d768487780111957b6689e13",
+ "committed_normalized_churn": 0.0016666666666666668,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "0064fd7de3d82ae1bf175e5e681ef0e3d27708f4d768487780111957b6689e13",
+ "current_selected_count": 80,
+ "dwell_total": 2396,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2410085048486508e-07,
+ "last_committed_normalized_gap": -0.16098132729530334,
+ "last_committed_score_gap": -2.3811054461475578e-08,
+ "last_cutoff_score_margin": 1.723554987620446e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4791190494634066e-07,
+ "last_raw_normalized_gap": 0.11652577668428421,
+ "last_raw_score_gap": 1.723554987620446e-08,
+ "layer_index": 8,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "75bf3964e0a469fd13a9aef4285bcb5f5cb737bc938947ca5accbb20083b49f4",
+ "raw_normalized_churn": 0.0125,
+ "raw_xor_churn_total": 60,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "dbc1842e51e35db2e5cf6c34f59a2ba129735cfdbbb835bea1d747ffb213dbc6",
+ "committed_normalized_churn": 0.0015503875968992248,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "dbc1842e51e35db2e5cf6c34f59a2ba129735cfdbbb835bea1d747ffb213dbc6",
+ "current_selected_count": 43,
+ "dwell_total": 1288,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.8498814802778725e-08,
+ "last_committed_normalized_gap": 0.5998033881187439,
+ "last_committed_score_gap": 2.3091720535717286e-08,
+ "last_cutoff_score_margin": 2.3091720535717286e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.8498814802778725e-08,
+ "last_raw_normalized_gap": 0.5998033881187439,
+ "last_raw_score_gap": 2.3091720535717286e-08,
+ "layer_index": 9,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "dbc1842e51e35db2e5cf6c34f59a2ba129735cfdbbb835bea1d747ffb213dbc6",
+ "raw_normalized_churn": 0.02868217054263566,
+ "raw_xor_churn_total": 74,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 30,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "290d110f2214a048952e6c14a9f1d1e3bd14c10c5016a11644ff2f35c0088009",
+ "committed_normalized_churn": 0.011904761904761904,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_mask_sha256": "290d110f2214a048952e6c14a9f1d1e3bd14c10c5016a11644ff2f35c0088009",
+ "current_selected_count": 84,
+ "dwell_total": 2490,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0573009962276956e-08,
+ "last_committed_normalized_gap": -0.16139818727970123,
+ "last_committed_score_gap": -3.959502947736837e-09,
+ "last_cutoff_score_margin": 2.2102533137058344e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.278326327598279e-08,
+ "last_raw_normalized_gap": 0.09701214730739594,
+ "last_raw_score_gap": 2.2102533137058344e-09,
+ "layer_index": 10,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "a869cc0e93ee3f4466503dde42a563793944d4a249a280443f35ed9585ab8fd7",
+ "raw_normalized_churn": 0.06984126984126984,
+ "raw_xor_churn_total": 352,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ad3a0d1431829a8f7e72f5c0422bee8f6ce5159a74fad6552e70df568089071a",
+ "committed_normalized_churn": 0.0044444444444444444,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "ad3a0d1431829a8f7e72f5c0422bee8f6ce5159a74fad6552e70df568089071a",
+ "current_selected_count": 30,
+ "dwell_total": 896,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.111528586596251e-07,
+ "last_committed_normalized_gap": 0.7044513821601868,
+ "last_committed_score_gap": 5.714177291338274e-07,
+ "last_cutoff_score_margin": 5.714177291338274e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.111528586596251e-07,
+ "last_raw_normalized_gap": 0.7044513821601868,
+ "last_raw_score_gap": 5.714177291338274e-07,
+ "layer_index": 12,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "ad3a0d1431829a8f7e72f5c0422bee8f6ce5159a74fad6552e70df568089071a",
+ "raw_normalized_churn": 0.04555555555555556,
+ "raw_xor_churn_total": 82,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 21,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "07876647d38d88a8fd96b21154703d5b4d7b77d0d604c0dd107c1986ac2ee644",
+ "committed_normalized_churn": 0.01129032258064516,
+ "committed_xor_churn_total": 42,
+ "confirmation_two": true,
+ "current_mask_sha256": "07876647d38d88a8fd96b21154703d5b4d7b77d0d604c0dd107c1986ac2ee644",
+ "current_selected_count": 62,
+ "dwell_total": 1839,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.8581866590448044e-08,
+ "last_committed_normalized_gap": 0.35883185267448425,
+ "last_committed_score_gap": 1.3844402957374768e-08,
+ "last_cutoff_score_margin": 1.3844402957374768e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.8581866590448044e-08,
+ "last_raw_normalized_gap": 0.35883185267448425,
+ "last_raw_score_gap": 1.3844402957374768e-08,
+ "layer_index": 13,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "07876647d38d88a8fd96b21154703d5b4d7b77d0d604c0dd107c1986ac2ee644",
+ "raw_normalized_churn": 0.08333333333333333,
+ "raw_xor_churn_total": 310,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d218c22a0cca8053147c7ddef2852c74868f5731eb7230bfb10784dc922691ee",
+ "committed_normalized_churn": 0.0030864197530864196,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "d218c22a0cca8053147c7ddef2852c74868f5731eb7230bfb10784dc922691ee",
+ "current_selected_count": 54,
+ "dwell_total": 1615,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.248158257449177e-08,
+ "last_committed_normalized_gap": 0.3202119469642639,
+ "last_committed_score_gap": 2.000734866669518e-08,
+ "last_cutoff_score_margin": 2.000734866669518e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.248158257449177e-08,
+ "last_raw_normalized_gap": 0.3202119469642639,
+ "last_raw_score_gap": 2.000734866669518e-08,
+ "layer_index": 14,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d218c22a0cca8053147c7ddef2852c74868f5731eb7230bfb10784dc922691ee",
+ "raw_normalized_churn": 0.04938271604938271,
+ "raw_xor_churn_total": 160,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0599d66ce9661ce70237b7525fdcde790b0a3c89f00b1a8c8ab9bf87f2765549",
+ "committed_normalized_churn": 0.0022222222222222222,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "0599d66ce9661ce70237b7525fdcde790b0a3c89f00b1a8c8ab9bf87f2765549",
+ "current_selected_count": 45,
+ "dwell_total": 1347,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1419909924370586e-06,
+ "last_committed_normalized_gap": 0.5956863164901733,
+ "last_committed_score_gap": 6.802683856221847e-07,
+ "last_cutoff_score_margin": 6.802683856221847e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1419909924370586e-06,
+ "last_raw_normalized_gap": 0.5956863164901733,
+ "last_raw_score_gap": 6.802683856221847e-07,
+ "layer_index": 16,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "0599d66ce9661ce70237b7525fdcde790b0a3c89f00b1a8c8ab9bf87f2765549",
+ "raw_normalized_churn": 0.014814814814814815,
+ "raw_xor_churn_total": 40,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ba3733872b18630fcf6e01dc89782de5082a0cdeeac20cbdbf24b491960794f1",
+ "committed_normalized_churn": 0.0012345679012345679,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "ba3733872b18630fcf6e01dc89782de5082a0cdeeac20cbdbf24b491960794f1",
+ "current_selected_count": 27,
+ "dwell_total": 809,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.167735146940686e-06,
+ "last_committed_normalized_gap": 0.6552579998970032,
+ "last_committed_score_gap": 1.4204258604877396e-06,
+ "last_cutoff_score_margin": 1.4204258604877396e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.167735146940686e-06,
+ "last_raw_normalized_gap": 0.6552579998970032,
+ "last_raw_score_gap": 1.4204258604877396e-06,
+ "layer_index": 17,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "ba3733872b18630fcf6e01dc89782de5082a0cdeeac20cbdbf24b491960794f1",
+ "raw_normalized_churn": 0.012345679012345678,
+ "raw_xor_churn_total": 20,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.0734208343783394e-05,
+ "last_committed_normalized_gap": 0.8109501600265503,
+ "last_committed_score_gap": 4.114291368750855e-05,
+ "last_cutoff_score_margin": 4.114291368750855e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.0734208343783394e-05,
+ "last_raw_normalized_gap": 0.8109501600265503,
+ "last_raw_score_gap": 4.114291368750855e-05,
+ "layer_index": 18,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "572afa92c8cc3acf06fb1e7dd47b32a72d17ddabdb8c60ae5b82d1d399e0188f",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "572afa92c8cc3acf06fb1e7dd47b32a72d17ddabdb8c60ae5b82d1d399e0188f",
+ "current_selected_count": 9,
+ "dwell_total": 270,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.839294211298693e-05,
+ "last_committed_normalized_gap": -0.0757366493344307,
+ "last_committed_score_gap": -2.3265947675099596e-06,
+ "last_cutoff_score_margin": 1.3533826859202236e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9746324798907153e-05,
+ "last_raw_normalized_gap": 0.04549747705459595,
+ "last_raw_score_gap": 1.3533826859202236e-06,
+ "layer_index": 20,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "0322656ee28f3e3ce84ea96ee9c72b26565e6107f39ea0b503b801c399756715",
+ "raw_normalized_churn": 0.011111111111111112,
+ "raw_xor_churn_total": 6,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "current_selected_count": 7,
+ "dwell_total": 210,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.03143338492373e-05,
+ "last_committed_normalized_gap": 0.7352576851844788,
+ "last_committed_score_gap": 7.583693331980612e-06,
+ "last_cutoff_score_margin": 7.583693331980612e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.03143338492373e-05,
+ "last_raw_normalized_gap": 0.7352576851844788,
+ "last_raw_score_gap": 7.583693331980612e-06,
+ "layer_index": 21,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d6a360433e94089e3f67c6506619744fe5200837655aa643eb9d5b7ab498055e",
+ "committed_normalized_churn": 0.0024242424242424242,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "d6a360433e94089e3f67c6506619744fe5200837655aa643eb9d5b7ab498055e",
+ "current_selected_count": 55,
+ "dwell_total": 1646,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.519597248034188e-07,
+ "last_committed_normalized_gap": -0.3498995900154114,
+ "last_committed_score_gap": -8.178835742000956e-08,
+ "last_cutoff_score_margin": 8.007177143554145e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3374808222342836e-07,
+ "last_raw_normalized_gap": 0.34255585074424744,
+ "last_raw_score_gap": 8.007177143554145e-08,
+ "layer_index": 22,
+ "mask_transition_count": 30,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "3f1e8a0efcabec6b28f7e409dae63e93a4b3cfa2b532e1944970107d53bc1457",
+ "raw_normalized_churn": 0.017575757575757574,
+ "raw_xor_churn_total": 58,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 31,
+ "tokens_observed": 104
+ }
+ ],
+ "task_id": 820
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 27,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3f71dbdd1f78b2189902b5b17855905a8436c59225eed5ee0e0dc08051233c97",
+ "committed_normalized_churn": 0.0021730382293762575,
+ "committed_xor_churn_total": 54,
+ "confirmation_two": true,
+ "current_mask_sha256": "3f71dbdd1f78b2189902b5b17855905a8436c59225eed5ee0e0dc08051233c97",
+ "current_selected_count": 355,
+ "dwell_total": 12398,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.0463861988572205e-10,
+ "last_committed_normalized_gap": -0.9925501942634583,
+ "last_committed_score_gap": -4.058744806911818e-08,
+ "last_cutoff_score_margin": 2.519834119141251e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3231058915152971e-08,
+ "last_raw_normalized_gap": 0.19044840335845947,
+ "last_raw_score_gap": 2.519834119141251e-09,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "f52bae731ea87b04395e7696748563092c82822525502c2d84b8dfd2d8f1bd6f",
+ "raw_normalized_churn": 0.014164989939637827,
+ "raw_xor_churn_total": 352,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 207,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5e18673bb6cf55ce976904bcac709b9892243a17da7984ef0be0c34d1ce59167",
+ "committed_normalized_churn": 0.01556390977443609,
+ "committed_xor_churn_total": 414,
+ "confirmation_two": true,
+ "current_mask_sha256": "5e18673bb6cf55ce976904bcac709b9892243a17da7984ef0be0c34d1ce59167",
+ "current_selected_count": 380,
+ "dwell_total": 13093,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3039322399599484e-10,
+ "last_committed_normalized_gap": -0.9396018981933594,
+ "last_committed_score_gap": -2.0285029211919436e-09,
+ "last_cutoff_score_margin": 2.3352986211477855e-12,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 371,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.630749365716838e-10,
+ "last_raw_normalized_gap": 0.0030603790655732155,
+ "last_raw_score_gap": 2.3352986211477855e-12,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "92d2a852457e0809e05fb9d7b14dd3dede7ea499221026fda3aa9f7bc62f0183",
+ "raw_normalized_churn": 0.1181203007518797,
+ "raw_xor_churn_total": 3142,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 52,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7e66fbad1a401589dc877fca9c106b805a9006a327f912ec42ac752e61210176",
+ "committed_normalized_churn": 0.005523101433882103,
+ "committed_xor_churn_total": 104,
+ "confirmation_two": true,
+ "current_mask_sha256": "7e66fbad1a401589dc877fca9c106b805a9006a327f912ec42ac752e61210176",
+ "current_selected_count": 269,
+ "dwell_total": 9363,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.450563277444644e-09,
+ "last_committed_normalized_gap": -0.9070008993148804,
+ "last_committed_score_gap": -7.26638447190453e-08,
+ "last_cutoff_score_margin": 1.4932410863366385e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 267,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.539902118798182e-09,
+ "last_raw_normalized_gap": 0.01748545840382576,
+ "last_raw_score_gap": 1.4932410863366385e-10,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "041743d16cb7d51db70b1eed3f61de415e9079f150bc16bed27d41f1c9b334cb",
+ "raw_normalized_churn": 0.033988316516197555,
+ "raw_xor_churn_total": 640,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1e232738aa01bb7ffc87fb175945dfce5a617dcbd6974822f1d1fe8511de76d2",
+ "committed_normalized_churn": 0.0007980845969672786,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "1e232738aa01bb7ffc87fb175945dfce5a617dcbd6974822f1d1fe8511de76d2",
+ "current_selected_count": 179,
+ "dwell_total": 6260,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0617730456251593e-07,
+ "last_committed_normalized_gap": -0.606057345867157,
+ "last_committed_score_gap": -3.1719153525955335e-07,
+ "last_cutoff_score_margin": 5.0328310408076504e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.985013622947008e-07,
+ "last_raw_normalized_gap": 0.01686032861471176,
+ "last_raw_score_gap": 5.0328310408076504e-09,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "0cce5301a57b492d2c9f42ebd111fc6399215cdfb461b99ea74937516b90d23d",
+ "raw_normalized_churn": 0.008619313647246609,
+ "raw_xor_churn_total": 108,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "040824d6481bddbbec6a6c510e17e80a385248316726794eb4ba2462b8a0a1a5",
+ "committed_normalized_churn": 0.0012355212355212356,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "040824d6481bddbbec6a6c510e17e80a385248316726794eb4ba2462b8a0a1a5",
+ "current_selected_count": 185,
+ "dwell_total": 6467,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.627813485873048e-08,
+ "last_committed_normalized_gap": 0.35642877221107483,
+ "last_committed_score_gap": 3.075200893931651e-08,
+ "last_cutoff_score_margin": 3.075200893931651e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.627813485873048e-08,
+ "last_raw_normalized_gap": 0.35642877221107483,
+ "last_raw_score_gap": 3.075200893931651e-08,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "040824d6481bddbbec6a6c510e17e80a385248316726794eb4ba2462b8a0a1a5",
+ "raw_normalized_churn": 0.0069498069498069494,
+ "raw_xor_churn_total": 90,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 33,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a68717a54f1fe3499d51be8c72b5c9dbbc4b9a2ee0a5061ba7534f70a1aa8e85",
+ "committed_normalized_churn": 0.008979591836734694,
+ "committed_xor_churn_total": 66,
+ "confirmation_two": true,
+ "current_mask_sha256": "a68717a54f1fe3499d51be8c72b5c9dbbc4b9a2ee0a5061ba7534f70a1aa8e85",
+ "current_selected_count": 105,
+ "dwell_total": 3642,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.9370774135582e-09,
+ "last_committed_normalized_gap": -0.8184522986412048,
+ "last_committed_score_gap": -2.2257296450334252e-08,
+ "last_cutoff_score_margin": 5.206430842008558e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0433247982509783e-08,
+ "last_raw_normalized_gap": 0.02548019215464592,
+ "last_raw_score_gap": 5.206430842008558e-10,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "6c43ee8c77845f1a2744f8e0619c538eee686a60ee4b462075e67934a8c437c7",
+ "raw_normalized_churn": 0.05523809523809524,
+ "raw_xor_churn_total": 406,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e94b1149819ab1eed67c5cb04ddde822035745854c8b2f0a29edd9f4927814c8",
+ "committed_normalized_churn": 0.0010714285714285715,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "e94b1149819ab1eed67c5cb04ddde822035745854c8b2f0a29edd9f4927814c8",
+ "current_selected_count": 80,
+ "dwell_total": 2797,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.529490003184037e-08,
+ "last_committed_normalized_gap": 0.07256124913692474,
+ "last_committed_score_gap": 6.189104340137419e-09,
+ "last_cutoff_score_margin": 6.189104340137419e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.529490003184037e-08,
+ "last_raw_normalized_gap": 0.07256124913692474,
+ "last_raw_score_gap": 6.189104340137419e-09,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "e94b1149819ab1eed67c5cb04ddde822035745854c8b2f0a29edd9f4927814c8",
+ "raw_normalized_churn": 0.019642857142857142,
+ "raw_xor_churn_total": 110,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "77b3a50a3ce3b312d0b2627b2393b4afa9c0bd0174a44eba84d4170cdd4a0942",
+ "committed_normalized_churn": 0.0033222591362126247,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "77b3a50a3ce3b312d0b2627b2393b4afa9c0bd0174a44eba84d4170cdd4a0942",
+ "current_selected_count": 43,
+ "dwell_total": 1500,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.21911072534931e-08,
+ "last_committed_normalized_gap": 0.3405044972896576,
+ "last_committed_score_gap": 2.7986441608618406e-08,
+ "last_cutoff_score_margin": 2.7986441608618406e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.21911072534931e-08,
+ "last_raw_normalized_gap": 0.3405044972896576,
+ "last_raw_score_gap": 2.7986441608618406e-08,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "77b3a50a3ce3b312d0b2627b2393b4afa9c0bd0174a44eba84d4170cdd4a0942",
+ "raw_normalized_churn": 0.02458471760797342,
+ "raw_xor_churn_total": 74,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 30,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3eda8da0746f013a97f043b83ac5ff37682cc80916d78d5966c3127a3485c618",
+ "committed_normalized_churn": 0.01020408163265306,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_mask_sha256": "3eda8da0746f013a97f043b83ac5ff37682cc80916d78d5966c3127a3485c618",
+ "current_selected_count": 84,
+ "dwell_total": 2910,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0020071883332093e-08,
+ "last_committed_normalized_gap": -0.31321486830711365,
+ "last_committed_score_gap": -4.56974902363072e-09,
+ "last_cutoff_score_margin": 3.9039793620077035e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3521357367096698e-08,
+ "last_raw_normalized_gap": 0.028872687369585037,
+ "last_raw_score_gap": 3.9039793620077035e-10,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "d31cee02e12b5ad04fdb6815890518e46bc3812b93d3ddb89565c99c4a1df0a8",
+ "raw_normalized_churn": 0.06224489795918367,
+ "raw_xor_churn_total": 366,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0f4eae3c1eab25f6e3d101484e20f5de4747b5feb0a5669b54df46610f4d0143",
+ "committed_normalized_churn": 0.007619047619047619,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "0f4eae3c1eab25f6e3d101484e20f5de4747b5feb0a5669b54df46610f4d0143",
+ "current_selected_count": 30,
+ "dwell_total": 1042,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.352842198495637e-07,
+ "last_committed_normalized_gap": 0.1259176880121231,
+ "last_committed_score_gap": 1.1776882047342951e-07,
+ "last_cutoff_score_margin": 1.1776882047342951e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.352842198495637e-07,
+ "last_raw_normalized_gap": 0.1259176880121231,
+ "last_raw_score_gap": 1.1776882047342951e-07,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "0f4eae3c1eab25f6e3d101484e20f5de4747b5feb0a5669b54df46610f4d0143",
+ "raw_normalized_churn": 0.04,
+ "raw_xor_churn_total": 84,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 32,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "639e9e08c748a99ab424fdb83a647bff357d7f5076eb8616cf49a873341d68d4",
+ "committed_normalized_churn": 0.014746543778801843,
+ "committed_xor_churn_total": 64,
+ "confirmation_two": true,
+ "current_mask_sha256": "639e9e08c748a99ab424fdb83a647bff357d7f5076eb8616cf49a873341d68d4",
+ "current_selected_count": 62,
+ "dwell_total": 2138,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.19758157729666e-08,
+ "last_committed_normalized_gap": -0.3766595721244812,
+ "last_committed_score_gap": -1.9321699795682434e-08,
+ "last_cutoff_score_margin": 1.6755556941916439e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.422413996645446e-08,
+ "last_raw_normalized_gap": 0.048958297818899155,
+ "last_raw_score_gap": 1.6755556941916439e-09,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "d4d567306512b00e10dbab06a9b5255317e58230f109986af74716ec5f9511e9",
+ "raw_normalized_churn": 0.0695852534562212,
+ "raw_xor_churn_total": 302,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 19,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c03360d1b205f0ed801c5a629ef67828e9fd88f1572e621d28994462aeb4bba4",
+ "committed_normalized_churn": 0.010052910052910053,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_mask_sha256": "c03360d1b205f0ed801c5a629ef67828e9fd88f1572e621d28994462aeb4bba4",
+ "current_selected_count": 54,
+ "dwell_total": 1871,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1212312855946038e-08,
+ "last_committed_normalized_gap": -0.695751428604126,
+ "last_committed_score_gap": -2.5640163769935498e-08,
+ "last_cutoff_score_margin": 9.285752611276621e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.0216916968583973e-08,
+ "last_raw_normalized_gap": 0.3073031008243561,
+ "last_raw_score_gap": 9.285752611276621e-09,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "c52611eef026afb158c05c265cdb539d811686b17fee48b7db309fc5ddb991c9",
+ "raw_normalized_churn": 0.059788359788359786,
+ "raw_xor_churn_total": 226,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4afeb0fab53b120665b490e6c78aed6ea3d767a3c394a03101eca4c5603a248f",
+ "committed_normalized_churn": 0.0006349206349206349,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "4afeb0fab53b120665b490e6c78aed6ea3d767a3c394a03101eca4c5603a248f",
+ "current_selected_count": 45,
+ "dwell_total": 1574,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.038581214947044e-06,
+ "last_committed_normalized_gap": 0.566250741481781,
+ "last_committed_score_gap": 1.1543481832632096e-06,
+ "last_cutoff_score_margin": 1.1543481832632096e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.038581214947044e-06,
+ "last_raw_normalized_gap": 0.566250741481781,
+ "last_raw_score_gap": 1.1543481832632096e-06,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "4afeb0fab53b120665b490e6c78aed6ea3d767a3c394a03101eca4c5603a248f",
+ "raw_normalized_churn": 0.0044444444444444444,
+ "raw_xor_churn_total": 14,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d1f80e085042fb71aeabc4b2b32260458d0a74f4aa3cd8b69ea75d04b0ac4a2b",
+ "committed_normalized_churn": 0.0010582010582010583,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "d1f80e085042fb71aeabc4b2b32260458d0a74f4aa3cd8b69ea75d04b0ac4a2b",
+ "current_selected_count": 27,
+ "dwell_total": 944,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1116670723131392e-06,
+ "last_committed_normalized_gap": 0.7677232623100281,
+ "last_committed_score_gap": 1.6211758975259727e-06,
+ "last_cutoff_score_margin": 1.6211758975259727e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1116670723131392e-06,
+ "last_raw_normalized_gap": 0.7677232623100281,
+ "last_raw_score_gap": 1.6211758975259727e-06,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "d1f80e085042fb71aeabc4b2b32260458d0a74f4aa3cd8b69ea75d04b0ac4a2b",
+ "raw_normalized_churn": 0.014814814814814815,
+ "raw_xor_churn_total": 28,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.4634573239600286e-05,
+ "last_committed_normalized_gap": 0.7226845622062683,
+ "last_committed_score_gap": 2.502987081243191e-05,
+ "last_cutoff_score_margin": 2.502987081243191e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.4634573239600286e-05,
+ "last_raw_normalized_gap": 0.7226845622062683,
+ "last_raw_score_gap": 2.502987081243191e-05,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "raw_normalized_churn": 0.00816326530612245,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "750f874c45da9a09629d79ea89eda5c0370a0973711d7851516e4a66e9054408",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "750f874c45da9a09629d79ea89eda5c0370a0973711d7851516e4a66e9054408",
+ "current_selected_count": 9,
+ "dwell_total": 315,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.06349180493271e-06,
+ "last_committed_normalized_gap": -0.1448672115802765,
+ "last_committed_score_gap": -1.3660283002536744e-06,
+ "last_cutoff_score_margin": 1.3660283002536744e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.429520105186384e-06,
+ "last_raw_normalized_gap": 0.1448672115802765,
+ "last_raw_score_gap": 1.3660283002536744e-06,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "906558b120cc04590e36da06c67b5c766139e4eede40471e78c199051624b91a",
+ "raw_normalized_churn": 0.009523809523809525,
+ "raw_xor_churn_total": 6,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.771991628629621e-05,
+ "last_committed_normalized_gap": 0.37024709582328796,
+ "last_committed_score_gap": 6.560747351613827e-06,
+ "last_cutoff_score_margin": 6.560747351613827e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.771991628629621e-05,
+ "last_raw_normalized_gap": 0.37024709582328796,
+ "last_raw_score_gap": 6.560747351613827e-06,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e3dc8eec1ccec9a152d39c9dc8f9f6c018789019b021e995ae07004a67ca7e8a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "e3dc8eec1ccec9a152d39c9dc8f9f6c018789019b021e995ae07004a67ca7e8a",
+ "current_selected_count": 55,
+ "dwell_total": 1925,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.7335152569539787e-07,
+ "last_committed_normalized_gap": 0.02210969291627407,
+ "last_committed_score_gap": 8.254687600128818e-09,
+ "last_cutoff_score_margin": 8.254687600128818e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.7335152569539787e-07,
+ "last_raw_normalized_gap": 0.02210969291627407,
+ "last_raw_score_gap": 8.254687600128818e-09,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "e3dc8eec1ccec9a152d39c9dc8f9f6c018789019b021e995ae07004a67ca7e8a",
+ "raw_normalized_churn": 0.001038961038961039,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 250
+ }
+ ],
+ "task_id": 920
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 133,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f9a9ae2f424fa0ea1a8fe0d51a22c69800abdc9f3dff764e387eb23617839222",
+ "committed_normalized_churn": 0.0027958797561488335,
+ "committed_xor_churn_total": 266,
+ "confirmation_two": true,
+ "current_mask_sha256": "f9a9ae2f424fa0ea1a8fe0d51a22c69800abdc9f3dff764e387eb23617839222",
+ "current_selected_count": 355,
+ "dwell_total": 47437,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6619952081242673e-09,
+ "last_committed_normalized_gap": -0.8820701241493225,
+ "last_committed_score_gap": -1.2431086382491685e-08,
+ "last_cutoff_score_margin": 4.524185470700104e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.177240218287807e-09,
+ "last_raw_normalized_gap": 0.05532655864953995,
+ "last_raw_score_gap": 4.524185470700104e-10,
+ "layer_index": 0,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "c044d4bfcec6752f230a07ab41ec839888434c32af18e01ea20672b8fc37a913",
+ "raw_normalized_churn": 0.025919697288206853,
+ "raw_xor_churn_total": 2466,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 927,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "62ea8d447373f61f32f9de2b55b55ad3a85a4f14215bdd6bbb5d0969fef85d02",
+ "committed_normalized_churn": 0.018205027494108406,
+ "committed_xor_churn_total": 1854,
+ "confirmation_two": true,
+ "current_mask_sha256": "62ea8d447373f61f32f9de2b55b55ad3a85a4f14215bdd6bbb5d0969fef85d02",
+ "current_selected_count": 380,
+ "dwell_total": 49993,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.1930549870828884e-10,
+ "last_committed_normalized_gap": -0.9905545711517334,
+ "last_committed_score_gap": -3.348615962295298e-08,
+ "last_cutoff_score_margin": 4.314326673693358e-12,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 376,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.4536598025880494e-09,
+ "last_raw_normalized_gap": 0.0012492042733356357,
+ "last_raw_score_gap": 4.314326673693358e-12,
+ "layer_index": 1,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "dd98a0ec5c38ada0972205be50c48617744f9a241b9648e132c12f89ed1b9894",
+ "raw_normalized_churn": 0.12344854673998429,
+ "raw_xor_churn_total": 12572,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 244,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fb8fad4ad7f07ee0d971639c8d931ab2b42a8bc7ade83f3ae89addb3579550e6",
+ "committed_normalized_churn": 0.006769128336015092,
+ "committed_xor_churn_total": 488,
+ "confirmation_two": true,
+ "current_mask_sha256": "fb8fad4ad7f07ee0d971639c8d931ab2b42a8bc7ade83f3ae89addb3579550e6",
+ "current_selected_count": 269,
+ "dwell_total": 35802,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7491456061335953e-09,
+ "last_committed_normalized_gap": -0.9374240636825562,
+ "last_committed_score_gap": -2.6203220926390713e-08,
+ "last_cutoff_score_margin": 3.0218627600220316e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 268,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.2496785524501774e-09,
+ "last_raw_normalized_gap": 0.04835228994488716,
+ "last_raw_score_gap": 3.0218627600220316e-10,
+ "layer_index": 2,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "1fe7d67c02bf3efca0535e587265fd6cecaedfcf9b2b190f9320540d260bf772",
+ "raw_normalized_churn": 0.06022859679298674,
+ "raw_xor_churn_total": 4342,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 19,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "90ac9d48cbb5627f0dff20acadd767c20af110adae58ae5ce09b8f483e3d746b",
+ "committed_normalized_churn": 0.0007921287417660302,
+ "committed_xor_churn_total": 38,
+ "confirmation_two": true,
+ "current_mask_sha256": "90ac9d48cbb5627f0dff20acadd767c20af110adae58ae5ce09b8f483e3d746b",
+ "current_selected_count": 179,
+ "dwell_total": 23967,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.361179187142625e-07,
+ "last_committed_normalized_gap": -0.5164521336555481,
+ "last_committed_score_gap": -1.45380411709084e-07,
+ "last_cutoff_score_margin": 2.672972243544791e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7436082089261618e-07,
+ "last_raw_normalized_gap": 0.1533011943101883,
+ "last_raw_score_gap": 2.672972243544791e-08,
+ "layer_index": 4,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "61256fa192c49fa2947edec36f9160ac1200c1b06ead45770790e0a36ace8a74",
+ "raw_normalized_churn": 0.010964729425498207,
+ "raw_xor_churn_total": 526,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 29,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "db5f165ecffdf2d33039f1483fae8213cf045f0b42c58cacc6c9cea3de68469a",
+ "committed_normalized_churn": 0.0011698265429608713,
+ "committed_xor_churn_total": 58,
+ "confirmation_two": true,
+ "current_mask_sha256": "db5f165ecffdf2d33039f1483fae8213cf045f0b42c58cacc6c9cea3de68469a",
+ "current_selected_count": 185,
+ "dwell_total": 24761,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5519656670903714e-08,
+ "last_committed_normalized_gap": -0.8455042243003845,
+ "last_committed_score_gap": -8.493397274378367e-08,
+ "last_cutoff_score_margin": 5.486207044214098e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.719870716485275e-08,
+ "last_raw_normalized_gap": 0.011623638682067394,
+ "last_raw_score_gap": 5.486207044214098e-10,
+ "layer_index": 5,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "d9ef534424d589a948134af45762eccfcfd793f4d7c96b5e944af6dad3a33988",
+ "raw_normalized_churn": 0.010609116579265833,
+ "raw_xor_churn_total": 526,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 122,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3d8412d9bb19d8dec264056f84783c0866504b277198f8c7293264f58d854a3b",
+ "committed_normalized_churn": 0.00867093105899076,
+ "committed_xor_churn_total": 244,
+ "confirmation_two": true,
+ "current_mask_sha256": "3d8412d9bb19d8dec264056f84783c0866504b277198f8c7293264f58d854a3b",
+ "current_selected_count": 105,
+ "dwell_total": 13948,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7177658406808405e-08,
+ "last_committed_normalized_gap": -0.356836199760437,
+ "last_committed_score_gap": -9.53040313333986e-09,
+ "last_cutoff_score_margin": 8.486065183888059e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 101,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9354333247179056e-08,
+ "last_raw_normalized_gap": 0.04384581372141838,
+ "last_raw_score_gap": 8.486065183888059e-10,
+ "layer_index": 6,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "d3985db2136be92995756939ea9d5aa7751a4fb89a9f628a91b6577eb7131e8b",
+ "raw_normalized_churn": 0.05906183368869936,
+ "raw_xor_churn_total": 1662,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c935352c0581d29fc6e0a9be4320f6eb0b6f5098a6aaff19bf5d18dc8595700d",
+ "committed_normalized_churn": 0.0010261194029850746,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "c935352c0581d29fc6e0a9be4320f6eb0b6f5098a6aaff19bf5d18dc8595700d",
+ "current_selected_count": 80,
+ "dwell_total": 10709,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.148098398104594e-08,
+ "last_committed_normalized_gap": -0.4767281115055084,
+ "last_committed_score_gap": -3.7791348717064466e-08,
+ "last_cutoff_score_margin": 4.18631174170514e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.546831343712256e-08,
+ "last_raw_normalized_gap": 0.06394409388303757,
+ "last_raw_score_gap": 4.18631174170514e-09,
+ "layer_index": 8,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "99ad8274023a6f3321e22eefd3e202d46e890b48c2bcdbc258250bb688f74bc0",
+ "raw_normalized_churn": 0.007649253731343284,
+ "raw_xor_churn_total": 164,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 25,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f9ff28956e40e720caac7f7a526291de4d1b5f31d64eb968823a99914de2771f",
+ "committed_normalized_churn": 0.0043387712599791736,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_mask_sha256": "f9ff28956e40e720caac7f7a526291de4d1b5f31d64eb968823a99914de2771f",
+ "current_selected_count": 43,
+ "dwell_total": 5737,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.478139897263645e-08,
+ "last_committed_normalized_gap": -0.6952144503593445,
+ "last_committed_score_gap": -1.2495610235419008e-07,
+ "last_cutoff_score_margin": 4.2801318045349035e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.924866617438965e-08,
+ "last_raw_normalized_gap": 0.04312533140182495,
+ "last_raw_score_gap": 4.2801318045349035e-09,
+ "layer_index": 9,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "3f4c0bfe4f82c775f65615897f2c9c620c4bd9810fd991ac2bb131613355b15f",
+ "raw_normalized_churn": 0.026379729260673376,
+ "raw_xor_churn_total": 304,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 101,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "49d1ce48b84547beae77904b09a3862847d98b849997a15335bb5963eae16350",
+ "committed_normalized_churn": 0.008972992181947406,
+ "committed_xor_churn_total": 202,
+ "confirmation_two": true,
+ "current_mask_sha256": "49d1ce48b84547beae77904b09a3862847d98b849997a15335bb5963eae16350",
+ "current_selected_count": 84,
+ "dwell_total": 11155,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.093127945585366e-09,
+ "last_committed_normalized_gap": -0.5676195025444031,
+ "last_committed_score_gap": -1.0624477297938029e-08,
+ "last_cutoff_score_margin": 1.7792078921274879e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 82,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0342994016809826e-08,
+ "last_raw_normalized_gap": 0.01720205880701542,
+ "last_raw_score_gap": 1.7792078921274879e-10,
+ "layer_index": 10,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "60896003962a408c55fb6efbb62d765402e700416fcaf5a7444c2ef365404639",
+ "raw_normalized_churn": 0.05881307746979389,
+ "raw_xor_churn_total": 1324,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 16,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2fb460348b976f5e617fd41d06e29a392f88ec45c620075786114fe727d8e226",
+ "committed_normalized_churn": 0.003980099502487562,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": true,
+ "current_mask_sha256": "2fb460348b976f5e617fd41d06e29a392f88ec45c620075786114fe727d8e226",
+ "current_selected_count": 30,
+ "dwell_total": 4004,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2041454056088696e-06,
+ "last_committed_normalized_gap": 0.5270116925239563,
+ "last_committed_score_gap": 6.345986776068457e-07,
+ "last_cutoff_score_margin": 6.345986776068457e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2041454056088696e-06,
+ "last_raw_normalized_gap": 0.5270116925239563,
+ "last_raw_score_gap": 6.345986776068457e-07,
+ "layer_index": 12,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "2fb460348b976f5e617fd41d06e29a392f88ec45c620075786114fe727d8e226",
+ "raw_normalized_churn": 0.03233830845771144,
+ "raw_xor_churn_total": 260,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 94,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d23fe00175d287e382c8a15537807d129ba8fb3ed692889b6f4dba433e5f3810",
+ "committed_normalized_churn": 0.011314395763119885,
+ "committed_xor_churn_total": 188,
+ "confirmation_two": true,
+ "current_mask_sha256": "d23fe00175d287e382c8a15537807d129ba8fb3ed692889b6f4dba433e5f3810",
+ "current_selected_count": 62,
+ "dwell_total": 8214,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2507359592461853e-08,
+ "last_committed_normalized_gap": -0.7755441069602966,
+ "last_committed_score_gap": -4.32156603835665e-08,
+ "last_cutoff_score_margin": 1.2945733374181145e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 58,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9460939526538823e-08,
+ "last_raw_normalized_gap": 0.0066521624103188515,
+ "last_raw_score_gap": 1.2945733374181145e-10,
+ "layer_index": 13,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "f637a95844f416840aa39d7206f46ddf1eda6958f9432e78dc5ff067d4edfd48",
+ "raw_normalized_churn": 0.0784785748675975,
+ "raw_xor_churn_total": 1304,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ee8e3c250305562a7151e7d4b6c9a7c4ebf5c755430310a82a591326d212269b",
+ "committed_normalized_churn": 0.004284134881149806,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "ee8e3c250305562a7151e7d4b6c9a7c4ebf5c755430310a82a591326d212269b",
+ "current_selected_count": 54,
+ "dwell_total": 7205,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.031680246261658e-08,
+ "last_committed_normalized_gap": -0.288496732711792,
+ "last_committed_score_gap": -8.237954318701668e-09,
+ "last_cutoff_score_margin": 6.81286138615178e-11,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.772733331823929e-08,
+ "last_raw_normalized_gap": 0.002457092283293605,
+ "last_raw_score_gap": 6.81286138615178e-11,
+ "layer_index": 14,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "9dee65a1566acc1bba2ca08b3c45564919ae087cb9e4cfe360bd084c6792269c",
+ "raw_normalized_churn": 0.04588170259812051,
+ "raw_xor_churn_total": 664,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 16,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7059ef2229f86d82ca5aa000152ad589d7189de0274584133f5164de5745526e",
+ "committed_normalized_churn": 0.0026533996683250414,
+ "committed_xor_churn_total": 32,
+ "confirmation_two": true,
+ "current_mask_sha256": "7059ef2229f86d82ca5aa000152ad589d7189de0274584133f5164de5745526e",
+ "current_selected_count": 45,
+ "dwell_total": 6014,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9054052674837294e-07,
+ "last_committed_normalized_gap": 0.13166826963424683,
+ "last_committed_score_gap": 3.8254967194006895e-08,
+ "last_cutoff_score_margin": 3.8254967194006895e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9054052674837294e-07,
+ "last_raw_normalized_gap": 0.13166826963424683,
+ "last_raw_score_gap": 3.8254967194006895e-08,
+ "layer_index": 16,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "7059ef2229f86d82ca5aa000152ad589d7189de0274584133f5164de5745526e",
+ "raw_normalized_churn": 0.020895522388059702,
+ "raw_xor_churn_total": 252,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8e787ea2a3baab33c885c6386dc2fd2e12de01d2ec44d4af2b440b51176fbdbe",
+ "committed_normalized_churn": 0.0019347705914870095,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "8e787ea2a3baab33c885c6386dc2fd2e12de01d2ec44d4af2b440b51176fbdbe",
+ "current_selected_count": 27,
+ "dwell_total": 3611,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.5732684712857e-07,
+ "last_committed_normalized_gap": 0.5345708727836609,
+ "last_committed_score_gap": 5.117590262671001e-07,
+ "last_cutoff_score_margin": 5.117590262671001e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.5732684712857e-07,
+ "last_raw_normalized_gap": 0.5345708727836609,
+ "last_raw_score_gap": 5.117590262671001e-07,
+ "layer_index": 17,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "8e787ea2a3baab33c885c6386dc2fd2e12de01d2ec44d4af2b440b51176fbdbe",
+ "raw_normalized_churn": 0.01630735212824765,
+ "raw_xor_churn_total": 118,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d065310e417ed8ba830ab4fc1e29c37ac948c1567cbb1d6efb36a371267c4824",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "d065310e417ed8ba830ab4fc1e29c37ac948c1567cbb1d6efb36a371267c4824",
+ "current_selected_count": 7,
+ "dwell_total": 938,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.94460652791895e-06,
+ "last_committed_normalized_gap": 0.06569924205541611,
+ "last_committed_score_gap": 3.905561243300326e-07,
+ "last_cutoff_score_margin": 3.905561243300326e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.94460652791895e-06,
+ "last_raw_normalized_gap": 0.06569924205541611,
+ "last_raw_score_gap": 3.905561243300326e-07,
+ "layer_index": 18,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "d065310e417ed8ba830ab4fc1e29c37ac948c1567cbb1d6efb36a371267c4824",
+ "raw_normalized_churn": 0.005330490405117271,
+ "raw_xor_churn_total": 10,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 3,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "committed_normalized_churn": 0.0024875621890547263,
+ "committed_xor_churn_total": 6,
+ "confirmation_two": true,
+ "current_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "current_selected_count": 9,
+ "dwell_total": 1203,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.467236860567937e-06,
+ "last_committed_normalized_gap": 0.05282684415578842,
+ "last_committed_score_gap": 2.8881686375825666e-07,
+ "last_cutoff_score_margin": 2.8881686375825666e-07,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.467236860567937e-06,
+ "last_raw_normalized_gap": 0.05282684415578842,
+ "last_raw_score_gap": 2.8881686375825666e-07,
+ "layer_index": 20,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "raw_normalized_churn": 0.03067993366500829,
+ "raw_xor_churn_total": 74,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "04883c87a0f4b42e30df9c653dcfdfeda23785262d25c6ba37fea5c8eb4590cf",
+ "committed_normalized_churn": 0.0021321961620469083,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "04883c87a0f4b42e30df9c653dcfdfeda23785262d25c6ba37fea5c8eb4590cf",
+ "current_selected_count": 7,
+ "dwell_total": 936,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1029434062947985e-05,
+ "last_committed_normalized_gap": 0.9409765601158142,
+ "last_committed_score_gap": 1.0378438673797064e-05,
+ "last_cutoff_score_margin": 1.0378438673797064e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1029434062947985e-05,
+ "last_raw_normalized_gap": 0.9409765601158142,
+ "last_raw_score_gap": 1.0378438673797064e-05,
+ "layer_index": 21,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "04883c87a0f4b42e30df9c653dcfdfeda23785262d25c6ba37fea5c8eb4590cf",
+ "raw_normalized_churn": 0.006396588486140725,
+ "raw_xor_churn_total": 12,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 15,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9ea9fa43428cdd9bec0e548894f00a8ff2ac27498aa436f68ae8b2459e5cf1a6",
+ "committed_normalized_churn": 0.0020352781546811396,
+ "committed_xor_churn_total": 30,
+ "confirmation_two": true,
+ "current_mask_sha256": "9ea9fa43428cdd9bec0e548894f00a8ff2ac27498aa436f68ae8b2459e5cf1a6",
+ "current_selected_count": 55,
+ "dwell_total": 7355,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3855563452125352e-07,
+ "last_committed_normalized_gap": -0.41040071845054626,
+ "last_committed_score_gap": -9.64440260986521e-08,
+ "last_cutoff_score_margin": 2.5298788841610076e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9442769882971334e-07,
+ "last_raw_normalized_gap": 0.13011926412582397,
+ "last_raw_score_gap": 2.5298788841610076e-08,
+ "layer_index": 22,
+ "mask_transition_count": 134,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "cadadeffefacbf2ee31a52502c5a5549b1292998d66de9070a5793b3c907b6d5",
+ "raw_normalized_churn": 0.012211668928086838,
+ "raw_xor_churn_total": 180,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 135,
+ "tokens_observed": 209
+ }
+ ],
+ "task_id": 771
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 50,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8e5c429c504aae2eac4ea228d115d7f26cf5e27772cfa97f8b117671b702413c",
+ "committed_normalized_churn": 0.003061849357011635,
+ "committed_xor_churn_total": 100,
+ "confirmation_two": true,
+ "current_mask_sha256": "8e5c429c504aae2eac4ea228d115d7f26cf5e27772cfa97f8b117671b702413c",
+ "current_selected_count": 355,
+ "dwell_total": 16280,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.449837442965787e-10,
+ "last_committed_normalized_gap": -0.9996181130409241,
+ "last_committed_score_gap": -1.1646559414657531e-06,
+ "last_cutoff_score_margin": 3.6709568718151786e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 355,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4926184732644288e-08,
+ "last_raw_normalized_gap": 0.024594074115157127,
+ "last_raw_score_gap": 3.6709568718151786e-10,
+ "layer_index": 0,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "a6186ec795e318fdfab258c240c75fe6c1d913f8d5fce5e6d1dd1022c2ad180e",
+ "raw_normalized_churn": 0.019902020820575628,
+ "raw_xor_churn_total": 650,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 329,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "59be71de5e7e1d4500152d7b0ed266ff4fa507115e0cd9b2cf2cf31aa03b40a8",
+ "committed_normalized_churn": 0.018821510297482837,
+ "committed_xor_churn_total": 658,
+ "confirmation_two": true,
+ "current_mask_sha256": "59be71de5e7e1d4500152d7b0ed266ff4fa507115e0cd9b2cf2cf31aa03b40a8",
+ "current_selected_count": 380,
+ "dwell_total": 17151,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0963992908008535e-10,
+ "last_committed_normalized_gap": -0.9755423069000244,
+ "last_committed_score_gap": -4.373197803886342e-09,
+ "last_cutoff_score_margin": 4.912459328210161e-12,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 371,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.202115322371469e-10,
+ "last_raw_normalized_gap": 0.011690444312989712,
+ "last_raw_score_gap": 4.912459328210161e-12,
+ "layer_index": 1,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "48a9a5d079685297830e76dd6a1677a746fb8c35e7dcd3a27ca477e0bf519fff",
+ "raw_normalized_churn": 0.15263157894736842,
+ "raw_xor_churn_total": 5336,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 47,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c26073e9e090d2d3baaed05bb557852ba53282ef8e73ebbe27d4ade62985c099",
+ "committed_normalized_churn": 0.0037982867302408276,
+ "committed_xor_churn_total": 94,
+ "confirmation_two": true,
+ "current_mask_sha256": "c26073e9e090d2d3baaed05bb557852ba53282ef8e73ebbe27d4ade62985c099",
+ "current_selected_count": 269,
+ "dwell_total": 12327,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0671794559158343e-09,
+ "last_committed_normalized_gap": -0.9021041393280029,
+ "last_committed_score_gap": -9.8339887344423e-09,
+ "last_cutoff_score_margin": 1.400546345564635e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 268,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.0555267205301107e-09,
+ "last_raw_normalized_gap": 0.045836493372917175,
+ "last_raw_score_gap": 1.400546345564635e-10,
+ "layer_index": 2,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "8167983ccb6a8b9215a2b5343ea1b606174d20f6c93f1f9750dc9c0644a668ff",
+ "raw_normalized_churn": 0.03297236140294165,
+ "raw_xor_churn_total": 816,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "dce3cb14242403bfe3d0f57ff82292d56508eed0e375d24d66502a3b068a7a2d",
+ "committed_normalized_churn": 0.0013359242166626185,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "dce3cb14242403bfe3d0f57ff82292d56508eed0e375d24d66502a3b068a7a2d",
+ "current_selected_count": 179,
+ "dwell_total": 8223,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9776654741908715e-07,
+ "last_committed_normalized_gap": 0.49714377522468567,
+ "last_committed_score_gap": 1.4803278247654816e-07,
+ "last_cutoff_score_margin": 1.4803278247654816e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9776654741908715e-07,
+ "last_raw_normalized_gap": 0.49714377522468567,
+ "last_raw_score_gap": 1.4803278247654816e-07,
+ "layer_index": 4,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "dce3cb14242403bfe3d0f57ff82292d56508eed0e375d24d66502a3b068a7a2d",
+ "raw_normalized_churn": 0.009472917172698566,
+ "raw_xor_churn_total": 156,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 13,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e41c4390701d14dc2c787a7d234883bf7bf442ce867b04da3d47184a204d764f",
+ "committed_normalized_churn": 0.001527614571092832,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_mask_sha256": "e41c4390701d14dc2c787a7d234883bf7bf442ce867b04da3d47184a204d764f",
+ "current_selected_count": 185,
+ "dwell_total": 8497,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3008355281840522e-08,
+ "last_committed_normalized_gap": -0.6837520003318787,
+ "last_committed_score_gap": -2.812504540372629e-08,
+ "last_cutoff_score_margin": 6.993058576654221e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.113340068556681e-08,
+ "last_raw_normalized_gap": 0.17000925540924072,
+ "last_raw_score_gap": 6.993058576654221e-09,
+ "layer_index": 5,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "96c66a156ebc2d5796f2607a7ea62485331e93d9942d6cb3b76a1f8af31b57fe",
+ "raw_normalized_churn": 0.00881316098707403,
+ "raw_xor_churn_total": 150,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 34,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a3700cb3f0633a2a215205c4b5527b649c637b057957946cf46956cb39e28db4",
+ "committed_normalized_churn": 0.007039337474120083,
+ "committed_xor_churn_total": 68,
+ "confirmation_two": true,
+ "current_mask_sha256": "a3700cb3f0633a2a215205c4b5527b649c637b057957946cf46956cb39e28db4",
+ "current_selected_count": 105,
+ "dwell_total": 4796,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.030543898636552e-09,
+ "last_committed_normalized_gap": -0.8758398294448853,
+ "last_committed_score_gap": -2.8431909271375844e-08,
+ "last_cutoff_score_margin": 2.803126619710383e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7529107054770066e-08,
+ "last_raw_normalized_gap": 0.015991268679499626,
+ "last_raw_score_gap": 2.803126619710383e-10,
+ "layer_index": 6,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "91b4659cc175101faad970335296fc0432ba05cfbfba8f5b806f1f498647d69e",
+ "raw_normalized_churn": 0.04927536231884058,
+ "raw_xor_churn_total": 476,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9c0516fbce151a6317bfdaa1834b1b19f9b3f1f617cf49620fee1f638376e831",
+ "committed_normalized_churn": 0.001358695652173913,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "9c0516fbce151a6317bfdaa1834b1b19f9b3f1f617cf49620fee1f638376e831",
+ "current_selected_count": 80,
+ "dwell_total": 3675,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.969579166427593e-08,
+ "last_committed_normalized_gap": -0.8767987489700317,
+ "last_committed_score_gap": -1.401710392201494e-07,
+ "last_cutoff_score_margin": 3.1070833017565747e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2306600183364935e-07,
+ "last_raw_normalized_gap": 0.2524729073047638,
+ "last_raw_score_gap": 3.1070833017565747e-08,
+ "layer_index": 8,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "e2d9c195be5952b2b3502fb0c265e2243cc02b43f4cc4952629bc89ffdf30943",
+ "raw_normalized_churn": 0.015217391304347827,
+ "raw_xor_churn_total": 112,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fddfec55dd63c620acbecf7b7f85edcbb565eec1aedf915a436775ab9fd43c23",
+ "committed_normalized_churn": 0.004044489383215369,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "fddfec55dd63c620acbecf7b7f85edcbb565eec1aedf915a436775ab9fd43c23",
+ "current_selected_count": 43,
+ "dwell_total": 1970,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.220899706477212e-08,
+ "last_committed_normalized_gap": -0.08557561039924622,
+ "last_committed_score_gap": -5.82177506203152e-09,
+ "last_cutoff_score_margin": 4.190937374914938e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.639993443968706e-08,
+ "last_raw_normalized_gap": 0.06311658769845963,
+ "last_raw_score_gap": 4.190937374914938e-09,
+ "layer_index": 9,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "f06b8a2c03027901cf1abc81705021846dcc3ae8f29c4e96035053c7bc35738f",
+ "raw_normalized_churn": 0.024266936299292215,
+ "raw_xor_churn_total": 96,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 36,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2fffe79a2147fcef641a5eb6c04cd6ef00a8eed023bf33139b09bf61ded917ac",
+ "committed_normalized_churn": 0.009316770186335404,
+ "committed_xor_churn_total": 72,
+ "confirmation_two": true,
+ "current_mask_sha256": "2fffe79a2147fcef641a5eb6c04cd6ef00a8eed023bf33139b09bf61ded917ac",
+ "current_selected_count": 84,
+ "dwell_total": 3828,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.225087498113453e-08,
+ "last_committed_normalized_gap": -0.5136226415634155,
+ "last_committed_score_gap": -1.293712958982951e-08,
+ "last_cutoff_score_margin": 6.221965165309484e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4045017593389275e-08,
+ "last_raw_normalized_gap": 0.04430015757679939,
+ "last_raw_score_gap": 6.221965165309484e-10,
+ "layer_index": 10,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "5685911432cfcd3e2cd08157cb63ff015dbf97822eccc8667fc7795d42751b9d",
+ "raw_normalized_churn": 0.06262939958592133,
+ "raw_xor_churn_total": 484,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f50fb68d7526e2d0a0adbdee745b6e4477155d02f4af3b35294e4dda0617af92",
+ "committed_normalized_churn": 0.005072463768115942,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "f50fb68d7526e2d0a0adbdee745b6e4477155d02f4af3b35294e4dda0617af92",
+ "current_selected_count": 30,
+ "dwell_total": 1373,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.813718869125296e-07,
+ "last_committed_normalized_gap": -0.05314946547150612,
+ "last_committed_score_gap": -3.824737859758898e-08,
+ "last_cutoff_score_margin": 3.824737859758898e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.196192655101186e-07,
+ "last_raw_normalized_gap": 0.05314946547150612,
+ "last_raw_score_gap": 3.824737859758898e-08,
+ "layer_index": 12,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "e78a675cfa008caa50971d44d631b2a06cfcf86943ef88330dd8bcdae9a2add1",
+ "raw_normalized_churn": 0.0463768115942029,
+ "raw_xor_churn_total": 128,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 42,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "081b6b850a4672e07a4eab2fb8203fef8a60783c970028cf3924888913b9cfd4",
+ "committed_normalized_churn": 0.014726507713884993,
+ "committed_xor_churn_total": 84,
+ "confirmation_two": true,
+ "current_mask_sha256": "081b6b850a4672e07a4eab2fb8203fef8a60783c970028cf3924888913b9cfd4",
+ "current_selected_count": 62,
+ "dwell_total": 2810,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.944508327919266e-09,
+ "last_committed_normalized_gap": -0.4623658359050751,
+ "last_committed_score_gap": -8.55228510232564e-09,
+ "last_cutoff_score_margin": 5.049018980685105e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 60,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3329212400492452e-08,
+ "last_raw_normalized_gap": 0.037879351526498795,
+ "last_raw_score_gap": 5.049018980685105e-10,
+ "layer_index": 13,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "95c620cfea0f56bddcbb300ea92eb60d5e7d45ecc047acd756086426879ecd68",
+ "raw_normalized_churn": 0.06276297335203367,
+ "raw_xor_churn_total": 358,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8681a80b38ceb34671baf3206856abe7b5295ed78ed5575ec61139eec66e86ee",
+ "committed_normalized_churn": 0.0036231884057971015,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "8681a80b38ceb34671baf3206856abe7b5295ed78ed5575ec61139eec66e86ee",
+ "current_selected_count": 54,
+ "dwell_total": 2475,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.759509565297691e-10,
+ "last_committed_normalized_gap": -0.9910925030708313,
+ "last_committed_score_gap": -3.070363518986596e-08,
+ "last_cutoff_score_margin": 1.056292830980965e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.992548526175142e-08,
+ "last_raw_normalized_gap": 0.005301215220242739,
+ "last_raw_score_gap": 1.056292830980965e-10,
+ "layer_index": 14,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "aee565d0245d675578ca4bb371d9a0f51cb60bb9d8c754d352a4c1b18bfe674e",
+ "raw_normalized_churn": 0.0430756843800322,
+ "raw_xor_churn_total": 214,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6014e4dbc1e699e1cb2fca136e51fcb3c8af7f7d72066c2c096ca1b0d243ff80",
+ "committed_normalized_churn": 0.0004830917874396135,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "6014e4dbc1e699e1cb2fca136e51fcb3c8af7f7d72066c2c096ca1b0d243ff80",
+ "current_selected_count": 45,
+ "dwell_total": 2069,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6566253862038138e-06,
+ "last_committed_normalized_gap": 0.5552512407302856,
+ "last_committed_score_gap": 9.198433303936326e-07,
+ "last_cutoff_score_margin": 9.198433303936326e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6566253862038138e-06,
+ "last_raw_normalized_gap": 0.5552512407302856,
+ "last_raw_score_gap": 9.198433303936326e-07,
+ "layer_index": 16,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "6014e4dbc1e699e1cb2fca136e51fcb3c8af7f7d72066c2c096ca1b0d243ff80",
+ "raw_normalized_churn": 0.0024154589371980675,
+ "raw_xor_churn_total": 10,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "aba1f6336dd6b022f669c3aaaebcfc99b82482418c92e5abcd3e9e4bf33bff6b",
+ "committed_normalized_churn": 0.0008051529790660225,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "aba1f6336dd6b022f669c3aaaebcfc99b82482418c92e5abcd3e9e4bf33bff6b",
+ "current_selected_count": 27,
+ "dwell_total": 1241,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1119617485965136e-06,
+ "last_committed_normalized_gap": 0.7897310853004456,
+ "last_committed_score_gap": 1.6678818610671442e-06,
+ "last_cutoff_score_margin": 1.6678818610671442e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1119617485965136e-06,
+ "last_raw_normalized_gap": 0.7897310853004456,
+ "last_raw_score_gap": 1.6678818610671442e-06,
+ "layer_index": 17,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "aba1f6336dd6b022f669c3aaaebcfc99b82482418c92e5abcd3e9e4bf33bff6b",
+ "raw_normalized_churn": 0.00644122383252818,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "current_selected_count": 7,
+ "dwell_total": 322,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.392442158656195e-05,
+ "last_committed_normalized_gap": 0.7221270799636841,
+ "last_committed_score_gap": 2.4497743652318604e-05,
+ "last_cutoff_score_margin": 2.4497743652318604e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.392442158656195e-05,
+ "last_raw_normalized_gap": 0.7221270799636841,
+ "last_raw_score_gap": 2.4497743652318604e-05,
+ "layer_index": 18,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "committed_normalized_churn": 0.0024154589371980675,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "current_selected_count": 9,
+ "dwell_total": 413,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2271055058808997e-05,
+ "last_committed_normalized_gap": 0.7154039740562439,
+ "last_committed_score_gap": 1.593280103406869e-05,
+ "last_cutoff_score_margin": 1.593280103406869e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.2271055058808997e-05,
+ "last_raw_normalized_gap": 0.7154039740562439,
+ "last_raw_score_gap": 1.593280103406869e-05,
+ "layer_index": 20,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "raw_normalized_churn": 0.021739130434782608,
+ "raw_xor_churn_total": 18,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "547790e8696634049b18ee3f444d48cf933480889d158b2d85991b93a78bbb70",
+ "committed_normalized_churn": 0.003105590062111801,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "547790e8696634049b18ee3f444d48cf933480889d158b2d85991b93a78bbb70",
+ "current_selected_count": 7,
+ "dwell_total": 321,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.240757956111338e-05,
+ "last_committed_normalized_gap": 0.8926661610603333,
+ "last_committed_score_gap": 1.107582647819072e-05,
+ "last_cutoff_score_margin": 1.107582647819072e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.240757956111338e-05,
+ "last_raw_normalized_gap": 0.8926661610603333,
+ "last_raw_score_gap": 1.107582647819072e-05,
+ "layer_index": 21,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "547790e8696634049b18ee3f444d48cf933480889d158b2d85991b93a78bbb70",
+ "raw_normalized_churn": 0.009316770186335404,
+ "raw_xor_churn_total": 6,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "de9126a5bd0eaffcc9b581ad20e147dcffa8376735c16be2c27db3450ae80118",
+ "committed_normalized_churn": 0.0003952569169960474,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "de9126a5bd0eaffcc9b581ad20e147dcffa8376735c16be2c27db3450ae80118",
+ "current_selected_count": 55,
+ "dwell_total": 2529,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4808817638822802e-07,
+ "last_committed_normalized_gap": 0.3405814468860626,
+ "last_committed_score_gap": 5.0436085530236596e-08,
+ "last_cutoff_score_margin": 5.0436085530236596e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4808817638822802e-07,
+ "last_raw_normalized_gap": 0.3405814468860626,
+ "last_raw_score_gap": 5.0436085530236596e-08,
+ "layer_index": 22,
+ "mask_transition_count": 46,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "de9126a5bd0eaffcc9b581ad20e147dcffa8376735c16be2c27db3450ae80118",
+ "raw_normalized_churn": 0.002766798418972332,
+ "raw_xor_churn_total": 14,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 47,
+ "tokens_observed": 351
+ }
+ ],
+ "task_id": 869
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 31,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "24c7a1aa401295e425f16c15d3582fa66e76019a14e7d1280db7a7dfb68550a6",
+ "committed_normalized_churn": 0.002494969818913481,
+ "committed_xor_churn_total": 62,
+ "confirmation_two": true,
+ "current_mask_sha256": "24c7a1aa401295e425f16c15d3582fa66e76019a14e7d1280db7a7dfb68550a6",
+ "current_selected_count": 355,
+ "dwell_total": 12394,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.435934038340747e-08,
+ "last_committed_normalized_gap": -0.38790035247802734,
+ "last_committed_score_gap": -9.099814235469239e-09,
+ "last_cutoff_score_margin": 1.3924825736921775e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 354,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3231557122471713e-08,
+ "last_raw_normalized_gap": 0.059939268976449966,
+ "last_raw_score_gap": 1.3924825736921775e-09,
+ "layer_index": 0,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "8155c5f4e5911fc0b55bb1dd319eb6feeb5782f570881c0a2308a0e6cf311ec0",
+ "raw_normalized_churn": 0.015935613682092554,
+ "raw_xor_churn_total": 396,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 243,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a11036392f0cf12df01c69f16dd13a77ef724ae8d955aca83c226d1ae9cbb595",
+ "committed_normalized_churn": 0.018270676691729323,
+ "committed_xor_churn_total": 486,
+ "confirmation_two": true,
+ "current_mask_sha256": "a11036392f0cf12df01c69f16dd13a77ef724ae8d955aca83c226d1ae9cbb595",
+ "current_selected_count": 380,
+ "dwell_total": 13057,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.426302492253285e-10,
+ "last_committed_normalized_gap": -0.9741989970207214,
+ "last_committed_score_gap": -9.161261971257773e-09,
+ "last_cutoff_score_margin": 2.5142110615661295e-12,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 377,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.018821162636414e-10,
+ "last_raw_normalized_gap": 0.003135387320071459,
+ "last_raw_score_gap": 2.5142110615661295e-12,
+ "layer_index": 1,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "a0ee609e7e6848c80ff91262c67a03fa648ec5e156ca6d615c20a4fea45090f8",
+ "raw_normalized_churn": 0.13526315789473684,
+ "raw_xor_churn_total": 3598,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 78,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fa8e3a965efe0892b9f5dda83ddfae87a6d98f3f2eefa1fa0ddd98fe065af488",
+ "committed_normalized_churn": 0.008284652150823154,
+ "committed_xor_churn_total": 156,
+ "confirmation_two": true,
+ "current_mask_sha256": "fa8e3a965efe0892b9f5dda83ddfae87a6d98f3f2eefa1fa0ddd98fe065af488",
+ "current_selected_count": 269,
+ "dwell_total": 9337,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4007748294631028e-09,
+ "last_committed_normalized_gap": -0.9444530606269836,
+ "last_committed_score_gap": -2.38170922983727e-08,
+ "last_cutoff_score_margin": 8.143574703467493e-11,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 269,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.1317353982606164e-09,
+ "last_raw_normalized_gap": 0.019709816202521324,
+ "last_raw_score_gap": 8.143574703467493e-11,
+ "layer_index": 2,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "9f74c578bd1a0a41edfab7cbdf90e0965324660584759874c588a5054ac92aba",
+ "raw_normalized_churn": 0.060754115772703135,
+ "raw_xor_churn_total": 1144,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1c37eb906d19916d27e5d029c91662f0d501610d3ee7dddcc75a33778832b79a",
+ "committed_normalized_churn": 0.0015961691939345571,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "1c37eb906d19916d27e5d029c91662f0d501610d3ee7dddcc75a33778832b79a",
+ "current_selected_count": 179,
+ "dwell_total": 6255,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.769048990103329e-07,
+ "last_committed_normalized_gap": -0.27431556582450867,
+ "last_committed_score_gap": -1.0467266520208796e-07,
+ "last_cutoff_score_margin": 3.239108536945423e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.921769350905379e-07,
+ "last_raw_normalized_gap": 0.011086120270192623,
+ "last_raw_score_gap": 3.239108536945423e-09,
+ "layer_index": 4,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "7b53e2dde1e6889b19e1c0dd752d52fbda29c14fe03c2f052fbbe6baa2f1ae08",
+ "raw_normalized_churn": 0.013088587390263367,
+ "raw_xor_churn_total": 164,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bd931a940a06e0e8c3643152dbbe068f583044dfec93d5113e9e9286dc2b3cef",
+ "committed_normalized_churn": 0.0012355212355212356,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "bd931a940a06e0e8c3643152dbbe068f583044dfec93d5113e9e9286dc2b3cef",
+ "current_selected_count": 185,
+ "dwell_total": 6467,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3718010666584632e-08,
+ "last_committed_normalized_gap": -0.4518771767616272,
+ "last_committed_score_gap": -1.955333139846971e-08,
+ "last_cutoff_score_margin": 8.030337284026245e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.5737738102170624e-08,
+ "last_raw_normalized_gap": 0.2247018963098526,
+ "last_raw_score_gap": 8.030337284026245e-09,
+ "layer_index": 5,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "1f8d63a1558311dd4c6cbe1aadf801b15ca34758c9cf094fc944f4522a6ff576",
+ "raw_normalized_churn": 0.009884169884169885,
+ "raw_xor_churn_total": 128,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 25,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4472c36b12a96b10344059d5a70602379a9793148a226c4c62b50f8f1b2164ea",
+ "committed_normalized_churn": 0.006802721088435374,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_mask_sha256": "4472c36b12a96b10344059d5a70602379a9793148a226c4c62b50f8f1b2164ea",
+ "current_selected_count": 105,
+ "dwell_total": 3650,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5860451557946362e-08,
+ "last_committed_normalized_gap": 0.004033756908029318,
+ "last_committed_score_gap": 1.0431477903694031e-10,
+ "last_cutoff_score_margin": 1.0431477903694031e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5860451557946362e-08,
+ "last_raw_normalized_gap": 0.004033756908029318,
+ "last_raw_score_gap": 1.0431477903694031e-10,
+ "layer_index": 6,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "4472c36b12a96b10344059d5a70602379a9793148a226c4c62b50f8f1b2164ea",
+ "raw_normalized_churn": 0.052244897959183675,
+ "raw_xor_churn_total": 384,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 7,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2c979e836075b7232f4517aadc7d20b93785e780c7347af828a2e97699b617b1",
+ "committed_normalized_churn": 0.0025,
+ "committed_xor_churn_total": 14,
+ "confirmation_two": true,
+ "current_mask_sha256": "2c979e836075b7232f4517aadc7d20b93785e780c7347af828a2e97699b617b1",
+ "current_selected_count": 80,
+ "dwell_total": 2793,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.992228117676859e-08,
+ "last_committed_normalized_gap": 0.2743975818157196,
+ "last_committed_score_gap": 2.467445625597975e-08,
+ "last_cutoff_score_margin": 2.467445625597975e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.992228117676859e-08,
+ "last_raw_normalized_gap": 0.2743975818157196,
+ "last_raw_score_gap": 2.467445625597975e-08,
+ "layer_index": 8,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "2c979e836075b7232f4517aadc7d20b93785e780c7347af828a2e97699b617b1",
+ "raw_normalized_churn": 0.016785714285714286,
+ "raw_xor_churn_total": 94,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6f6f421c2e53f851aa8646c76036e948f7f11cb707103c353f409a44d639ff9e",
+ "committed_normalized_churn": 0.00132890365448505,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "6f6f421c2e53f851aa8646c76036e948f7f11cb707103c353f409a44d639ff9e",
+ "current_selected_count": 43,
+ "dwell_total": 1503,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.334516307518243e-08,
+ "last_committed_normalized_gap": 0.29033806920051575,
+ "last_committed_score_gap": 9.681370372049969e-09,
+ "last_cutoff_score_margin": 9.681370372049969e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.334516307518243e-08,
+ "last_raw_normalized_gap": 0.29033806920051575,
+ "last_raw_score_gap": 9.681370372049969e-09,
+ "layer_index": 9,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "6f6f421c2e53f851aa8646c76036e948f7f11cb707103c353f409a44d639ff9e",
+ "raw_normalized_churn": 0.0212624584717608,
+ "raw_xor_churn_total": 64,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 24,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6163fdfc10839b16aecb49eab5e5d8256cc06ad619bb7b145b97eab2bebb2ef7",
+ "committed_normalized_churn": 0.00816326530612245,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_mask_sha256": "6163fdfc10839b16aecb49eab5e5d8256cc06ad619bb7b145b97eab2bebb2ef7",
+ "current_selected_count": 84,
+ "dwell_total": 2916,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1133126420759254e-08,
+ "last_committed_normalized_gap": -0.6912023425102234,
+ "last_committed_score_gap": -2.492001449638792e-08,
+ "last_cutoff_score_margin": 8.994831546260684e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.953031869561528e-08,
+ "last_raw_normalized_gap": 0.046055734157562256,
+ "last_raw_score_gap": 8.994831546260684e-10,
+ "layer_index": 10,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "08d774e1ec34b8889d572e20f0bc2e88cff0d12931f3dc5ba5666de6c84213f7",
+ "raw_normalized_churn": 0.07551020408163266,
+ "raw_xor_churn_total": 444,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 8,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "95477129484dd4a8013a2d7b6bb33235a8f19e3489149ba57a9fde3dacde8fea",
+ "committed_normalized_churn": 0.007619047619047619,
+ "committed_xor_churn_total": 16,
+ "confirmation_two": true,
+ "current_mask_sha256": "95477129484dd4a8013a2d7b6bb33235a8f19e3489149ba57a9fde3dacde8fea",
+ "current_selected_count": 30,
+ "dwell_total": 1042,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.669626711503952e-07,
+ "last_committed_normalized_gap": 0.42555952072143555,
+ "last_committed_score_gap": 3.263882604187529e-07,
+ "last_cutoff_score_margin": 3.263882604187529e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.669626711503952e-07,
+ "last_raw_normalized_gap": 0.42555952072143555,
+ "last_raw_score_gap": 3.263882604187529e-07,
+ "layer_index": 12,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "95477129484dd4a8013a2d7b6bb33235a8f19e3489149ba57a9fde3dacde8fea",
+ "raw_normalized_churn": 0.03619047619047619,
+ "raw_xor_churn_total": 76,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 22,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "961aa29044d205e0723fb65bfe98ad6cbd45a685df5aa93f47f5d8201b216bfe",
+ "committed_normalized_churn": 0.010138248847926268,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_mask_sha256": "961aa29044d205e0723fb65bfe98ad6cbd45a685df5aa93f47f5d8201b216bfe",
+ "current_selected_count": 62,
+ "dwell_total": 2148,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9304795035045572e-08,
+ "last_committed_normalized_gap": 0.13476571440696716,
+ "last_committed_score_gap": 3.949281790482928e-09,
+ "last_cutoff_score_margin": 3.949281790482928e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9304795035045572e-08,
+ "last_raw_normalized_gap": 0.13476571440696716,
+ "last_raw_score_gap": 3.949281790482928e-09,
+ "layer_index": 13,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "961aa29044d205e0723fb65bfe98ad6cbd45a685df5aa93f47f5d8201b216bfe",
+ "raw_normalized_churn": 0.0815668202764977,
+ "raw_xor_churn_total": 354,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 9,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "60e98d90847165257708234db853c04dd587a40b52ffc362431cd674736f2c9d",
+ "committed_normalized_churn": 0.004761904761904762,
+ "committed_xor_churn_total": 18,
+ "confirmation_two": true,
+ "current_mask_sha256": "60e98d90847165257708234db853c04dd587a40b52ffc362431cd674736f2c9d",
+ "current_selected_count": 54,
+ "dwell_total": 1881,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.70869166488319e-08,
+ "last_committed_normalized_gap": -0.41497379541397095,
+ "last_committed_score_gap": -2.630668305414474e-08,
+ "last_cutoff_score_margin": 9.1918082034681e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.745806236883254e-08,
+ "last_raw_normalized_gap": 0.19368276000022888,
+ "last_raw_score_gap": 9.1918082034681e-09,
+ "layer_index": 14,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "078e727c94a487d5088ce7286185f0e6957d12dfcbdb08988daad2f363b6a334",
+ "raw_normalized_churn": 0.05026455026455026,
+ "raw_xor_churn_total": 190,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d1f0edf316b6d1728eac20d7304d6f31b0b8e1ca4c799f2b45777c055957aff7",
+ "committed_normalized_churn": 0.0031746031746031746,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "d1f0edf316b6d1728eac20d7304d6f31b0b8e1ca4c799f2b45777c055957aff7",
+ "current_selected_count": 45,
+ "dwell_total": 1570,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.015990940497431e-07,
+ "last_committed_normalized_gap": 0.5491647720336914,
+ "last_committed_score_gap": 4.951264713781711e-07,
+ "last_cutoff_score_margin": 4.951264713781711e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.015990940497431e-07,
+ "last_raw_normalized_gap": 0.5491647720336914,
+ "last_raw_score_gap": 4.951264713781711e-07,
+ "layer_index": 16,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "d1f0edf316b6d1728eac20d7304d6f31b0b8e1ca4c799f2b45777c055957aff7",
+ "raw_normalized_churn": 0.017777777777777778,
+ "raw_xor_churn_total": 56,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "258c2584e785aceb811dc4d86be305c542beb7781606ce06ab371fd71da13f4c",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "258c2584e785aceb811dc4d86be305c542beb7781606ce06ab371fd71da13f4c",
+ "current_selected_count": 27,
+ "dwell_total": 945,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5799292870942736e-06,
+ "last_committed_normalized_gap": 0.6691051125526428,
+ "last_committed_score_gap": 1.7262439087062376e-06,
+ "last_cutoff_score_margin": 1.7262439087062376e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5799292870942736e-06,
+ "last_raw_normalized_gap": 0.6691051125526428,
+ "last_raw_score_gap": 1.7262439087062376e-06,
+ "layer_index": 17,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "258c2584e785aceb811dc4d86be305c542beb7781606ce06ab371fd71da13f4c",
+ "raw_normalized_churn": 0.0021164021164021165,
+ "raw_xor_churn_total": 4,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "current_selected_count": 7,
+ "dwell_total": 245,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.562578346347436e-05,
+ "last_committed_normalized_gap": 0.8946518301963806,
+ "last_committed_score_gap": 5.8712226746138185e-05,
+ "last_cutoff_score_margin": 5.8712226746138185e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.562578346347436e-05,
+ "last_raw_normalized_gap": 0.8946518301963806,
+ "last_raw_score_gap": 5.8712226746138185e-05,
+ "layer_index": 18,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c99ff900307cd42fd1992741fd875fb6669c6dbe7ae519635746e9c65b9c34c7",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "c99ff900307cd42fd1992741fd875fb6669c6dbe7ae519635746e9c65b9c34c7",
+ "current_selected_count": 9,
+ "dwell_total": 315,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.274945114157163e-06,
+ "last_committed_normalized_gap": 0.14652365446090698,
+ "last_committed_score_gap": 1.3589988157036714e-06,
+ "last_cutoff_score_margin": 1.3589988157036714e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.274945114157163e-06,
+ "last_raw_normalized_gap": 0.14652365446090698,
+ "last_raw_score_gap": 1.3589988157036714e-06,
+ "layer_index": 20,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "c99ff900307cd42fd1992741fd875fb6669c6dbe7ae519635746e9c65b9c34c7",
+ "raw_normalized_churn": 0.02857142857142857,
+ "raw_xor_churn_total": 18,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "committed_normalized_churn": 0.004081632653061225,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "current_selected_count": 7,
+ "dwell_total": 244,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4326185919344425e-05,
+ "last_committed_normalized_gap": 0.7304275035858154,
+ "last_committed_score_gap": 1.0464240403962322e-05,
+ "last_cutoff_score_margin": 1.0464240403962322e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4326185919344425e-05,
+ "last_raw_normalized_gap": 0.7304275035858154,
+ "last_raw_score_gap": 1.0464240403962322e-05,
+ "layer_index": 21,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "raw_normalized_churn": 0.004081632653061225,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c9d6c991d4249e66c0facd0d28be646eead530ac4435b191f8b62dca3f125ca4",
+ "committed_normalized_churn": 0.003116883116883117,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "c9d6c991d4249e66c0facd0d28be646eead530ac4435b191f8b62dca3f125ca4",
+ "current_selected_count": 55,
+ "dwell_total": 1919,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.813764462596737e-07,
+ "last_committed_normalized_gap": 0.3845207393169403,
+ "last_committed_score_gap": 1.8509922483644914e-07,
+ "last_cutoff_score_margin": 1.8509922483644914e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.813764462596737e-07,
+ "last_raw_normalized_gap": 0.3845207393169403,
+ "last_raw_score_gap": 1.8509922483644914e-07,
+ "layer_index": 22,
+ "mask_transition_count": 35,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "c9d6c991d4249e66c0facd0d28be646eead530ac4435b191f8b62dca3f125ca4",
+ "raw_normalized_churn": 0.013506493506493506,
+ "raw_xor_churn_total": 52,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 36,
+ "tokens_observed": 130
+ }
+ ],
+ "task_id": 851
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 36,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d8e30057e9fa278f36f165c3f52c6640fb281804cf2afadabade6b709cf5ccb7",
+ "committed_normalized_churn": 0.0028169014084507044,
+ "committed_xor_churn_total": 72,
+ "confirmation_two": true,
+ "current_mask_sha256": "d8e30057e9fa278f36f165c3f52c6640fb281804cf2afadabade6b709cf5ccb7",
+ "current_selected_count": 355,
+ "dwell_total": 12744,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.347159159896364e-09,
+ "last_committed_normalized_gap": -0.9441199898719788,
+ "last_committed_score_gap": -9.034290826548386e-08,
+ "last_cutoff_score_margin": 3.015951932638927e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 352,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3321826308754225e-08,
+ "last_raw_normalized_gap": 0.02263917773962021,
+ "last_raw_score_gap": 3.015951932638927e-10,
+ "layer_index": 0,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "2664501dd06907cef59e6f41ac36e8359b705640e9ae0336bff8713d9ec08bfb",
+ "raw_normalized_churn": 0.01619718309859155,
+ "raw_xor_churn_total": 414,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 216,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a724ffc2bc124198bde9206fc73a9419659bcc937c8b4253afae226ce7a31346",
+ "committed_normalized_churn": 0.015789473684210527,
+ "committed_xor_churn_total": 432,
+ "confirmation_two": true,
+ "current_mask_sha256": "a724ffc2bc124198bde9206fc73a9419659bcc937c8b4253afae226ce7a31346",
+ "current_selected_count": 380,
+ "dwell_total": 13464,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.655512532616754e-10,
+ "last_committed_normalized_gap": -0.9917827248573303,
+ "last_committed_score_gap": -1.998116516688242e-08,
+ "last_cutoff_score_margin": 1.1900036511747203e-10,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 373,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2779370329194535e-09,
+ "last_raw_normalized_gap": 0.036303430795669556,
+ "last_raw_score_gap": 1.1900036511747203e-10,
+ "layer_index": 1,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "5bd2966293082f26899c3f4af037d1ca2bfc54c1ba152b80838b8f227e62c61c",
+ "raw_normalized_churn": 0.14714912280701756,
+ "raw_xor_churn_total": 4026,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 75,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "06dee164aa1fd6448d58179157a88da870d30a0c8205e7f7988933a649ca9106",
+ "committed_normalized_churn": 0.007744733581164808,
+ "committed_xor_churn_total": 150,
+ "confirmation_two": true,
+ "current_mask_sha256": "06dee164aa1fd6448d58179157a88da870d30a0c8205e7f7988933a649ca9106",
+ "current_selected_count": 269,
+ "dwell_total": 9609,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8724863881658393e-09,
+ "last_committed_normalized_gap": -0.9758009314537048,
+ "last_committed_score_gap": -7.550593750238477e-08,
+ "last_cutoff_score_margin": 2.7552182757517585e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 266,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1703652269545728e-08,
+ "last_raw_normalized_gap": 0.002354152500629425,
+ "last_raw_score_gap": 2.7552182757517585e-11,
+ "layer_index": 2,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "a8f1e2450596a27b8a57c2b460417317b94328fe7ee42c844dfb39a2797ce03d",
+ "raw_normalized_churn": 0.05245766212308963,
+ "raw_xor_churn_total": 1016,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 6,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "50e06a5d89a700b26e9c6a6b783560dbade232fc727ef0a27da696b25d31532e",
+ "committed_normalized_churn": 0.000931098696461825,
+ "committed_xor_churn_total": 12,
+ "confirmation_two": true,
+ "current_mask_sha256": "50e06a5d89a700b26e9c6a6b783560dbade232fc727ef0a27da696b25d31532e",
+ "current_selected_count": 179,
+ "dwell_total": 6438,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2127578347408416e-07,
+ "last_committed_normalized_gap": -0.31229501962661743,
+ "last_committed_score_gap": -1.0048397314221802e-07,
+ "last_cutoff_score_margin": 3.399834724859829e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5527413072268246e-07,
+ "last_raw_normalized_gap": 0.13318367302417755,
+ "last_raw_score_gap": 3.399834724859829e-08,
+ "layer_index": 4,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "023e679a3c60d5f7a6c2d633f13731d182ae6b560757564b166f52dadeb5a525",
+ "raw_normalized_churn": 0.007138423339540658,
+ "raw_xor_churn_total": 92,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 13,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "419c1b782b07e3aed0c74d9d2da95c02f6e9b5c52d7036db94a13e2444077ab1",
+ "committed_normalized_churn": 0.001951951951951952,
+ "committed_xor_churn_total": 26,
+ "confirmation_two": true,
+ "current_mask_sha256": "419c1b782b07e3aed0c74d9d2da95c02f6e9b5c52d7036db94a13e2444077ab1",
+ "current_selected_count": 185,
+ "dwell_total": 6647,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.700978781917001e-08,
+ "last_committed_normalized_gap": -0.14970527589321136,
+ "last_committed_score_gap": -1.531918769615004e-08,
+ "last_cutoff_score_margin": 4.156476052230573e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.408340417849104e-08,
+ "last_raw_normalized_gap": 0.04417863115668297,
+ "last_raw_score_gap": 4.156476052230573e-09,
+ "layer_index": 5,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "b000c30e3fab0721a26ccae5b905f1489916a9d7c06012f50851912f6836729a",
+ "raw_normalized_churn": 0.0076576576576576575,
+ "raw_xor_churn_total": 102,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 30,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f2d79666bd5778d3aa5ae88db2b9b2cd3cd42fb2f3e9c6ba38b2d2fe544bb12d",
+ "committed_normalized_churn": 0.007936507936507936,
+ "committed_xor_churn_total": 60,
+ "confirmation_two": true,
+ "current_mask_sha256": "f2d79666bd5778d3aa5ae88db2b9b2cd3cd42fb2f3e9c6ba38b2d2fe544bb12d",
+ "current_selected_count": 105,
+ "dwell_total": 3750,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.4079818078680546e-08,
+ "last_committed_normalized_gap": -0.7643130421638489,
+ "last_committed_score_gap": -1.1051800186123728e-07,
+ "last_cutoff_score_margin": 3.2660807391948765e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.285918109303566e-08,
+ "last_raw_normalized_gap": 0.007620492484420538,
+ "last_raw_score_gap": 3.2660807391948765e-10,
+ "layer_index": 6,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "ef630407fe2c3d648846b91603aa9cdf6cc81d0433b24ec9d9a42d685121d1df",
+ "raw_normalized_churn": 0.04814814814814815,
+ "raw_xor_churn_total": 364,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "99262cc5f116d3aeb3bc0dc3a31247154e40ff6b7c26d94ddc72abbcbbcc6200",
+ "committed_normalized_churn": 0.001388888888888889,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "99262cc5f116d3aeb3bc0dc3a31247154e40ff6b7c26d94ddc72abbcbbcc6200",
+ "current_selected_count": 80,
+ "dwell_total": 2876,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1744331374075045e-07,
+ "last_committed_normalized_gap": -0.003438622923567891,
+ "last_committed_score_gap": -4.0523673305870034e-10,
+ "last_cutoff_score_margin": 4.0523673305870034e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1784855047380915e-07,
+ "last_raw_normalized_gap": 0.003438622923567891,
+ "last_raw_score_gap": 4.0523673305870034e-10,
+ "layer_index": 8,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "fcffccaf4367f4f446c99c75ce7d5e538c8544b28a0657bb60cb9c6c7f84d232",
+ "raw_normalized_churn": 0.012152777777777778,
+ "raw_xor_churn_total": 70,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7b0003f19159b52e712f2e8e685f957d75f791b7be3936ccc8d7ed5301e6b7ca",
+ "committed_normalized_churn": 0.003229974160206718,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "7b0003f19159b52e712f2e8e685f957d75f791b7be3936ccc8d7ed5301e6b7ca",
+ "current_selected_count": 43,
+ "dwell_total": 1543,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.991291622351127e-08,
+ "last_committed_normalized_gap": -0.020358683541417122,
+ "last_committed_score_gap": -1.8685497593651235e-09,
+ "last_cutoff_score_margin": 1.8685497593651235e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.17814659828764e-08,
+ "last_raw_normalized_gap": 0.020358683541417122,
+ "last_raw_score_gap": 1.8685497593651235e-09,
+ "layer_index": 9,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "438929a566f964d92590df783dbebfc351a1ac0feeb56a1d5ad8710b40efd4ed",
+ "raw_normalized_churn": 0.020671834625323,
+ "raw_xor_churn_total": 64,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 25,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f3a5e80dcffe5ee4dfa10b9956383a620c9ffb34fe82008217eabfd37ec83c9b",
+ "committed_normalized_churn": 0.008267195767195767,
+ "committed_xor_churn_total": 50,
+ "confirmation_two": true,
+ "current_mask_sha256": "f3a5e80dcffe5ee4dfa10b9956383a620c9ffb34fe82008217eabfd37ec83c9b",
+ "current_selected_count": 84,
+ "dwell_total": 2999,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.173786009673222e-09,
+ "last_committed_normalized_gap": -0.7609436511993408,
+ "last_committed_score_gap": -2.283497479993457e-08,
+ "last_cutoff_score_margin": 9.915126497617166e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4238610290817633e-08,
+ "last_raw_normalized_gap": 0.06963549554347992,
+ "last_raw_score_gap": 9.915126497617166e-10,
+ "layer_index": 10,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "d68b06ae96ff91f57d929fdbc4327212ce30b75c5c664b802344814b35e41755",
+ "raw_normalized_churn": 0.06911375661375661,
+ "raw_xor_churn_total": 418,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d8d1d70d89de9de4d6eb405aa95aba3d5b47d4d7612f971591b1bc0430d662e4",
+ "committed_normalized_churn": 0.001851851851851852,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "d8d1d70d89de9de4d6eb405aa95aba3d5b47d4d7612f971591b1bc0430d662e4",
+ "current_selected_count": 30,
+ "dwell_total": 1078,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.573639433961944e-07,
+ "last_committed_normalized_gap": -0.01944180205464363,
+ "last_committed_score_gap": -1.699919494058122e-08,
+ "last_cutoff_score_margin": 1.699919494058122e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.743631383367756e-07,
+ "last_raw_normalized_gap": 0.01944180205464363,
+ "last_raw_score_gap": 1.699919494058122e-08,
+ "layer_index": 12,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "5983eebc0b47366d0b81c48743704975272043185f60932303fe44bd57ff7d7c",
+ "raw_normalized_churn": 0.027777777777777776,
+ "raw_xor_churn_total": 60,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 26,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "19e0b6a22734a1eac51e842652f6405d0e2a392f60af0ff2b6f61fcb9f326c95",
+ "committed_normalized_churn": 0.011648745519713262,
+ "committed_xor_churn_total": 52,
+ "confirmation_two": true,
+ "current_mask_sha256": "19e0b6a22734a1eac51e842652f6405d0e2a392f60af0ff2b6f61fcb9f326c95",
+ "current_selected_count": 62,
+ "dwell_total": 2206,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7669462337721598e-08,
+ "last_committed_normalized_gap": -0.8402250409126282,
+ "last_committed_score_gap": -9.29202386146244e-08,
+ "last_cutoff_score_margin": 2.707665203161014e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.120056035754715e-08,
+ "last_raw_normalized_gap": 0.008678258396685123,
+ "last_raw_score_gap": 2.707665203161014e-10,
+ "layer_index": 13,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "e189d2a1357785c35bdee62ccf6a8458fa1160dc906c1470e183550de035943a",
+ "raw_normalized_churn": 0.08154121863799284,
+ "raw_xor_churn_total": 364,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 11,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3db8ed53ad6aa9fdad591e95a10b5a0a2f56bb5bdb829e30f7afc00cf85a0f2e",
+ "committed_normalized_churn": 0.00565843621399177,
+ "committed_xor_churn_total": 22,
+ "confirmation_two": true,
+ "current_mask_sha256": "3db8ed53ad6aa9fdad591e95a10b5a0a2f56bb5bdb829e30f7afc00cf85a0f2e",
+ "current_selected_count": 54,
+ "dwell_total": 1933,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.6295055022274028e-08,
+ "last_committed_normalized_gap": -0.7626810669898987,
+ "last_committed_score_gap": -8.450543020899204e-08,
+ "last_cutoff_score_margin": 4.3232972757323296e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.383024515026591e-08,
+ "last_raw_normalized_gap": 0.00803135335445404,
+ "last_raw_score_gap": 4.3232972757323296e-10,
+ "layer_index": 14,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "5ec1ab338016f609b71b530c31f07f5db712c7567817817acf0b7460b4d65727",
+ "raw_normalized_churn": 0.0411522633744856,
+ "raw_xor_churn_total": 160,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "609d76b03b5f453bab070feabb2d2df9812b1db86933f5046e16ce6c18d91243",
+ "committed_normalized_churn": 0.0012345679012345679,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "609d76b03b5f453bab070feabb2d2df9812b1db86933f5046e16ce6c18d91243",
+ "current_selected_count": 45,
+ "dwell_total": 1618,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.261861825696542e-06,
+ "last_committed_normalized_gap": 0.42935317754745483,
+ "last_committed_score_gap": 5.417844022304052e-07,
+ "last_cutoff_score_margin": 5.417844022304052e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.261861825696542e-06,
+ "last_raw_normalized_gap": 0.42935317754745483,
+ "last_raw_score_gap": 5.417844022304052e-07,
+ "layer_index": 16,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "609d76b03b5f453bab070feabb2d2df9812b1db86933f5046e16ce6c18d91243",
+ "raw_normalized_churn": 0.004320987654320987,
+ "raw_xor_churn_total": 14,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "717609975c45da9551613f11fb817ef88819d2b4e0bd73ad64461b02214bb899",
+ "committed_normalized_churn": 0.00102880658436214,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "717609975c45da9551613f11fb817ef88819d2b4e0bd73ad64461b02214bb899",
+ "current_selected_count": 27,
+ "dwell_total": 971,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.391784619248938e-06,
+ "last_committed_normalized_gap": 0.40627434849739075,
+ "last_committed_score_gap": 9.717207376525039e-07,
+ "last_cutoff_score_margin": 9.717207376525039e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.391784619248938e-06,
+ "last_raw_normalized_gap": 0.40627434849739075,
+ "last_raw_score_gap": 9.717207376525039e-07,
+ "layer_index": 17,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "717609975c45da9551613f11fb817ef88819d2b4e0bd73ad64461b02214bb899",
+ "raw_normalized_churn": 0.00823045267489712,
+ "raw_xor_churn_total": 16,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.383991447160952e-05,
+ "last_committed_normalized_gap": 0.9740835428237915,
+ "last_committed_score_gap": 5.2444574976107106e-05,
+ "last_cutoff_score_margin": 5.2444574976107106e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.383991447160952e-05,
+ "last_raw_normalized_gap": 0.9740835428237915,
+ "last_raw_score_gap": 5.2444574976107106e-05,
+ "layer_index": 18,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "current_selected_count": 9,
+ "dwell_total": 324,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1984095181105658e-05,
+ "last_committed_normalized_gap": 0.8444151282310486,
+ "last_committed_score_gap": 1.01195510069374e-05,
+ "last_cutoff_score_margin": 1.01195510069374e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1984095181105658e-05,
+ "last_raw_normalized_gap": 0.8444151282310486,
+ "last_raw_score_gap": 1.01195510069374e-05,
+ "layer_index": 20,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "current_selected_count": 7,
+ "dwell_total": 252,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3967879567644559e-05,
+ "last_committed_normalized_gap": 0.7050950527191162,
+ "last_committed_score_gap": 9.84868256637128e-06,
+ "last_cutoff_score_margin": 9.84868256637128e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3967879567644559e-05,
+ "last_raw_normalized_gap": 0.7050950527191162,
+ "last_raw_score_gap": 9.84868256637128e-06,
+ "layer_index": 21,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "318c6b05e774f173dec54d3b17b87035b5984334ae73b84c0e2f6a0c4b693f36",
+ "committed_normalized_churn": 0.00101010101010101,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "318c6b05e774f173dec54d3b17b87035b5984334ae73b84c0e2f6a0c4b693f36",
+ "current_selected_count": 55,
+ "dwell_total": 1978,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.0986915905705246e-07,
+ "last_committed_normalized_gap": 0.2538164258003235,
+ "last_committed_score_gap": 1.040315282807569e-07,
+ "last_cutoff_score_margin": 1.040315282807569e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.0986915905705246e-07,
+ "last_raw_normalized_gap": 0.2538164258003235,
+ "last_raw_score_gap": 1.040315282807569e-07,
+ "layer_index": 22,
+ "mask_transition_count": 36,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "318c6b05e774f173dec54d3b17b87035b5984334ae73b84c0e2f6a0c4b693f36",
+ "raw_normalized_churn": 0.006060606060606061,
+ "raw_xor_churn_total": 24,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 37,
+ "tokens_observed": 164
+ }
+ ],
+ "task_id": 728
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 66,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3f56f6dcecca9e76f7dc834cbefb505184d8638920770b00d88a18ac4b454e6c",
+ "committed_normalized_churn": 0.004892512972572276,
+ "committed_xor_churn_total": 132,
+ "confirmation_two": true,
+ "current_mask_sha256": "3f56f6dcecca9e76f7dc834cbefb505184d8638920770b00d88a18ac4b454e6c",
+ "current_selected_count": 355,
+ "dwell_total": 13424,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.71173899896371e-09,
+ "last_committed_normalized_gap": -0.9863854050636292,
+ "last_committed_score_gap": -3.413691729292623e-07,
+ "last_cutoff_score_margin": 7.023732706556984e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 352,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7771332849747523e-08,
+ "last_raw_normalized_gap": 0.03952282294631004,
+ "last_raw_score_gap": 7.023732706556984e-10,
+ "layer_index": 0,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 355,
+ "raw_mask_sha256": "302971a67c910e297da6d8cabd91e0d6d276e7f1b06409be5a5f75306d99eec4",
+ "raw_normalized_churn": 0.026612305411415862,
+ "raw_xor_churn_total": 718,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 252,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "488e00fbed90fac2680ae85d4ec6738169ffec85e751e624f3e3d8d79e055935",
+ "committed_normalized_churn": 0.017451523545706372,
+ "committed_xor_churn_total": 504,
+ "confirmation_two": true,
+ "current_mask_sha256": "488e00fbed90fac2680ae85d4ec6738169ffec85e751e624f3e3d8d79e055935",
+ "current_selected_count": 380,
+ "dwell_total": 14188,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1335124777976944e-09,
+ "last_committed_normalized_gap": -0.8476897478103638,
+ "last_committed_score_gap": -1.1874162098024499e-08,
+ "last_cutoff_score_margin": 6.898259741205948e-12,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 371,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.473200089170291e-09,
+ "last_raw_normalized_gap": 0.0027892040088772774,
+ "last_raw_score_gap": 6.898259741205948e-12,
+ "layer_index": 1,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 380,
+ "raw_mask_sha256": "305cb021fdd0ce90dd0d368b14cc79da4cf5a951339507eefb36826be4ee6f37",
+ "raw_normalized_churn": 0.12894736842105264,
+ "raw_xor_churn_total": 3724,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 65,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d9e1e693180c483c14ab94dcd411d5d8f8adef903a17ce6cae542d4a7b6f19ee",
+ "committed_normalized_churn": 0.006358833887693211,
+ "committed_xor_churn_total": 130,
+ "confirmation_two": true,
+ "current_mask_sha256": "d9e1e693180c483c14ab94dcd411d5d8f8adef903a17ce6cae542d4a7b6f19ee",
+ "current_selected_count": 269,
+ "dwell_total": 10157,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0077463308277856e-08,
+ "last_committed_normalized_gap": -0.6029555201530457,
+ "last_committed_score_gap": -1.5303729838933577e-08,
+ "last_cutoff_score_margin": 4.1869530065241634e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 266,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0605860190082694e-08,
+ "last_raw_normalized_gap": 0.03947773203253746,
+ "last_raw_score_gap": 4.1869530065241634e-10,
+ "layer_index": 2,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 269,
+ "raw_mask_sha256": "96bbe1e1a1692cdfacdde9a0a8689041e27a49bb1a9d6ea4944e0c0b2d6dfdac",
+ "raw_normalized_churn": 0.06378399530424575,
+ "raw_xor_churn_total": 1304,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "470cdfb4738d3473224e1a8cc91854353cc1964ff58c49309a47a2bf7b6574c0",
+ "committed_normalized_churn": 0.00029403116730373417,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "470cdfb4738d3473224e1a8cc91854353cc1964ff58c49309a47a2bf7b6574c0",
+ "current_selected_count": 179,
+ "dwell_total": 6800,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0662084548584971e-07,
+ "last_committed_normalized_gap": -0.7644529342651367,
+ "last_committed_score_gap": -3.460311290837126e-07,
+ "last_cutoff_score_margin": 2.0208815953992598e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4088316763482e-07,
+ "last_raw_normalized_gap": 0.08389467746019363,
+ "last_raw_score_gap": 2.0208815953992598e-08,
+ "layer_index": 4,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 179,
+ "raw_mask_sha256": "388312261575b59f86fd3ece46a5c2e9027ce3d4e6dd186f0bec831b5710d5c4",
+ "raw_normalized_churn": 0.006468685680682152,
+ "raw_xor_churn_total": 88,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 10,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a3a5d185a56fe472f728aaaebcb85b189180f6c698d3d695e077271b13c355ac",
+ "committed_normalized_churn": 0.001422475106685633,
+ "committed_xor_churn_total": 20,
+ "confirmation_two": true,
+ "current_mask_sha256": "a3a5d185a56fe472f728aaaebcb85b189180f6c698d3d695e077271b13c355ac",
+ "current_selected_count": 185,
+ "dwell_total": 7020,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.493302144392146e-08,
+ "last_committed_normalized_gap": 0.592901885509491,
+ "last_committed_score_gap": 5.628596611018111e-08,
+ "last_cutoff_score_margin": 5.628596611018111e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.493302144392146e-08,
+ "last_raw_normalized_gap": 0.592901885509491,
+ "last_raw_score_gap": 5.628596611018111e-08,
+ "layer_index": 5,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 185,
+ "raw_mask_sha256": "a3a5d185a56fe472f728aaaebcb85b189180f6c698d3d695e077271b13c355ac",
+ "raw_normalized_churn": 0.009246088193456615,
+ "raw_xor_churn_total": 130,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 39,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ce7268f9ed27732204403cbbfaea46fd85511581420ec347ab828baeee1a96d5",
+ "committed_normalized_churn": 0.009774436090225564,
+ "committed_xor_churn_total": 78,
+ "confirmation_two": true,
+ "current_mask_sha256": "ce7268f9ed27732204403cbbfaea46fd85511581420ec347ab828baeee1a96d5",
+ "current_selected_count": 105,
+ "dwell_total": 3951,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5415273441353747e-08,
+ "last_committed_normalized_gap": 0.26155513525009155,
+ "last_committed_score_gap": 6.647494998901493e-09,
+ "last_cutoff_score_margin": 6.647494998901493e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5415273441353747e-08,
+ "last_raw_normalized_gap": 0.26155513525009155,
+ "last_raw_score_gap": 6.647494998901493e-09,
+ "layer_index": 6,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 105,
+ "raw_mask_sha256": "ce7268f9ed27732204403cbbfaea46fd85511581420ec347ab828baeee1a96d5",
+ "raw_normalized_churn": 0.05513784461152882,
+ "raw_xor_churn_total": 440,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 4,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "306385ccb03bcb730cedc468d209bf9c4ef8c3ff8f4d7db8e744e5f1f89cb800",
+ "committed_normalized_churn": 0.0013157894736842105,
+ "committed_xor_churn_total": 8,
+ "confirmation_two": true,
+ "current_mask_sha256": "306385ccb03bcb730cedc468d209bf9c4ef8c3ff8f4d7db8e744e5f1f89cb800",
+ "current_selected_count": 80,
+ "dwell_total": 3036,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3009791643980861e-07,
+ "last_committed_normalized_gap": 0.6387439370155334,
+ "last_committed_score_gap": 8.309925192406808e-08,
+ "last_cutoff_score_margin": 8.309925192406808e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3009791643980861e-07,
+ "last_raw_normalized_gap": 0.6387439370155334,
+ "last_raw_score_gap": 8.309925192406808e-08,
+ "layer_index": 8,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 80,
+ "raw_mask_sha256": "306385ccb03bcb730cedc468d209bf9c4ef8c3ff8f4d7db8e744e5f1f89cb800",
+ "raw_normalized_churn": 0.014144736842105264,
+ "raw_xor_churn_total": 86,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f17b62de126d464fcd865bb71a1dc4d08b1cce734503218bce2b214d764be16b",
+ "committed_normalized_churn": 0.0030599755201958386,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "f17b62de126d464fcd865bb71a1dc4d08b1cce734503218bce2b214d764be16b",
+ "current_selected_count": 43,
+ "dwell_total": 1629,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.340033754601791e-08,
+ "last_committed_normalized_gap": 0.7994612455368042,
+ "last_committed_score_gap": 3.4696888917551405e-08,
+ "last_cutoff_score_margin": 3.4696888917551405e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.340033754601791e-08,
+ "last_raw_normalized_gap": 0.7994612455368042,
+ "last_raw_score_gap": 3.4696888917551405e-08,
+ "layer_index": 9,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 43,
+ "raw_mask_sha256": "f17b62de126d464fcd865bb71a1dc4d08b1cce734503218bce2b214d764be16b",
+ "raw_normalized_churn": 0.014687882496940025,
+ "raw_xor_churn_total": 48,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 24,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8788208a455fb011ded0e4668591a4a91f55d819540b35e22d2cdcb852282ed8",
+ "committed_normalized_churn": 0.007518796992481203,
+ "committed_xor_churn_total": 48,
+ "confirmation_two": true,
+ "current_mask_sha256": "8788208a455fb011ded0e4668591a4a91f55d819540b35e22d2cdcb852282ed8",
+ "current_selected_count": 84,
+ "dwell_total": 3168,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2945861271873582e-08,
+ "last_committed_normalized_gap": 0.5093001127243042,
+ "last_committed_score_gap": 6.593328549797661e-09,
+ "last_cutoff_score_margin": 6.593328549797661e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2945861271873582e-08,
+ "last_raw_normalized_gap": 0.5093001127243042,
+ "last_raw_score_gap": 6.593328549797661e-09,
+ "layer_index": 10,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 84,
+ "raw_mask_sha256": "8788208a455fb011ded0e4668591a4a91f55d819540b35e22d2cdcb852282ed8",
+ "raw_normalized_churn": 0.06798245614035088,
+ "raw_xor_churn_total": 434,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 2,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ee358c9b20176124716f99e887fcfdad1fd1bb3a6fc80e07a4af028ae0bf5c58",
+ "committed_normalized_churn": 0.0017543859649122807,
+ "committed_xor_churn_total": 4,
+ "confirmation_two": true,
+ "current_mask_sha256": "ee358c9b20176124716f99e887fcfdad1fd1bb3a6fc80e07a4af028ae0bf5c58",
+ "current_selected_count": 30,
+ "dwell_total": 1138,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.68865914374328e-07,
+ "last_committed_normalized_gap": 0.08457636088132858,
+ "last_committed_score_gap": 4.811261078430107e-08,
+ "last_cutoff_score_margin": 4.811261078430107e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.68865914374328e-07,
+ "last_raw_normalized_gap": 0.08457636088132858,
+ "last_raw_score_gap": 4.811261078430107e-08,
+ "layer_index": 12,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 30,
+ "raw_mask_sha256": "ee358c9b20176124716f99e887fcfdad1fd1bb3a6fc80e07a4af028ae0bf5c58",
+ "raw_normalized_churn": 0.0412280701754386,
+ "raw_xor_churn_total": 94,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 22,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cbdb582d5640730f725df70194db2524551ee3cdd8b73ba06b3d4b49090fc711",
+ "committed_normalized_churn": 0.00933786078098472,
+ "committed_xor_churn_total": 44,
+ "confirmation_two": true,
+ "current_mask_sha256": "cbdb582d5640730f725df70194db2524551ee3cdd8b73ba06b3d4b49090fc711",
+ "current_selected_count": 62,
+ "dwell_total": 2334,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4647896168517036e-08,
+ "last_committed_normalized_gap": 0.6387981176376343,
+ "last_committed_score_gap": 1.574503016854578e-08,
+ "last_cutoff_score_margin": 1.574503016854578e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4647896168517036e-08,
+ "last_raw_normalized_gap": 0.6387981176376343,
+ "last_raw_score_gap": 1.574503016854578e-08,
+ "layer_index": 13,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 62,
+ "raw_mask_sha256": "cbdb582d5640730f725df70194db2524551ee3cdd8b73ba06b3d4b49090fc711",
+ "raw_normalized_churn": 0.08361629881154499,
+ "raw_xor_churn_total": 394,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 12,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d9b2aeda360a51003050649f8dbed233ea3f1135246c35d7ea194a7bfaad46c0",
+ "committed_normalized_churn": 0.005847953216374269,
+ "committed_xor_churn_total": 24,
+ "confirmation_two": true,
+ "current_mask_sha256": "d9b2aeda360a51003050649f8dbed233ea3f1135246c35d7ea194a7bfaad46c0",
+ "current_selected_count": 54,
+ "dwell_total": 2040,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.627378220016908e-08,
+ "last_committed_normalized_gap": 0.43772703409194946,
+ "last_committed_score_gap": 1.5878015346970642e-08,
+ "last_cutoff_score_margin": 1.5878015346970642e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.627378220016908e-08,
+ "last_raw_normalized_gap": 0.43772703409194946,
+ "last_raw_score_gap": 1.5878015346970642e-08,
+ "layer_index": 14,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 54,
+ "raw_mask_sha256": "d9b2aeda360a51003050649f8dbed233ea3f1135246c35d7ea194a7bfaad46c0",
+ "raw_normalized_churn": 0.03996101364522417,
+ "raw_xor_churn_total": 164,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "74689014ed691ce775deea93782758aed950b7109c51e0a597f3e8d0a2dfdeb5",
+ "committed_normalized_churn": 0.0005847953216374269,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "74689014ed691ce775deea93782758aed950b7109c51e0a597f3e8d0a2dfdeb5",
+ "current_selected_count": 45,
+ "dwell_total": 1709,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1928825642826268e-06,
+ "last_committed_normalized_gap": 0.801872193813324,
+ "last_committed_score_gap": 9.565393384036724e-07,
+ "last_cutoff_score_margin": 9.565393384036724e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1928825642826268e-06,
+ "last_raw_normalized_gap": 0.801872193813324,
+ "last_raw_score_gap": 9.565393384036724e-07,
+ "layer_index": 16,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 45,
+ "raw_mask_sha256": "74689014ed691ce775deea93782758aed950b7109c51e0a597f3e8d0a2dfdeb5",
+ "raw_normalized_churn": 0.014619883040935672,
+ "raw_xor_churn_total": 50,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e77726bb76db73e07ef0b27e274b126bcc81ce9d3097bc5ee409522b12158fb8",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "e77726bb76db73e07ef0b27e274b126bcc81ce9d3097bc5ee409522b12158fb8",
+ "current_selected_count": 27,
+ "dwell_total": 1026,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0166369267826667e-06,
+ "last_committed_normalized_gap": 0.6907773017883301,
+ "last_committed_score_gap": 1.393047000419756e-06,
+ "last_cutoff_score_margin": 1.393047000419756e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0166369267826667e-06,
+ "last_raw_normalized_gap": 0.6907773017883301,
+ "last_raw_score_gap": 1.393047000419756e-06,
+ "layer_index": 17,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 27,
+ "raw_mask_sha256": "e77726bb76db73e07ef0b27e274b126bcc81ce9d3097bc5ee409522b12158fb8",
+ "raw_normalized_churn": 0.005847953216374269,
+ "raw_xor_churn_total": 12,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "current_selected_count": 7,
+ "dwell_total": 266,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.639293522108346e-05,
+ "last_committed_normalized_gap": 0.9664140343666077,
+ "last_committed_score_gap": 5.449892341857776e-05,
+ "last_cutoff_score_margin": 5.449892341857776e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.639293522108346e-05,
+ "last_raw_normalized_gap": 0.9664140343666077,
+ "last_raw_score_gap": 5.449892341857776e-05,
+ "layer_index": 18,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "raw_normalized_churn": 0.0,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c84cbad8455c7bb8362128e56c002d81411322ff56bc4d086f3358997e3ec408",
+ "committed_normalized_churn": 0.0,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": true,
+ "current_mask_sha256": "c84cbad8455c7bb8362128e56c002d81411322ff56bc4d086f3358997e3ec408",
+ "current_selected_count": 9,
+ "dwell_total": 342,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1875154086737894e-05,
+ "last_committed_normalized_gap": 0.6740678548812866,
+ "last_committed_score_gap": 8.004659321159124e-06,
+ "last_cutoff_score_margin": 8.004659321159124e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1875154086737894e-05,
+ "last_raw_normalized_gap": 0.6740678548812866,
+ "last_raw_score_gap": 8.004659321159124e-06,
+ "layer_index": 20,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 9,
+ "raw_mask_sha256": "c84cbad8455c7bb8362128e56c002d81411322ff56bc4d086f3358997e3ec408",
+ "raw_normalized_churn": 0.011695906432748537,
+ "raw_xor_churn_total": 8,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 1,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "committed_normalized_churn": 0.0037593984962406013,
+ "committed_xor_churn_total": 2,
+ "confirmation_two": true,
+ "current_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "current_selected_count": 7,
+ "dwell_total": 265,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3010869224672206e-05,
+ "last_committed_normalized_gap": 0.9420481324195862,
+ "last_committed_score_gap": 1.2256865375093184e-05,
+ "last_cutoff_score_margin": 1.2256865375093184e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3010869224672206e-05,
+ "last_raw_normalized_gap": 0.9420481324195862,
+ "last_raw_score_gap": 1.2256865375093184e-05,
+ "layer_index": 21,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 7,
+ "raw_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "raw_normalized_churn": 0.0037593984962406013,
+ "raw_xor_churn_total": 2,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 5,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5fac1df0f843ff83e84a90e7bcce1fdc5d3d3fb5af7786828376db90ed135547",
+ "committed_normalized_churn": 0.0023923444976076554,
+ "committed_xor_churn_total": 10,
+ "confirmation_two": true,
+ "current_mask_sha256": "5fac1df0f843ff83e84a90e7bcce1fdc5d3d3fb5af7786828376db90ed135547",
+ "current_selected_count": 55,
+ "dwell_total": 2085,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.001419426913344e-07,
+ "last_committed_normalized_gap": 0.7785758972167969,
+ "last_committed_score_gap": 3.115408730991476e-07,
+ "last_cutoff_score_margin": 3.115408730991476e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.001419426913344e-07,
+ "last_raw_normalized_gap": 0.7785758972167969,
+ "last_raw_score_gap": 3.115408730991476e-07,
+ "layer_index": 22,
+ "mask_transition_count": 38,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 256,
+ "quota": 55,
+ "raw_mask_sha256": "5fac1df0f843ff83e84a90e7bcce1fdc5d3d3fb5af7786828376db90ed135547",
+ "raw_normalized_churn": 0.013875598086124402,
+ "raw_xor_churn_total": 58,
+ "selection_method": "query_ema32_confirm2_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8448,
+ "state_updates": 39,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 704
+ }
+ ],
+ "query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "996da9a21d56ddcc3537b5c754564eefd42c7fdc211e4d3e7bfe3bb076b0ecd3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "996da9a21d56ddcc3537b5c754564eefd42c7fdc211e4d3e7bfe3bb076b0ecd3",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5556806448889802e-08,
+ "last_committed_normalized_gap": 0.010141095146536827,
+ "last_committed_score_gap": 2.5917401558217534e-10,
+ "last_cutoff_score_margin": 2.5917401558217534e-10,
+ "last_mask_churn": 22,
+ "last_mask_overlap": 344,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5556806448889802e-08,
+ "last_raw_normalized_gap": 0.010141095146536827,
+ "last_raw_score_gap": 2.5917401558217534e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "996da9a21d56ddcc3537b5c754564eefd42c7fdc211e4d3e7bfe3bb076b0ecd3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "eed3720a7f89e7493bb594bd43128dfea8b5be6ae00d12e6198ffc95f5aa058a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "eed3720a7f89e7493bb594bd43128dfea8b5be6ae00d12e6198ffc95f5aa058a",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2023924078619075e-09,
+ "last_committed_normalized_gap": 0.0028713259380310774,
+ "last_committed_score_gap": 3.4524605396768493e-12,
+ "last_cutoff_score_margin": 3.4524605396768493e-12,
+ "last_mask_churn": 116,
+ "last_mask_overlap": 322,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2023924078619075e-09,
+ "last_raw_normalized_gap": 0.0028713259380310774,
+ "last_raw_score_gap": 3.4524605396768493e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "eed3720a7f89e7493bb594bd43128dfea8b5be6ae00d12e6198ffc95f5aa058a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f05bf63dba879ad0983013f898a3f2c504da70ff280d1e5bfecfc3a63bd8e1d6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f05bf63dba879ad0983013f898a3f2c504da70ff280d1e5bfecfc3a63bd8e1d6",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.656691032778326e-09,
+ "last_committed_normalized_gap": 0.0016673761419951916,
+ "last_committed_score_gap": 7.764455745018495e-12,
+ "last_cutoff_score_margin": 7.764455745018495e-12,
+ "last_mask_churn": 74,
+ "last_mask_overlap": 232,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.656691032778326e-09,
+ "last_raw_normalized_gap": 0.0016673761419951916,
+ "last_raw_score_gap": 7.764455745018495e-12,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "f05bf63dba879ad0983013f898a3f2c504da70ff280d1e5bfecfc3a63bd8e1d6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1604539313102578e-07,
+ "last_committed_normalized_gap": 0.2588611841201782,
+ "last_committed_score_gap": 5.592576712842856e-08,
+ "last_cutoff_score_margin": 5.592576712842856e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1604539313102578e-07,
+ "last_raw_normalized_gap": 0.2588611841201782,
+ "last_raw_score_gap": 5.592576712842856e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "51487fdbc763bd9fffa17a4196333b0e84cd251e1acb2771c97d8f9d3018b91b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "51487fdbc763bd9fffa17a4196333b0e84cd251e1acb2771c97d8f9d3018b91b",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.193731501482944e-08,
+ "last_committed_normalized_gap": 0.014320285990834236,
+ "last_committed_score_gap": 4.573514900130249e-10,
+ "last_cutoff_score_margin": 4.573514900130249e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.193731501482944e-08,
+ "last_raw_normalized_gap": 0.014320285990834236,
+ "last_raw_score_gap": 4.573514900130249e-10,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "51487fdbc763bd9fffa17a4196333b0e84cd251e1acb2771c97d8f9d3018b91b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "069001eef479566e001bac52a2f21b6723e8b08d3ed5207f10f34eb199965719",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "069001eef479566e001bac52a2f21b6723e8b08d3ed5207f10f34eb199965719",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4639199125431333e-08,
+ "last_committed_normalized_gap": 0.029478028416633606,
+ "last_committed_score_gap": 7.26315008137135e-10,
+ "last_cutoff_score_margin": 7.26315008137135e-10,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 96,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4639199125431333e-08,
+ "last_raw_normalized_gap": 0.029478028416633606,
+ "last_raw_score_gap": 7.26315008137135e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "069001eef479566e001bac52a2f21b6723e8b08d3ed5207f10f34eb199965719",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "43be031fef3ef039e86118be66f85a46c58d850bdacb89c3f58bdeb34689deba",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "43be031fef3ef039e86118be66f85a46c58d850bdacb89c3f58bdeb34689deba",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.506385202304955e-08,
+ "last_committed_normalized_gap": 0.20905691385269165,
+ "last_committed_score_gap": 1.5692616983642438e-08,
+ "last_cutoff_score_margin": 1.5692616983642438e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.506385202304955e-08,
+ "last_raw_normalized_gap": 0.20905691385269165,
+ "last_raw_score_gap": 1.5692616983642438e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "43be031fef3ef039e86118be66f85a46c58d850bdacb89c3f58bdeb34689deba",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7b8c1d06b6f271886bcb057cd1397447fa01283c8ca107c6f90d4ebcf04d2b81",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7b8c1d06b6f271886bcb057cd1397447fa01283c8ca107c6f90d4ebcf04d2b81",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.030809629464784e-08,
+ "last_committed_normalized_gap": 0.0719054564833641,
+ "last_committed_score_gap": 4.336481396194358e-09,
+ "last_cutoff_score_margin": 4.336481396194358e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 41,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.030809629464784e-08,
+ "last_raw_normalized_gap": 0.0719054564833641,
+ "last_raw_score_gap": 4.336481396194358e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "7b8c1d06b6f271886bcb057cd1397447fa01283c8ca107c6f90d4ebcf04d2b81",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "80e59f62dbb6ab8d7f3febd9787af5f24908c6cfff1214ecb5465ad5edd0e300",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "80e59f62dbb6ab8d7f3febd9787af5f24908c6cfff1214ecb5465ad5edd0e300",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.049540093196356e-08,
+ "last_committed_normalized_gap": 0.0036231076810508966,
+ "last_committed_score_gap": 7.425704495744867e-11,
+ "last_cutoff_score_margin": 7.425704495744867e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 81,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.049540093196356e-08,
+ "last_raw_normalized_gap": 0.0036231076810508966,
+ "last_raw_score_gap": 7.425704495744867e-11,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "80e59f62dbb6ab8d7f3febd9787af5f24908c6cfff1214ecb5465ad5edd0e300",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fafe29ad0ea2ff634ae6f2bdd8290ca4f37e2decd96373377556317a9e307c05",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fafe29ad0ea2ff634ae6f2bdd8290ca4f37e2decd96373377556317a9e307c05",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.495617294101976e-07,
+ "last_committed_normalized_gap": 0.1854623556137085,
+ "last_committed_score_gap": 1.57561714786425e-07,
+ "last_cutoff_score_margin": 1.57561714786425e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.495617294101976e-07,
+ "last_raw_normalized_gap": 0.1854623556137085,
+ "last_raw_score_gap": 1.57561714786425e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "fafe29ad0ea2ff634ae6f2bdd8290ca4f37e2decd96373377556317a9e307c05",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "128c23927c85abea0d8026dc086ff201ec1ba61c7ea52a39d779c2fa2d38384b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "128c23927c85abea0d8026dc086ff201ec1ba61c7ea52a39d779c2fa2d38384b",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.597040188983101e-08,
+ "last_committed_normalized_gap": 0.019338222220540047,
+ "last_committed_score_gap": 3.0883917645496695e-10,
+ "last_cutoff_score_margin": 3.0883917645496695e-10,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.597040188983101e-08,
+ "last_raw_normalized_gap": 0.019338222220540047,
+ "last_raw_score_gap": 3.0883917645496695e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "128c23927c85abea0d8026dc086ff201ec1ba61c7ea52a39d779c2fa2d38384b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5713eb042d8790c592bd01fe43ad8411bb7243ce13fb92e2b91bfc81c7de6233",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5713eb042d8790c592bd01fe43ad8411bb7243ce13fb92e2b91bfc81c7de6233",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.118929801208651e-08,
+ "last_committed_normalized_gap": 0.16851258277893066,
+ "last_committed_score_gap": 1.1996291959803784e-08,
+ "last_cutoff_score_margin": 1.1996291959803784e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 52,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.118929801208651e-08,
+ "last_raw_normalized_gap": 0.16851258277893066,
+ "last_raw_score_gap": 1.1996291959803784e-08,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "5713eb042d8790c592bd01fe43ad8411bb7243ce13fb92e2b91bfc81c7de6233",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "84229d522ba9c63907173a06a0d7ddfe2c2401adcb6ff6a9fe281bceee5f72c9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "84229d522ba9c63907173a06a0d7ddfe2c2401adcb6ff6a9fe281bceee5f72c9",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.371622488477442e-06,
+ "last_committed_normalized_gap": 0.005243383813649416,
+ "last_committed_score_gap": 7.191943041107152e-09,
+ "last_cutoff_score_margin": 7.191943041107152e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.371622488477442e-06,
+ "last_raw_normalized_gap": 0.005243383813649416,
+ "last_raw_score_gap": 7.191943041107152e-09,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "84229d522ba9c63907173a06a0d7ddfe2c2401adcb6ff6a9fe281bceee5f72c9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c4adfb4b9682560c2bbbec83e6933042fe21a1ab2aaf933cf2a3c85435f624bd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c4adfb4b9682560c2bbbec83e6933042fe21a1ab2aaf933cf2a3c85435f624bd",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.898132483001973e-07,
+ "last_committed_normalized_gap": 0.16719917953014374,
+ "last_committed_score_gap": 1.1533620636328124e-07,
+ "last_cutoff_score_margin": 1.1533620636328124e-07,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 25,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.898132483001973e-07,
+ "last_raw_normalized_gap": 0.16719917953014374,
+ "last_raw_score_gap": 1.1533620636328124e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "c4adfb4b9682560c2bbbec83e6933042fe21a1ab2aaf933cf2a3c85435f624bd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.6703142288606614e-05,
+ "last_committed_normalized_gap": 0.5337585210800171,
+ "last_committed_score_gap": 2.4928200218710117e-05,
+ "last_cutoff_score_margin": 2.4928200218710117e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.6703142288606614e-05,
+ "last_raw_normalized_gap": 0.5337585210800171,
+ "last_raw_score_gap": 2.4928200218710117e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.552474688855e-05,
+ "last_committed_normalized_gap": 0.847438633441925,
+ "last_committed_score_gap": 2.1630656192428432e-05,
+ "last_cutoff_score_margin": 2.1630656192428432e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.552474688855e-05,
+ "last_raw_normalized_gap": 0.847438633441925,
+ "last_raw_score_gap": 2.1630656192428432e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.597691334609408e-05,
+ "last_committed_normalized_gap": 0.8653373718261719,
+ "last_committed_score_gap": 1.3825419955537654e-05,
+ "last_cutoff_score_margin": 1.3825419955537654e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.597691334609408e-05,
+ "last_raw_normalized_gap": 0.8653373718261719,
+ "last_raw_score_gap": 1.3825419955537654e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ae89d2228261ddae07798540f6e751d232361d5ab04e79a5d2ed1a2ea3330258",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ae89d2228261ddae07798540f6e751d232361d5ab04e79a5d2ed1a2ea3330258",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8787646638429578e-07,
+ "last_committed_normalized_gap": 0.16151657700538635,
+ "last_committed_score_gap": 3.0345162826961314e-08,
+ "last_cutoff_score_margin": 3.0345162826961314e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8787646638429578e-07,
+ "last_raw_normalized_gap": 0.16151657700538635,
+ "last_raw_score_gap": 3.0345162826961314e-08,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "ae89d2228261ddae07798540f6e751d232361d5ab04e79a5d2ed1a2ea3330258",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ],
+ "task_id": 666
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1efcfb80e7dfd8118b47ad2e1911dce22dab62df62e034cc91a2610619837ec6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1efcfb80e7dfd8118b47ad2e1911dce22dab62df62e034cc91a2610619837ec6",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1410260231391476e-08,
+ "last_committed_normalized_gap": 0.086061991751194,
+ "last_committed_score_gap": 1.8426096204393616e-09,
+ "last_cutoff_score_margin": 1.8426096204393616e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 352,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1410260231391476e-08,
+ "last_raw_normalized_gap": 0.086061991751194,
+ "last_raw_score_gap": 1.8426096204393616e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "1efcfb80e7dfd8118b47ad2e1911dce22dab62df62e034cc91a2610619837ec6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "664c050ec2bda267c8ca0b71a8aebcd5c4daa25d36258978cd62de20c84d8590",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "664c050ec2bda267c8ca0b71a8aebcd5c4daa25d36258978cd62de20c84d8590",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6088319565454867e-09,
+ "last_committed_normalized_gap": 0.007532570045441389,
+ "last_committed_score_gap": 1.2118639425295896e-11,
+ "last_cutoff_score_margin": 1.2118639425295896e-11,
+ "last_mask_churn": 132,
+ "last_mask_overlap": 314,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6088319565454867e-09,
+ "last_raw_normalized_gap": 0.007532570045441389,
+ "last_raw_score_gap": 1.2118639425295896e-11,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "664c050ec2bda267c8ca0b71a8aebcd5c4daa25d36258978cd62de20c84d8590",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7065dc94c1a9aae437fb273f101ee0596d175b55f42e0209d07a990a668cdf1d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7065dc94c1a9aae437fb273f101ee0596d175b55f42e0209d07a990a668cdf1d",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.46230641116108e-09,
+ "last_committed_normalized_gap": 0.016341807320713997,
+ "last_committed_score_gap": 1.382893799473095e-10,
+ "last_cutoff_score_margin": 1.382893799473095e-10,
+ "last_mask_churn": 40,
+ "last_mask_overlap": 249,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.46230641116108e-09,
+ "last_raw_normalized_gap": 0.016341807320713997,
+ "last_raw_score_gap": 1.382893799473095e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "7065dc94c1a9aae437fb273f101ee0596d175b55f42e0209d07a990a668cdf1d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fa4845d68e7aaa71f5fd0b9d40545abe13360e01026ee2e86440925db1d8819c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fa4845d68e7aaa71f5fd0b9d40545abe13360e01026ee2e86440925db1d8819c",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6233512667440664e-07,
+ "last_committed_normalized_gap": 0.1176426038146019,
+ "last_committed_score_gap": 1.90975271152638e-08,
+ "last_cutoff_score_margin": 1.90975271152638e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 177,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6233512667440664e-07,
+ "last_raw_normalized_gap": 0.1176426038146019,
+ "last_raw_score_gap": 1.90975271152638e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "fa4845d68e7aaa71f5fd0b9d40545abe13360e01026ee2e86440925db1d8819c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d65c71938c6fa1c1f99dd246b15c2ee5092a961a8ec525cbea07ae6c3e31e9fb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d65c71938c6fa1c1f99dd246b15c2ee5092a961a8ec525cbea07ae6c3e31e9fb",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.123467244378844e-08,
+ "last_committed_normalized_gap": 0.05571730434894562,
+ "last_committed_score_gap": 3.411830817867667e-09,
+ "last_cutoff_score_margin": 3.411830817867667e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 182,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.123467244378844e-08,
+ "last_raw_normalized_gap": 0.05571730434894562,
+ "last_raw_score_gap": 3.411830817867667e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "d65c71938c6fa1c1f99dd246b15c2ee5092a961a8ec525cbea07ae6c3e31e9fb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "302cc7b87015bf9bf69abd190dc1e74318d307e681b57df3929205cca210c67a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "302cc7b87015bf9bf69abd190dc1e74318d307e681b57df3929205cca210c67a",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.005757065466241e-08,
+ "last_committed_normalized_gap": 0.009832214564085007,
+ "last_committed_score_gap": 2.9553248737101967e-10,
+ "last_cutoff_score_margin": 2.9553248737101967e-10,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 100,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.005757065466241e-08,
+ "last_raw_normalized_gap": 0.009832214564085007,
+ "last_raw_score_gap": 2.9553248737101967e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "302cc7b87015bf9bf69abd190dc1e74318d307e681b57df3929205cca210c67a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f33ada315db56d72d200891c464cbdbd2d2ba1e1e363504f3ed67caf16d45e69",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f33ada315db56d72d200891c464cbdbd2d2ba1e1e363504f3ed67caf16d45e69",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2574848540225503e-07,
+ "last_committed_normalized_gap": 0.012121467851102352,
+ "last_committed_score_gap": 1.524256276752567e-09,
+ "last_cutoff_score_margin": 1.524256276752567e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2574848540225503e-07,
+ "last_raw_normalized_gap": 0.012121467851102352,
+ "last_raw_score_gap": 1.524256276752567e-09,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "f33ada315db56d72d200891c464cbdbd2d2ba1e1e363504f3ed67caf16d45e69",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "259e35b6d71e45f7fa6563cbffdb1f8211480e2e6e3cf341fb785b15beb3b0ec",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "259e35b6d71e45f7fa6563cbffdb1f8211480e2e6e3cf341fb785b15beb3b0ec",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.897178188111866e-08,
+ "last_committed_normalized_gap": 0.009224900044500828,
+ "last_committed_score_gap": 9.130047828875831e-10,
+ "last_cutoff_score_margin": 9.130047828875831e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 41,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.897178188111866e-08,
+ "last_raw_normalized_gap": 0.009224900044500828,
+ "last_raw_score_gap": 9.130047828875831e-10,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "259e35b6d71e45f7fa6563cbffdb1f8211480e2e6e3cf341fb785b15beb3b0ec",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "11514480d8264781a23fb393749e00209587906320ecd9e35e9412eb99d94053",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "11514480d8264781a23fb393749e00209587906320ecd9e35e9412eb99d94053",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.976177976814597e-08,
+ "last_committed_normalized_gap": 0.08317194879055023,
+ "last_committed_score_gap": 1.6436256800034243e-09,
+ "last_cutoff_score_margin": 1.6436256800034243e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.976177976814597e-08,
+ "last_raw_normalized_gap": 0.08317194879055023,
+ "last_raw_score_gap": 1.6436256800034243e-09,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "11514480d8264781a23fb393749e00209587906320ecd9e35e9412eb99d94053",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "68d0a9e8b5c9d3b87a12d46f408c8f15127e0866d7c85f0b62ebd763851f1aef",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "68d0a9e8b5c9d3b87a12d46f408c8f15127e0866d7c85f0b62ebd763851f1aef",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2600403351825662e-06,
+ "last_committed_normalized_gap": 0.05298466980457306,
+ "last_committed_score_gap": 6.676282282569446e-08,
+ "last_cutoff_score_margin": 6.676282282569446e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2600403351825662e-06,
+ "last_raw_normalized_gap": 0.05298466980457306,
+ "last_raw_score_gap": 6.676282282569446e-08,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "68d0a9e8b5c9d3b87a12d46f408c8f15127e0866d7c85f0b62ebd763851f1aef",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0f8631419f194e8423d1e07541525e0baca2b8cac038eddd37bb620c604f5ccb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0f8631419f194e8423d1e07541525e0baca2b8cac038eddd37bb620c604f5ccb",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2587120557536764e-08,
+ "last_committed_normalized_gap": 0.005417849402874708,
+ "last_committed_score_gap": 1.765521062679909e-10,
+ "last_cutoff_score_margin": 1.765521062679909e-10,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2587120557536764e-08,
+ "last_raw_normalized_gap": 0.005417849402874708,
+ "last_raw_score_gap": 1.765521062679909e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "0f8631419f194e8423d1e07541525e0baca2b8cac038eddd37bb620c604f5ccb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0f4854e7fefbb7351221e935d576e2d8e31b5c3f324837362e7cd4cfd0cff628",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0f4854e7fefbb7351221e935d576e2d8e31b5c3f324837362e7cd4cfd0cff628",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.5785483021300024e-08,
+ "last_committed_normalized_gap": 0.12340830266475677,
+ "last_committed_score_gap": 4.416225607428714e-09,
+ "last_cutoff_score_margin": 4.416225607428714e-09,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 50,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.5785483021300024e-08,
+ "last_raw_normalized_gap": 0.12340830266475677,
+ "last_raw_score_gap": 4.416225607428714e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "0f4854e7fefbb7351221e935d576e2d8e31b5c3f324837362e7cd4cfd0cff628",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f318a2f36eb5bcf2e9b9dce3711dc205010b385379f046764c4576f1b5b169e9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f318a2f36eb5bcf2e9b9dce3711dc205010b385379f046764c4576f1b5b169e9",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7637983091844944e-06,
+ "last_committed_normalized_gap": 0.7116138339042664,
+ "last_committed_score_gap": 1.2551432746477076e-06,
+ "last_cutoff_score_margin": 1.2551432746477076e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7637983091844944e-06,
+ "last_raw_normalized_gap": 0.7116138339042664,
+ "last_raw_score_gap": 1.2551432746477076e-06,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "f318a2f36eb5bcf2e9b9dce3711dc205010b385379f046764c4576f1b5b169e9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4924394236004446e-06,
+ "last_committed_normalized_gap": 0.27905380725860596,
+ "last_committed_score_gap": 4.1647092530183727e-07,
+ "last_cutoff_score_margin": 4.1647092530183727e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4924394236004446e-06,
+ "last_raw_normalized_gap": 0.27905380725860596,
+ "last_raw_score_gap": 4.1647092530183727e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "f834c41efdb9d76b49a93cc17e886b71de9eb39766f88d58028c1a3dec733ae6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.704828436137177e-05,
+ "last_committed_normalized_gap": 0.9573695063591003,
+ "last_committed_score_gap": 5.4616288252873346e-05,
+ "last_cutoff_score_margin": 5.4616288252873346e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.704828436137177e-05,
+ "last_raw_normalized_gap": 0.9573695063591003,
+ "last_raw_score_gap": 5.4616288252873346e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "916e25de4246b94c080ddf6f470820943c3684d1b63b15c463724a392a071bf9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "399403ae12106905a3f0c5ca6b0a3ded0c53508d2f3805441379286d0a335110",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "399403ae12106905a3f0c5ca6b0a3ded0c53508d2f3805441379286d0a335110",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.638124194869306e-05,
+ "last_committed_normalized_gap": 0.7490537762641907,
+ "last_committed_score_gap": 1.227043139806483e-05,
+ "last_cutoff_score_margin": 1.227043139806483e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.638124194869306e-05,
+ "last_raw_normalized_gap": 0.7490537762641907,
+ "last_raw_score_gap": 1.227043139806483e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "399403ae12106905a3f0c5ca6b0a3ded0c53508d2f3805441379286d0a335110",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.650657577556558e-05,
+ "last_committed_normalized_gap": 0.886065661907196,
+ "last_committed_score_gap": 1.4625909898313694e-05,
+ "last_cutoff_score_margin": 1.4625909898313694e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.650657577556558e-05,
+ "last_raw_normalized_gap": 0.886065661907196,
+ "last_raw_score_gap": 1.4625909898313694e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "a539fa436c2d3b68f65eed8f83ada047969d3c118006c39e1ef716adbe2f1386",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "033bc0cdfafea18e6484870cf9344159077de046814d5e2874d314263c34d89d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "033bc0cdfafea18e6484870cf9344159077de046814d5e2874d314263c34d89d",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.48852733320382e-07,
+ "last_committed_normalized_gap": 0.5634461045265198,
+ "last_committed_score_gap": 3.655935358892748e-07,
+ "last_cutoff_score_margin": 3.655935358892748e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.48852733320382e-07,
+ "last_raw_normalized_gap": 0.5634461045265198,
+ "last_raw_score_gap": 3.655935358892748e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 35,
+ "observations_staged": 35,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "033bc0cdfafea18e6484870cf9344159077de046814d5e2874d314263c34d89d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 35,
+ "tokens_observed": 324
+ }
+ ],
+ "task_id": 795
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "47ea06e038c4e7a3d8400b5be3f6ca55bd1ea9ff9d06d7568fc27f24bec1a1db",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "47ea06e038c4e7a3d8400b5be3f6ca55bd1ea9ff9d06d7568fc27f24bec1a1db",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.0970700609932464e-08,
+ "last_committed_normalized_gap": 0.0332300066947937,
+ "last_committed_score_gap": 1.3614567251352128e-09,
+ "last_cutoff_score_margin": 1.3614567251352128e-09,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 346,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.0970700609932464e-08,
+ "last_raw_normalized_gap": 0.0332300066947937,
+ "last_raw_score_gap": 1.3614567251352128e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "47ea06e038c4e7a3d8400b5be3f6ca55bd1ea9ff9d06d7568fc27f24bec1a1db",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "53b7005dd2cea2ef44827ec8d68de65732dc0c706d8a719cf401ff5376a9bb9d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "53b7005dd2cea2ef44827ec8d68de65732dc0c706d8a719cf401ff5376a9bb9d",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.995726416405887e-09,
+ "last_committed_normalized_gap": 0.009357297793030739,
+ "last_committed_score_gap": 3.738920284490632e-11,
+ "last_cutoff_score_margin": 3.738920284490632e-11,
+ "last_mask_churn": 190,
+ "last_mask_overlap": 285,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.995726416405887e-09,
+ "last_raw_normalized_gap": 0.009357297793030739,
+ "last_raw_score_gap": 3.738920284490632e-11,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "53b7005dd2cea2ef44827ec8d68de65732dc0c706d8a719cf401ff5376a9bb9d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0b890c1977a3b9a3bb356e3f50dc0e50cf61195ca73e2afc1ac10e32d9dd7369",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0b890c1977a3b9a3bb356e3f50dc0e50cf61195ca73e2afc1ac10e32d9dd7369",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4922068913847397e-08,
+ "last_committed_normalized_gap": 0.0025136368349194527,
+ "last_committed_score_gap": 3.750866284235599e-11,
+ "last_cutoff_score_margin": 3.750866284235599e-11,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 262,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4922068913847397e-08,
+ "last_raw_normalized_gap": 0.0025136368349194527,
+ "last_raw_score_gap": 3.750866284235599e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "0b890c1977a3b9a3bb356e3f50dc0e50cf61195ca73e2afc1ac10e32d9dd7369",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d5456ff45170650210fd0766cc024466db9289a64d7d865564fea0799a52e1b4",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d5456ff45170650210fd0766cc024466db9289a64d7d865564fea0799a52e1b4",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.040815670374286e-07,
+ "last_committed_normalized_gap": 0.08593419939279556,
+ "last_committed_score_gap": 2.6131004915441736e-08,
+ "last_cutoff_score_margin": 2.6131004915441736e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.040815670374286e-07,
+ "last_raw_normalized_gap": 0.08593419939279556,
+ "last_raw_score_gap": 2.6131004915441736e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "d5456ff45170650210fd0766cc024466db9289a64d7d865564fea0799a52e1b4",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fdf38a9d504f244f92a48537ce48baf5321aa8b156943cc655bec28df3d06d3c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fdf38a9d504f244f92a48537ce48baf5321aa8b156943cc655bec28df3d06d3c",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0859553611908268e-07,
+ "last_committed_normalized_gap": 0.15689381957054138,
+ "last_committed_score_gap": 1.7037969257671648e-08,
+ "last_cutoff_score_margin": 1.7037969257671648e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0859553611908268e-07,
+ "last_raw_normalized_gap": 0.15689381957054138,
+ "last_raw_score_gap": 1.7037969257671648e-08,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "fdf38a9d504f244f92a48537ce48baf5321aa8b156943cc655bec28df3d06d3c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7aba8b8e6c3beb38f3369d4ab833547bdacc48c6cce9365c85dbb66186072f1f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7aba8b8e6c3beb38f3369d4ab833547bdacc48c6cce9365c85dbb66186072f1f",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.070492127221769e-08,
+ "last_committed_normalized_gap": 0.10160718113183975,
+ "last_committed_score_gap": 3.1198403860344115e-09,
+ "last_cutoff_score_margin": 3.1198403860344115e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.070492127221769e-08,
+ "last_raw_normalized_gap": 0.10160718113183975,
+ "last_raw_score_gap": 3.1198403860344115e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "7aba8b8e6c3beb38f3369d4ab833547bdacc48c6cce9365c85dbb66186072f1f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "dd61fe14d677bce758ae1cf42418cee157a86a64f0a09799180f9d2ade5b4a51",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "dd61fe14d677bce758ae1cf42418cee157a86a64f0a09799180f9d2ade5b4a51",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5462498481610965e-07,
+ "last_committed_normalized_gap": 0.10197167843580246,
+ "last_committed_score_gap": 1.576736963215808e-08,
+ "last_cutoff_score_margin": 1.576736963215808e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5462498481610965e-07,
+ "last_raw_normalized_gap": 0.10197167843580246,
+ "last_raw_score_gap": 1.576736963215808e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "dd61fe14d677bce758ae1cf42418cee157a86a64f0a09799180f9d2ade5b4a51",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "83112e4ac437edf30d7a926319810ff8b5d331feeea2fe89575b1cf0778c4e36",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "83112e4ac437edf30d7a926319810ff8b5d331feeea2fe89575b1cf0778c4e36",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.389701378064274e-08,
+ "last_committed_normalized_gap": 0.37659698724746704,
+ "last_committed_score_gap": 3.159536277053121e-08,
+ "last_cutoff_score_margin": 3.159536277053121e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.389701378064274e-08,
+ "last_raw_normalized_gap": 0.37659698724746704,
+ "last_raw_score_gap": 3.159536277053121e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "83112e4ac437edf30d7a926319810ff8b5d331feeea2fe89575b1cf0778c4e36",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0c1b17e838cffc523b939ecab1b2230094f6cb583f9b5d400367fb060b36d415",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0c1b17e838cffc523b939ecab1b2230094f6cb583f9b5d400367fb060b36d415",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.6857568613536387e-08,
+ "last_committed_normalized_gap": 0.11157893389463425,
+ "last_committed_score_gap": 2.996738857063974e-09,
+ "last_cutoff_score_margin": 2.996738857063974e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.6857568613536387e-08,
+ "last_raw_normalized_gap": 0.11157893389463425,
+ "last_raw_score_gap": 2.996738857063974e-09,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "0c1b17e838cffc523b939ecab1b2230094f6cb583f9b5d400367fb060b36d415",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "63e84acf83d4c8ecc6c16e0a306901664300513552bc459067ebe698def6a47e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "63e84acf83d4c8ecc6c16e0a306901664300513552bc459067ebe698def6a47e",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0065898550237762e-06,
+ "last_committed_normalized_gap": 0.0024707315023988485,
+ "last_committed_score_gap": 2.4870132619980723e-09,
+ "last_cutoff_score_margin": 2.4870132619980723e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0065898550237762e-06,
+ "last_raw_normalized_gap": 0.0024707315023988485,
+ "last_raw_score_gap": 2.4870132619980723e-09,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "63e84acf83d4c8ecc6c16e0a306901664300513552bc459067ebe698def6a47e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a01e21dd81c9bfe421a358ff69d00593b9e37e580069c5b7fd6951c9d1e733bf",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a01e21dd81c9bfe421a358ff69d00593b9e37e580069c5b7fd6951c9d1e733bf",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.829651262776679e-08,
+ "last_committed_normalized_gap": 0.013779754750430584,
+ "last_committed_score_gap": 5.277165371353476e-10,
+ "last_cutoff_score_margin": 5.277165371353476e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.829651262776679e-08,
+ "last_raw_normalized_gap": 0.013779754750430584,
+ "last_raw_score_gap": 5.277165371353476e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "a01e21dd81c9bfe421a358ff69d00593b9e37e580069c5b7fd6951c9d1e733bf",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7bf521ccf882a9dc7067dcb9a21bdcb8ebb70146777d8c88a6f1b5e6d3d656e0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7bf521ccf882a9dc7067dcb9a21bdcb8ebb70146777d8c88a6f1b5e6d3d656e0",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0117292248423837e-07,
+ "last_committed_normalized_gap": 0.38007158041000366,
+ "last_committed_score_gap": 3.845295282189909e-08,
+ "last_cutoff_score_margin": 3.845295282189909e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0117292248423837e-07,
+ "last_raw_normalized_gap": 0.38007158041000366,
+ "last_raw_score_gap": 3.845295282189909e-08,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "7bf521ccf882a9dc7067dcb9a21bdcb8ebb70146777d8c88a6f1b5e6d3d656e0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0c99e7c9059d37e73104baa831a4f73891b371bbbf4c9624b988186ad39ed42a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0c99e7c9059d37e73104baa831a4f73891b371bbbf4c9624b988186ad39ed42a",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.727483529786696e-07,
+ "last_committed_normalized_gap": 0.5773272514343262,
+ "last_committed_score_gap": 5.615941063297214e-07,
+ "last_cutoff_score_margin": 5.615941063297214e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.727483529786696e-07,
+ "last_raw_normalized_gap": 0.5773272514343262,
+ "last_raw_score_gap": 5.615941063297214e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "0c99e7c9059d37e73104baa831a4f73891b371bbbf4c9624b988186ad39ed42a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f5dfb78e35bbd306c247307a13d186a5116eb8730225c5c444a2ac8e98e6d50b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f5dfb78e35bbd306c247307a13d186a5116eb8730225c5c444a2ac8e98e6d50b",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.8235263016540557e-06,
+ "last_committed_normalized_gap": 0.6672714352607727,
+ "last_committed_score_gap": 1.8840585198631743e-06,
+ "last_cutoff_score_margin": 1.8840585198631743e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.8235263016540557e-06,
+ "last_raw_normalized_gap": 0.6672714352607727,
+ "last_raw_score_gap": 1.8840585198631743e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "f5dfb78e35bbd306c247307a13d186a5116eb8730225c5c444a2ac8e98e6d50b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.814203905174509e-05,
+ "last_committed_normalized_gap": 0.956450879573822,
+ "last_committed_score_gap": 5.5610005802009255e-05,
+ "last_cutoff_score_margin": 5.5610005802009255e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.814203905174509e-05,
+ "last_raw_normalized_gap": 0.956450879573822,
+ "last_raw_score_gap": 5.5610005802009255e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "ff2b63616ecb9830859cec0d5b97f363d97d21eaf6df2aa6ccaec89ecf279ee6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ba3a829a1e87f150951c8c169720224eb14a39509492bdf801e67d9c57fcf8bd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ba3a829a1e87f150951c8c169720224eb14a39509492bdf801e67d9c57fcf8bd",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.11113144562114e-05,
+ "last_committed_normalized_gap": 0.5827355980873108,
+ "last_committed_score_gap": 1.812967093428597e-05,
+ "last_cutoff_score_margin": 1.812967093428597e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.11113144562114e-05,
+ "last_raw_normalized_gap": 0.5827355980873108,
+ "last_raw_score_gap": 1.812967093428597e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "ba3a829a1e87f150951c8c169720224eb14a39509492bdf801e67d9c57fcf8bd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9203649319242686e-05,
+ "last_committed_normalized_gap": 0.9259187579154968,
+ "last_committed_score_gap": 2.704020698729437e-05,
+ "last_cutoff_score_margin": 2.704020698729437e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9203649319242686e-05,
+ "last_raw_normalized_gap": 0.9259187579154968,
+ "last_raw_score_gap": 2.704020698729437e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "88c137d4977c937557bd618c65298fec67cb285da67e1638dcc811cc31a5e647",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "156b7b3c4dfc57e8e1fd7a380223314624d7dd9448210c45b1746ee513c71130",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "156b7b3c4dfc57e8e1fd7a380223314624d7dd9448210c45b1746ee513c71130",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.285350089754502e-07,
+ "last_committed_normalized_gap": 0.46964403986930847,
+ "last_committed_score_gap": 1.5429451138970762e-07,
+ "last_cutoff_score_margin": 1.5429451138970762e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.285350089754502e-07,
+ "last_raw_normalized_gap": 0.46964403986930847,
+ "last_raw_score_gap": 1.5429451138970762e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 26,
+ "observations_staged": 26,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "156b7b3c4dfc57e8e1fd7a380223314624d7dd9448210c45b1746ee513c71130",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 26,
+ "tokens_observed": 116
+ }
+ ],
+ "task_id": 944
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "24c3f31fd1192c691f3cc1bc0b4da10094b403d054b7fa4afc6df15e5d541837",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "24c3f31fd1192c691f3cc1bc0b4da10094b403d054b7fa4afc6df15e5d541837",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4611002185915822e-08,
+ "last_committed_normalized_gap": 0.08333326131105423,
+ "last_committed_score_gap": 1.2175824792848289e-09,
+ "last_cutoff_score_margin": 1.2175824792848289e-09,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 346,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4611002185915822e-08,
+ "last_raw_normalized_gap": 0.08333326131105423,
+ "last_raw_score_gap": 1.2175824792848289e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "24c3f31fd1192c691f3cc1bc0b4da10094b403d054b7fa4afc6df15e5d541837",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "aecb16fdada6950aaa87ea3abb9ca58742ac1be3992918f4172d2adc7134598a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "aecb16fdada6950aaa87ea3abb9ca58742ac1be3992918f4172d2adc7134598a",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.808189041887289e-10,
+ "last_committed_normalized_gap": 0.005118127912282944,
+ "last_committed_score_gap": 1.949079786456309e-12,
+ "last_cutoff_score_margin": 1.949079786456309e-12,
+ "last_mask_churn": 66,
+ "last_mask_overlap": 347,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.808189041887289e-10,
+ "last_raw_normalized_gap": 0.005118127912282944,
+ "last_raw_score_gap": 1.949079786456309e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "aecb16fdada6950aaa87ea3abb9ca58742ac1be3992918f4172d2adc7134598a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "da3a4c8bbc2d726f6b747f2d6e34eabd93be0be7a7e84ae196e369a3d26040e5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "da3a4c8bbc2d726f6b747f2d6e34eabd93be0be7a7e84ae196e369a3d26040e5",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4723700864370812e-09,
+ "last_committed_normalized_gap": 0.0033542397432029247,
+ "last_committed_score_gap": 8.29292190474007e-12,
+ "last_cutoff_score_margin": 8.29292190474007e-12,
+ "last_mask_churn": 20,
+ "last_mask_overlap": 259,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4723700864370812e-09,
+ "last_raw_normalized_gap": 0.0033542397432029247,
+ "last_raw_score_gap": 8.29292190474007e-12,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "da3a4c8bbc2d726f6b747f2d6e34eabd93be0be7a7e84ae196e369a3d26040e5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "05514c217ce7ea7c70bb07c11076e3571bd4d3c0f3c0c0301346a1903377fe86",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "05514c217ce7ea7c70bb07c11076e3571bd4d3c0f3c0c0301346a1903377fe86",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5472437553398777e-07,
+ "last_committed_normalized_gap": 0.37326717376708984,
+ "last_committed_score_gap": 5.7753531734761054e-08,
+ "last_cutoff_score_margin": 5.7753531734761054e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5472437553398777e-07,
+ "last_raw_normalized_gap": 0.37326717376708984,
+ "last_raw_score_gap": 5.7753531734761054e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "05514c217ce7ea7c70bb07c11076e3571bd4d3c0f3c0c0301346a1903377fe86",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ab7c09efa880c464c8abed72e5b5db68bd9e399aac9972d04a59590cbb6eb804",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ab7c09efa880c464c8abed72e5b5db68bd9e399aac9972d04a59590cbb6eb804",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.9334527574274034e-08,
+ "last_committed_normalized_gap": 0.21168673038482666,
+ "last_committed_score_gap": 1.0443464759646304e-08,
+ "last_cutoff_score_margin": 1.0443464759646304e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 183,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.9334527574274034e-08,
+ "last_raw_normalized_gap": 0.21168673038482666,
+ "last_raw_score_gap": 1.0443464759646304e-08,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "ab7c09efa880c464c8abed72e5b5db68bd9e399aac9972d04a59590cbb6eb804",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a6285aa61eeb043274a824413105bb6fe1d2010bd74f042699ede90b5a18afe0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a6285aa61eeb043274a824413105bb6fe1d2010bd74f042699ede90b5a18afe0",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2189788612413395e-08,
+ "last_committed_normalized_gap": 0.03183027356863022,
+ "last_committed_score_gap": 1.024609730393422e-09,
+ "last_cutoff_score_margin": 1.024609730393422e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2189788612413395e-08,
+ "last_raw_normalized_gap": 0.03183027356863022,
+ "last_raw_score_gap": 1.024609730393422e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "a6285aa61eeb043274a824413105bb6fe1d2010bd74f042699ede90b5a18afe0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fdbf58cc5079a35a2556246cf5901d7f0a6da3488e3129d56906882406789983",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fdbf58cc5079a35a2556246cf5901d7f0a6da3488e3129d56906882406789983",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.249013479309724e-07,
+ "last_committed_normalized_gap": 0.6575588583946228,
+ "last_committed_score_gap": 8.212998636736302e-08,
+ "last_cutoff_score_margin": 8.212998636736302e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.249013479309724e-07,
+ "last_raw_normalized_gap": 0.6575588583946228,
+ "last_raw_score_gap": 8.212998636736302e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "fdbf58cc5079a35a2556246cf5901d7f0a6da3488e3129d56906882406789983",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9f8b74dfd326bad13684076e2d92b1e2201b82c857dbe0ad8869fba26db95a71",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9f8b74dfd326bad13684076e2d92b1e2201b82c857dbe0ad8869fba26db95a71",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.8462236890145505e-08,
+ "last_committed_normalized_gap": 0.125451922416687,
+ "last_committed_score_gap": 6.079680758830364e-09,
+ "last_cutoff_score_margin": 6.079680758830364e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.8462236890145505e-08,
+ "last_raw_normalized_gap": 0.125451922416687,
+ "last_raw_score_gap": 6.079680758830364e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "9f8b74dfd326bad13684076e2d92b1e2201b82c857dbe0ad8869fba26db95a71",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e71137e6d088b6fcfa29d2b8b1f2f9df07649d8dab366c26444eeb1a63ca9b3a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e71137e6d088b6fcfa29d2b8b1f2f9df07649d8dab366c26444eeb1a63ca9b3a",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.817642747425907e-08,
+ "last_committed_normalized_gap": 0.026862269267439842,
+ "last_committed_score_gap": 4.882600990185892e-10,
+ "last_cutoff_score_margin": 4.882600990185892e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 82,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.817642747425907e-08,
+ "last_raw_normalized_gap": 0.026862269267439842,
+ "last_raw_score_gap": 4.882600990185892e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "e71137e6d088b6fcfa29d2b8b1f2f9df07649d8dab366c26444eeb1a63ca9b3a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "04f72b15c811cd2950ec3824aa67242cd5e8a877122672b85de3041bc39127f0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "04f72b15c811cd2950ec3824aa67242cd5e8a877122672b85de3041bc39127f0",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0624289643601514e-06,
+ "last_committed_normalized_gap": 0.4661794602870941,
+ "last_committed_score_gap": 4.952825634063629e-07,
+ "last_cutoff_score_margin": 4.952825634063629e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0624289643601514e-06,
+ "last_raw_normalized_gap": 0.4661794602870941,
+ "last_raw_score_gap": 4.952825634063629e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "04f72b15c811cd2950ec3824aa67242cd5e8a877122672b85de3041bc39127f0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "985d8ff91ecd8adc591177daf1e737341314d4a0d99d5e0f903b2f0044652ba9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "985d8ff91ecd8adc591177daf1e737341314d4a0d99d5e0f903b2f0044652ba9",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7697363574598057e-08,
+ "last_committed_normalized_gap": 0.04550640285015106,
+ "last_committed_score_gap": 8.053433475652128e-10,
+ "last_cutoff_score_margin": 8.053433475652128e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 60,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7697363574598057e-08,
+ "last_raw_normalized_gap": 0.04550640285015106,
+ "last_raw_score_gap": 8.053433475652128e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "985d8ff91ecd8adc591177daf1e737341314d4a0d99d5e0f903b2f0044652ba9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8e6665b27235852570ae48b768727a6fbef18a8879e7e6467e6813f71a4476b5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8e6665b27235852570ae48b768727a6fbef18a8879e7e6467e6813f71a4476b5",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8819484637333517e-08,
+ "last_committed_normalized_gap": 0.12269780039787292,
+ "last_committed_score_gap": 2.3091093481752978e-09,
+ "last_cutoff_score_margin": 2.3091093481752978e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8819484637333517e-08,
+ "last_raw_normalized_gap": 0.12269780039787292,
+ "last_raw_score_gap": 2.3091093481752978e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "8e6665b27235852570ae48b768727a6fbef18a8879e7e6467e6813f71a4476b5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8b517eba5df7c821a6b02dcf259bf0eebbf1628e6e9989c742e6abf8304cee55",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8b517eba5df7c821a6b02dcf259bf0eebbf1628e6e9989c742e6abf8304cee55",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6453816442663083e-06,
+ "last_committed_normalized_gap": 0.08039871603250504,
+ "last_committed_score_gap": 1.3228657280706102e-07,
+ "last_cutoff_score_margin": 1.3228657280706102e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6453816442663083e-06,
+ "last_raw_normalized_gap": 0.08039871603250504,
+ "last_raw_score_gap": 1.3228657280706102e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "8b517eba5df7c821a6b02dcf259bf0eebbf1628e6e9989c742e6abf8304cee55",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e620ff69b5ef2037d993e20bbfbbe3d6bb148f8f4c841d4595a56f0a6af831c5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e620ff69b5ef2037d993e20bbfbbe3d6bb148f8f4c841d4595a56f0a6af831c5",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.899130878286087e-07,
+ "last_committed_normalized_gap": 0.4640218913555145,
+ "last_committed_score_gap": 3.665369661121076e-07,
+ "last_cutoff_score_margin": 3.665369661121076e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.899130878286087e-07,
+ "last_raw_normalized_gap": 0.4640218913555145,
+ "last_raw_score_gap": 3.665369661121076e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "e620ff69b5ef2037d993e20bbfbbe3d6bb148f8f4c841d4595a56f0a6af831c5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.663120514829643e-05,
+ "last_committed_normalized_gap": 0.7394846081733704,
+ "last_committed_score_gap": 2.7088211936643347e-05,
+ "last_cutoff_score_margin": 2.7088211936643347e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.663120514829643e-05,
+ "last_raw_normalized_gap": 0.7394846081733704,
+ "last_raw_score_gap": 2.7088211936643347e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "541c95de375bd24fb6cf2b92505e2177b15aa9590040ff4d4942d92936dd6585",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.540343459462747e-05,
+ "last_committed_normalized_gap": 0.9318877458572388,
+ "last_committed_score_gap": 3.299202580819838e-05,
+ "last_cutoff_score_margin": 3.299202580819838e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.540343459462747e-05,
+ "last_raw_normalized_gap": 0.9318877458572388,
+ "last_raw_score_gap": 3.299202580819838e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "db73978578706ada3aabc2658bdf3b8a609570f8872e100758ca98c1cc75ac34",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4328131328511517e-05,
+ "last_committed_normalized_gap": 0.9348424673080444,
+ "last_committed_score_gap": 1.3394545931078028e-05,
+ "last_cutoff_score_margin": 1.3394545931078028e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4328131328511517e-05,
+ "last_raw_normalized_gap": 0.9348424673080444,
+ "last_raw_score_gap": 1.3394545931078028e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "752e4b0774a6100e8ea31c8dbc7096b9c98848027cf87634fbbff482410e5bcd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b7eff36ace790cf41a2344b750d49b11b1c87a456a052d3efbe770c1a175dbc5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b7eff36ace790cf41a2344b750d49b11b1c87a456a052d3efbe770c1a175dbc5",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.2834645341827127e-07,
+ "last_committed_normalized_gap": 0.6495206952095032,
+ "last_committed_score_gap": 2.782198862405494e-07,
+ "last_cutoff_score_margin": 2.782198862405494e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.2834645341827127e-07,
+ "last_raw_normalized_gap": 0.6495206952095032,
+ "last_raw_score_gap": 2.782198862405494e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 38,
+ "observations_staged": 38,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "b7eff36ace790cf41a2344b750d49b11b1c87a456a052d3efbe770c1a175dbc5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 38,
+ "tokens_observed": 286
+ }
+ ],
+ "task_id": 653
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9799652abdbcdb512185a2858c2ae9d2d29208d1ba4306884b3f1703d361d758",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9799652abdbcdb512185a2858c2ae9d2d29208d1ba4306884b3f1703d361d758",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5155551480461327e-08,
+ "last_committed_normalized_gap": 0.07343441247940063,
+ "last_committed_score_gap": 1.1129390742325995e-09,
+ "last_cutoff_score_margin": 1.1129390742325995e-09,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 349,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5155551480461327e-08,
+ "last_raw_normalized_gap": 0.07343441247940063,
+ "last_raw_score_gap": 1.1129390742325995e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "9799652abdbcdb512185a2858c2ae9d2d29208d1ba4306884b3f1703d361d758",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c1a1aee6e48eb45ea73de08b7f6ac1883da7c917e8169fce1a555839a726bdfc",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c1a1aee6e48eb45ea73de08b7f6ac1883da7c917e8169fce1a555839a726bdfc",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3436652901432922e-09,
+ "last_committed_normalized_gap": 0.004057454876601696,
+ "last_committed_score_gap": 5.451861184724294e-12,
+ "last_cutoff_score_margin": 5.451861184724294e-12,
+ "last_mask_churn": 146,
+ "last_mask_overlap": 307,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3436652901432922e-09,
+ "last_raw_normalized_gap": 0.004057454876601696,
+ "last_raw_score_gap": 5.451861184724294e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "c1a1aee6e48eb45ea73de08b7f6ac1883da7c917e8169fce1a555839a726bdfc",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "37e00e68caaec70e063041f3682633d70dfe24404a82a5480ce752227e3c5375",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "37e00e68caaec70e063041f3682633d70dfe24404a82a5480ce752227e3c5375",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.578660448677056e-09,
+ "last_committed_normalized_gap": 0.014669552445411682,
+ "last_committed_score_gap": 1.2584511210889104e-10,
+ "last_cutoff_score_margin": 1.2584511210889104e-10,
+ "last_mask_churn": 36,
+ "last_mask_overlap": 251,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.578660448677056e-09,
+ "last_raw_normalized_gap": 0.014669552445411682,
+ "last_raw_score_gap": 1.2584511210889104e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "37e00e68caaec70e063041f3682633d70dfe24404a82a5480ce752227e3c5375",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "53101fade943224c3511312ef7979d241ab7ade3dafc4d7b56402ddfa23f138b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "53101fade943224c3511312ef7979d241ab7ade3dafc4d7b56402ddfa23f138b",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.220126245651045e-07,
+ "last_committed_normalized_gap": 0.09914594888687134,
+ "last_committed_score_gap": 3.1926248311719974e-08,
+ "last_cutoff_score_margin": 3.1926248311719974e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 177,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.220126245651045e-07,
+ "last_raw_normalized_gap": 0.09914594888687134,
+ "last_raw_score_gap": 3.1926248311719974e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "53101fade943224c3511312ef7979d241ab7ade3dafc4d7b56402ddfa23f138b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8e51ee621ee4f2c152fcb149e6defef89064abda68af82862a6f75497fe89083",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8e51ee621ee4f2c152fcb149e6defef89064abda68af82862a6f75497fe89083",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0866330057979212e-07,
+ "last_committed_normalized_gap": 0.023064538836479187,
+ "last_committed_score_gap": 2.506268970137171e-09,
+ "last_cutoff_score_margin": 2.506268970137171e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0866330057979212e-07,
+ "last_raw_normalized_gap": 0.023064538836479187,
+ "last_raw_score_gap": 2.506268970137171e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "8e51ee621ee4f2c152fcb149e6defef89064abda68af82862a6f75497fe89083",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "be8e97eece7c3a3b3b02ea74c74f982528916a4211113db5a4eb6bd9d09e1d94",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "be8e97eece7c3a3b3b02ea74c74f982528916a4211113db5a4eb6bd9d09e1d94",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.9386975458910456e-08,
+ "last_committed_normalized_gap": 0.04958359897136688,
+ "last_committed_score_gap": 1.952948025518708e-09,
+ "last_cutoff_score_margin": 1.952948025518708e-09,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 100,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.9386975458910456e-08,
+ "last_raw_normalized_gap": 0.04958359897136688,
+ "last_raw_score_gap": 1.952948025518708e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "be8e97eece7c3a3b3b02ea74c74f982528916a4211113db5a4eb6bd9d09e1d94",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7748c45fe788d97048de48047d5d499a899d4dd31959f283f7941628c0c26c69",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7748c45fe788d97048de48047d5d499a899d4dd31959f283f7941628c0c26c69",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2591095810421393e-07,
+ "last_committed_normalized_gap": 0.2847839891910553,
+ "last_committed_score_gap": 3.5857425473295734e-08,
+ "last_cutoff_score_margin": 3.5857425473295734e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2591095810421393e-07,
+ "last_raw_normalized_gap": 0.2847839891910553,
+ "last_raw_score_gap": 3.5857425473295734e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "7748c45fe788d97048de48047d5d499a899d4dd31959f283f7941628c0c26c69",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1e37aa2939af8aafa324ca49bd0dac535b853eae01c6ee34be475c8fd96677f1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1e37aa2939af8aafa324ca49bd0dac535b853eae01c6ee34be475c8fd96677f1",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2198178467315302e-07,
+ "last_committed_normalized_gap": 0.15419530868530273,
+ "last_committed_score_gap": 1.880901834283577e-08,
+ "last_cutoff_score_margin": 1.880901834283577e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2198178467315302e-07,
+ "last_raw_normalized_gap": 0.15419530868530273,
+ "last_raw_score_gap": 1.880901834283577e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "1e37aa2939af8aafa324ca49bd0dac535b853eae01c6ee34be475c8fd96677f1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2a91618c99d6bbf27f67b7cd69481b8cbc89b7c554dac6a3b204ec32b38bdb41",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "2a91618c99d6bbf27f67b7cd69481b8cbc89b7c554dac6a3b204ec32b38bdb41",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7668584817442934e-08,
+ "last_committed_normalized_gap": 0.03832201287150383,
+ "last_committed_score_gap": 6.770957128310329e-10,
+ "last_cutoff_score_margin": 6.770957128310329e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7668584817442934e-08,
+ "last_raw_normalized_gap": 0.03832201287150383,
+ "last_raw_score_gap": 6.770957128310329e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "2a91618c99d6bbf27f67b7cd69481b8cbc89b7c554dac6a3b204ec32b38bdb41",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e816bc17d427ad7ffc15eed45884909552fd7b9df9692301a0a531981384e889",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e816bc17d427ad7ffc15eed45884909552fd7b9df9692301a0a531981384e889",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.660911134938942e-07,
+ "last_committed_normalized_gap": 0.4417448341846466,
+ "last_committed_score_gap": 3.8259128132267506e-07,
+ "last_cutoff_score_margin": 3.8259128132267506e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.660911134938942e-07,
+ "last_raw_normalized_gap": 0.4417448341846466,
+ "last_raw_score_gap": 3.8259128132267506e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "e816bc17d427ad7ffc15eed45884909552fd7b9df9692301a0a531981384e889",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b1887e9dfc02f117c4704e3dba73e3dec18b07bfd931f9c242dd1c78ec9b63ec",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b1887e9dfc02f117c4704e3dba73e3dec18b07bfd931f9c242dd1c78ec9b63ec",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.6951621379112112e-08,
+ "last_committed_normalized_gap": 0.016477074474096298,
+ "last_committed_score_gap": 4.440838807795444e-10,
+ "last_cutoff_score_margin": 4.440838807795444e-10,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.6951621379112112e-08,
+ "last_raw_normalized_gap": 0.016477074474096298,
+ "last_raw_score_gap": 4.440838807795444e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "b1887e9dfc02f117c4704e3dba73e3dec18b07bfd931f9c242dd1c78ec9b63ec",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8362367650ec7afa61855b8d0e4319b71bd55a5cba4c3a3c85df7bac45be5e7d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8362367650ec7afa61855b8d0e4319b71bd55a5cba4c3a3c85df7bac45be5e7d",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.346851329411038e-08,
+ "last_committed_normalized_gap": 0.029150424525141716,
+ "last_committed_score_gap": 9.75621361476442e-10,
+ "last_cutoff_score_margin": 9.75621361476442e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 50,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.346851329411038e-08,
+ "last_raw_normalized_gap": 0.029150424525141716,
+ "last_raw_score_gap": 9.75621361476442e-10,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "8362367650ec7afa61855b8d0e4319b71bd55a5cba4c3a3c85df7bac45be5e7d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1891512460570084e-06,
+ "last_committed_normalized_gap": 0.4686864912509918,
+ "last_committed_score_gap": 1.026025643113826e-06,
+ "last_cutoff_score_margin": 1.026025643113826e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1891512460570084e-06,
+ "last_raw_normalized_gap": 0.4686864912509918,
+ "last_raw_score_gap": 1.026025643113826e-06,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "fd52aaa17f02f1221b1944204ab616b1f5237866ac58a1b98053d661a662b737",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0dd56c5b0b5833c0b718c49f79b1028c15ef5bd628e6c3d3d6d167a916fa3362",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0dd56c5b0b5833c0b718c49f79b1028c15ef5bd628e6c3d3d6d167a916fa3362",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.7276350920146797e-06,
+ "last_committed_normalized_gap": 0.7134691476821899,
+ "last_committed_score_gap": 1.946083557413658e-06,
+ "last_cutoff_score_margin": 1.946083557413658e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7276350920146797e-06,
+ "last_raw_normalized_gap": 0.7134691476821899,
+ "last_raw_score_gap": 1.946083557413658e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "0dd56c5b0b5833c0b718c49f79b1028c15ef5bd628e6c3d3d6d167a916fa3362",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.983425216982141e-05,
+ "last_committed_normalized_gap": 0.9216602444648743,
+ "last_committed_score_gap": 5.51468510820996e-05,
+ "last_cutoff_score_margin": 5.51468510820996e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.983425216982141e-05,
+ "last_raw_normalized_gap": 0.9216602444648743,
+ "last_raw_score_gap": 5.51468510820996e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "8c64c633209b224fd71ca03542537c3f25620c38d836949306a9f7a727d3ac3c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.243273335509002e-05,
+ "last_committed_normalized_gap": 0.8979597687721252,
+ "last_committed_score_gap": 4.708248525275849e-05,
+ "last_cutoff_score_margin": 4.708248525275849e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.243273335509002e-05,
+ "last_raw_normalized_gap": 0.8979597687721252,
+ "last_raw_score_gap": 4.708248525275849e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "4cc640856d14dd947abdb56791464ac6fd29b8f51358af1e8738b303f17fc5f5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.356924960622564e-05,
+ "last_committed_normalized_gap": 0.9235311150550842,
+ "last_committed_score_gap": 2.1766934878542088e-05,
+ "last_cutoff_score_margin": 2.1766934878542088e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.356924960622564e-05,
+ "last_raw_normalized_gap": 0.9235311150550842,
+ "last_raw_score_gap": 2.1766934878542088e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "828ca20c581d63b5a2e5aa7e5900bab8a9a9d3b38f96647b4ffcc718c15ddf7e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d6b88d95279cbbafc19df286b4a67ba3132606b3a8c24aa41b5314a6503092d7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d6b88d95279cbbafc19df286b4a67ba3132606b3a8c24aa41b5314a6503092d7",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.743640821900044e-07,
+ "last_committed_normalized_gap": 0.745710551738739,
+ "last_committed_score_gap": 5.774514875156456e-07,
+ "last_cutoff_score_margin": 5.774514875156456e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.743640821900044e-07,
+ "last_raw_normalized_gap": 0.745710551738739,
+ "last_raw_score_gap": 5.774514875156456e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 22,
+ "observations_staged": 22,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "d6b88d95279cbbafc19df286b4a67ba3132606b3a8c24aa41b5314a6503092d7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 22,
+ "tokens_observed": 292
+ }
+ ],
+ "task_id": 857
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6060d69fcc521858814126efb55de82ea014ee70a4944efd1d9e3aef06cd638c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6060d69fcc521858814126efb55de82ea014ee70a4944efd1d9e3aef06cd638c",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0795232202885927e-08,
+ "last_committed_normalized_gap": 0.262254923582077,
+ "last_committed_score_gap": 5.453651752418409e-09,
+ "last_cutoff_score_margin": 5.453651752418409e-09,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 348,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0795232202885927e-08,
+ "last_raw_normalized_gap": 0.262254923582077,
+ "last_raw_score_gap": 5.453651752418409e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "6060d69fcc521858814126efb55de82ea014ee70a4944efd1d9e3aef06cd638c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c8bf62c460f7f6cc09c3a78259c2a4422841ed74879ffc413f2aad2b38a6420e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c8bf62c460f7f6cc09c3a78259c2a4422841ed74879ffc413f2aad2b38a6420e",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.2552869561340856e-10,
+ "last_committed_normalized_gap": 0.003245063591748476,
+ "last_committed_score_gap": 1.380867642453154e-12,
+ "last_cutoff_score_margin": 1.380867642453154e-12,
+ "last_mask_churn": 72,
+ "last_mask_overlap": 344,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.2552869561340856e-10,
+ "last_raw_normalized_gap": 0.003245063591748476,
+ "last_raw_score_gap": 1.380867642453154e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "c8bf62c460f7f6cc09c3a78259c2a4422841ed74879ffc413f2aad2b38a6420e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f04c96c70c69e8dd348e2165ee4b21b137ab7b06412b926a24efb0ec1ce0dbb7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f04c96c70c69e8dd348e2165ee4b21b137ab7b06412b926a24efb0ec1ce0dbb7",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4406068277471604e-09,
+ "last_committed_normalized_gap": 0.005169805604964495,
+ "last_committed_score_gap": 1.2617462630259979e-11,
+ "last_cutoff_score_margin": 1.2617462630259979e-11,
+ "last_mask_churn": 28,
+ "last_mask_overlap": 255,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4406068277471604e-09,
+ "last_raw_normalized_gap": 0.005169805604964495,
+ "last_raw_score_gap": 1.2617462630259979e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "f04c96c70c69e8dd348e2165ee4b21b137ab7b06412b926a24efb0ec1ce0dbb7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f1b122e4590ab19d962ec113db82273e65fb6cb99d167c888fdfb096f0587381",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f1b122e4590ab19d962ec113db82273e65fb6cb99d167c888fdfb096f0587381",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3017280170734011e-07,
+ "last_committed_normalized_gap": 0.38300445675849915,
+ "last_committed_score_gap": 8.815720775601221e-08,
+ "last_cutoff_score_margin": 8.815720775601221e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3017280170734011e-07,
+ "last_raw_normalized_gap": 0.38300445675849915,
+ "last_raw_score_gap": 8.815720775601221e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "f1b122e4590ab19d962ec113db82273e65fb6cb99d167c888fdfb096f0587381",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bc6b4d628921f0a1ed78642108f605d63dc6f4d0ecbafd53c23cc31e389ac2d1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "bc6b4d628921f0a1ed78642108f605d63dc6f4d0ecbafd53c23cc31e389ac2d1",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.9653310090461673e-08,
+ "last_committed_normalized_gap": 0.005464563146233559,
+ "last_committed_score_gap": 1.0739675815329974e-10,
+ "last_cutoff_score_margin": 1.0739675815329974e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9653310090461673e-08,
+ "last_raw_normalized_gap": 0.005464563146233559,
+ "last_raw_score_gap": 1.0739675815329974e-10,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "bc6b4d628921f0a1ed78642108f605d63dc6f4d0ecbafd53c23cc31e389ac2d1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9c051f7d9e6ed5d7402ea3c3872d41924b70140da9f6ab32fb146f6149686158",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9c051f7d9e6ed5d7402ea3c3872d41924b70140da9f6ab32fb146f6149686158",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4290850220154425e-08,
+ "last_committed_normalized_gap": 0.045851510018110275,
+ "last_committed_score_gap": 1.1137721855902782e-09,
+ "last_cutoff_score_margin": 1.1137721855902782e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4290850220154425e-08,
+ "last_raw_normalized_gap": 0.045851510018110275,
+ "last_raw_score_gap": 1.1137721855902782e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "9c051f7d9e6ed5d7402ea3c3872d41924b70140da9f6ab32fb146f6149686158",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d64b25b6e24b927f91a142534d6262b11f3c81ed9bbed38edc52ad3143fd2749",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d64b25b6e24b927f91a142534d6262b11f3c81ed9bbed38edc52ad3143fd2749",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7917579953063978e-07,
+ "last_committed_normalized_gap": 0.22127972543239594,
+ "last_committed_score_gap": 3.9647972016609856e-08,
+ "last_cutoff_score_margin": 3.9647972016609856e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7917579953063978e-07,
+ "last_raw_normalized_gap": 0.22127972543239594,
+ "last_raw_score_gap": 3.9647972016609856e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "d64b25b6e24b927f91a142534d6262b11f3c81ed9bbed38edc52ad3143fd2749",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3f436277e049625614e3f49845697577b5d2da48f6fd6ec5ea4e546882c65361",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3f436277e049625614e3f49845697577b5d2da48f6fd6ec5ea4e546882c65361",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0386482784952022e-07,
+ "last_committed_normalized_gap": 0.5079241394996643,
+ "last_committed_score_gap": 5.275545333915943e-08,
+ "last_cutoff_score_margin": 5.275545333915943e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0386482784952022e-07,
+ "last_raw_normalized_gap": 0.5079241394996643,
+ "last_raw_score_gap": 5.275545333915943e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "3f436277e049625614e3f49845697577b5d2da48f6fd6ec5ea4e546882c65361",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "de32d067e38d2329028c5ae83c59412703c807adbbe8b77062f55987a62a3634",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "de32d067e38d2329028c5ae83c59412703c807adbbe8b77062f55987a62a3634",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7154087927906403e-08,
+ "last_committed_normalized_gap": 0.046748265624046326,
+ "last_committed_score_gap": 8.019238606493673e-10,
+ "last_cutoff_score_margin": 8.019238606493673e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 81,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7154087927906403e-08,
+ "last_raw_normalized_gap": 0.046748265624046326,
+ "last_raw_score_gap": 8.019238606493673e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "de32d067e38d2329028c5ae83c59412703c807adbbe8b77062f55987a62a3634",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c270a9603d66f01368b7f4e9df1f690e096fd8b436a75d1ab368e59d29a7eba4",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c270a9603d66f01368b7f4e9df1f690e096fd8b436a75d1ab368e59d29a7eba4",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.967567168838286e-07,
+ "last_committed_normalized_gap": 0.3124620318412781,
+ "last_committed_score_gap": 2.802024141601578e-07,
+ "last_cutoff_score_margin": 2.802024141601578e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.967567168838286e-07,
+ "last_raw_normalized_gap": 0.3124620318412781,
+ "last_raw_score_gap": 2.802024141601578e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "c270a9603d66f01368b7f4e9df1f690e096fd8b436a75d1ab368e59d29a7eba4",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0343b17ee7b8fbf8af4b96064d5ab01090718313b8ed18ebb2cbdb3eef326bd6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0343b17ee7b8fbf8af4b96064d5ab01090718313b8ed18ebb2cbdb3eef326bd6",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5571482709096927e-08,
+ "last_committed_normalized_gap": 0.20020805299282074,
+ "last_committed_score_gap": 5.119616730553389e-09,
+ "last_cutoff_score_margin": 5.119616730553389e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 60,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5571482709096927e-08,
+ "last_raw_normalized_gap": 0.20020805299282074,
+ "last_raw_score_gap": 5.119616730553389e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "0343b17ee7b8fbf8af4b96064d5ab01090718313b8ed18ebb2cbdb3eef326bd6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "836991b7f703b039c273b39602813afba3ca62fce95799426e4647fded5592c3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "836991b7f703b039c273b39602813afba3ca62fce95799426e4647fded5592c3",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2492284418594863e-08,
+ "last_committed_normalized_gap": 0.07056380808353424,
+ "last_committed_score_gap": 2.2927792997506913e-09,
+ "last_cutoff_score_margin": 2.2927792997506913e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2492284418594863e-08,
+ "last_raw_normalized_gap": 0.07056380808353424,
+ "last_raw_score_gap": 2.2927792997506913e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "836991b7f703b039c273b39602813afba3ca62fce95799426e4647fded5592c3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a813408491e9e70dd25ad31ee80e34c6bc07ac57e9051f58f06032893488797d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a813408491e9e70dd25ad31ee80e34c6bc07ac57e9051f58f06032893488797d",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.486245744483313e-07,
+ "last_committed_normalized_gap": 0.24385805428028107,
+ "last_committed_score_gap": 2.3132975002226885e-07,
+ "last_cutoff_score_margin": 2.3132975002226885e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.486245744483313e-07,
+ "last_raw_normalized_gap": 0.24385805428028107,
+ "last_raw_score_gap": 2.3132975002226885e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "a813408491e9e70dd25ad31ee80e34c6bc07ac57e9051f58f06032893488797d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0540c17d8c151931ef89b7aed5bb2fb16da150bc2d55529e86e14bde0477ffec",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0540c17d8c151931ef89b7aed5bb2fb16da150bc2d55529e86e14bde0477ffec",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3113743736757897e-06,
+ "last_committed_normalized_gap": 0.8390069603919983,
+ "last_committed_score_gap": 1.939259163918905e-06,
+ "last_cutoff_score_margin": 1.939259163918905e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3113743736757897e-06,
+ "last_raw_normalized_gap": 0.8390069603919983,
+ "last_raw_score_gap": 1.939259163918905e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "0540c17d8c151931ef89b7aed5bb2fb16da150bc2d55529e86e14bde0477ffec",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.337174272630364e-05,
+ "last_committed_normalized_gap": 0.591202974319458,
+ "last_committed_score_gap": 3.746556103578769e-05,
+ "last_cutoff_score_margin": 3.746556103578769e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.337174272630364e-05,
+ "last_raw_normalized_gap": 0.591202974319458,
+ "last_raw_score_gap": 3.746556103578769e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5229757991619408e-05,
+ "last_committed_normalized_gap": 0.7345693111419678,
+ "last_committed_score_gap": 1.1187313248228747e-05,
+ "last_cutoff_score_margin": 1.1187313248228747e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5229757991619408e-05,
+ "last_raw_normalized_gap": 0.7345693111419678,
+ "last_raw_score_gap": 1.1187313248228747e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.61950423111557e-06,
+ "last_committed_normalized_gap": 0.8712666034698486,
+ "last_committed_score_gap": 6.638619652221678e-06,
+ "last_cutoff_score_margin": 6.638619652221678e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.61950423111557e-06,
+ "last_raw_normalized_gap": 0.8712666034698486,
+ "last_raw_score_gap": 6.638619652221678e-06,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "e202048fb95347b6488efaea2d2ce8338b38a894c9e4fb942ab9f193f6dd9448",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a63f2edf5b049d31056e8af42cbaebedffc2fdd31a190b8f0c755d61d21cccb1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a63f2edf5b049d31056e8af42cbaebedffc2fdd31a190b8f0c755d61d21cccb1",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7435357335671142e-07,
+ "last_committed_normalized_gap": 0.5588741302490234,
+ "last_committed_score_gap": 9.744170625936022e-08,
+ "last_cutoff_score_margin": 9.744170625936022e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7435357335671142e-07,
+ "last_raw_normalized_gap": 0.5588741302490234,
+ "last_raw_score_gap": 9.744170625936022e-08,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 68,
+ "observations_staged": 68,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "a63f2edf5b049d31056e8af42cbaebedffc2fdd31a190b8f0c755d61d21cccb1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 68,
+ "tokens_observed": 179
+ }
+ ],
+ "task_id": 884
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "355391428da6b4ec584629b0669ace407d231f692e78987f184db6d751efc2bf",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "355391428da6b4ec584629b0669ace407d231f692e78987f184db6d751efc2bf",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8251745004249642e-08,
+ "last_committed_normalized_gap": 0.09338636696338654,
+ "last_committed_score_gap": 1.7044641253960435e-09,
+ "last_cutoff_score_margin": 1.7044641253960435e-09,
+ "last_mask_churn": 16,
+ "last_mask_overlap": 347,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8251745004249642e-08,
+ "last_raw_normalized_gap": 0.09338636696338654,
+ "last_raw_score_gap": 1.7044641253960435e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "355391428da6b4ec584629b0669ace407d231f692e78987f184db6d751efc2bf",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e79447e9d0976f9f43ecceb625d81e8933e411adfd790c052c96b9f1058bcaf",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6e79447e9d0976f9f43ecceb625d81e8933e411adfd790c052c96b9f1058bcaf",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.314836405365895e-09,
+ "last_committed_normalized_gap": 0.0016213069902732968,
+ "last_committed_score_gap": 5.374367617605458e-12,
+ "last_cutoff_score_margin": 5.374367617605458e-12,
+ "last_mask_churn": 126,
+ "last_mask_overlap": 317,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.314836405365895e-09,
+ "last_raw_normalized_gap": 0.0016213069902732968,
+ "last_raw_score_gap": 5.374367617605458e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "6e79447e9d0976f9f43ecceb625d81e8933e411adfd790c052c96b9f1058bcaf",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4b5cc62380f3a2b0776b31734d034d1864b2c7fa79d6aae0fce8f5e566f9c4b9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4b5cc62380f3a2b0776b31734d034d1864b2c7fa79d6aae0fce8f5e566f9c4b9",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0785463189222355e-08,
+ "last_committed_normalized_gap": 0.01935841143131256,
+ "last_committed_score_gap": 2.0878943018942664e-10,
+ "last_cutoff_score_margin": 2.0878943018942664e-10,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 264,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0785463189222355e-08,
+ "last_raw_normalized_gap": 0.01935841143131256,
+ "last_raw_score_gap": 2.0878943018942664e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "4b5cc62380f3a2b0776b31734d034d1864b2c7fa79d6aae0fce8f5e566f9c4b9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "52d091980bce78cbc21656ac872b35524cc05bb98f6fc9152452db970e38a435",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "52d091980bce78cbc21656ac872b35524cc05bb98f6fc9152452db970e38a435",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.633746791185331e-07,
+ "last_committed_normalized_gap": 0.14666099846363068,
+ "last_committed_score_gap": 2.3960694761626655e-08,
+ "last_cutoff_score_margin": 2.3960694761626655e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.633746791185331e-07,
+ "last_raw_normalized_gap": 0.14666099846363068,
+ "last_raw_score_gap": 2.3960694761626655e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "52d091980bce78cbc21656ac872b35524cc05bb98f6fc9152452db970e38a435",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "df1d3a75d94969a71e27f5b68b52c38d871b9e7ddf98ae8bb972a3521aa90a6d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "df1d3a75d94969a71e27f5b68b52c38d871b9e7ddf98ae8bb972a3521aa90a6d",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0073338074789717e-07,
+ "last_committed_normalized_gap": 0.24517938494682312,
+ "last_committed_score_gap": 2.4697747846857965e-08,
+ "last_cutoff_score_margin": 2.4697747846857965e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0073338074789717e-07,
+ "last_raw_normalized_gap": 0.24517938494682312,
+ "last_raw_score_gap": 2.4697747846857965e-08,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "df1d3a75d94969a71e27f5b68b52c38d871b9e7ddf98ae8bb972a3521aa90a6d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f9538fe5eaf943f10742be32c23467116dfda484c9d27399eecd5c75a7426bdb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f9538fe5eaf943f10742be32c23467116dfda484c9d27399eecd5c75a7426bdb",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.939557752767996e-08,
+ "last_committed_normalized_gap": 0.08203217387199402,
+ "last_committed_score_gap": 2.411383093203767e-09,
+ "last_cutoff_score_margin": 2.411383093203767e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.939557752767996e-08,
+ "last_raw_normalized_gap": 0.08203217387199402,
+ "last_raw_score_gap": 2.411383093203767e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "f9538fe5eaf943f10742be32c23467116dfda484c9d27399eecd5c75a7426bdb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c51e113cd304d6abacb8261d470ac267ef4484199cb13f63da341f72795824fd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c51e113cd304d6abacb8261d470ac267ef4484199cb13f63da341f72795824fd",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4361000921780942e-07,
+ "last_committed_normalized_gap": 0.4240102171897888,
+ "last_committed_score_gap": 6.089211268545114e-08,
+ "last_cutoff_score_margin": 6.089211268545114e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4361000921780942e-07,
+ "last_raw_normalized_gap": 0.4240102171897888,
+ "last_raw_score_gap": 6.089211268545114e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "c51e113cd304d6abacb8261d470ac267ef4484199cb13f63da341f72795824fd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bb169ebe05c4042aa02d6da7f9e76c3807c03f68ecc8ff04b6bf772c8b26af1e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "bb169ebe05c4042aa02d6da7f9e76c3807c03f68ecc8ff04b6bf772c8b26af1e",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.274020674685744e-08,
+ "last_committed_normalized_gap": 0.06192517653107643,
+ "last_committed_score_gap": 4.504450146214367e-09,
+ "last_cutoff_score_margin": 4.504450146214367e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.274020674685744e-08,
+ "last_raw_normalized_gap": 0.06192517653107643,
+ "last_raw_score_gap": 4.504450146214367e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "bb169ebe05c4042aa02d6da7f9e76c3807c03f68ecc8ff04b6bf772c8b26af1e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b313ce543bcf47d9cc12f86d2973a8a5f2f528884358e33d649bba0b3a37e564",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b313ce543bcf47d9cc12f86d2973a8a5f2f528884358e33d649bba0b3a37e564",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6479049236295396e-08,
+ "last_committed_normalized_gap": 0.004943795967847109,
+ "last_committed_score_gap": 8.146905372541369e-11,
+ "last_cutoff_score_margin": 8.146905372541369e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 81,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6479049236295396e-08,
+ "last_raw_normalized_gap": 0.004943795967847109,
+ "last_raw_score_gap": 8.146905372541369e-11,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "b313ce543bcf47d9cc12f86d2973a8a5f2f528884358e33d649bba0b3a37e564",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "44db695cc5f7126dd5b392dbbfcaf5f4c48b9c2732d69efa08264871d1bbd57a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "44db695cc5f7126dd5b392dbbfcaf5f4c48b9c2732d69efa08264871d1bbd57a",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.605814064641891e-07,
+ "last_committed_normalized_gap": 0.1048072949051857,
+ "last_committed_score_gap": 6.923374940015492e-08,
+ "last_cutoff_score_margin": 6.923374940015492e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.605814064641891e-07,
+ "last_raw_normalized_gap": 0.1048072949051857,
+ "last_raw_score_gap": 6.923374940015492e-08,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "44db695cc5f7126dd5b392dbbfcaf5f4c48b9c2732d69efa08264871d1bbd57a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5bef1f969a0e3fbb9bda97abd02e348554d367ab01867897026c84e6b8ecb165",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5bef1f969a0e3fbb9bda97abd02e348554d367ab01867897026c84e6b8ecb165",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5813767123850084e-08,
+ "last_committed_normalized_gap": 0.041987400501966476,
+ "last_committed_score_gap": 1.0838530073442598e-09,
+ "last_cutoff_score_margin": 1.0838530073442598e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 59,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5813767123850084e-08,
+ "last_raw_normalized_gap": 0.041987400501966476,
+ "last_raw_score_gap": 1.0838530073442598e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "5bef1f969a0e3fbb9bda97abd02e348554d367ab01867897026c84e6b8ecb165",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "552fcdc9810aa2f18e313fb561dbf2830bd0f7a2c4cd01b247c58a483bda1e49",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "552fcdc9810aa2f18e313fb561dbf2830bd0f7a2c4cd01b247c58a483bda1e49",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.845910694939448e-08,
+ "last_committed_normalized_gap": 0.12843795120716095,
+ "last_committed_score_gap": 6.223988435749561e-09,
+ "last_cutoff_score_margin": 6.223988435749561e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.845910694939448e-08,
+ "last_raw_normalized_gap": 0.12843795120716095,
+ "last_raw_score_gap": 6.223988435749561e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "552fcdc9810aa2f18e313fb561dbf2830bd0f7a2c4cd01b247c58a483bda1e49",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b1e65c0d47dde664ab3ef34c1c44e194ceeb0aa7f03daac7dac51722331fecf9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b1e65c0d47dde664ab3ef34c1c44e194ceeb0aa7f03daac7dac51722331fecf9",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3966013057142845e-06,
+ "last_committed_normalized_gap": 0.6143339276313782,
+ "last_committed_score_gap": 8.579795576224569e-07,
+ "last_cutoff_score_margin": 8.579795576224569e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3966013057142845e-06,
+ "last_raw_normalized_gap": 0.6143339276313782,
+ "last_raw_score_gap": 8.579795576224569e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "b1e65c0d47dde664ab3ef34c1c44e194ceeb0aa7f03daac7dac51722331fecf9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.327071570107364e-06,
+ "last_committed_normalized_gap": 0.8292633295059204,
+ "last_committed_score_gap": 1.9297551716590533e-06,
+ "last_cutoff_score_margin": 1.9297551716590533e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.327071570107364e-06,
+ "last_raw_normalized_gap": 0.8292633295059204,
+ "last_raw_score_gap": 1.9297551716590533e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "043ded97c57837bb1e821a64aa496ddcc902470b2c65b135e12118071e83e3dd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5868597731459886e-05,
+ "last_committed_normalized_gap": 0.6446385383605957,
+ "last_committed_score_gap": 1.6675894585205242e-05,
+ "last_cutoff_score_margin": 1.6675894585205242e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5868597731459886e-05,
+ "last_raw_normalized_gap": 0.6446385383605957,
+ "last_raw_score_gap": 1.6675894585205242e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.606169442122336e-06,
+ "last_committed_normalized_gap": 0.31474077701568604,
+ "last_committed_score_gap": 3.0234532459871843e-06,
+ "last_cutoff_score_margin": 3.0234532459871843e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.606169442122336e-06,
+ "last_raw_normalized_gap": 0.31474077701568604,
+ "last_raw_score_gap": 3.0234532459871843e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "c61026e0af1ec1b6121e6a9dcfe7bc717eb0268bbb73170739c07e610287bc53",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.853212991904002e-06,
+ "last_committed_normalized_gap": 0.6932235956192017,
+ "last_committed_score_gap": 5.444032467494253e-06,
+ "last_cutoff_score_margin": 5.444032467494253e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.853212991904002e-06,
+ "last_raw_normalized_gap": 0.6932235956192017,
+ "last_raw_score_gap": 5.444032467494253e-06,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "96588ebc8d1eac7e9b6495b99d0922f04669480db13a1449142a8c1bb712708c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "96588ebc8d1eac7e9b6495b99d0922f04669480db13a1449142a8c1bb712708c",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.274502197811671e-07,
+ "last_committed_normalized_gap": 0.43570470809936523,
+ "last_committed_score_gap": 2.7338302288626437e-07,
+ "last_cutoff_score_margin": 2.7338302288626437e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.274502197811671e-07,
+ "last_raw_normalized_gap": 0.43570470809936523,
+ "last_raw_score_gap": 2.7338302288626437e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 29,
+ "observations_staged": 29,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "96588ebc8d1eac7e9b6495b99d0922f04669480db13a1449142a8c1bb712708c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 29,
+ "tokens_observed": 167
+ }
+ ],
+ "task_id": 878
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b96381d4ca0c748140be3d5e5fdd183fcfede41f9e57e01fcd1eb77916d8a911",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b96381d4ca0c748140be3d5e5fdd183fcfede41f9e57e01fcd1eb77916d8a911",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.85803519423689e-09,
+ "last_committed_normalized_gap": 0.002355999778956175,
+ "last_committed_score_gap": 2.0869528327693843e-11,
+ "last_cutoff_score_margin": 2.0869528327693843e-11,
+ "last_mask_churn": 26,
+ "last_mask_overlap": 342,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.85803519423689e-09,
+ "last_raw_normalized_gap": 0.002355999778956175,
+ "last_raw_score_gap": 2.0869528327693843e-11,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "b96381d4ca0c748140be3d5e5fdd183fcfede41f9e57e01fcd1eb77916d8a911",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "15b078b7d4b38dd3d2def3cedb99e50e763cd72707b4d1fc47c7fdac8988d1b8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "15b078b7d4b38dd3d2def3cedb99e50e763cd72707b4d1fc47c7fdac8988d1b8",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.7736397340282224e-10,
+ "last_committed_normalized_gap": 0.0031637316569685936,
+ "last_committed_score_gap": 1.193878329530662e-12,
+ "last_cutoff_score_margin": 1.193878329530662e-12,
+ "last_mask_churn": 102,
+ "last_mask_overlap": 329,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.7736397340282224e-10,
+ "last_raw_normalized_gap": 0.0031637316569685936,
+ "last_raw_score_gap": 1.193878329530662e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "15b078b7d4b38dd3d2def3cedb99e50e763cd72707b4d1fc47c7fdac8988d1b8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c2dbf3ef4d3e45c4f0c8bede6519a0a821dae7b3b3e881552a5ac38eb66d606f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c2dbf3ef4d3e45c4f0c8bede6519a0a821dae7b3b3e881552a5ac38eb66d606f",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.552974054381707e-09,
+ "last_committed_normalized_gap": 0.007679098751395941,
+ "last_committed_score_gap": 1.960454021343594e-11,
+ "last_cutoff_score_margin": 1.960454021343594e-11,
+ "last_mask_churn": 22,
+ "last_mask_overlap": 258,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.552974054381707e-09,
+ "last_raw_normalized_gap": 0.007679098751395941,
+ "last_raw_score_gap": 1.960454021343594e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "c2dbf3ef4d3e45c4f0c8bede6519a0a821dae7b3b3e881552a5ac38eb66d606f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "794f7b64d69c8c0a68b06ffec39fd2df66c810c411ce10fbedda753ea4c21741",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "794f7b64d69c8c0a68b06ffec39fd2df66c810c411ce10fbedda753ea4c21741",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.83229667275009e-07,
+ "last_committed_normalized_gap": 0.6164472699165344,
+ "last_committed_score_gap": 1.7459615264669992e-07,
+ "last_cutoff_score_margin": 1.7459615264669992e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.83229667275009e-07,
+ "last_raw_normalized_gap": 0.6164472699165344,
+ "last_raw_score_gap": 1.7459615264669992e-07,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "794f7b64d69c8c0a68b06ffec39fd2df66c810c411ce10fbedda753ea4c21741",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "566228b29869df31f35170fd515695285e8b28ca3cdaba91a72c7465dd3fab22",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "566228b29869df31f35170fd515695285e8b28ca3cdaba91a72c7465dd3fab22",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1367176472608662e-08,
+ "last_committed_normalized_gap": 0.28794458508491516,
+ "last_committed_score_gap": 6.1525629035941165e-09,
+ "last_cutoff_score_margin": 6.1525629035941165e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1367176472608662e-08,
+ "last_raw_normalized_gap": 0.28794458508491516,
+ "last_raw_score_gap": 6.1525629035941165e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "566228b29869df31f35170fd515695285e8b28ca3cdaba91a72c7465dd3fab22",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "eab49c5a385c69abb8f4e789ef6623fb88ba6f60390fa1f7f7b30f1abd4d7b7e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "eab49c5a385c69abb8f4e789ef6623fb88ba6f60390fa1f7f7b30f1abd4d7b7e",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.978384175544306e-09,
+ "last_committed_normalized_gap": 0.034910477697849274,
+ "last_committed_score_gap": 2.7852919970428047e-10,
+ "last_cutoff_score_margin": 2.7852919970428047e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.978384175544306e-09,
+ "last_raw_normalized_gap": 0.034910477697849274,
+ "last_raw_score_gap": 2.7852919970428047e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "eab49c5a385c69abb8f4e789ef6623fb88ba6f60390fa1f7f7b30f1abd4d7b7e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6f99d974fff3fbf07b2158d199cfb01625d968b599cb84fe361a40b7f93c6d76",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6f99d974fff3fbf07b2158d199cfb01625d968b599cb84fe361a40b7f93c6d76",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8931424961010634e-07,
+ "last_committed_normalized_gap": 0.508290708065033,
+ "last_committed_score_gap": 9.622667107578309e-08,
+ "last_cutoff_score_margin": 9.622667107578309e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8931424961010634e-07,
+ "last_raw_normalized_gap": 0.508290708065033,
+ "last_raw_score_gap": 9.622667107578309e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "6f99d974fff3fbf07b2158d199cfb01625d968b599cb84fe361a40b7f93c6d76",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e7958b52715b5773fe7e37e8f4bb87f0150fe32a3142a86a22293e55154c9379",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e7958b52715b5773fe7e37e8f4bb87f0150fe32a3142a86a22293e55154c9379",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.720915486837839e-08,
+ "last_committed_normalized_gap": 0.3839890956878662,
+ "last_committed_score_gap": 1.4287909522181508e-08,
+ "last_cutoff_score_margin": 1.4287909522181508e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.720915486837839e-08,
+ "last_raw_normalized_gap": 0.3839890956878662,
+ "last_raw_score_gap": 1.4287909522181508e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "e7958b52715b5773fe7e37e8f4bb87f0150fe32a3142a86a22293e55154c9379",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "67aa0f3bc2a8d3f6aedbaccac5b99295f2c26e656ce72d896d0529ef58afb864",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "67aa0f3bc2a8d3f6aedbaccac5b99295f2c26e656ce72d896d0529ef58afb864",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2115739522755575e-08,
+ "last_committed_normalized_gap": 0.04477370157837868,
+ "last_committed_score_gap": 5.424665161513076e-10,
+ "last_cutoff_score_margin": 5.424665161513076e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 81,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2115739522755575e-08,
+ "last_raw_normalized_gap": 0.04477370157837868,
+ "last_raw_score_gap": 5.424665161513076e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "67aa0f3bc2a8d3f6aedbaccac5b99295f2c26e656ce72d896d0529ef58afb864",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0605ca978d92b17819071c0fa5503b038af14aea851ffcf0c8a4aa01fde1d3e4",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0605ca978d92b17819071c0fa5503b038af14aea851ffcf0c8a4aa01fde1d3e4",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5667709476474556e-06,
+ "last_committed_normalized_gap": 0.21041496098041534,
+ "last_committed_score_gap": 3.296720478829229e-07,
+ "last_cutoff_score_margin": 3.296720478829229e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5667709476474556e-06,
+ "last_raw_normalized_gap": 0.21041496098041534,
+ "last_raw_score_gap": 3.296720478829229e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "0605ca978d92b17819071c0fa5503b038af14aea851ffcf0c8a4aa01fde1d3e4",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c3fc0f132bf24aaa3b272d309713afb2d330148ab4246b87e3405c0c1b7248ac",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c3fc0f132bf24aaa3b272d309713afb2d330148ab4246b87e3405c0c1b7248ac",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5441877110333735e-08,
+ "last_committed_normalized_gap": 0.289581298828125,
+ "last_committed_score_gap": 4.471679027062692e-09,
+ "last_cutoff_score_margin": 4.471679027062692e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5441877110333735e-08,
+ "last_raw_normalized_gap": 0.289581298828125,
+ "last_raw_score_gap": 4.471679027062692e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "c3fc0f132bf24aaa3b272d309713afb2d330148ab4246b87e3405c0c1b7248ac",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "55d828f180fe606e5b37c6b5943d335e2f1aead1362e270ebaa4bfa879b36d37",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "55d828f180fe606e5b37c6b5943d335e2f1aead1362e270ebaa4bfa879b36d37",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3868466375299704e-08,
+ "last_committed_normalized_gap": 0.058748386800289154,
+ "last_committed_score_gap": 8.147500452082568e-10,
+ "last_cutoff_score_margin": 8.147500452082568e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3868466375299704e-08,
+ "last_raw_normalized_gap": 0.058748386800289154,
+ "last_raw_score_gap": 8.147500452082568e-10,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "55d828f180fe606e5b37c6b5943d335e2f1aead1362e270ebaa4bfa879b36d37",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f181882bae222102551157675b05e56715cb33c2e7e59941d894e81af878fbcb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f181882bae222102551157675b05e56715cb33c2e7e59941d894e81af878fbcb",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.8077234876254806e-07,
+ "last_committed_normalized_gap": 0.33311864733695984,
+ "last_committed_score_gap": 1.268423659439577e-07,
+ "last_cutoff_score_margin": 1.268423659439577e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 44,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.8077234876254806e-07,
+ "last_raw_normalized_gap": 0.33311864733695984,
+ "last_raw_score_gap": 1.268423659439577e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "f181882bae222102551157675b05e56715cb33c2e7e59941d894e81af878fbcb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9ac8816f0c25f2fc37b6fd01a60f08e5b472867eb3b26a206580d7a36356af94",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9ac8816f0c25f2fc37b6fd01a60f08e5b472867eb3b26a206580d7a36356af94",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0839027027031989e-06,
+ "last_committed_normalized_gap": 0.6604455709457397,
+ "last_committed_score_gap": 7.15858732291963e-07,
+ "last_cutoff_score_margin": 7.15858732291963e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0839027027031989e-06,
+ "last_raw_normalized_gap": 0.6604455709457397,
+ "last_raw_score_gap": 7.15858732291963e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "9ac8816f0c25f2fc37b6fd01a60f08e5b472867eb3b26a206580d7a36356af94",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.62070742691867e-05,
+ "last_committed_normalized_gap": 0.7410372495651245,
+ "last_committed_score_gap": 4.906190952169709e-05,
+ "last_cutoff_score_margin": 4.906190952169709e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.62070742691867e-05,
+ "last_raw_normalized_gap": 0.7410372495651245,
+ "last_raw_score_gap": 4.906190952169709e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "e6387f7fe2aa2d8fa40a0b502a19b44b0b39bda18fd9e6f467f21f2e5a5406ff",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5941128114936873e-05,
+ "last_committed_normalized_gap": 0.8592604994773865,
+ "last_committed_score_gap": 2.2290187189355493e-05,
+ "last_cutoff_score_margin": 2.2290187189355493e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5941128114936873e-05,
+ "last_raw_normalized_gap": 0.8592604994773865,
+ "last_raw_score_gap": 2.2290187189355493e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "0611d219089b37d269423e2bceeb5c38c63aaaf28372d11834c12b8b3618f91a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8c3fd92734217809db61f0505ee2c24a879692d000505bc2b95db082bffa4b5e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8c3fd92734217809db61f0505ee2c24a879692d000505bc2b95db082bffa4b5e",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1574164091143757e-05,
+ "last_committed_normalized_gap": 0.9150680899620056,
+ "last_committed_score_gap": 1.059114856616361e-05,
+ "last_cutoff_score_margin": 1.059114856616361e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1574164091143757e-05,
+ "last_raw_normalized_gap": 0.9150680899620056,
+ "last_raw_score_gap": 1.059114856616361e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "8c3fd92734217809db61f0505ee2c24a879692d000505bc2b95db082bffa4b5e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "913c961af5b0a943f460626d8909a11caf19ab3d634dfebcbb8b941545a5a502",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "913c961af5b0a943f460626d8909a11caf19ab3d634dfebcbb8b941545a5a502",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0439614445422194e-07,
+ "last_committed_normalized_gap": 0.5667471289634705,
+ "last_committed_score_gap": 1.1584093329020106e-07,
+ "last_cutoff_score_margin": 1.1584093329020106e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0439614445422194e-07,
+ "last_raw_normalized_gap": 0.5667471289634705,
+ "last_raw_score_gap": 1.1584093329020106e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 132,
+ "observations_staged": 132,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "913c961af5b0a943f460626d8909a11caf19ab3d634dfebcbb8b941545a5a502",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 132,
+ "tokens_observed": 202
+ }
+ ],
+ "task_id": 822
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "42fac47e17b395ca999628f45ff92b18a67c0a98ddb132fb1ac70c7e6d54c047",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "42fac47e17b395ca999628f45ff92b18a67c0a98ddb132fb1ac70c7e6d54c047",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4404930581690678e-08,
+ "last_committed_normalized_gap": 0.02620111219584942,
+ "last_committed_score_gap": 3.774252022026303e-10,
+ "last_cutoff_score_margin": 3.774252022026303e-10,
+ "last_mask_churn": 16,
+ "last_mask_overlap": 347,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4404930581690678e-08,
+ "last_raw_normalized_gap": 0.02620111219584942,
+ "last_raw_score_gap": 3.774252022026303e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "42fac47e17b395ca999628f45ff92b18a67c0a98ddb132fb1ac70c7e6d54c047",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "04e9912a7ab4a36db0a8daa8f987db80159a7e7fce32f0e679e5f629a44796db",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "04e9912a7ab4a36db0a8daa8f987db80159a7e7fce32f0e679e5f629a44796db",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.3932463505692567e-09,
+ "last_committed_normalized_gap": 0.02076421119272709,
+ "last_committed_score_gap": 7.045808381178631e-11,
+ "last_cutoff_score_margin": 7.045808381178631e-11,
+ "last_mask_churn": 124,
+ "last_mask_overlap": 318,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.3932463505692567e-09,
+ "last_raw_normalized_gap": 0.02076421119272709,
+ "last_raw_score_gap": 7.045808381178631e-11,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "04e9912a7ab4a36db0a8daa8f987db80159a7e7fce32f0e679e5f629a44796db",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b67f716897451d9088885112b77c3424934698b14a7dddaa4d57653bb955f27b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b67f716897451d9088885112b77c3424934698b14a7dddaa4d57653bb955f27b",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.302157226490408e-08,
+ "last_committed_normalized_gap": 0.02440640516579151,
+ "last_committed_score_gap": 3.178097784939382e-10,
+ "last_cutoff_score_margin": 3.178097784939382e-10,
+ "last_mask_churn": 32,
+ "last_mask_overlap": 253,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.302157226490408e-08,
+ "last_raw_normalized_gap": 0.02440640516579151,
+ "last_raw_score_gap": 3.178097784939382e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "b67f716897451d9088885112b77c3424934698b14a7dddaa4d57653bb955f27b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b3bbb48e0e5073cd1a1d5407c492d0ebaeb40692667a573f58e7fe28edfa6e93",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b3bbb48e0e5073cd1a1d5407c492d0ebaeb40692667a573f58e7fe28edfa6e93",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.82968301235087e-07,
+ "last_committed_normalized_gap": 0.0028269209433346987,
+ "last_committed_score_gap": 7.999290119187208e-10,
+ "last_cutoff_score_margin": 7.999290119187208e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 173,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.82968301235087e-07,
+ "last_raw_normalized_gap": 0.0028269209433346987,
+ "last_raw_score_gap": 7.999290119187208e-10,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "b3bbb48e0e5073cd1a1d5407c492d0ebaeb40692667a573f58e7fe28edfa6e93",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "657327ada575a06772a63db796e6f47d0f91505b04222a7dd4c0d2c5ed3acac7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "657327ada575a06772a63db796e6f47d0f91505b04222a7dd4c0d2c5ed3acac7",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.304930622036409e-08,
+ "last_committed_normalized_gap": 0.04311402142047882,
+ "last_committed_score_gap": 2.7183091333427e-09,
+ "last_cutoff_score_margin": 2.7183091333427e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.304930622036409e-08,
+ "last_raw_normalized_gap": 0.04311402142047882,
+ "last_raw_score_gap": 2.7183091333427e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "657327ada575a06772a63db796e6f47d0f91505b04222a7dd4c0d2c5ed3acac7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3b3309ea127bc8abdf1340aac5dd9e5fc6046b5df8ce735d06596d9ba09639bf",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3b3309ea127bc8abdf1340aac5dd9e5fc6046b5df8ce735d06596d9ba09639bf",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.462341879867381e-08,
+ "last_committed_normalized_gap": 0.060494113713502884,
+ "last_committed_score_gap": 2.0945130074778717e-09,
+ "last_cutoff_score_margin": 2.0945130074778717e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 102,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.462341879867381e-08,
+ "last_raw_normalized_gap": 0.060494113713502884,
+ "last_raw_score_gap": 2.0945130074778717e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "3b3309ea127bc8abdf1340aac5dd9e5fc6046b5df8ce735d06596d9ba09639bf",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9c41a7f2eea5ae639fb1365ab13ac8477d3344955dac450d08aba4495c05e510",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9c41a7f2eea5ae639fb1365ab13ac8477d3344955dac450d08aba4495c05e510",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.536290170633947e-07,
+ "last_committed_normalized_gap": 0.00295735290274024,
+ "last_committed_score_gap": 4.5433523609972326e-10,
+ "last_cutoff_score_margin": 4.5433523609972326e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.536290170633947e-07,
+ "last_raw_normalized_gap": 0.00295735290274024,
+ "last_raw_score_gap": 4.5433523609972326e-10,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "9c41a7f2eea5ae639fb1365ab13ac8477d3344955dac450d08aba4495c05e510",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c7fbc7c42c0e854c08c15a0d24f1b9b08f64cef48995a39d4600a3f5ef767618",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c7fbc7c42c0e854c08c15a0d24f1b9b08f64cef48995a39d4600a3f5ef767618",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.704327594140523e-08,
+ "last_committed_normalized_gap": 0.15558449923992157,
+ "last_committed_score_gap": 7.319204797795464e-09,
+ "last_cutoff_score_margin": 7.319204797795464e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.704327594140523e-08,
+ "last_raw_normalized_gap": 0.15558449923992157,
+ "last_raw_score_gap": 7.319204797795464e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "c7fbc7c42c0e854c08c15a0d24f1b9b08f64cef48995a39d4600a3f5ef767618",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4a8844166ab4485c8af2200be4945656f86da4ed560664a924425e474686a8de",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4a8844166ab4485c8af2200be4945656f86da4ed560664a924425e474686a8de",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.919787884219204e-08,
+ "last_committed_normalized_gap": 0.004430464468896389,
+ "last_committed_score_gap": 8.505551818416279e-11,
+ "last_cutoff_score_margin": 8.505551818416279e-11,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 78,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.919787884219204e-08,
+ "last_raw_normalized_gap": 0.004430464468896389,
+ "last_raw_score_gap": 8.505551818416279e-11,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "4a8844166ab4485c8af2200be4945656f86da4ed560664a924425e474686a8de",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f08de5f30d45924084ac93c2fa8eb5302d0f4188990dec36517ab5caf35379e0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f08de5f30d45924084ac93c2fa8eb5302d0f4188990dec36517ab5caf35379e0",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4413736835194868e-06,
+ "last_committed_normalized_gap": 0.017211558297276497,
+ "last_committed_score_gap": 2.4808286980260164e-08,
+ "last_cutoff_score_margin": 2.4808286980260164e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 28,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4413736835194868e-06,
+ "last_raw_normalized_gap": 0.017211558297276497,
+ "last_raw_score_gap": 2.4808286980260164e-08,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "f08de5f30d45924084ac93c2fa8eb5302d0f4188990dec36517ab5caf35379e0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "74383d5338b8670345765ede504f744d370e4c78fa63f67a889cf01e8a2a983a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "74383d5338b8670345765ede504f744d370e4c78fa63f67a889cf01e8a2a983a",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.092549588108341e-08,
+ "last_committed_normalized_gap": 0.1281416416168213,
+ "last_committed_score_gap": 5.244260137260426e-09,
+ "last_cutoff_score_margin": 5.244260137260426e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 59,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.092549588108341e-08,
+ "last_raw_normalized_gap": 0.1281416416168213,
+ "last_raw_score_gap": 5.244260137260426e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "74383d5338b8670345765ede504f744d370e4c78fa63f67a889cf01e8a2a983a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a2c0167329f69ab20e21c97d10d46022ec18722870371e3a78047783fded4564",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a2c0167329f69ab20e21c97d10d46022ec18722870371e3a78047783fded4564",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.857190015807646e-08,
+ "last_committed_normalized_gap": 0.1280481219291687,
+ "last_committed_score_gap": 8.780503435446008e-09,
+ "last_cutoff_score_margin": 8.780503435446008e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 51,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.857190015807646e-08,
+ "last_raw_normalized_gap": 0.1280481219291687,
+ "last_raw_score_gap": 8.780503435446008e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "a2c0167329f69ab20e21c97d10d46022ec18722870371e3a78047783fded4564",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ce217523b72495c04346d7242b214bc9be376b1faa907afc5909aaa735ad30f5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ce217523b72495c04346d7242b214bc9be376b1faa907afc5909aaa735ad30f5",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.982185259905236e-07,
+ "last_committed_normalized_gap": 0.12562692165374756,
+ "last_committed_score_gap": 6.258966323002824e-08,
+ "last_cutoff_score_margin": 6.258966323002824e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 44,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.982185259905236e-07,
+ "last_raw_normalized_gap": 0.12562692165374756,
+ "last_raw_score_gap": 6.258966323002824e-08,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "ce217523b72495c04346d7242b214bc9be376b1faa907afc5909aaa735ad30f5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "617f3e778f649f6a85a7fe30999125e429bcfb74fbe9b3595ee0c14d465a5530",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "617f3e778f649f6a85a7fe30999125e429bcfb74fbe9b3595ee0c14d465a5530",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.067039304165519e-06,
+ "last_committed_normalized_gap": 0.6887035369873047,
+ "last_committed_score_gap": 1.4235772596293828e-06,
+ "last_cutoff_score_margin": 1.4235772596293828e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.067039304165519e-06,
+ "last_raw_normalized_gap": 0.6887035369873047,
+ "last_raw_score_gap": 1.4235772596293828e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "617f3e778f649f6a85a7fe30999125e429bcfb74fbe9b3595ee0c14d465a5530",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.285790105815977e-05,
+ "last_committed_normalized_gap": 0.892177164554596,
+ "last_committed_score_gap": 2.039329774561338e-05,
+ "last_cutoff_score_margin": 2.039329774561338e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.285790105815977e-05,
+ "last_raw_normalized_gap": 0.892177164554596,
+ "last_raw_score_gap": 2.039329774561338e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2615120542468503e-05,
+ "last_committed_normalized_gap": 0.8793402314186096,
+ "last_committed_score_gap": 1.988638541661203e-05,
+ "last_cutoff_score_margin": 1.988638541661203e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.2615120542468503e-05,
+ "last_raw_normalized_gap": 0.8793402314186096,
+ "last_raw_score_gap": 1.988638541661203e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "e04bee0a1d54c661c603a52088b39bb3be064fb2273a2bbcaad1c9934e477e71",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.31045599625213e-06,
+ "last_committed_normalized_gap": 0.5751775503158569,
+ "last_committed_score_gap": 4.779987648362294e-06,
+ "last_cutoff_score_margin": 4.779987648362294e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.31045599625213e-06,
+ "last_raw_normalized_gap": 0.5751775503158569,
+ "last_raw_score_gap": 4.779987648362294e-06,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "d53e7942d95aa46a1096eb57ac50439777682f12e0ce19dbeaf559615ef9aa4c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ca196b932897d6c078220d5147f168b89b518f4d50b4a7b012f379370a1f2d27",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ca196b932897d6c078220d5147f168b89b518f4d50b4a7b012f379370a1f2d27",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1265364463497463e-07,
+ "last_committed_normalized_gap": 0.13228251039981842,
+ "last_committed_score_gap": 1.4902106215686217e-08,
+ "last_cutoff_score_margin": 1.4902106215686217e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1265364463497463e-07,
+ "last_raw_normalized_gap": 0.13228251039981842,
+ "last_raw_score_gap": 1.4902106215686217e-08,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 64,
+ "observations_staged": 64,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "ca196b932897d6c078220d5147f168b89b518f4d50b4a7b012f379370a1f2d27",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 64,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 687
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9f63ff750e59ed40ed3dbcf8160f09ce379ca059b1ec10128159c9b47f9302a5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9f63ff750e59ed40ed3dbcf8160f09ce379ca059b1ec10128159c9b47f9302a5",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.445302449416431e-08,
+ "last_committed_normalized_gap": 0.04709763452410698,
+ "last_committed_score_gap": 1.1516796405430796e-09,
+ "last_cutoff_score_margin": 1.1516796405430796e-09,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 348,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.445302449416431e-08,
+ "last_raw_normalized_gap": 0.04709763452410698,
+ "last_raw_score_gap": 1.1516796405430796e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "9f63ff750e59ed40ed3dbcf8160f09ce379ca059b1ec10128159c9b47f9302a5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a5f2d73a278b1d66cd9e79baa2f86a7524e4debe6688d22ba833d9ddb79ada84",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a5f2d73a278b1d66cd9e79baa2f86a7524e4debe6688d22ba833d9ddb79ada84",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.867313467357917e-10,
+ "last_committed_normalized_gap": 0.0006912687094882131,
+ "last_committed_score_gap": 5.438427486126329e-13,
+ "last_cutoff_score_margin": 5.438427486126329e-13,
+ "last_mask_churn": 82,
+ "last_mask_overlap": 339,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.867313467357917e-10,
+ "last_raw_normalized_gap": 0.0006912687094882131,
+ "last_raw_score_gap": 5.438427486126329e-13,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "a5f2d73a278b1d66cd9e79baa2f86a7524e4debe6688d22ba833d9ddb79ada84",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f1ec0c1b1bb8143ba82aff2cf5d7f6c9791c51f28594a6faf594515ccf48d1c9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f1ec0c1b1bb8143ba82aff2cf5d7f6c9791c51f28594a6faf594515ccf48d1c9",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.476536030750822e-09,
+ "last_committed_normalized_gap": 0.06286849826574326,
+ "last_committed_score_gap": 2.8143309904749003e-10,
+ "last_cutoff_score_margin": 2.8143309904749003e-10,
+ "last_mask_churn": 38,
+ "last_mask_overlap": 250,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.476536030750822e-09,
+ "last_raw_normalized_gap": 0.06286849826574326,
+ "last_raw_score_gap": 2.8143309904749003e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "f1ec0c1b1bb8143ba82aff2cf5d7f6c9791c51f28594a6faf594515ccf48d1c9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8597ff460f25970bccf9ff4cb5c011b21beac73fb20339898ba10e97e77e7db8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8597ff460f25970bccf9ff4cb5c011b21beac73fb20339898ba10e97e77e7db8",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5924403840017476e-07,
+ "last_committed_normalized_gap": 0.14605674147605896,
+ "last_committed_score_gap": 2.325866432784096e-08,
+ "last_cutoff_score_margin": 2.325866432784096e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5924403840017476e-07,
+ "last_raw_normalized_gap": 0.14605674147605896,
+ "last_raw_score_gap": 2.325866432784096e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "8597ff460f25970bccf9ff4cb5c011b21beac73fb20339898ba10e97e77e7db8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2081d8dba0c404ae035b330b24ff4b831323132c954f05f63a9054cb3f51afc8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "2081d8dba0c404ae035b330b24ff4b831323132c954f05f63a9054cb3f51afc8",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.648409822673784e-08,
+ "last_committed_normalized_gap": 0.10665269941091537,
+ "last_committed_score_gap": 7.090708464829731e-09,
+ "last_cutoff_score_margin": 7.090708464829731e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.648409822673784e-08,
+ "last_raw_normalized_gap": 0.10665269941091537,
+ "last_raw_score_gap": 7.090708464829731e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "2081d8dba0c404ae035b330b24ff4b831323132c954f05f63a9054cb3f51afc8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3175660e74335bb66d9c499576483367b7797fb1d4ab302436d3ab79f8227018",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3175660e74335bb66d9c499576483367b7797fb1d4ab302436d3ab79f8227018",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2673856509291e-08,
+ "last_committed_normalized_gap": 0.09047509729862213,
+ "last_committed_score_gap": 2.9561704195657512e-09,
+ "last_cutoff_score_margin": 2.9561704195657512e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2673856509291e-08,
+ "last_raw_normalized_gap": 0.09047509729862213,
+ "last_raw_score_gap": 2.9561704195657512e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "3175660e74335bb66d9c499576483367b7797fb1d4ab302436d3ab79f8227018",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "69feeb30cc0ed49b671e67202ff4d246e6d1f324a8dedc9704d256645aa6bc40",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "69feeb30cc0ed49b671e67202ff4d246e6d1f324a8dedc9704d256645aa6bc40",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8301595616776467e-07,
+ "last_committed_normalized_gap": 0.6233994364738464,
+ "last_committed_score_gap": 1.1409203892753794e-07,
+ "last_cutoff_score_margin": 1.1409203892753794e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8301595616776467e-07,
+ "last_raw_normalized_gap": 0.6233994364738464,
+ "last_raw_score_gap": 1.1409203892753794e-07,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "69feeb30cc0ed49b671e67202ff4d246e6d1f324a8dedc9704d256645aa6bc40",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d670aef9377cd65f6e633516930a4607621c6f86486a7266f68b62bdcd6ab97c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d670aef9377cd65f6e633516930a4607621c6f86486a7266f68b62bdcd6ab97c",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.8001992663794226e-08,
+ "last_committed_normalized_gap": 0.07204104959964752,
+ "last_committed_score_gap": 2.737703397315272e-09,
+ "last_cutoff_score_margin": 2.737703397315272e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.8001992663794226e-08,
+ "last_raw_normalized_gap": 0.07204104959964752,
+ "last_raw_score_gap": 2.737703397315272e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "d670aef9377cd65f6e633516930a4607621c6f86486a7266f68b62bdcd6ab97c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a8c123a8ab5f0dc927890e74871d7b77141fef8b4fffd518369e7191da8b6fce",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a8c123a8ab5f0dc927890e74871d7b77141fef8b4fffd518369e7191da8b6fce",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9081142827180884e-08,
+ "last_committed_normalized_gap": 0.22027242183685303,
+ "last_committed_score_gap": 6.405773689266425e-09,
+ "last_cutoff_score_margin": 6.405773689266425e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9081142827180884e-08,
+ "last_raw_normalized_gap": 0.22027242183685303,
+ "last_raw_score_gap": 6.405773689266425e-09,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "a8c123a8ab5f0dc927890e74871d7b77141fef8b4fffd518369e7191da8b6fce",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "828c1423669dca356294c893078830083c1d619f6c36af74421b5962bb480c36",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "828c1423669dca356294c893078830083c1d619f6c36af74421b5962bb480c36",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7388460946676787e-06,
+ "last_committed_normalized_gap": 0.9116144776344299,
+ "last_committed_score_gap": 1.5851572925384971e-06,
+ "last_cutoff_score_margin": 1.5851572925384971e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7388460946676787e-06,
+ "last_raw_normalized_gap": 0.9116144776344299,
+ "last_raw_score_gap": 1.5851572925384971e-06,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "828c1423669dca356294c893078830083c1d619f6c36af74421b5962bb480c36",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a324f0ba1f1bb8001a026d0153b209637260514521ac97b539535c84874e63d6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a324f0ba1f1bb8001a026d0153b209637260514521ac97b539535c84874e63d6",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.175781498361175e-08,
+ "last_committed_normalized_gap": 0.1841215342283249,
+ "last_committed_score_gap": 7.688512937420455e-09,
+ "last_cutoff_score_margin": 7.688512937420455e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.175781498361175e-08,
+ "last_raw_normalized_gap": 0.1841215342283249,
+ "last_raw_score_gap": 7.688512937420455e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "a324f0ba1f1bb8001a026d0153b209637260514521ac97b539535c84874e63d6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "41e304506104a9a6cf5d8ad33969396c5d8b46147ae661cb94635cde81e1d81b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "41e304506104a9a6cf5d8ad33969396c5d8b46147ae661cb94635cde81e1d81b",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0840778230658543e-07,
+ "last_committed_normalized_gap": 0.14614997804164886,
+ "last_committed_score_gap": 1.5843795608816436e-08,
+ "last_cutoff_score_margin": 1.5843795608816436e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0840778230658543e-07,
+ "last_raw_normalized_gap": 0.14614997804164886,
+ "last_raw_score_gap": 1.5843795608816436e-08,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "41e304506104a9a6cf5d8ad33969396c5d8b46147ae661cb94635cde81e1d81b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a039044e28f09300d201482a1e7572a9534a9c5ad28152c08018cff81b9820a3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a039044e28f09300d201482a1e7572a9534a9c5ad28152c08018cff81b9820a3",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.907620324156596e-07,
+ "last_committed_normalized_gap": 0.3202653229236603,
+ "last_committed_score_gap": 3.173067284478748e-07,
+ "last_cutoff_score_margin": 3.173067284478748e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.907620324156596e-07,
+ "last_raw_normalized_gap": 0.3202653229236603,
+ "last_raw_score_gap": 3.173067284478748e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "a039044e28f09300d201482a1e7572a9534a9c5ad28152c08018cff81b9820a3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "98350086af8fb4c2cc96108b35b0bbef93e7b86640866ba005de4cde87c70584",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "98350086af8fb4c2cc96108b35b0bbef93e7b86640866ba005de4cde87c70584",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.731485081625578e-07,
+ "last_committed_normalized_gap": 0.20843982696533203,
+ "last_committed_score_gap": 1.819989279283618e-07,
+ "last_cutoff_score_margin": 1.819989279283618e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.731485081625578e-07,
+ "last_raw_normalized_gap": 0.20843982696533203,
+ "last_raw_score_gap": 1.819989279283618e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "98350086af8fb4c2cc96108b35b0bbef93e7b86640866ba005de4cde87c70584",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.0346137868473306e-05,
+ "last_committed_normalized_gap": 0.8781734704971313,
+ "last_committed_score_gap": 4.421264384291135e-05,
+ "last_cutoff_score_margin": 4.421264384291135e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.0346137868473306e-05,
+ "last_raw_normalized_gap": 0.8781734704971313,
+ "last_raw_score_gap": 4.421264384291135e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "58cba2a6e501686b889fa35d8b4d12dd8966447a61450b4bf0c60aac43342e8d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "572afa92c8cc3acf06fb1e7dd47b32a72d17ddabdb8c60ae5b82d1d399e0188f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "572afa92c8cc3acf06fb1e7dd47b32a72d17ddabdb8c60ae5b82d1d399e0188f",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.827802745741792e-05,
+ "last_committed_normalized_gap": 0.1471274048089981,
+ "last_committed_score_gap": 4.160472599323839e-06,
+ "last_cutoff_score_margin": 4.160472599323839e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.827802745741792e-05,
+ "last_raw_normalized_gap": 0.1471274048089981,
+ "last_raw_score_gap": 4.160472599323839e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "572afa92c8cc3acf06fb1e7dd47b32a72d17ddabdb8c60ae5b82d1d399e0188f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.891928129945882e-06,
+ "last_committed_normalized_gap": 0.6283012628555298,
+ "last_committed_score_gap": 6.215111170604359e-06,
+ "last_cutoff_score_margin": 6.215111170604359e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.891928129945882e-06,
+ "last_raw_normalized_gap": 0.6283012628555298,
+ "last_raw_score_gap": 6.215111170604359e-06,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "42fdec276bcf97ac038206a043fb98cd60cec1e015ed68ea963bdf4debb7d343",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9eac5e6bc4a49d06219ba527caf30569644c40db77d1d40ea5cb976be5723364",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9eac5e6bc4a49d06219ba527caf30569644c40db77d1d40ea5cb976be5723364",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.917088923164556e-07,
+ "last_committed_normalized_gap": 0.11193438619375229,
+ "last_committed_score_gap": 2.1458816945596482e-08,
+ "last_cutoff_score_margin": 2.1458816945596482e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.917088923164556e-07,
+ "last_raw_normalized_gap": 0.11193438619375229,
+ "last_raw_score_gap": 2.1458816945596482e-08,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 31,
+ "observations_staged": 31,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "9eac5e6bc4a49d06219ba527caf30569644c40db77d1d40ea5cb976be5723364",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 31,
+ "tokens_observed": 104
+ }
+ ],
+ "task_id": 820
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "05ec28d9b8b40b036ba9e6549e7d52421298a502ee4893be9403e292c726fcd3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "05ec28d9b8b40b036ba9e6549e7d52421298a502ee4893be9403e292c726fcd3",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0706788344805318e-08,
+ "last_committed_normalized_gap": 0.027920976281166077,
+ "last_committed_score_gap": 2.9894398068108785e-10,
+ "last_cutoff_score_margin": 2.9894398068108785e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 352,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0706788344805318e-08,
+ "last_raw_normalized_gap": 0.027920976281166077,
+ "last_raw_score_gap": 2.9894398068108785e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "05ec28d9b8b40b036ba9e6549e7d52421298a502ee4893be9403e292c726fcd3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "305496266fe01573a404b86a362190ebb6c87336311a2fa26856078c4350d24a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "305496266fe01573a404b86a362190ebb6c87336311a2fa26856078c4350d24a",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.824730697767677e-10,
+ "last_committed_normalized_gap": 0.0019367377972230315,
+ "last_committed_score_gap": 1.1280976153216216e-12,
+ "last_cutoff_score_margin": 1.1280976153216216e-12,
+ "last_mask_churn": 50,
+ "last_mask_overlap": 355,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.824730697767677e-10,
+ "last_raw_normalized_gap": 0.0019367377972230315,
+ "last_raw_score_gap": 1.1280976153216216e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "305496266fe01573a404b86a362190ebb6c87336311a2fa26856078c4350d24a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7665cc59729ec911c115cfdb3a74016ca2e245ae75df55115ffacbf53b68e324",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7665cc59729ec911c115cfdb3a74016ca2e245ae75df55115ffacbf53b68e324",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.884093378152102e-09,
+ "last_committed_normalized_gap": 0.07935043424367905,
+ "last_committed_score_gap": 6.256062334841772e-10,
+ "last_cutoff_score_margin": 6.256062334841772e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 266,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.884093378152102e-09,
+ "last_raw_normalized_gap": 0.07935043424367905,
+ "last_raw_score_gap": 6.256062334841772e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "7665cc59729ec911c115cfdb3a74016ca2e245ae75df55115ffacbf53b68e324",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "05534e5c28c5b98b4031fb338213b43b264bd3b94628e274909834ad4b246e31",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "05534e5c28c5b98b4031fb338213b43b264bd3b94628e274909834ad4b246e31",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.134178996333503e-07,
+ "last_committed_normalized_gap": 0.03401033580303192,
+ "last_committed_score_gap": 1.0659448435035301e-08,
+ "last_cutoff_score_margin": 1.0659448435035301e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 177,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.134178996333503e-07,
+ "last_raw_normalized_gap": 0.03401033580303192,
+ "last_raw_score_gap": 1.0659448435035301e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "05534e5c28c5b98b4031fb338213b43b264bd3b94628e274909834ad4b246e31",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2a95629a230392e3e48d0da14d3c4f7b70a966382b5ba27efd6f40f8d26dc4a8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "2a95629a230392e3e48d0da14d3c4f7b70a966382b5ba27efd6f40f8d26dc4a8",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.170373285068308e-08,
+ "last_committed_normalized_gap": 0.17584703862667084,
+ "last_committed_score_gap": 9.091948527384375e-09,
+ "last_cutoff_score_margin": 9.091948527384375e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 184,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.170373285068308e-08,
+ "last_raw_normalized_gap": 0.17584703862667084,
+ "last_raw_score_gap": 9.091948527384375e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "2a95629a230392e3e48d0da14d3c4f7b70a966382b5ba27efd6f40f8d26dc4a8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cd062591104c098b376e14e3ca6c54e3460044066952a00db23246b747f13686",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "cd062591104c098b376e14e3ca6c54e3460044066952a00db23246b747f13686",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8042603855406014e-08,
+ "last_committed_normalized_gap": 0.18982453644275665,
+ "last_committed_score_gap": 3.424928785022985e-09,
+ "last_cutoff_score_margin": 3.424928785022985e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 103,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8042603855406014e-08,
+ "last_raw_normalized_gap": 0.18982453644275665,
+ "last_raw_score_gap": 3.424928785022985e-09,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "cd062591104c098b376e14e3ca6c54e3460044066952a00db23246b747f13686",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7a357e522661c7a32d6fa8fdecce9539e0c82be14cf73cc0dcb915527aafaa10",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7a357e522661c7a32d6fa8fdecce9539e0c82be14cf73cc0dcb915527aafaa10",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2198628951409773e-07,
+ "last_committed_normalized_gap": 0.17012153565883636,
+ "last_committed_score_gap": 2.0752494833686796e-08,
+ "last_cutoff_score_margin": 2.0752494833686796e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2198628951409773e-07,
+ "last_raw_normalized_gap": 0.17012153565883636,
+ "last_raw_score_gap": 2.0752494833686796e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "7a357e522661c7a32d6fa8fdecce9539e0c82be14cf73cc0dcb915527aafaa10",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "53f93bb569ee489769862d8a8f318be104a68bc6579476b81e1e2a43f3154748",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "53f93bb569ee489769862d8a8f318be104a68bc6579476b81e1e2a43f3154748",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.365362826774799e-08,
+ "last_committed_normalized_gap": 0.5107656121253967,
+ "last_committed_score_gap": 2.2296772428376244e-08,
+ "last_cutoff_score_margin": 2.2296772428376244e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.365362826774799e-08,
+ "last_raw_normalized_gap": 0.5107656121253967,
+ "last_raw_score_gap": 2.2296772428376244e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "53f93bb569ee489769862d8a8f318be104a68bc6579476b81e1e2a43f3154748",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b9f74042e7df19660b94d048ddb4ae8aad43c80d1247341df31e9cd38e2f8823",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b9f74042e7df19660b94d048ddb4ae8aad43c80d1247341df31e9cd38e2f8823",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.853072539859113e-08,
+ "last_committed_normalized_gap": 0.009557345882058144,
+ "last_committed_score_gap": 1.7710455324504437e-10,
+ "last_cutoff_score_margin": 1.7710455324504437e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 82,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.853072539859113e-08,
+ "last_raw_normalized_gap": 0.009557345882058144,
+ "last_raw_score_gap": 1.7710455324504437e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "b9f74042e7df19660b94d048ddb4ae8aad43c80d1247341df31e9cd38e2f8823",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "da3634df4a62637aa3467a1838c8c60a7e32c860724924de281778836458e429",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "da3634df4a62637aa3467a1838c8c60a7e32c860724924de281778836458e429",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.074207127923728e-07,
+ "last_committed_normalized_gap": 0.4397937059402466,
+ "last_committed_score_gap": 3.9907791915538837e-07,
+ "last_cutoff_score_margin": 3.9907791915538837e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.074207127923728e-07,
+ "last_raw_normalized_gap": 0.4397937059402466,
+ "last_raw_score_gap": 3.9907791915538837e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "da3634df4a62637aa3467a1838c8c60a7e32c860724924de281778836458e429",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7bb89809b294e43765ff02404b96ea74b617719ec4edaba82c14ef41a04006a6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7bb89809b294e43765ff02404b96ea74b617719ec4edaba82c14ef41a04006a6",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9799997136592538e-08,
+ "last_committed_normalized_gap": 0.0010826836805790663,
+ "last_committed_score_gap": 3.226396927402675e-11,
+ "last_cutoff_score_margin": 3.226396927402675e-11,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 60,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9799997136592538e-08,
+ "last_raw_normalized_gap": 0.0010826836805790663,
+ "last_raw_score_gap": 3.226396927402675e-11,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "7bb89809b294e43765ff02404b96ea74b617719ec4edaba82c14ef41a04006a6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1e4d2270b74dff7d70cccc558b7d5299c371aec8e8c6e9a20b97d00b57db2631",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1e4d2270b74dff7d70cccc558b7d5299c371aec8e8c6e9a20b97d00b57db2631",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.1413073031671956e-08,
+ "last_committed_normalized_gap": 0.026260027661919594,
+ "last_committed_score_gap": 8.249081417943671e-10,
+ "last_cutoff_score_margin": 8.249081417943671e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.1413073031671956e-08,
+ "last_raw_normalized_gap": 0.026260027661919594,
+ "last_raw_score_gap": 8.249081417943671e-10,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "1e4d2270b74dff7d70cccc558b7d5299c371aec8e8c6e9a20b97d00b57db2631",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "23aa44b837b0cfabf4fd089c1c50ea877297c27c052683acaab6567263a7a551",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "23aa44b837b0cfabf4fd089c1c50ea877297c27c052683acaab6567263a7a551",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.164562490885146e-06,
+ "last_committed_normalized_gap": 0.5311687588691711,
+ "last_committed_score_gap": 6.185791789903305e-07,
+ "last_cutoff_score_margin": 6.185791789903305e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.164562490885146e-06,
+ "last_raw_normalized_gap": 0.5311687588691711,
+ "last_raw_score_gap": 6.185791789903305e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "23aa44b837b0cfabf4fd089c1c50ea877297c27c052683acaab6567263a7a551",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "00c95efcb193c6b6466cb25a24b9f0dc5a6458d275e99721724613429049fe30",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "00c95efcb193c6b6466cb25a24b9f0dc5a6458d275e99721724613429049fe30",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3943950964167016e-06,
+ "last_committed_normalized_gap": 0.8383795619010925,
+ "last_committed_score_gap": 2.007411922022584e-06,
+ "last_cutoff_score_margin": 2.007411922022584e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3943950964167016e-06,
+ "last_raw_normalized_gap": 0.8383795619010925,
+ "last_raw_score_gap": 2.007411922022584e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "00c95efcb193c6b6466cb25a24b9f0dc5a6458d275e99721724613429049fe30",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "09d03fa903a0916faca11cb9b20517501b4a9f76a288367d548de76bbbf3ad36",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "09d03fa903a0916faca11cb9b20517501b4a9f76a288367d548de76bbbf3ad36",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.395023228833452e-05,
+ "last_committed_normalized_gap": 0.9083080887794495,
+ "last_committed_score_gap": 5.8086512581212446e-05,
+ "last_cutoff_score_margin": 5.8086512581212446e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.395023228833452e-05,
+ "last_raw_normalized_gap": 0.9083080887794495,
+ "last_raw_score_gap": 5.8086512581212446e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "09d03fa903a0916faca11cb9b20517501b4a9f76a288367d548de76bbbf3ad36",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "70ed4cc41f06403f7823d477accf58b5b2057811f334e1b32a3009d3303c5ef0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "70ed4cc41f06403f7823d477accf58b5b2057811f334e1b32a3009d3303c5ef0",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3741399015998468e-05,
+ "last_committed_normalized_gap": 0.51740562915802,
+ "last_committed_score_gap": 7.109877515176777e-06,
+ "last_cutoff_score_margin": 7.109877515176777e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3741399015998468e-05,
+ "last_raw_normalized_gap": 0.51740562915802,
+ "last_raw_score_gap": 7.109877515176777e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "70ed4cc41f06403f7823d477accf58b5b2057811f334e1b32a3009d3303c5ef0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.807850640034303e-05,
+ "last_committed_normalized_gap": 0.5135214924812317,
+ "last_committed_score_gap": 9.283701729145832e-06,
+ "last_cutoff_score_margin": 9.283701729145832e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.807850640034303e-05,
+ "last_raw_normalized_gap": 0.5135214924812317,
+ "last_raw_score_gap": 9.283701729145832e-06,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "789ebc7ee55f6ad1f2e291d74ffb8a29b05250f681b32742a85561ec86bf0a95",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d512f53725623b5bae18d429e6a6fbc09edb80e8a16bdb4cba47eea20486f49f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d512f53725623b5bae18d429e6a6fbc09edb80e8a16bdb4cba47eea20486f49f",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.306477070618712e-07,
+ "last_committed_normalized_gap": 0.5187519192695618,
+ "last_committed_score_gap": 4.309000871671742e-07,
+ "last_cutoff_score_margin": 4.309000871671742e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.306477070618712e-07,
+ "last_raw_normalized_gap": 0.5187519192695618,
+ "last_raw_score_gap": 4.309000871671742e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "d512f53725623b5bae18d429e6a6fbc09edb80e8a16bdb4cba47eea20486f49f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 250
+ }
+ ],
+ "task_id": 920
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3a366c3303e4acf9b6610685d52cbfa2bb4fc411bee4633d0144951cad7477b0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3a366c3303e4acf9b6610685d52cbfa2bb4fc411bee4633d0144951cad7477b0",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.714350935827952e-09,
+ "last_committed_normalized_gap": 0.03130899369716644,
+ "last_committed_score_gap": 2.4152857491799296e-10,
+ "last_cutoff_score_margin": 2.4152857491799296e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 349,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.714350935827952e-09,
+ "last_raw_normalized_gap": 0.03130899369716644,
+ "last_raw_score_gap": 2.4152857491799296e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "3a366c3303e4acf9b6610685d52cbfa2bb4fc411bee4633d0144951cad7477b0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "992c42f0f0f850bf9552bd0069b43f6ec4699b4d1adff7421f6feacc3f9d7c72",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "992c42f0f0f850bf9552bd0069b43f6ec4699b4d1adff7421f6feacc3f9d7c72",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.038075124806028e-09,
+ "last_committed_normalized_gap": 0.004054077435284853,
+ "last_committed_score_gap": 1.2316592190586562e-11,
+ "last_cutoff_score_margin": 1.2316592190586562e-11,
+ "last_mask_churn": 164,
+ "last_mask_overlap": 298,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.038075124806028e-09,
+ "last_raw_normalized_gap": 0.004054077435284853,
+ "last_raw_score_gap": 1.2316592190586562e-11,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "992c42f0f0f850bf9552bd0069b43f6ec4699b4d1adff7421f6feacc3f9d7c72",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a1e3fbddcb50bfd38420e7c3273ac4452565ceba0cf03823978f1eee54b09231",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a1e3fbddcb50bfd38420e7c3273ac4452565ceba0cf03823978f1eee54b09231",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.862686780488957e-09,
+ "last_committed_normalized_gap": 0.012549693696200848,
+ "last_committed_score_gap": 7.357492393111897e-11,
+ "last_cutoff_score_margin": 7.357492393111897e-11,
+ "last_mask_churn": 56,
+ "last_mask_overlap": 241,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.862686780488957e-09,
+ "last_raw_normalized_gap": 0.012549693696200848,
+ "last_raw_score_gap": 7.357492393111897e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "a1e3fbddcb50bfd38420e7c3273ac4452565ceba0cf03823978f1eee54b09231",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "25860de7ab9eb537e47a2475fdbb59e7a6b13717f58f2c79dd266abb2593b0c5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "25860de7ab9eb537e47a2475fdbb59e7a6b13717f58f2c79dd266abb2593b0c5",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0302374537095602e-07,
+ "last_committed_normalized_gap": 0.065794438123703,
+ "last_committed_score_gap": 1.3357833950067288e-08,
+ "last_cutoff_score_margin": 1.3357833950067288e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 177,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0302374537095602e-07,
+ "last_raw_normalized_gap": 0.065794438123703,
+ "last_raw_score_gap": 1.3357833950067288e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "25860de7ab9eb537e47a2475fdbb59e7a6b13717f58f2c79dd266abb2593b0c5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "eb9f27bc4008271d0c054e48e1ef84a9cbd11faf0e19c8828e235cdfef5be918",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "eb9f27bc4008271d0c054e48e1ef84a9cbd11faf0e19c8828e235cdfef5be918",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.5788207952691664e-08,
+ "last_committed_normalized_gap": 0.02480938844382763,
+ "last_committed_score_gap": 8.878835444647848e-10,
+ "last_cutoff_score_margin": 8.878835444647848e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.5788207952691664e-08,
+ "last_raw_normalized_gap": 0.02480938844382763,
+ "last_raw_score_gap": 8.878835444647848e-10,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "eb9f27bc4008271d0c054e48e1ef84a9cbd11faf0e19c8828e235cdfef5be918",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0852e345be6226535dd30bc7f8332350504d6133fa52dd2f577606cba3806c2c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0852e345be6226535dd30bc7f8332350504d6133fa52dd2f577606cba3806c2c",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3823231387609667e-08,
+ "last_committed_normalized_gap": 0.02795458771288395,
+ "last_committed_score_gap": 6.659686135890297e-10,
+ "last_cutoff_score_margin": 6.659686135890297e-10,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 100,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3823231387609667e-08,
+ "last_raw_normalized_gap": 0.02795458771288395,
+ "last_raw_score_gap": 6.659686135890297e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "0852e345be6226535dd30bc7f8332350504d6133fa52dd2f577606cba3806c2c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9350eeb55b8a7dcf1756167690afbee6305ff0fa4ec8cc38aac5351e71779082",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9350eeb55b8a7dcf1756167690afbee6305ff0fa4ec8cc38aac5351e71779082",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0310567688520678e-07,
+ "last_committed_normalized_gap": 0.2415555864572525,
+ "last_committed_score_gap": 2.4905752127324376e-08,
+ "last_cutoff_score_margin": 2.4905752127324376e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0310567688520678e-07,
+ "last_raw_normalized_gap": 0.2415555864572525,
+ "last_raw_score_gap": 2.4905752127324376e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "9350eeb55b8a7dcf1756167690afbee6305ff0fa4ec8cc38aac5351e71779082",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1dd748f71291a14f3e43b53606ae00f1c422c5397b8fcbcebfa412fe8046d852",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1dd748f71291a14f3e43b53606ae00f1c422c5397b8fcbcebfa412fe8046d852",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.33317133285982e-08,
+ "last_committed_normalized_gap": 0.10183931142091751,
+ "last_committed_score_gap": 4.412871845715927e-09,
+ "last_cutoff_score_margin": 4.412871845715927e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 41,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.33317133285982e-08,
+ "last_raw_normalized_gap": 0.10183931142091751,
+ "last_raw_score_gap": 4.412871845715927e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "1dd748f71291a14f3e43b53606ae00f1c422c5397b8fcbcebfa412fe8046d852",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "332b965b9fffeb8866587b2ce33369e0ed7f4a54f5e265afd032c44e30305435",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "332b965b9fffeb8866587b2ce33369e0ed7f4a54f5e265afd032c44e30305435",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.762911368227378e-09,
+ "last_committed_normalized_gap": 0.00964514259248972,
+ "last_committed_score_gap": 9.416467605660728e-11,
+ "last_cutoff_score_margin": 9.416467605660728e-11,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 77,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.762911368227378e-09,
+ "last_raw_normalized_gap": 0.00964514259248972,
+ "last_raw_score_gap": 9.416467605660728e-11,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "332b965b9fffeb8866587b2ce33369e0ed7f4a54f5e265afd032c44e30305435",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cce285b86269925bf73ff91d2d324074427ffaff217d9a9f85155d8e05eab114",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "cce285b86269925bf73ff91d2d324074427ffaff217d9a9f85155d8e05eab114",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1551148872968042e-06,
+ "last_committed_normalized_gap": 0.47814854979515076,
+ "last_committed_score_gap": 5.523165214071923e-07,
+ "last_cutoff_score_margin": 5.523165214071923e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1551148872968042e-06,
+ "last_raw_normalized_gap": 0.47814854979515076,
+ "last_raw_score_gap": 5.523165214071923e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "cce285b86269925bf73ff91d2d324074427ffaff217d9a9f85155d8e05eab114",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b0af7429ed66cab75d61baf9aa29c6da6b2e4bcdffe29cb9ee17428a97e186bc",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b0af7429ed66cab75d61baf9aa29c6da6b2e4bcdffe29cb9ee17428a97e186bc",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.637797891225091e-08,
+ "last_committed_normalized_gap": 0.017509903758764267,
+ "last_committed_score_gap": 4.618758708829773e-10,
+ "last_cutoff_score_margin": 4.618758708829773e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 60,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.637797891225091e-08,
+ "last_raw_normalized_gap": 0.017509903758764267,
+ "last_raw_score_gap": 4.618758708829773e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "b0af7429ed66cab75d61baf9aa29c6da6b2e4bcdffe29cb9ee17428a97e186bc",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7d102f0a1f434fbcf3dcba1bc2d7f0e3f2f79a4ae67cac4031b50d3061684ef8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7d102f0a1f434fbcf3dcba1bc2d7f0e3f2f79a4ae67cac4031b50d3061684ef8",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4007945853554702e-08,
+ "last_committed_normalized_gap": 0.03354937955737114,
+ "last_committed_score_gap": 8.054517053324162e-10,
+ "last_cutoff_score_margin": 8.054517053324162e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 52,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4007945853554702e-08,
+ "last_raw_normalized_gap": 0.03354937955737114,
+ "last_raw_score_gap": 8.054517053324162e-10,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "7d102f0a1f434fbcf3dcba1bc2d7f0e3f2f79a4ae67cac4031b50d3061684ef8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5cae14a7d10362c06e9868960be4f722fbb09a990e374661a26c763e1164a2bd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5cae14a7d10362c06e9868960be4f722fbb09a990e374661a26c763e1164a2bd",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.668249170616036e-07,
+ "last_committed_normalized_gap": 0.6435819268226624,
+ "last_committed_score_gap": 4.291564721370378e-07,
+ "last_cutoff_score_margin": 4.291564721370378e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.668249170616036e-07,
+ "last_raw_normalized_gap": 0.6435819268226624,
+ "last_raw_score_gap": 4.291564721370378e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "5cae14a7d10362c06e9868960be4f722fbb09a990e374661a26c763e1164a2bd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cc405dbd669a5d3a3ece2d82a2ddc14e4925e0b0313ec46aa24952f2910db8e7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "cc405dbd669a5d3a3ece2d82a2ddc14e4925e0b0313ec46aa24952f2910db8e7",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.932620178507932e-07,
+ "last_committed_normalized_gap": 0.041100699454545975,
+ "last_committed_score_gap": 3.260362291257479e-08,
+ "last_cutoff_score_margin": 3.260362291257479e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.932620178507932e-07,
+ "last_raw_normalized_gap": 0.041100699454545975,
+ "last_raw_score_gap": 3.260362291257479e-08,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "cc405dbd669a5d3a3ece2d82a2ddc14e4925e0b0313ec46aa24952f2910db8e7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "27a2f4d1ba46bb542ebff21bb0e0a5d6306b86dc6a6a34f3996c80cc06bc54e8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "27a2f4d1ba46bb542ebff21bb0e0a5d6306b86dc6a6a34f3996c80cc06bc54e8",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.873871512245387e-05,
+ "last_committed_normalized_gap": 0.9143625497817993,
+ "last_committed_score_gap": 4.456485476111993e-05,
+ "last_cutoff_score_margin": 4.456485476111993e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.873871512245387e-05,
+ "last_raw_normalized_gap": 0.9143625497817993,
+ "last_raw_score_gap": 4.456485476111993e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "27a2f4d1ba46bb542ebff21bb0e0a5d6306b86dc6a6a34f3996c80cc06bc54e8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4159427994163707e-05,
+ "last_committed_normalized_gap": 0.9201351404190063,
+ "last_committed_score_gap": 2.2229938622331247e-05,
+ "last_cutoff_score_margin": 2.2229938622331247e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4159427994163707e-05,
+ "last_raw_normalized_gap": 0.9201351404190063,
+ "last_raw_score_gap": 2.2229938622331247e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "16b5058da9bd5485c088bedec8c84d21eb4f4c938417f0a3c135fe987af736cb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f0da7c7b3a633ad89e5a3c48ccebc6b6d8b0c9a0ad2ebd80258aee9273a6eb4c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f0da7c7b3a633ad89e5a3c48ccebc6b6d8b0c9a0ad2ebd80258aee9273a6eb4c",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.427690924378112e-05,
+ "last_committed_normalized_gap": 0.9300563931465149,
+ "last_committed_score_gap": 2.2578895368496887e-05,
+ "last_cutoff_score_margin": 2.2578895368496887e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.427690924378112e-05,
+ "last_raw_normalized_gap": 0.9300563931465149,
+ "last_raw_score_gap": 2.2578895368496887e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "f0da7c7b3a633ad89e5a3c48ccebc6b6d8b0c9a0ad2ebd80258aee9273a6eb4c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bda003c8811b5d96ef0120de917384250bc553b7801bba313c8fc196c28be0e1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "bda003c8811b5d96ef0120de917384250bc553b7801bba313c8fc196c28be0e1",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5835335887004476e-07,
+ "last_committed_normalized_gap": 0.3155190050601959,
+ "last_committed_score_gap": 4.9963496451255196e-08,
+ "last_cutoff_score_margin": 4.9963496451255196e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5835335887004476e-07,
+ "last_raw_normalized_gap": 0.3155190050601959,
+ "last_raw_score_gap": 4.9963496451255196e-08,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 135,
+ "observations_staged": 135,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "bda003c8811b5d96ef0120de917384250bc553b7801bba313c8fc196c28be0e1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 135,
+ "tokens_observed": 209
+ }
+ ],
+ "task_id": 771
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "202ca06e1c810b498ce51180b4657b2c12d1d3a3ac12610a64eb3f6faef21da1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "202ca06e1c810b498ce51180b4657b2c12d1d3a3ac12610a64eb3f6faef21da1",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4021540373221342e-08,
+ "last_committed_normalized_gap": 0.055748358368873596,
+ "last_committed_score_gap": 7.816778335723029e-10,
+ "last_cutoff_score_margin": 7.816778335723029e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 349,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4021540373221342e-08,
+ "last_raw_normalized_gap": 0.055748358368873596,
+ "last_raw_score_gap": 7.816778335723029e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "202ca06e1c810b498ce51180b4657b2c12d1d3a3ac12610a64eb3f6faef21da1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e07d96047a3588704ce6b1cff91a8b50e1d4512e11c580bac10c10d25366d441",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e07d96047a3588704ce6b1cff91a8b50e1d4512e11c580bac10c10d25366d441",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.9674485091391034e-10,
+ "last_committed_normalized_gap": 0.0010550575098022819,
+ "last_committed_score_gap": 3.1308289294429414e-13,
+ "last_cutoff_score_margin": 3.1308289294429414e-13,
+ "last_mask_churn": 94,
+ "last_mask_overlap": 333,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.9674485091391034e-10,
+ "last_raw_normalized_gap": 0.0010550575098022819,
+ "last_raw_score_gap": 3.1308289294429414e-13,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "e07d96047a3588704ce6b1cff91a8b50e1d4512e11c580bac10c10d25366d441",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1245b7cd83a6f3d01215f4fa833ac250bda5c063262e0e0331b05417930b0c4c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1245b7cd83a6f3d01215f4fa833ac250bda5c063262e0e0331b05417930b0c4c",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.3493260670193195e-09,
+ "last_committed_normalized_gap": 0.028517665341496468,
+ "last_committed_score_gap": 6.699729659942477e-11,
+ "last_cutoff_score_margin": 6.699729659942477e-11,
+ "last_mask_churn": 26,
+ "last_mask_overlap": 256,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.3493260670193195e-09,
+ "last_raw_normalized_gap": 0.028517665341496468,
+ "last_raw_score_gap": 6.699729659942477e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "1245b7cd83a6f3d01215f4fa833ac250bda5c063262e0e0331b05417930b0c4c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "87559809a3c390272c580b45913cac89327e64c04000bc9e52f4fbda625777f5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "87559809a3c390272c580b45913cac89327e64c04000bc9e52f4fbda625777f5",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.949313397948572e-07,
+ "last_committed_normalized_gap": 0.2767092287540436,
+ "last_committed_score_gap": 8.16102243561545e-08,
+ "last_cutoff_score_margin": 8.16102243561545e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.949313397948572e-07,
+ "last_raw_normalized_gap": 0.2767092287540436,
+ "last_raw_score_gap": 8.16102243561545e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "87559809a3c390272c580b45913cac89327e64c04000bc9e52f4fbda625777f5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "664080463ce7449d6ac572425ac3059205ed53b319a0e3fab297f87da4cab98e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "664080463ce7449d6ac572425ac3059205ed53b319a0e3fab297f87da4cab98e",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.7484706066616127e-08,
+ "last_committed_normalized_gap": 0.16012020409107208,
+ "last_committed_score_gap": 4.400856568054223e-09,
+ "last_cutoff_score_margin": 4.400856568054223e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 182,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.7484706066616127e-08,
+ "last_raw_normalized_gap": 0.16012020409107208,
+ "last_raw_score_gap": 4.400856568054223e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "664080463ce7449d6ac572425ac3059205ed53b319a0e3fab297f87da4cab98e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4eecac6d810b70fc158153434d12944f32da78d80b7c097069e3c9e2a9b61f2a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4eecac6d810b70fc158153434d12944f32da78d80b7c097069e3c9e2a9b61f2a",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.39381404196115e-08,
+ "last_committed_normalized_gap": 0.02492705173790455,
+ "last_committed_score_gap": 3.474367460398753e-10,
+ "last_cutoff_score_margin": 3.474367460398753e-10,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 98,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.39381404196115e-08,
+ "last_raw_normalized_gap": 0.02492705173790455,
+ "last_raw_score_gap": 3.474367460398753e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "4eecac6d810b70fc158153434d12944f32da78d80b7c097069e3c9e2a9b61f2a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e5a7b0b47bbe61df0e01a171024fdb088a497de912830f9bf2e5f0ba215a1ab1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e5a7b0b47bbe61df0e01a171024fdb088a497de912830f9bf2e5f0ba215a1ab1",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5766788408200227e-07,
+ "last_committed_normalized_gap": 0.37523362040519714,
+ "last_committed_score_gap": 5.916228928981582e-08,
+ "last_cutoff_score_margin": 5.916228928981582e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5766788408200227e-07,
+ "last_raw_normalized_gap": 0.37523362040519714,
+ "last_raw_score_gap": 5.916228928981582e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "e5a7b0b47bbe61df0e01a171024fdb088a497de912830f9bf2e5f0ba215a1ab1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "e095ddd4bc870f9b06744daef444bd2e1009aff1cc3dba5a8248bedc98b8692d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "e095ddd4bc870f9b06744daef444bd2e1009aff1cc3dba5a8248bedc98b8692d",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.2998430533079954e-08,
+ "last_committed_normalized_gap": 0.010296404361724854,
+ "last_committed_score_gap": 5.456932683500781e-10,
+ "last_cutoff_score_margin": 5.456932683500781e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.2998430533079954e-08,
+ "last_raw_normalized_gap": 0.010296404361724854,
+ "last_raw_score_gap": 5.456932683500781e-10,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "e095ddd4bc870f9b06744daef444bd2e1009aff1cc3dba5a8248bedc98b8692d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "082097fbd12ff55230a2d7b8da336444f0bc7f6f81c296f209af72eb0e49b1e5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "082097fbd12ff55230a2d7b8da336444f0bc7f6f81c296f209af72eb0e49b1e5",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0412896262200775e-08,
+ "last_committed_normalized_gap": 0.16614985466003418,
+ "last_committed_score_gap": 3.3915998898237376e-09,
+ "last_cutoff_score_margin": 3.3915998898237376e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 83,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0412896262200775e-08,
+ "last_raw_normalized_gap": 0.16614985466003418,
+ "last_raw_score_gap": 3.3915998898237376e-09,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "082097fbd12ff55230a2d7b8da336444f0bc7f6f81c296f209af72eb0e49b1e5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5871ccb616273e6de30efeb820bdff9716dbb636244f5584c6f5d24047b37847",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5871ccb616273e6de30efeb820bdff9716dbb636244f5584c6f5d24047b37847",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0438070603413507e-06,
+ "last_committed_normalized_gap": 0.5570882558822632,
+ "last_committed_score_gap": 5.81492656692717e-07,
+ "last_cutoff_score_margin": 5.81492656692717e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0438070603413507e-06,
+ "last_raw_normalized_gap": 0.5570882558822632,
+ "last_raw_score_gap": 5.81492656692717e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "5871ccb616273e6de30efeb820bdff9716dbb636244f5584c6f5d24047b37847",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5f1dce23aee3d6f513993e19790dd8e41c2de5d9d48c439cb9b4b1d78a959e90",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5f1dce23aee3d6f513993e19790dd8e41c2de5d9d48c439cb9b4b1d78a959e90",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6004157998850133e-08,
+ "last_committed_normalized_gap": 0.11563736945390701,
+ "last_committed_score_gap": 1.8506787213823372e-09,
+ "last_cutoff_score_margin": 1.8506787213823372e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 59,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6004157998850133e-08,
+ "last_raw_normalized_gap": 0.11563736945390701,
+ "last_raw_score_gap": 1.8506787213823372e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "5f1dce23aee3d6f513993e19790dd8e41c2de5d9d48c439cb9b4b1d78a959e90",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f3a8871eb67e82a2597768ef826b0cefaac944c6d616bb824dee77c629893882",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f3a8871eb67e82a2597768ef826b0cefaac944c6d616bb824dee77c629893882",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5356641231155663e-08,
+ "last_committed_normalized_gap": 0.08843008428812027,
+ "last_committed_score_gap": 2.242289909304418e-09,
+ "last_cutoff_score_margin": 2.242289909304418e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 52,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5356641231155663e-08,
+ "last_raw_normalized_gap": 0.08843008428812027,
+ "last_raw_score_gap": 2.242289909304418e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "f3a8871eb67e82a2597768ef826b0cefaac944c6d616bb824dee77c629893882",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b0dc44dae892c1f20da837db2a1542d03df09e30c7185d8f068f302751013122",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b0dc44dae892c1f20da837db2a1542d03df09e30c7185d8f068f302751013122",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7621761116970447e-06,
+ "last_committed_normalized_gap": 0.31725695729255676,
+ "last_committed_score_gap": 5.590626415141742e-07,
+ "last_cutoff_score_margin": 5.590626415141742e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7621761116970447e-06,
+ "last_raw_normalized_gap": 0.31725695729255676,
+ "last_raw_score_gap": 5.590626415141742e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "b0dc44dae892c1f20da837db2a1542d03df09e30c7185d8f068f302751013122",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "67daa2cd85bbbe354c5be3cbc1e9f54e02858da783d3ebb4db0f47da0432e6f1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "67daa2cd85bbbe354c5be3cbc1e9f54e02858da783d3ebb4db0f47da0432e6f1",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.033203708786459e-07,
+ "last_committed_normalized_gap": 0.2982300817966461,
+ "last_committed_score_gap": 1.2028226592519786e-07,
+ "last_cutoff_score_margin": 1.2028226592519786e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.033203708786459e-07,
+ "last_raw_normalized_gap": 0.2982300817966461,
+ "last_raw_score_gap": 1.2028226592519786e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "67daa2cd85bbbe354c5be3cbc1e9f54e02858da783d3ebb4db0f47da0432e6f1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.3221134546911344e-05,
+ "last_committed_normalized_gap": 0.6195588707923889,
+ "last_committed_score_gap": 2.6778037863550708e-05,
+ "last_cutoff_score_margin": 2.6778037863550708e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.3221134546911344e-05,
+ "last_raw_normalized_gap": 0.6195588707923889,
+ "last_raw_score_gap": 2.6778037863550708e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "6e8db6d169eee04f699ff9d920451c7481a992731c6014c2218c8f8fa62b2d85",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.84261677734321e-05,
+ "last_committed_normalized_gap": 0.1579212099313736,
+ "last_committed_score_gap": 4.4890948629472405e-06,
+ "last_cutoff_score_margin": 4.4890948629472405e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.84261677734321e-05,
+ "last_raw_normalized_gap": 0.1579212099313736,
+ "last_raw_score_gap": 4.4890948629472405e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "57e0e73858d876ac70bd18e60160ff9f8db4d2b57fe897b21fab014c2252b03a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "40dfc2f41cc60a96c9e7bcb7f5bec1bfc33fbfc5f4e29d3851ecdc772b59e987",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "40dfc2f41cc60a96c9e7bcb7f5bec1bfc33fbfc5f4e29d3851ecdc772b59e987",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2109143174020573e-05,
+ "last_committed_normalized_gap": 0.9685518741607666,
+ "last_committed_score_gap": 2.1413852664409205e-05,
+ "last_cutoff_score_margin": 2.1413852664409205e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.2109143174020573e-05,
+ "last_raw_normalized_gap": 0.9685518741607666,
+ "last_raw_score_gap": 2.1413852664409205e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "40dfc2f41cc60a96c9e7bcb7f5bec1bfc33fbfc5f4e29d3851ecdc772b59e987",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "366ef35be5490ec1997d38458e83cee17a6a5862ea89efa3caaf74f23b047698",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "366ef35be5490ec1997d38458e83cee17a6a5862ea89efa3caaf74f23b047698",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.832889087287185e-07,
+ "last_committed_normalized_gap": 0.7577385902404785,
+ "last_committed_score_gap": 4.4198051796229265e-07,
+ "last_cutoff_score_margin": 4.4198051796229265e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.832889087287185e-07,
+ "last_raw_normalized_gap": 0.7577385902404785,
+ "last_raw_score_gap": 4.4198051796229265e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 47,
+ "observations_staged": 47,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "366ef35be5490ec1997d38458e83cee17a6a5862ea89efa3caaf74f23b047698",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 47,
+ "tokens_observed": 351
+ }
+ ],
+ "task_id": 869
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "bb0fa66bde8110ab381a3743b0560485abfbd64cc23e4881977f336b1a31422f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "bb0fa66bde8110ab381a3743b0560485abfbd64cc23e4881977f336b1a31422f",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.345915461887671e-08,
+ "last_committed_normalized_gap": 0.005693860352039337,
+ "last_committed_score_gap": 1.3357315253870183e-10,
+ "last_cutoff_score_margin": 1.3357315253870183e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 351,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.345915461887671e-08,
+ "last_raw_normalized_gap": 0.005693860352039337,
+ "last_raw_score_gap": 1.3357315253870183e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "bb0fa66bde8110ab381a3743b0560485abfbd64cc23e4881977f336b1a31422f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d0536bf312f0f44e7bba0bbf3643e19b0fe39f2518d0f55d3a6047a8d94e7ed7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d0536bf312f0f44e7bba0bbf3643e19b0fe39f2518d0f55d3a6047a8d94e7ed7",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.272677460257171e-10,
+ "last_committed_normalized_gap": 0.004560390487313271,
+ "last_committed_score_gap": 3.3166247526139614e-12,
+ "last_cutoff_score_margin": 3.3166247526139614e-12,
+ "last_mask_churn": 66,
+ "last_mask_overlap": 347,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.272677460257171e-10,
+ "last_raw_normalized_gap": 0.004560390487313271,
+ "last_raw_score_gap": 3.3166247526139614e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "d0536bf312f0f44e7bba0bbf3643e19b0fe39f2518d0f55d3a6047a8d94e7ed7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "85a00dab3699e1c18ef8638d9078fbacbdbdfd2aa6b8c3c33bb9d1e19a1ffc2d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "85a00dab3699e1c18ef8638d9078fbacbdbdfd2aa6b8c3c33bb9d1e19a1ffc2d",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.7911069838969524e-09,
+ "last_committed_normalized_gap": 0.005402249749749899,
+ "last_committed_score_gap": 2.0480506179865188e-11,
+ "last_cutoff_score_margin": 2.0480506179865188e-11,
+ "last_mask_churn": 22,
+ "last_mask_overlap": 258,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.7911069838969524e-09,
+ "last_raw_normalized_gap": 0.005402249749749899,
+ "last_raw_score_gap": 2.0480506179865188e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "85a00dab3699e1c18ef8638d9078fbacbdbdfd2aa6b8c3c33bb9d1e19a1ffc2d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "97d05dd55d15c22abbc08e9727b2f6a2a52dda119dbf0415cf68b454b53eebc0",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "97d05dd55d15c22abbc08e9727b2f6a2a52dda119dbf0415cf68b454b53eebc0",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.255191529660806e-07,
+ "last_committed_normalized_gap": 0.14765462279319763,
+ "last_committed_score_gap": 4.8064407565107103e-08,
+ "last_cutoff_score_margin": 4.8064407565107103e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.255191529660806e-07,
+ "last_raw_normalized_gap": 0.14765462279319763,
+ "last_raw_score_gap": 4.8064407565107103e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "97d05dd55d15c22abbc08e9727b2f6a2a52dda119dbf0415cf68b454b53eebc0",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "1e2a9311fc757280243da055d33861ffb23d9032e3256a3eda7ede3a4c7f0f60",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "1e2a9311fc757280243da055d33861ffb23d9032e3256a3eda7ede3a4c7f0f60",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5512230550361892e-08,
+ "last_committed_normalized_gap": 0.006765719503164291,
+ "last_committed_score_gap": 1.7260859408452234e-10,
+ "last_cutoff_score_margin": 1.7260859408452234e-10,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5512230550361892e-08,
+ "last_raw_normalized_gap": 0.006765719503164291,
+ "last_raw_score_gap": 1.7260859408452234e-10,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "1e2a9311fc757280243da055d33861ffb23d9032e3256a3eda7ede3a4c7f0f60",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fd5e2d54c49b9e08481399dc6e880c06aaf9e1ed2ade14fe23050e453ccaca9f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fd5e2d54c49b9e08481399dc6e880c06aaf9e1ed2ade14fe23050e453ccaca9f",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2133010091351935e-08,
+ "last_committed_normalized_gap": 0.021763551980257034,
+ "last_committed_score_gap": 4.816929077833265e-10,
+ "last_cutoff_score_margin": 4.816929077833265e-10,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 104,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.2133010091351935e-08,
+ "last_raw_normalized_gap": 0.021763551980257034,
+ "last_raw_score_gap": 4.816929077833265e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "fd5e2d54c49b9e08481399dc6e880c06aaf9e1ed2ade14fe23050e453ccaca9f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c60366aa5920e8676b9c42450e391ea45656e17352ab2c5361b68d9ae447630a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c60366aa5920e8676b9c42450e391ea45656e17352ab2c5361b68d9ae447630a",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2302282925702457e-07,
+ "last_committed_normalized_gap": 0.02304815500974655,
+ "last_committed_score_gap": 2.83544920876011e-09,
+ "last_cutoff_score_margin": 2.83544920876011e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2302282925702457e-07,
+ "last_raw_normalized_gap": 0.02304815500974655,
+ "last_raw_score_gap": 2.83544920876011e-09,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "c60366aa5920e8676b9c42450e391ea45656e17352ab2c5361b68d9ae447630a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "dbef6700e8f9900e8c033ab44c208335e39ad65a8044e89130b5b5e976e127fe",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "dbef6700e8f9900e8c033ab44c208335e39ad65a8044e89130b5b5e976e127fe",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.533802121566623e-08,
+ "last_committed_normalized_gap": 0.4308236241340637,
+ "last_committed_score_gap": 2.8149163000534827e-08,
+ "last_cutoff_score_margin": 2.8149163000534827e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.533802121566623e-08,
+ "last_raw_normalized_gap": 0.4308236241340637,
+ "last_raw_score_gap": 2.8149163000534827e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "dbef6700e8f9900e8c033ab44c208335e39ad65a8044e89130b5b5e976e127fe",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5dbcde57775f6538cfe8cd7cab7af7151803a2b0ce9a745698a10fb0b9d9ba45",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5dbcde57775f6538cfe8cd7cab7af7151803a2b0ce9a745698a10fb0b9d9ba45",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8104561405607456e-08,
+ "last_committed_normalized_gap": 0.01990853250026703,
+ "last_committed_score_gap": 3.604352372121866e-10,
+ "last_cutoff_score_margin": 3.604352372121866e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8104561405607456e-08,
+ "last_raw_normalized_gap": 0.01990853250026703,
+ "last_raw_score_gap": 3.604352372121866e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "5dbcde57775f6538cfe8cd7cab7af7151803a2b0ce9a745698a10fb0b9d9ba45",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "908f279910af5661b3cd4041588a4c3c1d93e4a48440bbdc9faa41192d28f862",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "908f279910af5661b3cd4041588a4c3c1d93e4a48440bbdc9faa41192d28f862",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.1125262062705588e-06,
+ "last_committed_normalized_gap": 0.717017412185669,
+ "last_committed_score_gap": 7.977006362125394e-07,
+ "last_cutoff_score_margin": 7.977006362125394e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.1125262062705588e-06,
+ "last_raw_normalized_gap": 0.717017412185669,
+ "last_raw_score_gap": 7.977006362125394e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "908f279910af5661b3cd4041588a4c3c1d93e4a48440bbdc9faa41192d28f862",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ddba514ea6173bd0ca442f5553b1afd07a9cb2a38f2be1b85b4e357a37eca03d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ddba514ea6173bd0ca442f5553b1afd07a9cb2a38f2be1b85b4e357a37eca03d",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.921656326928314e-08,
+ "last_committed_normalized_gap": 0.03207258880138397,
+ "last_committed_score_gap": 1.5785026619141718e-09,
+ "last_cutoff_score_margin": 1.5785026619141718e-09,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 61,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.921656326928314e-08,
+ "last_raw_normalized_gap": 0.03207258880138397,
+ "last_raw_score_gap": 1.5785026619141718e-09,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "ddba514ea6173bd0ca442f5553b1afd07a9cb2a38f2be1b85b4e357a37eca03d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3cb4ff3fe7b0374795eb2aca04f128afdcf52e7fe899b536a20a168057a40854",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3cb4ff3fe7b0374795eb2aca04f128afdcf52e7fe899b536a20a168057a40854",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.1148620510966794e-08,
+ "last_committed_normalized_gap": 0.11600641906261444,
+ "last_committed_score_gap": 4.773504258537287e-09,
+ "last_cutoff_score_margin": 4.773504258537287e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 52,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.1148620510966794e-08,
+ "last_raw_normalized_gap": 0.11600641906261444,
+ "last_raw_score_gap": 4.773504258537287e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "3cb4ff3fe7b0374795eb2aca04f128afdcf52e7fe899b536a20a168057a40854",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "181e67e542610d750c95ab9d6c3ff6559c1744960ce85d1d6a6caa1ddb0310d8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "181e67e542610d750c95ab9d6c3ff6559c1744960ce85d1d6a6caa1ddb0310d8",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.129241582020768e-06,
+ "last_committed_normalized_gap": 0.4439896047115326,
+ "last_committed_score_gap": 5.013715167478949e-07,
+ "last_cutoff_score_margin": 5.013715167478949e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.129241582020768e-06,
+ "last_raw_normalized_gap": 0.4439896047115326,
+ "last_raw_score_gap": 5.013715167478949e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "181e67e542610d750c95ab9d6c3ff6559c1744960ce85d1d6a6caa1ddb0310d8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "338666afdd870a73f116d6eee4e8a20ecc80345334529d299cc0973ea396009a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "338666afdd870a73f116d6eee4e8a20ecc80345334529d299cc0973ea396009a",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4767762170085916e-06,
+ "last_committed_normalized_gap": 0.6549013257026672,
+ "last_committed_score_gap": 1.622044010218815e-06,
+ "last_cutoff_score_margin": 1.622044010218815e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4767762170085916e-06,
+ "last_raw_normalized_gap": 0.6549013257026672,
+ "last_raw_score_gap": 1.622044010218815e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "338666afdd870a73f116d6eee4e8a20ecc80345334529d299cc0973ea396009a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.259280391735956e-05,
+ "last_committed_normalized_gap": 0.7585790157318115,
+ "last_committed_score_gap": 5.506737943505868e-05,
+ "last_cutoff_score_margin": 5.506737943505868e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.259280391735956e-05,
+ "last_raw_normalized_gap": 0.7585790157318115,
+ "last_raw_score_gap": 5.506737943505868e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "9533d35db47f056ca2781b2f2339554159e544b9b7294c26d6bdee8f2008daf1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c08eb45f1006b8785a69abbaf63b61e38450995e150c6b863fc019c05567db2f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c08eb45f1006b8785a69abbaf63b61e38450995e150c6b863fc019c05567db2f",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.454813354939688e-05,
+ "last_committed_normalized_gap": 0.4570792317390442,
+ "last_committed_score_gap": 6.649649549217429e-06,
+ "last_cutoff_score_margin": 6.649649549217429e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.454813354939688e-05,
+ "last_raw_normalized_gap": 0.4570792317390442,
+ "last_raw_score_gap": 6.649649549217429e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "c08eb45f1006b8785a69abbaf63b61e38450995e150c6b863fc019c05567db2f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4329125406220555e-05,
+ "last_committed_normalized_gap": 0.8037963509559631,
+ "last_committed_score_gap": 1.1517699022078887e-05,
+ "last_cutoff_score_margin": 1.1517699022078887e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4329125406220555e-05,
+ "last_raw_normalized_gap": 0.8037963509559631,
+ "last_raw_score_gap": 1.1517699022078887e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "6d0d03c05208925ddee9beceaf6159c6f91e2080df12fd614aa50e715b338c30",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ef736ac1a0eed2e82fa17d13b05c63ee2be627859a3177eb8cdb9b0b60c312cb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ef736ac1a0eed2e82fa17d13b05c63ee2be627859a3177eb8cdb9b0b60c312cb",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.899732578498515e-07,
+ "last_committed_normalized_gap": 0.45603325963020325,
+ "last_committed_score_gap": 1.3223744588231057e-07,
+ "last_cutoff_score_margin": 1.3223744588231057e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.899732578498515e-07,
+ "last_raw_normalized_gap": 0.45603325963020325,
+ "last_raw_score_gap": 1.3223744588231057e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 36,
+ "observations_staged": 36,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "ef736ac1a0eed2e82fa17d13b05c63ee2be627859a3177eb8cdb9b0b60c312cb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 36,
+ "tokens_observed": 130
+ }
+ ],
+ "task_id": 851
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "d0b5b7932851aa8144bf16a2bfc2727e60c2a4ca0aaeabe35cff81d1bc1fc5a6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "d0b5b7932851aa8144bf16a2bfc2727e60c2a4ca0aaeabe35cff81d1bc1fc5a6",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4998365216456477e-08,
+ "last_committed_normalized_gap": 0.2445930391550064,
+ "last_committed_score_gap": 3.6684957294141896e-09,
+ "last_cutoff_score_margin": 3.6684957294141896e-09,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 349,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4998365216456477e-08,
+ "last_raw_normalized_gap": 0.2445930391550064,
+ "last_raw_score_gap": 3.6684957294141896e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "d0b5b7932851aa8144bf16a2bfc2727e60c2a4ca0aaeabe35cff81d1bc1fc5a6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4a90e7d63733903588533442bd59ff5880f4f4bf69f8bd3599808d88e8996096",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4a90e7d63733903588533442bd59ff5880f4f4bf69f8bd3599808d88e8996096",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.12678785693754e-09,
+ "last_committed_normalized_gap": 0.0045196376740932465,
+ "last_committed_score_gap": 9.612310947204605e-12,
+ "last_cutoff_score_margin": 9.612310947204605e-12,
+ "last_mask_churn": 176,
+ "last_mask_overlap": 292,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.12678785693754e-09,
+ "last_raw_normalized_gap": 0.0045196376740932465,
+ "last_raw_score_gap": 9.612310947204605e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "4a90e7d63733903588533442bd59ff5880f4f4bf69f8bd3599808d88e8996096",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "986f6cf8b109d9557e714adf79c1a34d7f8ae4c6d1565117a683e6c6512d8b71",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "986f6cf8b109d9557e714adf79c1a34d7f8ae4c6d1565117a683e6c6512d8b71",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0999992028359884e-08,
+ "last_committed_normalized_gap": 0.01650616154074669,
+ "last_committed_score_gap": 1.815676498040375e-10,
+ "last_cutoff_score_margin": 1.815676498040375e-10,
+ "last_mask_churn": 66,
+ "last_mask_overlap": 236,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0999992028359884e-08,
+ "last_raw_normalized_gap": 0.01650616154074669,
+ "last_raw_score_gap": 1.815676498040375e-10,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "986f6cf8b109d9557e714adf79c1a34d7f8ae4c6d1565117a683e6c6512d8b71",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9f8accdf17f00c0fa5d1313e288d07915377c64659bca850bcd58f224280c75f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9f8accdf17f00c0fa5d1313e288d07915377c64659bca850bcd58f224280c75f",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5674270887066086e-07,
+ "last_committed_normalized_gap": 0.03705908730626106,
+ "last_committed_score_gap": 9.514650400888058e-09,
+ "last_cutoff_score_margin": 9.514650400888058e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 177,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5674270887066086e-07,
+ "last_raw_normalized_gap": 0.03705908730626106,
+ "last_raw_score_gap": 9.514650400888058e-09,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "9f8accdf17f00c0fa5d1313e288d07915377c64659bca850bcd58f224280c75f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "aa4ee87720bc8be9b34e05e4b469c502e9b5cd839051a8719fdafdff4f550e2f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "aa4ee87720bc8be9b34e05e4b469c502e9b5cd839051a8719fdafdff4f550e2f",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 9.386069166339439e-08,
+ "last_committed_normalized_gap": 0.03550371155142784,
+ "last_committed_score_gap": 3.3324027981507243e-09,
+ "last_cutoff_score_margin": 3.3324027981507243e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 183,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 9.386069166339439e-08,
+ "last_raw_normalized_gap": 0.03550371155142784,
+ "last_raw_score_gap": 3.3324027981507243e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "aa4ee87720bc8be9b34e05e4b469c502e9b5cd839051a8719fdafdff4f550e2f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "59a54b96deb22ff1125f9f91cc667b183952ef9b74d29598a807fd0ba285659f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "59a54b96deb22ff1125f9f91cc667b183952ef9b74d29598a807fd0ba285659f",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.89214535548399e-08,
+ "last_committed_normalized_gap": 0.00675946893170476,
+ "last_committed_score_gap": 3.3068303650907183e-10,
+ "last_cutoff_score_margin": 3.3068303650907183e-10,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 101,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.89214535548399e-08,
+ "last_raw_normalized_gap": 0.00675946893170476,
+ "last_raw_score_gap": 3.3068303650907183e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "59a54b96deb22ff1125f9f91cc667b183952ef9b74d29598a807fd0ba285659f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "628300f028d15a755cc2ef18b9be19128a1a9a86b9bad956a30ca7a723f7fbf7",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "628300f028d15a755cc2ef18b9be19128a1a9a86b9bad956a30ca7a723f7fbf7",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.4316579211026692e-07,
+ "last_committed_normalized_gap": 0.26062002778053284,
+ "last_committed_score_gap": 3.731187092625987e-08,
+ "last_cutoff_score_margin": 3.731187092625987e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.4316579211026692e-07,
+ "last_raw_normalized_gap": 0.26062002778053284,
+ "last_raw_score_gap": 3.731187092625987e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "628300f028d15a755cc2ef18b9be19128a1a9a86b9bad956a30ca7a723f7fbf7",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2a6a4bdcb85be71dad4d134e49e0bb81baac37f4c6c140f252a2fa0accebb6bc",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "2a6a4bdcb85be71dad4d134e49e0bb81baac37f4c6c140f252a2fa0accebb6bc",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0799824678997538e-07,
+ "last_committed_normalized_gap": 0.1489720493555069,
+ "last_committed_score_gap": 1.6088719689832942e-08,
+ "last_cutoff_score_margin": 1.6088719689832942e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 41,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0799824678997538e-07,
+ "last_raw_normalized_gap": 0.1489720493555069,
+ "last_raw_score_gap": 1.6088719689832942e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "2a6a4bdcb85be71dad4d134e49e0bb81baac37f4c6c140f252a2fa0accebb6bc",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4505f49c2824820d86c2ff1e6251baead351290a8378fb415c7bcdcdc89f04ed",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4505f49c2824820d86c2ff1e6251baead351290a8378fb415c7bcdcdc89f04ed",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.6583392437041766e-08,
+ "last_committed_normalized_gap": 0.017339181154966354,
+ "last_committed_score_gap": 2.8754243430739734e-10,
+ "last_cutoff_score_margin": 2.8754243430739734e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 82,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.6583392437041766e-08,
+ "last_raw_normalized_gap": 0.017339181154966354,
+ "last_raw_score_gap": 2.8754243430739734e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "4505f49c2824820d86c2ff1e6251baead351290a8378fb415c7bcdcdc89f04ed",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9ca22d5561ba4e111b51b37d3ff2ee3e148cc050473509ede02cd1f4bf32eb8d",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9ca22d5561ba4e111b51b37d3ff2ee3e148cc050473509ede02cd1f4bf32eb8d",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0776108183563338e-06,
+ "last_committed_normalized_gap": 0.050454672425985336,
+ "last_committed_score_gap": 5.437050276668742e-08,
+ "last_cutoff_score_margin": 5.437050276668742e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0776108183563338e-06,
+ "last_raw_normalized_gap": 0.050454672425985336,
+ "last_raw_score_gap": 5.437050276668742e-08,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "9ca22d5561ba4e111b51b37d3ff2ee3e148cc050473509ede02cd1f4bf32eb8d",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "059b20d2ef2b3fee9072ae80571c93c64a70c5b4e894590ddbd4e14bdd8c7844",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "059b20d2ef2b3fee9072ae80571c93c64a70c5b4e894590ddbd4e14bdd8c7844",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.042478269321691e-08,
+ "last_committed_normalized_gap": 0.002885279478505254,
+ "last_committed_score_gap": 8.778400228948158e-11,
+ "last_cutoff_score_margin": 8.778400228948158e-11,
+ "last_mask_churn": 16,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.042478269321691e-08,
+ "last_raw_normalized_gap": 0.002885279478505254,
+ "last_raw_score_gap": 8.778400228948158e-11,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "059b20d2ef2b3fee9072ae80571c93c64a70c5b4e894590ddbd4e14bdd8c7844",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ab9a6c7861c4851c96f0b612780d7a5c85b1a70af03d415252b5b51fbd392b85",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ab9a6c7861c4851c96f0b612780d7a5c85b1a70af03d415252b5b51fbd392b85",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.6097306355695764e-08,
+ "last_committed_normalized_gap": 0.025943022221326828,
+ "last_committed_score_gap": 1.4553336313838372e-09,
+ "last_cutoff_score_margin": 1.4553336313838372e-09,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 48,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.6097306355695764e-08,
+ "last_raw_normalized_gap": 0.025943022221326828,
+ "last_raw_score_gap": 1.4553336313838372e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "ab9a6c7861c4851c96f0b612780d7a5c85b1a70af03d415252b5b51fbd392b85",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "83747c735faacae11e8058cfbe76b8f2b8209901ed79b1be05fe90acbd9a8893",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "83747c735faacae11e8058cfbe76b8f2b8209901ed79b1be05fe90acbd9a8893",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3416262163445936e-06,
+ "last_committed_normalized_gap": 0.020152073353528976,
+ "last_committed_score_gap": 2.7036548999603838e-08,
+ "last_cutoff_score_margin": 2.7036548999603838e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 44,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3416262163445936e-06,
+ "last_raw_normalized_gap": 0.020152073353528976,
+ "last_raw_score_gap": 2.7036548999603838e-08,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "83747c735faacae11e8058cfbe76b8f2b8209901ed79b1be05fe90acbd9a8893",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "75db5a5df7e0f4cb895a661b0154a88e5d99ec59e6af60e741795a668918133a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "75db5a5df7e0f4cb895a661b0154a88e5d99ec59e6af60e741795a668918133a",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8668162056201254e-06,
+ "last_committed_normalized_gap": 0.5550014972686768,
+ "last_committed_score_gap": 1.0360857913838117e-06,
+ "last_cutoff_score_margin": 1.0360857913838117e-06,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 26,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8668162056201254e-06,
+ "last_raw_normalized_gap": 0.5550014972686768,
+ "last_raw_score_gap": 1.0360857913838117e-06,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "75db5a5df7e0f4cb895a661b0154a88e5d99ec59e6af60e741795a668918133a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.276417505228892e-05,
+ "last_committed_normalized_gap": 0.9567273259162903,
+ "last_committed_score_gap": 5.048092862125486e-05,
+ "last_cutoff_score_margin": 5.048092862125486e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.276417505228892e-05,
+ "last_raw_normalized_gap": 0.9567273259162903,
+ "last_raw_score_gap": 5.048092862125486e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "9f73892e641df88c82a2c77c91dce9962e45409ce60e769ff7085bda6e9fcda8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2103288099751808e-05,
+ "last_committed_normalized_gap": 0.7994794249534607,
+ "last_committed_score_gap": 9.676329682406504e-06,
+ "last_cutoff_score_margin": 9.676329682406504e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2103288099751808e-05,
+ "last_raw_normalized_gap": 0.7994794249534607,
+ "last_raw_score_gap": 9.676329682406504e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "92e1e3b3ce93b21ce1ad19ab76d7e519a5e61916d2b110db76646137861c59d3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.3783472240902483e-05,
+ "last_committed_normalized_gap": 0.7965723872184753,
+ "last_committed_score_gap": 1.0979533726640511e-05,
+ "last_cutoff_score_margin": 1.0979533726640511e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.3783472240902483e-05,
+ "last_raw_normalized_gap": 0.7965723872184753,
+ "last_raw_score_gap": 1.0979533726640511e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "2358f642d2451a642973b8870c9aa868efb5cb7fde5ff2ec1da0702d795458ca",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c4a0bd118c6a6e002cde1834f348d15b04f5576d695f4d4734b89e3293bb730c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c4a0bd118c6a6e002cde1834f348d15b04f5576d695f4d4734b89e3293bb730c",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.036527627704345e-07,
+ "last_committed_normalized_gap": 0.35132265090942383,
+ "last_committed_score_gap": 1.418123645180458e-07,
+ "last_cutoff_score_margin": 1.418123645180458e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.036527627704345e-07,
+ "last_raw_normalized_gap": 0.35132265090942383,
+ "last_raw_score_gap": 1.418123645180458e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 37,
+ "observations_staged": 37,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "c4a0bd118c6a6e002cde1834f348d15b04f5576d695f4d4734b89e3293bb730c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 37,
+ "tokens_observed": 164
+ }
+ ],
+ "task_id": 728
+ },
+ {
+ "layers": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "3f45cd7608fd4ec77dd85c8643fad9e93600425b4bb2821d8abc6372ded54ac5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "3f45cd7608fd4ec77dd85c8643fad9e93600425b4bb2821d8abc6372ded54ac5",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1650594206334972e-08,
+ "last_committed_normalized_gap": 0.15466253459453583,
+ "last_committed_score_gap": 3.3485356709661573e-09,
+ "last_cutoff_score_margin": 3.3485356709661573e-09,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 349,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1650594206334972e-08,
+ "last_raw_normalized_gap": 0.15466253459453583,
+ "last_raw_score_gap": 3.3485356709661573e-09,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "3f45cd7608fd4ec77dd85c8643fad9e93600425b4bb2821d8abc6372ded54ac5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6e4ca5bca85b474dbfdfde3c992dcb0f8b53b6dda910f868304dbdbf3e68b5c2",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6e4ca5bca85b474dbfdfde3c992dcb0f8b53b6dda910f868304dbdbf3e68b5c2",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.2581435327472263e-09,
+ "last_committed_normalized_gap": 0.009713784791529179,
+ "last_committed_score_gap": 3.164890571838441e-11,
+ "last_cutoff_score_margin": 3.164890571838441e-11,
+ "last_mask_churn": 14,
+ "last_mask_overlap": 373,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.2581435327472263e-09,
+ "last_raw_normalized_gap": 0.009713784791529179,
+ "last_raw_score_gap": 3.164890571838441e-11,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "6e4ca5bca85b474dbfdfde3c992dcb0f8b53b6dda910f868304dbdbf3e68b5c2",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "8e07be26cba6ef7cb099cd57127845945f67e5c3ed2830a6424f8afccdb7b1e5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "8e07be26cba6ef7cb099cd57127845945f67e5c3ed2830a6424f8afccdb7b1e5",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0398767180674895e-08,
+ "last_committed_normalized_gap": 0.003288955893367529,
+ "last_committed_score_gap": 3.420108640739272e-11,
+ "last_cutoff_score_margin": 3.420108640739272e-11,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 268,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0398767180674895e-08,
+ "last_raw_normalized_gap": 0.003288955893367529,
+ "last_raw_score_gap": 3.420108640739272e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "8e07be26cba6ef7cb099cd57127845945f67e5c3ed2830a6424f8afccdb7b1e5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "6d2a64ce2bb33840f01caf8bdca65d41753c35a46064ad2af3f401b19ca3eae8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "6d2a64ce2bb33840f01caf8bdca65d41753c35a46064ad2af3f401b19ca3eae8",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.536752106152562e-07,
+ "last_committed_normalized_gap": 0.06508255004882812,
+ "last_committed_score_gap": 1.6509829947608523e-08,
+ "last_cutoff_score_margin": 1.6509829947608523e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 178,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.536752106152562e-07,
+ "last_raw_normalized_gap": 0.06508255004882812,
+ "last_raw_score_gap": 1.6509829947608523e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "6d2a64ce2bb33840f01caf8bdca65d41753c35a46064ad2af3f401b19ca3eae8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "146a971339d4277f4edcec8a4d56b049f0722cb5f4c49a6809de37bed9e86c7f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "146a971339d4277f4edcec8a4d56b049f0722cb5f4c49a6809de37bed9e86c7f",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 5.974803940489437e-08,
+ "last_committed_normalized_gap": 0.7508201599121094,
+ "last_committed_score_gap": 4.486003390979931e-08,
+ "last_cutoff_score_margin": 4.486003390979931e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 185,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 5.974803940489437e-08,
+ "last_raw_normalized_gap": 0.7508201599121094,
+ "last_raw_score_gap": 4.486003390979931e-08,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "146a971339d4277f4edcec8a4d56b049f0722cb5f4c49a6809de37bed9e86c7f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ca8f92a685c59580cc7d1d99232f20a7356e8d9c74ddeeaca80afa10485914cb",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ca8f92a685c59580cc7d1d99232f20a7356e8d9c74ddeeaca80afa10485914cb",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.650732338655871e-08,
+ "last_committed_normalized_gap": 0.5442615151405334,
+ "last_committed_score_gap": 1.986953179766715e-08,
+ "last_cutoff_score_margin": 1.986953179766715e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 105,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.650732338655871e-08,
+ "last_raw_normalized_gap": 0.5442615151405334,
+ "last_raw_score_gap": 1.986953179766715e-08,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "ca8f92a685c59580cc7d1d99232f20a7356e8d9c74ddeeaca80afa10485914cb",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "940d67a2d5c2436443c4b61729b49cac6171873ba578f5a85104e4d23d0a0fc9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "940d67a2d5c2436443c4b61729b49cac6171873ba578f5a85104e4d23d0a0fc9",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0953611706554511e-07,
+ "last_committed_normalized_gap": 0.7786546945571899,
+ "last_committed_score_gap": 8.529081441110975e-08,
+ "last_cutoff_score_margin": 8.529081441110975e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 80,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0953611706554511e-07,
+ "last_raw_normalized_gap": 0.7786546945571899,
+ "last_raw_score_gap": 8.529081441110975e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "940d67a2d5c2436443c4b61729b49cac6171873ba578f5a85104e4d23d0a0fc9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c075fd3be7d682c29cbb704a6104333782631c608890675d54c5b6a19f138408",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c075fd3be7d682c29cbb704a6104333782631c608890675d54c5b6a19f138408",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.1933414962613824e-08,
+ "last_committed_normalized_gap": 0.8377547860145569,
+ "last_committed_score_gap": 3.512991852971936e-08,
+ "last_cutoff_score_margin": 3.512991852971936e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 43,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.1933414962613824e-08,
+ "last_raw_normalized_gap": 0.8377547860145569,
+ "last_raw_score_gap": 3.512991852971936e-08,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "c075fd3be7d682c29cbb704a6104333782631c608890675d54c5b6a19f138408",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fc14f1dc933ab34e1f5f33225e0678207a8452f044be859e3cd79327f7f2eb53",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fc14f1dc933ab34e1f5f33225e0678207a8452f044be859e3cd79327f7f2eb53",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.9252796690238938e-08,
+ "last_committed_normalized_gap": 0.6426034569740295,
+ "last_committed_score_gap": 1.2371913271636004e-08,
+ "last_cutoff_score_margin": 1.2371913271636004e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 84,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.9252796690238938e-08,
+ "last_raw_normalized_gap": 0.6426034569740295,
+ "last_raw_score_gap": 1.2371913271636004e-08,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "fc14f1dc933ab34e1f5f33225e0678207a8452f044be859e3cd79327f7f2eb53",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4714693396f9bcf0cbf4bc6db3e6fa048e7c1f60d690e9138638e2e32d1b5c22",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4714693396f9bcf0cbf4bc6db3e6fa048e7c1f60d690e9138638e2e32d1b5c22",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.458170555059041e-07,
+ "last_committed_normalized_gap": 0.5025678277015686,
+ "last_committed_score_gap": 4.250804579442047e-07,
+ "last_cutoff_score_margin": 4.250804579442047e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 30,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.458170555059041e-07,
+ "last_raw_normalized_gap": 0.5025678277015686,
+ "last_raw_score_gap": 4.250804579442047e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "4714693396f9bcf0cbf4bc6db3e6fa048e7c1f60d690e9138638e2e32d1b5c22",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cd1431cdfff20bbd1b2433c399d75b09a279c7114e8a3ad591325a4eb51c967b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "cd1431cdfff20bbd1b2433c399d75b09a279c7114e8a3ad591325a4eb51c967b",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.7937578412083894e-08,
+ "last_committed_normalized_gap": 0.5629839897155762,
+ "last_committed_score_gap": 2.1358250279490676e-08,
+ "last_cutoff_score_margin": 2.1358250279490676e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 62,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.7937578412083894e-08,
+ "last_raw_normalized_gap": 0.5629839897155762,
+ "last_raw_score_gap": 2.1358250279490676e-08,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "cd1431cdfff20bbd1b2433c399d75b09a279c7114e8a3ad591325a4eb51c967b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "9247a5625a96f21107dfbf18b05afc2447ccb83ac7ce6b065494774b8d1db0c4",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "9247a5625a96f21107dfbf18b05afc2447ccb83ac7ce6b065494774b8d1db0c4",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.171206479166358e-08,
+ "last_committed_normalized_gap": 0.7669771313667297,
+ "last_committed_score_gap": 4.733174208126911e-08,
+ "last_cutoff_score_margin": 4.733174208126911e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 54,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.171206479166358e-08,
+ "last_raw_normalized_gap": 0.7669771313667297,
+ "last_raw_score_gap": 4.733174208126911e-08,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "9247a5625a96f21107dfbf18b05afc2447ccb83ac7ce6b065494774b8d1db0c4",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "4ecbece0b112f51903824d161057ba54b827a963e9b495e964e62185f84a03cc",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "4ecbece0b112f51903824d161057ba54b827a963e9b495e964e62185f84a03cc",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.860419941607688e-07,
+ "last_committed_normalized_gap": 0.9049222469329834,
+ "last_committed_score_gap": 7.11306881839846e-07,
+ "last_cutoff_score_margin": 7.11306881839846e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 45,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.860419941607688e-07,
+ "last_raw_normalized_gap": 0.9049222469329834,
+ "last_raw_score_gap": 7.11306881839846e-07,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "4ecbece0b112f51903824d161057ba54b827a963e9b495e964e62185f84a03cc",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ed0a04504429c5cf7a1121c3427425c2ca03187a5ae9383f58b152b97d4fcdc5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ed0a04504429c5cf7a1121c3427425c2ca03187a5ae9383f58b152b97d4fcdc5",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7609654605621472e-06,
+ "last_committed_normalized_gap": 0.5185596942901611,
+ "last_committed_score_gap": 9.131657066063781e-07,
+ "last_cutoff_score_margin": 9.131657066063781e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 27,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7609654605621472e-06,
+ "last_raw_normalized_gap": 0.5185596942901611,
+ "last_raw_score_gap": 9.131657066063781e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "ed0a04504429c5cf7a1121c3427425c2ca03187a5ae9383f58b152b97d4fcdc5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.530093378387392e-05,
+ "last_committed_normalized_gap": 0.9539926648139954,
+ "last_committed_score_gap": 6.229661084944382e-05,
+ "last_cutoff_score_margin": 6.229661084944382e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.530093378387392e-05,
+ "last_raw_normalized_gap": 0.9539926648139954,
+ "last_raw_score_gap": 6.229661084944382e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "316632418cada465775c6209acb8f31664b1f4b21e462cee1628aae82b2d870a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f9ea839b00ccbae5fc94503812a8696bddc4409fa500d01dd84dd60dcbbe3c18",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f9ea839b00ccbae5fc94503812a8696bddc4409fa500d01dd84dd60dcbbe3c18",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7533553545945324e-05,
+ "last_committed_normalized_gap": 0.44979479908943176,
+ "last_committed_score_gap": 7.886501407483593e-06,
+ "last_cutoff_score_margin": 7.886501407483593e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7533553545945324e-05,
+ "last_raw_normalized_gap": 0.44979479908943176,
+ "last_raw_score_gap": 7.886501407483593e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "f9ea839b00ccbae5fc94503812a8696bddc4409fa500d01dd84dd60dcbbe3c18",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2740634701913223e-05,
+ "last_committed_normalized_gap": 0.9081440567970276,
+ "last_committed_score_gap": 1.1570331480470486e-05,
+ "last_cutoff_score_margin": 1.1570331480470486e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2740634701913223e-05,
+ "last_raw_normalized_gap": 0.9081440567970276,
+ "last_raw_score_gap": 1.1570331480470486e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "801fd03386c6e336a563b4a5512251dba391eb4fc939a95688bba95b2a420e1e",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b2de68ad8274a940f1248d243de4929b9bef439bcfdc6566cca42d2dd2d3d5ee",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b2de68ad8274a940f1248d243de4929b9bef439bcfdc6566cca42d2dd2d3d5ee",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.019271268087323e-07,
+ "last_committed_normalized_gap": 0.5117731094360352,
+ "last_committed_score_gap": 3.0805011874690535e-07,
+ "last_cutoff_score_margin": 3.0805011874690535e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.019271268087323e-07,
+ "last_raw_normalized_gap": 0.5117731094360352,
+ "last_raw_score_gap": 3.0805011874690535e-07,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "b2de68ad8274a940f1248d243de4929b9bef439bcfdc6566cca42d2dd2d3d5ee",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 152
+ }
+ ],
+ "task_id": 704
+ }
+ ]
+ },
+ "source_files": {
+ "paths": [
+ "scripts/pilot_evaluate_hrr.py",
+ "src/recurquant/cache.py",
+ "src/recurquant/evaluation.py",
+ "src/recurquant/evidence.py",
+ "src/recurquant/metrics.py",
+ "src/recurquant/mixed_quantization.py",
+ "src/recurquant/packed_cache.py",
+ "src/recurquant/public_data.py",
+ "src/recurquant/query_energy.py",
+ "src/recurquant/transition_observer.py",
+ "src/recurquant/quantization.py",
+ "src/recurquant/qwen35.py",
+ "src/recurquant/row_policy.py"
+ ],
+ "sha256_end": {
+ "scripts/pilot_evaluate_hrr.py": "bc87ef6b39df47390503c2688f855dda468454ce06488d3343c8ae9a3b28c9d1",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "1c4bd0d45fe7f07ba6c842e07e4733e69c3e2abe52c3e8a129cba3299c08f9da",
+ "src/recurquant/packed_cache.py": "2dd1c3d09cf6127b69f79e2a682fdd84856be4721e44ef421c30a9df0b6c3790",
+ "src/recurquant/public_data.py": "561148178b4d4d538de897a32834895cef5303121acae3ecdae9e3bf2e325370",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/query_energy.py": "4484ee2f2f2e64c8d30810012c646a186b4635cf617244e42c7bfeac01493d63",
+ "src/recurquant/qwen35.py": "effe73245155272c98668e769e47e112a5c9f6e0415e8b372c1caa260374b6d3",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708",
+ "src/recurquant/transition_observer.py": "c883602bd8beb8c692f621f5a188c63c311b26be0d8d1584c397edc58eb34b7b"
+ },
+ "sha256_start": {
+ "scripts/pilot_evaluate_hrr.py": "bc87ef6b39df47390503c2688f855dda468454ce06488d3343c8ae9a3b28c9d1",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "1c4bd0d45fe7f07ba6c842e07e4733e69c3e2abe52c3e8a129cba3299c08f9da",
+ "src/recurquant/packed_cache.py": "2dd1c3d09cf6127b69f79e2a682fdd84856be4721e44ef421c30a9df0b6c3790",
+ "src/recurquant/public_data.py": "561148178b4d4d538de897a32834895cef5303121acae3ecdae9e3bf2e325370",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/query_energy.py": "4484ee2f2f2e64c8d30810012c646a186b4635cf617244e42c7bfeac01493d63",
+ "src/recurquant/qwen35.py": "effe73245155272c98668e769e47e112a5c9f6e0415e8b372c1caa260374b6d3",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708",
+ "src/recurquant/transition_observer.py": "c883602bd8beb8c692f621f5a188c63c311b26be0d8d1584c397edc58eb34b7b"
+ },
+ "stable": true
+ },
+ "storage": {
+ "candidates": {
+ "adaptive_mse_target_directional_fisher_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ },
+ "causal_observability_confirm2_mse_target_fisher_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "observability_diagonal_bytes": 147456,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "physical_reduction_realized_including_selector": true,
+ "previous_raw_mask_bytes": 4608,
+ "resident_bytes": 2564096,
+ "resident_bytes_including_selector": 2716160,
+ "resident_compression_ratio": 7.361022364217252,
+ "resident_compression_ratio_including_selector": 6.948916116870876,
+ "scale_bytes": 73728,
+ "selector_auxiliary_bytes": 152064
+ },
+ "causal_observability_mse_target_fisher_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "observability_diagonal_bytes": 147456,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "physical_reduction_realized_including_selector": true,
+ "previous_raw_mask_bytes": 4608,
+ "resident_bytes": 2564096,
+ "resident_bytes_including_selector": 2716160,
+ "resident_compression_ratio": 7.361022364217252,
+ "resident_compression_ratio_including_selector": 6.948916116870876,
+ "scale_bytes": 73728,
+ "selector_auxiliary_bytes": 152064
+ },
+ "query_ema32_confirm2_mse_target_fisher_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "physical_reduction_realized_including_selector": true,
+ "resident_bytes": 2564096,
+ "resident_bytes_including_selector": 2716160,
+ "resident_compression_ratio": 7.361022364217252,
+ "resident_compression_ratio_including_selector": 6.948916116870876,
+ "scale_bytes": 73728,
+ "selector_auxiliary_bytes": 152064
+ },
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "physical_reduction_realized_including_selector": true,
+ "resident_bytes": 2564096,
+ "resident_bytes_including_selector": 2711552,
+ "resident_compression_ratio": 7.361022364217252,
+ "resident_compression_ratio_including_selector": 6.960725075528701,
+ "scale_bytes": 73728,
+ "selector_auxiliary_bytes": 147456
+ },
+ "target_directional_fisher_difference_int4": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "resident_bytes": 2564096,
+ "resident_compression_ratio": 7.361022364217252,
+ "scale_bytes": 73728
+ }
+ },
+ "fp32_reference_recurrent_state_bytes": 18874368
+ }
+ },
+ "schema_version": 1
+}
diff --git a/research/CLAIM_BOUNDARY.md b/research/CLAIM_BOUNDARY.md
index fdec839..b39ecdc 100644
--- a/research/CLAIM_BOUNDARY.md
+++ b/research/CLAIM_BOUNDARY.md
@@ -68,13 +68,23 @@ was not reached and ranked `[8, 16)` remained unopened. Experiment 007 supports
no generalization, novelty, latency, deployment, state-of-the-art, or
breakthrough claim.
-Experiment 008 preregisters CORA-C2 on a separate `[16, 32)` development
-window. Its implementation combines a causal diagonal approximation to the
-Gated DeltaNet error-transition observability recurrence, exact Q4-to-Q8 row
-squared-error benefit, fixed target-Fisher layer quotas, and Confirmation-2.
-That combination is a testable mechanism hypothesis, not an established novel
-method. No Experiment 008 quality result has yet been observed, and ranked
-`[8, 16)` remains protected.
+Experiment 008 tested CORA-C2 on a separate frozen `[16, 32)` development
+window. CORA-C2 lowered macro excess NLL by 26.17% relative to static
+target-Fisher and 21.62% relative to adaptive MSE, but it was 10.54% worse than
+CQER-32. Raw CORA was 3.35% worse than CQER-32. Confirmation-2 reduced
+normalized committed-mask churn by 79.99%, but worsened raw-CORA NLL by 6.96%,
+above the frozen 1% limit. Five advancement checks failed, the independent
+verifier was not reached, and ranked `[8, 16)` remained unopened. Experiment
+008 therefore supports neither improvement over CQER-32 nor a general benefit
+from its observability or two-hit mechanisms.
+
+Observability-weighted quantization error is not a new principle. Classical
+finite-wordlength state-space analysis expresses output noise using the
+quantization-noise covariance and observability Gramian. CORA's diagonal
+observability score times measured row distortion belongs to that same broad
+mathematical family. Its Gated DeltaNet adaptation may still be a useful
+engineering hypothesis, but the failed development result does not establish
+it as a contribution.
## Claims prohibited without new evidence
diff --git a/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md b/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
index 2174a0b..75ad1cf 100644
--- a/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
+++ b/research/EXPERIMENT_008_CORA_C2_PROTOCOL.md
@@ -1,12 +1,14 @@
# Experiment 008: CORA-C2 protocol
-> **Status: frozen before any quality evaluation on ranked window `[16, 32)`.**
+> **Status: frozen before quality evaluation; development gate later failed.**
>
> CORA-C2 means **Causal Observability Row Allocation with Confirmation-2**.
> The state-transition formula, diagonal approximation, normalization,
> confirmation rule, quotas, storage accounting, development window,
> comparators, metrics, and advancement rule are fixed below. Ranked MBPP
-> window `[8, 16)` remains protected and unopened.
+> window `[8, 16)` remains protected and unopened. The authenticated outcome
+> is recorded in [`EXPERIMENT_008_RESULT.md`](EXPERIMENT_008_RESULT.md); the
+> protocol below remains the pre-result specification.
Protocol frozen: 2026-07-23
diff --git a/research/EXPERIMENT_008_RESULT.md b/research/EXPERIMENT_008_RESULT.md
new file mode 100644
index 0000000..d0e04be
--- /dev/null
+++ b/research/EXPERIMENT_008_RESULT.md
@@ -0,0 +1,128 @@
+# Experiment 008 result: CORA-C2 rejected before holdout
+
+> **Status: development gate failed; protected holdout unopened.**
+>
+> CORA-C2 beat static target-Fisher by `26.17%` and adaptive MSE by
+> `21.62%` on the frozen 16-task development window. It did not beat CQER-32:
+> macro excess NLL was `0.391586` for CORA-C2 and `0.354250` for CQER-32.
+> Confirmation-2 reduced normalized committed-mask churn by `79.99%`, but it
+> worsened raw-CORA NLL by `6.96%`, above the frozen `1%` limit. Five
+> preregistered checks failed. Ranked MBPP window `[8, 16)` remains unopened.
+
+Date recorded: 2026-07-23
+
+## Authenticated diagnostic
+
+The development identity, implementation, six methods, storage contract, and
+13-condition advancement rule were frozen before this run. The run used the
+separate ranked MBPP calibration window `[16, 32)`.
+
+| Field | Value |
+| --- | --- |
+| Artifact | `evidence/experiment008-cora-c2-development-16task-69eec866.json` |
+| Artifact kind | `recurquant_cora_c2_development_quality_diagnostic` |
+| Clean implementation commit | `69eec866b90f2ae5386da23a8f34fba4c428d9e1` |
+| File SHA-256 | `03da6dc27641e7816f6f03bd059876322974530911d28e1d9719dd992af8f9db` |
+| Canonical evidence SHA-256 | `24877f73068f765ef0bae6b2bee54ff95d5204977b3c08dfe95516d651c2fb70` |
+| Created at | `2026-07-22T20:51:42.559117+00:00` |
+| Model | `Qwen/Qwen3.5-0.8B-Base` at `dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68` |
+| Device and dtype | CUDA, bfloat16 |
+| Task IDs | `666`, `795`, `944`, `653`, `857`, `884`, `878`, `822`, `687`, `820`, `920`, `771`, `869`, `851`, `728`, `704` |
+| Aligned scored tokens | 798 |
+| Bootstrap | 10,000 paired task resamples, seed 2339 |
+| Repository and source files | clean and stable at start and end |
+| Evidence verification | valid, with no verifier errors |
+
+Independent rechecks reproduced every paired bootstrap contrast, source and
+selector hash, task and token identity, byte count, quota, and transition
+handshake. The protected `[8, 16)` loader guards also passed after the run.
+This is an authenticated method failure, not an execution failure.
+
+## Frozen-primary result
+
+| Method | Role | Macro excess NLL | Mean KL | CVaR95 KL | Top-1 agreement |
+| --- | --- | ---: | ---: | ---: | ---: |
+| `target_directional_fisher_difference_int4` | static Fisher | `0.5303981081` | `0.5286498712` | `3.3478351496` | `0.7586527802` |
+| `adaptive_mse_target_directional_fisher_quota` | per-write row MSE | `0.4996191338` | `0.4905063435` | `3.0781028867` | `0.7698915936` |
+| `query_ema32_weighted_mse_target_fisher_quota` | CQER-32 | **`0.3542503491`** | **`0.3641314693`** | **`2.4055756629`** | `0.8027831651` |
+| `causal_observability_mse_target_fisher_quota` | raw CORA | `0.3661060743` | `0.3896415923` | `2.6112778820` | `0.8017726764` |
+| `query_ema32_confirm2_mse_target_fisher_quota` | CQER-32+C2 | `0.3951669149` | `0.4165541902` | `2.7546808161` | **`0.8111176938`** |
+| `causal_observability_confirm2_mse_target_fisher_quota` | frozen primary | `0.3915858567` | `0.4186489517` | `2.8813917115` | `0.8103738017` |
+
+Comparator-minus-primary paired NLL contrasts were:
+
+| Comparator | Mean improvement | Paired 95% interval | Interpretation |
+| --- | ---: | ---: | --- |
+| Static target-Fisher | `0.1388122514` | `[0.0436136126, 0.2466757520]` | 26.17% reduction; pass |
+| Adaptive MSE | `0.1080332771` | `[0.0277902825, 0.1880076991]` | 21.62% reduction; descriptive pass |
+| CQER-32 | `-0.0373355076` | `[-0.1060209079, 0.0192620480]` | 10.54% worse; fail |
+| Raw CORA | `-0.0254797824` | `[-0.0689048139, 0.0198680538]` | C2 was 6.96% worse; fail |
+
+CORA's transition-aware point estimate was also `3.35%` worse than CQER-32,
+so the observability recurrence did not improve the strongest causal selector.
+The uncertainty interval for raw CORA versus CORA-C2 crossed zero, but the
+frozen advancement rule used the prespecified relative-worsening threshold as
+well as the paired comparisons.
+
+## Confirmation-2 result
+
+Confirmation-2 behaved as a strong debouncer:
+
+| Selector | Normalized committed churn |
+| --- | ---: |
+| Raw CORA | `0.0129384697` |
+| CORA-C2 | `0.0025893428` |
+| Relative reduction | **`79.9873%`** |
+
+That stability was not free. CORA-C2 raised NLL from `0.366106` to `0.391586`.
+The same pattern appeared in the CQER ablation: C2 raised NLL from `0.354250`
+to `0.395167`. C2 improved top-1 agreement for both selectors, but its NLL and
+tail-KL cost rules it out as the frozen advancement mechanism. This experiment
+supports treating two-hit admission as a switching-quality trade-off, not as a
+generally beneficial selector.
+
+## Gate decision
+
+| Frozen check | Observed | Result |
+| --- | ---: | --- |
+| Lower NLL than static, adaptive, and CQER | CQER `0.354250` < primary `0.391586` | **fail** |
+| NLL reduction vs static | 26.17%, minimum 20% | pass |
+| NLL reduction vs adaptive | 21.62%, minimum 5% | pass |
+| NLL reduction vs CQER | -10.54%, minimum 5% | **fail** |
+| Paired lower bound vs static | `0.043614 > 0` | pass |
+| Paired lower bound vs CQER | `-0.106021 <= 0` | **fail** |
+| Top-1 margin vs static/adaptive | primary was higher | pass |
+| Top-1 not lower than CQER | `0.810374 >= 0.802783` | pass |
+| CVaR95 margin vs static/adaptive | primary was lower | pass |
+| Raw CORA NLL reduction vs CQER | -3.35%, minimum 3% | **fail** |
+| C2 churn reduction vs raw CORA | 79.99%, minimum 50% | pass |
+| C2 top-1 not lower than raw CORA | `0.810374 >= 0.801773` | pass |
+| C2 NLL worsening vs raw CORA | 6.96%, maximum 1% | **fail** |
+| Exact bytes, quotas, handshakes, finiteness, identity | all exact | pass |
+
+The packed state used `2,564,096` bytes. CORA-C2 used another `152,064`
+resident bytes for its FP32 observability diagonal and bit-packed prior raw
+masks, for `2,716,160` bytes including selector state. This is not an
+equal-total-memory, peak-memory, latency, throughput, or fused-kernel result.
+
+## Interpretation and decision
+
+The negative result isolates two useful facts:
+
+1. The frozen diagonal causal-observability proxy was not better than the much
+ simpler query-energy EMA on this development window.
+2. Requiring two consecutive raw-mask hits removes most switching but is too
+ sticky for the quality objective at this token scale.
+
+Experiment 008 stops here. The independent numerical verifier is not built,
+the protected `[8, 16)` window is not opened, and no formula, threshold, or
+ablation will be tuned and relabelled as Experiment 008.
+
+The underlying observability-weighted-error idea also has classical finite-
+wordlength state-space precedent. CORA is best understood as an experimental
+Gated DeltaNet adaptation of that principle, not a newly invented principle.
+Any successor must use a new protocol and development identity, replace or
+substantially strengthen the failed signal, and compare against CQER-32.
+
+Experiment 008 makes no novelty, state-of-the-art, deployment, or breakthrough
+claim.
diff --git a/research/PRIOR_ART.md b/research/PRIOR_ART.md
index cd8da01..385c6d4 100644
--- a/research/PRIOR_ART.md
+++ b/research/PRIOR_ART.md
@@ -1,6 +1,6 @@
# Prior-art audit
-Last searched: 2026-07-22
+Last searched: 2026-07-23
This is a living claim boundary, not proof that no related work exists. Repeat
the search before any paper or novelty statement.
@@ -44,6 +44,28 @@ the search before any paper or novelty statement.
- [AVMP](https://arxiv.org/abs/2605.22416) dynamically rebalances KV and SSM
memory pools.
+## Transition- and observability-weighted error
+
+- Classical finite-wordlength state-space analysis already propagates
+ quantization-noise covariance to output noise through an observability
+ Gramian. In particular,
+ [Hilaire, Menard, and Sentieys (EUSIPCO 2007)](https://www.eurasip.org/Proceedings/Eusipco/Eusipco2007/Papers/b2l-g05.pdf)
+ writes the state-noise contribution as `tr(Psi_X * W_o)`. With diagonal
+ error covariance, this is the same broad algebraic family as weighting each
+ row's distortion by a diagonal observability term. RecurQuant cannot claim
+ to have invented observability-weighted quantization error.
+- [WriteSAE](https://arxiv.org/abs/2605.12770) derives the Gated DeltaNet cache-
+ write perturbation transition and its later-query/logit effect. It is an
+ interpretability method rather than a quantizer, but it precludes claiming
+ that the transition or downstream-influence principle is new.
+- [TQS-PTQ](https://arxiv.org/abs/2606.13300) treats quantized rollout error as
+ a dynamical-system trajectory-sensitivity problem and uses the score for
+ mixed-precision allocation. It targets offline time-series model tensors,
+ not causal Gated DeltaNet cache rows.
+- Nemotron 3 Super and Ultra propagate recurrent-cache errors through products
+ of state transitions. They do not use CORA's online row allocator, but they
+ preclude a broad "first transition-aware recurrent-cache quantizer" claim.
+
## Mixed-precision cache allocation
- [KVTuner](https://arxiv.org/abs/2502.04420),
@@ -55,6 +77,17 @@ the search before any paper or novelty statement.
[PM-KVQ](https://arxiv.org/abs/2505.18610), and
[SpectrumKV](https://arxiv.org/abs/2606.08635) cover fixed-average-bit,
progressive, or per-token mixed-precision KV policies.
+- [MixKVQ](https://arxiv.org/abs/2512.19206) combines query relevance and
+ intrinsic quantization difficulty for budgeted mixed-precision key-cache
+ channels. It is the closest published analogue to multiplying a read-
+ importance signal by physical quantization benefit.
+- [Kitty](https://arxiv.org/abs/2511.18643) dynamically promotes a fixed quota
+ of key-cache channels using runtime sensitivity and magnitude, with Triton
+ kernels. It targets transformer KV caches rather than recurrent matrices.
+- [OuroMamba](https://arxiv.org/abs/2503.10959) updates outlier-channel choices
+ at every timestep and assigns higher precision dynamically for Vision-Mamba
+ activations. It precludes a broad "first online dynamic mixed-precision SSM
+ channel" claim.
These works target transformer KV caches rather than Gated DeltaNet recurrent
matrices, but they preclude broad claims that sensitivity-guided, per-layer,
@@ -73,17 +106,22 @@ dynamic, or equal-budget cache precision allocation is new.
## Audited gap, not a novelty claim
-The scan did not locate a published implementation combining all three:
+The scan did not locate a published implementation combining all four:
1. sub-8-bit **persistent** Gated DeltaNet cache storage;
-2. Gated DeltaNet-specific read/sensitivity-based precision allocation; and
-3. a packed end-to-end runtime kernel with measured quality and latency.
+2. a causal transition-derived diagonal future-read score;
+3. physical row-distortion allocation with confirmation-gated admissions; and
+4. a packed end-to-end runtime kernel with measured quality and latency.
That negative search is not proof of firstness, and the current RecurQuant
-alpha does not satisfy item 3: it physically stores the cache in packed form
+alpha does not satisfy item 4: it physically stores the cache in packed form
but materializes one recurrent state for each layer call and has no fused
recurrence kernel or latency result.
+Experiment 008 also failed its frozen development gate: CORA-C2 and raw CORA
+were both worse on macro excess NLL than CQER-32. Exact-combination novelty
+would not rescue a method that has not demonstrated the required quality.
+
The frozen v0.2 protocol compares uniform INT4, one uniform INT8 reference,
three same-byte random layer placements, MSE-selected placement, nearest and
stochastic rounding, and the prespecified layer-0 policy. It does **not**
diff --git a/research/STATUS.md b/research/STATUS.md
index 400abf3..1714acc 100644
--- a/research/STATUS.md
+++ b/research/STATUS.md
@@ -33,21 +33,23 @@ and integrity checks passed. Experiment 007 therefore stopped before its FP64
prerequisite or holdout; ranked `[8, 16)` remains unopened. See
[`EXPERIMENT_007_RESULT.md`](EXPERIMENT_007_RESULT.md).
-Experiment 008 is preregistered as CORA-C2: a causal diagonal observability
-predictor derived from the actual Gated DeltaNet error transition, multiplied
-by physical Q4-to-Q8 row squared-error benefit, with a two-consecutive-hit
-admission rule. Its exact `[16, 32)` development identity, six methods, storage
-contract, and 13-condition advancement rule were frozen before model loading.
-The implementation and fail-closed evaluator are ready, but no Experiment 008
-quality result has been observed yet. Ranked `[8, 16)` remains protected. See
-[`EXPERIMENT_008_CORA_C2_PROTOCOL.md`](EXPERIMENT_008_CORA_C2_PROTOCOL.md).
+Experiment 008 tested CORA-C2 on its separately frozen 16-task `[16, 32)`
+development window. CORA-C2 improved macro excess NLL by 26.17% over static
+target-Fisher and 21.62% over adaptive MSE, but it was 10.54% worse than
+CQER-32. Raw CORA was also 3.35% worse than CQER-32. Confirmation-2 reduced
+normalized committed-mask churn by 79.99%, yet worsened raw-CORA NLL by 6.96%,
+above the frozen 1% limit. Five advancement checks failed. The authenticated
+result is recorded in [`EXPERIMENT_008_RESULT.md`](EXPERIMENT_008_RESULT.md).
+The independent verifier was not reached and ranked `[8, 16)` remains
+protected.
Any successor must use a new protocol and development split. The nearest known
mechanism-level comparison is MixKVQ's query-magnitude and quantization-
difficulty channel scoring for KV caches; CQER-32 cannot be described as the
first query-aware mixed-precision method.
-No v0.3 improvement, novelty, speed, or breakthrough claim is supported.
+No v0.3 improvement over CQER-32, novelty, speed, or breakthrough claim is
+supported.
## v0.2 confirmed release
From 5be8d48369d94081e55aa389c25f63c303c7b0dd Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Sun, 26 Jul 2026 11:33:08 +0800
Subject: [PATCH 15/22] research: freeze exact-byte RHT-CQER screen
---
research/CLAIM_BOUNDARY.md | 15 +-
research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md | 196 +++
research/MULTIBIT_REFERENCE_DESIGN.md | 115 ++
research/PRIOR_ART.md | 22 +-
research/STATUS.md | 27 +-
scripts/screen_rht_cqer.py | 1246 ++++++++++++++++++
src/recurquant/__init__.py | 29 +
src/recurquant/mixed_quantization.py | 75 +-
src/recurquant/multibit_policy.py | 256 ++++
src/recurquant/multibit_quantization.py | 685 ++++++++++
src/recurquant/packed_cache.py | 163 ++-
src/recurquant/qwen35.py | 26 +
src/recurquant/rht.py | 222 ++++
tests/test_multibit_policy.py | 174 +++
tests/test_multibit_quantization.py | 707 ++++++++++
tests/test_rht.py | 249 ++++
tests/test_rht_mixed_quantization.py | 169 +++
tests/test_right_rht_query_ema_cache.py | 137 ++
tests/test_screen_rht_cqer.py | 353 +++++
19 files changed, 4848 insertions(+), 18 deletions(-)
create mode 100644 research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md
create mode 100644 research/MULTIBIT_REFERENCE_DESIGN.md
create mode 100644 scripts/screen_rht_cqer.py
create mode 100644 src/recurquant/multibit_policy.py
create mode 100644 src/recurquant/multibit_quantization.py
create mode 100644 src/recurquant/rht.py
create mode 100644 tests/test_multibit_policy.py
create mode 100644 tests/test_multibit_quantization.py
create mode 100644 tests/test_rht.py
create mode 100644 tests/test_rht_mixed_quantization.py
create mode 100644 tests/test_right_rht_query_ema_cache.py
create mode 100644 tests/test_screen_rht_cqer.py
diff --git a/research/CLAIM_BOUNDARY.md b/research/CLAIM_BOUNDARY.md
index b39ecdc..c853a22 100644
--- a/research/CLAIM_BOUNDARY.md
+++ b/research/CLAIM_BOUNDARY.md
@@ -1,6 +1,6 @@
# Claim boundary
-Last reviewed: 2026-07-23
+Last reviewed: 2026-07-26
## What is already established
@@ -17,6 +17,9 @@ Last reviewed: 2026-07-23
for mixed-precision KV-cache channel selection in
[MixKVQ](https://arxiv.org/abs/2512.19206).
- Mixed precision and memory-budget allocation are broad existing ideas.
+- Randomized Hadamard transforms and learned rotations are established
+ quantization outlier-suppression techniques. RecurQuant cannot claim to have
+ invented rotation-based or Hadamard-based quantization.
## Scoped v0.2 confirmation finding
@@ -86,6 +89,14 @@ mathematical family. Its Gated DeltaNet adaptation may still be a useful
engineering hypothesis, but the failed development result does not establish
it as a contribution.
+Experiment 009 freezes RHT-CQER-32, a deterministic right-side randomized
+Hadamard codec composed with CQER-32. Its Stage-A screen uses only already-open
+task 666; no quality result exists yet. The codec preserves the packed-state
+byte count but regenerates SHA-256-derived signs and materializes FP32 transform
+workspaces in the current Python path. Even a positive quality result would not
+establish novelty or speed because randomized Hadamard and rotation quantizers
+are prior art and the implementation has no fused kernel benchmark.
+
## Claims prohibited without new evidence
- "First recurrent-state quantization method."
@@ -96,7 +107,7 @@ it as a contribution.
recurrent-state payloads and scales only.
- "Speeds up inference" without passing the separate latency gate under the
stated benchmark.
-- "Breakthrough," "state of the art," or "novel" based on the v0.2 evidence.
+- "Breakthrough," "state of the art," or "novel" based on the current evidence.
- Authorship of Qwen3.5 or any other base model.
## What this project contributes
diff --git a/research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md b/research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md
new file mode 100644
index 0000000..6001fc1
--- /dev/null
+++ b/research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md
@@ -0,0 +1,196 @@
+# Experiment 009: right-RHT CQER protocol
+
+> **Status: screening and development protocol frozen before quality
+> evaluation.**
+>
+> This protocol defines a cheap falsification screen on one already-open task
+> and, only if that screen passes, a separately authenticated 32-task
+> development run. Ranked MBPP window `[8, 16)` remains protected and must not
+> be loaded, tokenized, or evaluated by either stage.
+
+Protocol frozen: 2026-07-26
+
+## Question
+
+Does a deterministic orthonormal transform along each Gated DeltaNet state
+row's value axis reduce absmax INT4 outlier error enough to improve CQER-32 at
+the same packed recurrent-state and selector byte counts?
+
+The candidate method name is:
+
+```text
+right_rht_query_ema32_weighted_mse_target_fisher_quota
+```
+
+The short research name is **RHT-CQER-32**. This is an experimental codec
+variant, not a novelty, speed, or breakthrough claim.
+
+## Codec
+
+For recurrent row `s` with value width `d = 128`, layer `l`, and value head
+`h`, define a deterministic sign diagonal `D[l,h]` and the unnormalized
+Walsh-Hadamard matrix `H` satisfying `H H^T = d I`:
+
+```text
+encode(s) = s D[l,h] H / sqrt(d)
+decode(z) = z H D[l,h] / sqrt(d)
+```
+
+The FP32 encode/decode pair is orthonormal up to floating-point error. It
+operates only within one existing `[head, key-row]` group, so it does not mix
+CQER row identities or query coordinates.
+
+The sign schedule is frozen as follows:
+
+- seed: `2339`;
+- domain separator: `recurquant.right-rht.signs.v1\0`;
+- SHA-256 input fields: seed, model-layer index, head index, width, and block
+ counter, each encoded as unsigned little-endian 64-bit values;
+- digest bits are consumed byte-major and least-significant-bit first;
+- bit one maps to `+1`, bit zero maps to `-1`;
+- the concatenated INT8 sign schedule for model layers
+ `0,1,2,4,5,6,8,9,10,12,13,14,16,17,18,20,21,22`, 16 heads, and width 128
+ has SHA-256
+ `2d5137b5ebeb325f100b34190618783b9e47bd2ce9b27b6cdf3cdc94459dabc3`.
+
+Signs and FP32 transform workspaces are regenerated transiently in the current
+reference implementation. No sign tensor is resident in the cache. Runtime,
+temporary workspace, allocator peak, and whole-model memory must be reported
+separately before any systems claim.
+
+## Quantization and selection
+
+RHT-CQER-32 uses the existing physical Q4/Q8 group formats, FP16 scale per
+row, nearest rounding, and one packed precision bit per row. Both CQER
+endpoints are evaluated through the same codec:
+
+```text
+e4 = s - decode(Q4(encode(s)))
+e8 = s - decode(Q8(encode(s)))
+benefit = mean_value(e4^2 - e8^2)
+score = EMA32(normalized_query^2) * benefit
+```
+
+The causal query-energy EMA, stable ranking, stage/consume handshake, and
+target-directional-Fisher per-layer quotas are unchanged from Experiment 007.
+Confirmation-2 is forbidden.
+
+The quotas remain:
+
+```text
+0:355, 1:380, 2:269, 4:179, 5:185, 6:105,
+8:80, 9:43, 10:84, 12:30, 13:62, 14:54,
+16:45, 17:27, 18:7, 20:9, 21:7, 22:55
+```
+
+They sum to 1,976 Q8 rows. For both CQER-32 and RHT-CQER-32:
+
+| Component | Bytes |
+| --- | ---: |
+| Q4/Q8 payloads | 2,485,760 |
+| FP16 scales | 73,728 |
+| precision masks | 4,608 |
+| **packed recurrent state** | **2,564,096** |
+| FP32 query-energy EMA | 147,456 |
+| **resident bytes including selector** | **2,711,552** |
+
+## Stage A: already-open falsification screen
+
+Stage A uses only task `666`, already opened and authenticated in Experiment
+008:
+
+```text
+ranked calibration index: 16
+row SHA-256:
+b4f5989005c921c3ab94ab52c8115e79f99a22390bc1d6e6235d36fd02687fb9
+prompt tokens: 69
+code tokens: 39
+aligned scored tokens: 38
+```
+
+The evaluator must compare reference FP32 state, frozen CQER-32, and
+RHT-CQER-32 in one teacher-forced run. It must record aligned excess NLL, mean
+KL, CVaR95 KL, maximum KL, top-1 agreement, per-write state error, exact
+storage, quotas, observation handshakes, finiteness, source hashes, repository
+identity, and artifact hashes.
+
+Stage A passes only if every condition holds:
+
+1. the repository is clean and unchanged throughout the run;
+2. the row identity and token counts above match before model loading;
+3. all packed states occupy exactly `2,564,096` bytes and selector-aware
+ totals equal `2,711,552` bytes;
+4. every layer has its exact frozen quota, all observations are consumed once,
+ and all logits and metrics are finite;
+5. independent unit evidence gives right-RHT inverse relative L2 below
+ `3e-7` and exact physical-pack versus transformed-QDQ reconstruction;
+6. closed-loop aggregate per-write state SSE is at least 50% lower than
+ CQER-32;
+7. RHT-CQER-32 aligned excess NLL is at least 10% lower than CQER-32;
+8. RHT-CQER-32 mean KL is lower; and
+9. RHT-CQER-32 top-1 agreement is not lower.
+
+Task `666` was selected before RHT quality was measured because it is the first
+task in the already-authenticated Experiment 008 window and one of CORA's
+recorded tail failures. Passing one exposed task authorizes only Stage B.
+Failure stops this candidate without trying another sign seed, normalization,
+transform axis, or threshold on the same task.
+
+## Stage B: new 32-task development run
+
+Only after Stage A passes from a committed authenticated artifact may the
+ranked calibration window `[32, 64)` be resolved. The exact ordered task IDs,
+row hashes, content manifest, prompt/code token counts, and tokenizer manifest
+must be committed in an identity amendment before model weights are loaded or
+any quality metric is observed.
+
+The Stage B methods are frozen to:
+
+1. static target-directional Fisher Q4/Q8;
+2. adaptive per-write MSE under target-Fisher layer quotas;
+3. CQER-32; and
+4. RHT-CQER-32.
+
+Primary metric: task-macro aligned excess next-token NLL relative to FP32
+recurrent state. Also report mean KL, task-macro CVaR95 KL, maximum KL, top-1
+agreement, full-code secondary metrics, task/token counts, and 10,000 paired
+task bootstraps with seed 2339.
+
+Stage B advances only if all integrity conditions from Stage A hold and:
+
+1. RHT-CQER-32 lowers macro excess NLL by at least 20% versus CQER-32;
+2. the paired 95% lower bound for CQER-minus-RHT excess NLL is above zero;
+3. RHT-CQER-32 wins on at least 20 of 32 task-level excess-NLL comparisons;
+4. macro mean KL is lower than CQER-32;
+5. macro CVaR95 KL is no higher than CQER-32;
+6. macro top-1 agreement is no more than `0.005` below CQER-32;
+7. no task's RHT-minus-CQER excess-NLL disadvantage exceeds `0.25`; and
+8. aggregate per-write state SSE is at least 50% lower than CQER-32.
+
+If any condition fails, authenticate the negative result and stop
+RHT-CQER-32. Do not change the transform seed, thresholds, task window, or
+method name after results are visible.
+
+## Claim and prior-art boundary
+
+Randomized Hadamard and learned rotation methods are established in
+[QuIP#](https://arxiv.org/abs/2402.04396),
+[QuaRot](https://arxiv.org/abs/2404.00456),
+[SpinQuant](https://arxiv.org/abs/2405.16406), and
+[TurboQuant](https://arxiv.org/abs/2504.19874). MambaQuant applies
+rotation-based outlier suppression to an adjacent state-space architecture.
+CQER also has close query-relevance and quantization-difficulty precedent in
+MixKVQ.
+
+Therefore a positive result would support only this narrow engineering and
+empirical contribution: a deterministic physical right-RHT codec composed
+with causal row allocation for a pinned Gated DeltaNet recurrent cache under
+an exact byte contract. It would not establish that rotations, Hadamard
+quantization, query-aware precision, or recurrent-state quantization are new.
+
+Before release-level or paper-level claims, the candidate still requires an
+independent numeric verifier, another model size, natural-text and long-context
+tasks, closest-method comparisons, optimized packed kernels, end-to-end
+latency and peak-memory measurements, and independent reproduction. Ranked
+window `[8, 16)` stays closed until those prerequisites are separately frozen
+and passed.
diff --git a/research/MULTIBIT_REFERENCE_DESIGN.md b/research/MULTIBIT_REFERENCE_DESIGN.md
new file mode 100644
index 0000000..3e2d468
--- /dev/null
+++ b/research/MULTIBIT_REFERENCE_DESIGN.md
@@ -0,0 +1,115 @@
+# Exact-byte Q4/Q6/Q8 reference design
+
+> **Status: implemented and unit-tested as a correctness-first reference.**
+>
+> This is not yet connected to the Qwen3.5 cache evaluator and has no quality,
+> latency, kernel, novelty, or deployment result.
+
+Last updated: 2026-07-26
+
+## Physical format
+
+Every 128-value recurrent-state row uses one symmetric signed quantizer and
+one FP16 scale:
+
+| Precision | Code range | Payload per row |
+| --- | ---: | ---: |
+| Q4 | `[-7, 7]` | 64 bytes |
+| Q6 | `[-31, 31]` | 96 bytes |
+| Q8 | `[-127, 127]` | 128 bytes |
+
+Q6 uses an exact little-endian bit stream: four two's-complement 6-bit codes
+occupy three bytes. Separate Q4, Q6, and Q8 pools are indexed by a canonical
+two-bit precision stream:
+
+```text
+0 = Q4
+1 = Q6
+2 = Q8
+3 = invalid
+```
+
+The public reference object validates its complete shape, scale, code-stream,
+pool, dtype, device, contiguity, and byte-count invariants when constructed.
+
+## Correct equal-byte accounting
+
+The pinned Qwen3.5 cache contains:
+
+```text
+18 layers * 16 heads * 128 rows = 36,864 row groups
+```
+
+The existing Q4/Q8 design spends one precision bit per row and promotes 1,976
+rows to Q8:
+
+```text
+payloads: 2,485,760 bytes
+scales: 73,728 bytes
+mask: 4,608 bytes
+total: 2,564,096 bytes
+```
+
+A general three-width design requires two bits per row, so its precision
+stream costs 9,216 bytes. At the same total state budget, it has exactly 3,808
+32-byte marginal steps:
+
+```text
+Q4 payload baseline: 2,359,296 bytes
+FP16 scales: 73,728 bytes
+two-bit codes: 9,216 bytes
+3,808 steps * 32: 121,856 bytes
+total: 2,564,096 bytes
+```
+
+This is **not** 3,952 Q6 rows and not an exact two-times coverage result. A row
+at Q6 consumes one step; a row at Q8 consumes two. The final counts depend on
+the allocator.
+
+To preserve every old layer's byte count, a layer with old Q8 quota `q` gets:
+
+```text
+K = 2q - 8
+```
+
+The eight-step subtraction pays for that layer's additional 256 precision-code
+bytes. The frozen per-layer step budgets sum to 3,808 and reproduce the
+2,564,096-byte total exactly.
+
+## Exact reference allocator
+
+For each row, the allocator receives complete weighted distortions
+`D4`, `D6`, and `D8`. It minimizes total distortion subject to:
+
+```text
+sum(precision_code) = K
+precision_code in {0, 1, 2}
+```
+
+The CPU reference uses dynamic programming over all complete row states. It is
+globally optimal even when the Q6-to-Q8 improvement is larger than the
+Q4-to-Q6 improvement, where naive independent marginal sorting can violate
+precedence. Exact ties give higher precision to the earlier flattened row.
+
+For `N` rows and step budget `K`, the reference complexity is:
+
+```text
+time: O(NK)
+choice storage: O(NK) bytes
+FP64 workspace: O(K)
+```
+
+This is an oracle/correctness path, not the final per-token runtime selector.
+An optimized deployment path would need a GPU allocator and a packed-native
+mixed dequantization/Gated DeltaNet kernel. INT6 has no native arithmetic path
+on the tested GPU, so end-to-end benchmarks—not payload math—must decide
+whether its additional bandwidth efficiency survives unpack cost.
+
+## Claim boundary
+
+Mixed-bit allocation, rate-distortion optimization, INT6 formats, and dynamic
+precision are established ideas. RateQuant, MixKVQ, OuroMamba, and related
+work are close prior art. The current contribution is limited to an auditable
+physical format, exact byte parity, and a globally optimal reference allocator
+for this recurrent-state geometry. A new frozen quality experiment is required
+before the design can be recommended over Q4/Q8 CQER.
diff --git a/research/PRIOR_ART.md b/research/PRIOR_ART.md
index 385c6d4..8e21f3e 100644
--- a/research/PRIOR_ART.md
+++ b/research/PRIOR_ART.md
@@ -1,6 +1,6 @@
# Prior-art audit
-Last searched: 2026-07-23
+Last searched: 2026-07-26
This is a living claim boundary, not proof that no related work exists. Repeat
the search before any paper or novelty statement.
@@ -93,6 +93,26 @@ These works target transformer KV caches rather than Gated DeltaNet recurrent
matrices, but they preclude broad claims that sensitivity-guided, per-layer,
dynamic, or equal-budget cache precision allocation is new.
+## Rotation and Hadamard codecs
+
+- [QuIP#](https://arxiv.org/abs/2402.04396) uses incoherence processing with
+ randomized Hadamard transforms for low-bit language-model quantization.
+- [QuaRot](https://arxiv.org/abs/2404.00456) uses computational invariance and
+ Hadamard rotations to remove activation outliers.
+- [SpinQuant](https://arxiv.org/abs/2405.16406) learns rotations for improved
+ LLM quantization, and
+ [TurboQuant](https://arxiv.org/abs/2504.19874) develops fast randomized
+ transforms for outlier suppression.
+- [MambaQuant](https://arxiv.org/abs/2501.13484) applies rotation-based
+ outlier suppression to an architecture adjacent to RecurQuant's recurrent
+ state setting.
+
+These methods make the transform principle established prior art.
+RHT-CQER-32's narrow hypothesis is whether a fixed, reproducible right-side
+transform composes usefully with physical causal row selection for one Gated
+DeltaNet cache layout. A positive result cannot support a broad first,
+rotation, Hadamard, or outlier-suppression novelty claim.
+
## Architecture evidence
- [Gated DeltaNet-2](https://arxiv.org/abs/2605.22791) separates channel-wise
diff --git a/research/STATUS.md b/research/STATUS.md
index 1714acc..029505d 100644
--- a/research/STATUS.md
+++ b/research/STATUS.md
@@ -2,7 +2,7 @@
## v0.3 experimental track
-Last updated: 2026-07-23
+Last updated: 2026-07-26
Experiment 005 stopped before holdout after its frozen real-storage-boundary
sign gate achieved `13/16 = 0.8125`, below the required `0.95`. Its permanent
@@ -43,10 +43,27 @@ result is recorded in [`EXPERIMENT_008_RESULT.md`](EXPERIMENT_008_RESULT.md).
The independent verifier was not reached and ranked `[8, 16)` remains
protected.
-Any successor must use a new protocol and development split. The nearest known
-mechanism-level comparison is MixKVQ's query-magnitude and quantization-
-difficulty channel scoring for KV caches; CQER-32 cannot be described as the
-first query-aware mixed-precision method.
+Experiment 009 now freezes RHT-CQER-32. Stage A is a one-task falsification
+screen on already-open task 666. It composes CQER-32 with a deterministic
+orthonormal right-side Hadamard codec while preserving the exact Q4/Q8 packed
+state and selector byte counts. Only a complete Stage-A pass may authorize
+identity resolution for the still-unopened `[32, 64)` development window.
+The protocol is in
+[`EXPERIMENT_009_RHT_CQER_PROTOCOL.md`](EXPERIMENT_009_RHT_CQER_PROTOCOL.md).
+No Experiment 009 quality result exists yet, and `[8, 16)` remains protected.
+
+In parallel, the repository now contains a correctness-first physical Q4/Q6/Q8
+packer and an exact dynamic-programming allocator. Its corrected two-bit
+metadata contract provides 3,808 marginal precision steps—not 3,952 rows—at
+the same `2,564,096` state bytes. It is not yet cache-integrated or
+quality-evaluated. See
+[`MULTIBIT_REFERENCE_DESIGN.md`](MULTIBIT_REFERENCE_DESIGN.md).
+
+The nearest known mechanism-level comparisons include MixKVQ's query-magnitude
+and quantization-difficulty scoring and established randomized-Hadamard or
+rotation quantizers. CQER-32 cannot be described as the first query-aware
+mixed-precision method, and RHT-CQER-32 cannot be described as the first
+rotation-based quantizer.
No v0.3 improvement over CQER-32, novelty, speed, or breakthrough claim is
supported.
diff --git a/scripts/screen_rht_cqer.py b/scripts/screen_rht_cqer.py
new file mode 100644
index 0000000..ce4c5d1
--- /dev/null
+++ b/scripts/screen_rht_cqer.py
@@ -0,0 +1,1246 @@
+#!/usr/bin/env python3
+"""Run the frozen Experiment 009 Stage-A right-RHT CQER screen.
+
+This evaluator has deliberately narrow data access: it can load only the
+already-open MBPP task 666. It has no task, seed, threshold, or window flags.
+Passing this one-task screen authorizes only the separately frozen Stage-B
+development identity; it is not confirmation, novelty, or speed evidence.
+"""
+
+from __future__ import annotations
+
+import argparse
+import hashlib
+import importlib
+import importlib.metadata
+import json
+import math
+import os
+import platform
+import sys
+import tempfile
+from collections import defaultdict
+from collections.abc import Mapping, Sequence
+from datetime import UTC, datetime
+from pathlib import Path
+from typing import Any
+
+import torch
+from transformers import AutoTokenizer, DynamicCache, Qwen3_5ForCausalLM
+
+from recurquant.cache import iter_recurrent_states
+from recurquant.evidence import canonical_json_bytes, verify_evidence_artifact
+from recurquant.mixed_quantization import quantize_pack_mixed
+from recurquant.packed_cache import (
+ QueryEmaMixedPackedRecurrentStateCache,
+ RightRhtQueryEmaMixedPackedRecurrentStateCache,
+)
+from recurquant.public_data import (
+ load_mbpp_rows_by_task_ids,
+ mbpp_manifest,
+ mbpp_manifest_sha256,
+ mbpp_row_sha256,
+)
+from recurquant.quantization import QuantizationSpec, quantize_dequantize
+from recurquant.query_energy import Qwen35QueryEnergyObserver
+from recurquant.qwen35 import (
+ create_qwen35_query_ema_exact_budget_cache,
+ create_qwen35_right_rht_query_ema_exact_budget_cache,
+)
+from recurquant.rht import (
+ right_rht_decode,
+ right_rht_encode,
+ right_rht_signs,
+)
+from recurquant.row_policy import ExactBudgetRowPlan
+
+pilot = importlib.import_module(
+ "scripts.pilot_evaluate_hrr" if __package__ else "pilot_evaluate_hrr"
+)
+
+SEED = 2339
+ARTIFACT_KIND = "recurquant_rht_cqer32_stage_a_screen"
+CQER_METHOD = "query_ema32_weighted_mse_target_fisher_quota"
+RHT_METHOD = "right_rht_query_ema32_weighted_mse_target_fisher_quota"
+METHODS = (CQER_METHOD, RHT_METHOD)
+TARGET_FISHER_SCORE = "target_directional_fisher_difference_int4"
+
+TASK_ID = 666
+TASK_ROW_SHA256 = "b4f5989005c921c3ab94ab52c8115e79f99a22390bc1d6e6235d36fd02687fb9"
+PROMPT_TOKENS = 69
+CODE_TOKENS = 39
+ALIGNED_TOKENS = 38
+EXPECTED_STATE_WRITES = 39
+EXPECTED_QUERY_TOKENS = PROMPT_TOKENS + ALIGNED_TOKENS
+
+TARGET_PACKED_STATE_BYTES = 2_564_096
+TARGET_SELECTOR_BYTES = 147_456
+TARGET_TOTAL_BYTES = 2_711_552
+TARGET_PAYLOAD_BYTES = 2_485_760
+TARGET_SCALE_BYTES = 73_728
+TARGET_MASK_BYTES = 4_608
+TARGET_PROMOTED_ROWS = 1_976
+
+MIN_STATE_SSE_REDUCTION = 0.50
+MIN_DELTA_NLL_REDUCTION = 0.10
+MAX_RHT_INVERSE_RELATIVE_L2 = 3e-7
+EXPECTED_SIGN_SCHEDULE_SHA256 = (
+ "2d5137b5ebeb325f100b34190618783b9e47bd2ce9b27b6cdf3cdc94459dabc3"
+)
+
+FROZEN_LAYER_QUOTAS = dict(pilot.CQER_FROZEN_LAYER_QUOTAS)
+FROZEN_LINEAR_LAYERS = tuple(FROZEN_LAYER_QUOTAS)
+
+SOURCE_FILES = (
+ "research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md",
+ "scripts/screen_rht_cqer.py",
+ "scripts/pilot_evaluate_hrr.py",
+ "src/recurquant/__init__.py",
+ "src/recurquant/cache.py",
+ "src/recurquant/evaluation.py",
+ "src/recurquant/evidence.py",
+ "src/recurquant/metrics.py",
+ "src/recurquant/mixed_quantization.py",
+ "src/recurquant/packed_cache.py",
+ "src/recurquant/public_data.py",
+ "src/recurquant/quantization.py",
+ "src/recurquant/query_energy.py",
+ "src/recurquant/qwen35.py",
+ "src/recurquant/rht.py",
+ "src/recurquant/row_policy.py",
+ "tests/test_rht.py",
+ "tests/test_rht_mixed_quantization.py",
+ "tests/test_right_rht_query_ema_cache.py",
+ "tests/test_screen_rht_cqer.py",
+)
+
+
+def parse_args() -> argparse.Namespace:
+ parser = argparse.ArgumentParser(
+ description=(
+ "Frozen Experiment 009 Stage-A screen on already-open MBPP task 666. "
+ "No other task or threshold can be selected."
+ )
+ )
+ parser.add_argument(
+ "--selector",
+ "--selector-artifact",
+ dest="selector",
+ type=Path,
+ required=True,
+ help="Authenticated frozen Experiment 007 HRR selector artifact.",
+ )
+ parser.add_argument(
+ "--loss-selector",
+ "--loss-selector-artifact",
+ dest="loss_selector",
+ type=Path,
+ required=True,
+ help="Authenticated frozen target-Fisher selector artifact.",
+ )
+ parser.add_argument("--output", type=Path, required=True)
+ parser.add_argument("--device", choices=("auto", "cpu", "cuda"), default="auto")
+ parser.add_argument("--local-files-only", action="store_true")
+ return parser.parse_args()
+
+
+def _strict_int(value: object, *, context: str) -> int:
+ if isinstance(value, bool) or not isinstance(value, int):
+ raise ValueError(f"{context} must be an integer")
+ return value
+
+
+def _finite_float(value: object, *, context: str) -> float:
+ if isinstance(value, bool) or not isinstance(value, (int, float)):
+ raise ValueError(f"{context} must be numeric")
+ result = float(value)
+ if not math.isfinite(result):
+ raise ValueError(f"{context} must be finite")
+ return result
+
+
+def validate_stage_a_identity(
+ *,
+ task_id: object,
+ row_sha256: object,
+ prompt_tokens: object,
+ code_tokens: object,
+ aligned_scored_tokens: object,
+) -> dict[str, int | str | bool]:
+ """Authenticate the immutable Stage-A row and token identity."""
+
+ actual_task_id = _strict_int(task_id, context="task_id")
+ actual_prompt = _strict_int(prompt_tokens, context="prompt_tokens")
+ actual_code = _strict_int(code_tokens, context="code_tokens")
+ actual_aligned = _strict_int(
+ aligned_scored_tokens,
+ context="aligned_scored_tokens",
+ )
+ if actual_task_id != TASK_ID:
+ raise ValueError(f"Stage A is locked to task_id {TASK_ID}")
+ if not isinstance(row_sha256, str) or row_sha256 != TASK_ROW_SHA256:
+ raise ValueError("Stage-A MBPP row SHA-256 does not match the frozen identity")
+ if (actual_prompt, actual_code, actual_aligned) != (
+ PROMPT_TOKENS,
+ CODE_TOKENS,
+ ALIGNED_TOKENS,
+ ):
+ raise ValueError(
+ "Stage-A token identity must be exactly "
+ f"{PROMPT_TOKENS}/{CODE_TOKENS}/{ALIGNED_TOKENS}"
+ )
+ if actual_aligned != actual_code - 1:
+ raise ValueError("aligned token count must equal code_tokens - 1")
+ return {
+ "task_id": actual_task_id,
+ "row_sha256": row_sha256,
+ "prompt_tokens": actual_prompt,
+ "code_tokens": actual_code,
+ "aligned_scored_tokens": actual_aligned,
+ "authenticated_before_model_weights": True,
+ }
+
+
+def _evidence_mapping(record: object, *, index: int) -> dict[str, Any]:
+ if isinstance(record, Mapping):
+ return dict(record)
+ evidence_dict = getattr(record, "evidence_dict", None)
+ if not callable(evidence_dict):
+ raise ValueError(f"state-error record {index} must be evidence or a mapping")
+ converted = evidence_dict()
+ if not isinstance(converted, Mapping):
+ raise ValueError(f"state-error record {index} evidence must be an object")
+ return dict(converted)
+
+
+def aggregate_state_error_evidence(records: Sequence[object]) -> dict[str, Any]:
+ """Aggregate record_evidence MSE into exact per-write state SSE.
+
+ Cache evidence stores MSE, while the frozen gate is defined on SSE. This
+ function authenticates each shape and computes ``MSE * element_count``.
+ It also assigns a causal write ordinal independently within each layer so
+ the two codecs can be checked for identical closed-loop coverage.
+ """
+
+ if isinstance(records, (str, bytes)) or not isinstance(records, Sequence):
+ raise TypeError("state-error evidence must be a sequence")
+ if not records:
+ raise ValueError("state-error evidence must not be empty")
+
+ normalized: list[dict[str, Any]] = []
+ layer_occurrences: defaultdict[tuple[int, int], int] = defaultdict(int)
+ seen_update_indices: set[int] = set()
+ layer_totals: defaultdict[int, dict[str, float | int]] = defaultdict(
+ lambda: {"record_count": 0, "element_count": 0, "state_sse": 0.0}
+ )
+ write_totals: defaultdict[int, dict[str, float | int]] = defaultdict(
+ lambda: {"record_count": 0, "element_count": 0, "state_sse": 0.0}
+ )
+
+ for record_index, raw_record in enumerate(records):
+ record = _evidence_mapping(raw_record, index=record_index)
+ update_index = _strict_int(
+ record.get("update_index"),
+ context=f"state-error record {record_index} update_index",
+ )
+ layer_index = _strict_int(
+ record.get("layer_index"),
+ context=f"state-error record {record_index} layer_index",
+ )
+ state_index = _strict_int(
+ record.get("state_index"),
+ context=f"state-error record {record_index} state_index",
+ )
+ if update_index < 0 or layer_index < 0 or state_index < 0:
+ raise ValueError("state-error indices must be non-negative")
+ if update_index in seen_update_indices:
+ raise ValueError(f"duplicate state-error update_index {update_index}")
+ seen_update_indices.add(update_index)
+
+ raw_shape = record.get("shape")
+ if (
+ isinstance(raw_shape, (str, bytes))
+ or not isinstance(raw_shape, Sequence)
+ or not raw_shape
+ ):
+ raise ValueError(f"state-error record {record_index} shape is invalid")
+ shape = tuple(
+ _strict_int(dimension, context=f"state-error record {record_index} shape")
+ for dimension in raw_shape
+ )
+ if any(dimension <= 0 for dimension in shape):
+ raise ValueError("state-error shape dimensions must be positive")
+ element_count = math.prod(shape)
+ mse = _finite_float(
+ record.get("mean_squared_error"),
+ context=f"state-error record {record_index} mean_squared_error",
+ )
+ maximum = _finite_float(
+ record.get("max_absolute_error"),
+ context=f"state-error record {record_index} max_absolute_error",
+ )
+ relative_l2 = _finite_float(
+ record.get("relative_l2_error"),
+ context=f"state-error record {record_index} relative_l2_error",
+ )
+ if mse < 0 or maximum < 0 or relative_l2 < 0:
+ raise ValueError("state-error magnitudes must be non-negative")
+ state_sse = mse * element_count
+ if not math.isfinite(state_sse):
+ raise ValueError("state-error SSE must be finite")
+
+ occurrence_key = (layer_index, state_index)
+ write_ordinal = layer_occurrences[occurrence_key]
+ layer_occurrences[occurrence_key] += 1
+ normalized_record = {
+ **record,
+ "shape": list(shape),
+ "element_count": element_count,
+ "state_sse": state_sse,
+ "write_ordinal": write_ordinal,
+ }
+ normalized.append(normalized_record)
+
+ for totals in (layer_totals[layer_index], write_totals[write_ordinal]):
+ totals["record_count"] = int(totals["record_count"]) + 1
+ totals["element_count"] = int(totals["element_count"]) + element_count
+ totals["state_sse"] = float(totals["state_sse"]) + state_sse
+
+ normalized.sort(key=lambda record: int(record["update_index"]))
+ coverage = [
+ {
+ "write_ordinal": int(record["write_ordinal"]),
+ "layer_index": int(record["layer_index"]),
+ "state_index": int(record["state_index"]),
+ "shape": list(record["shape"]),
+ }
+ for record in normalized
+ ]
+ total_elements = sum(int(record["element_count"]) for record in normalized)
+ total_sse = math.fsum(float(record["state_sse"]) for record in normalized)
+ return {
+ "record_count": len(normalized),
+ "element_count": total_elements,
+ "aggregate_state_sse": total_sse,
+ "aggregate_state_mse": total_sse / total_elements,
+ "coverage": coverage,
+ "per_layer": {
+ str(layer): {
+ "record_count": int(values["record_count"]),
+ "element_count": int(values["element_count"]),
+ "state_sse": float(values["state_sse"]),
+ }
+ for layer, values in sorted(layer_totals.items())
+ },
+ "per_write": {
+ str(write): {
+ "record_count": int(values["record_count"]),
+ "element_count": int(values["element_count"]),
+ "state_sse": float(values["state_sse"]),
+ }
+ for write, values in sorted(write_totals.items())
+ },
+ "records": normalized,
+ }
+
+
+def validate_state_error_coverage(
+ state_errors: Mapping[str, Mapping[str, Any]],
+) -> dict[str, Any]:
+ """Require both codecs to record the same layers, writes, states, and shapes."""
+
+ if set(state_errors) != set(METHODS):
+ raise ValueError("state-error evidence must contain exactly CQER and RHT-CQER")
+ cqer = state_errors[CQER_METHOD]
+ rht = state_errors[RHT_METHOD]
+ if cqer.get("coverage") != rht.get("coverage"):
+ raise ValueError("CQER and RHT-CQER state-error coverage differs")
+ expected_records = len(FROZEN_LINEAR_LAYERS) * EXPECTED_STATE_WRITES
+ for method, record in state_errors.items():
+ if int(record.get("record_count", -1)) != expected_records:
+ raise ValueError(
+ f"{method} must contain exactly {expected_records} state-error records"
+ )
+ per_layer = record.get("per_layer")
+ per_write = record.get("per_write")
+ if not isinstance(per_layer, Mapping) or set(per_layer) != {
+ str(layer) for layer in FROZEN_LINEAR_LAYERS
+ }:
+ raise ValueError(f"{method} state-error layers do not match the frozen geometry")
+ if not isinstance(per_write, Mapping) or set(per_write) != {
+ str(write) for write in range(EXPECTED_STATE_WRITES)
+ }:
+ raise ValueError(f"{method} state-error writes do not match the frozen run")
+ if any(
+ int(per_layer[str(layer)].get("record_count", -1)) != EXPECTED_STATE_WRITES
+ for layer in FROZEN_LINEAR_LAYERS
+ ):
+ raise ValueError(f"{method} did not record every layer on every write")
+ if any(
+ int(per_write[str(write)].get("record_count", -1))
+ != len(FROZEN_LINEAR_LAYERS)
+ for write in range(EXPECTED_STATE_WRITES)
+ ):
+ raise ValueError(f"{method} did not record every layer within every write")
+ return {
+ "passed": True,
+ "record_count_per_method": expected_records,
+ "state_writes": EXPECTED_STATE_WRITES,
+ "linear_layers": list(FROZEN_LINEAR_LAYERS),
+ }
+
+
+def audit_selector_diagnostics(
+ diagnostics: Mapping[str, Sequence[Mapping[str, Any]]],
+) -> dict[str, Any]:
+ """Authenticate exact quotas and one-stage/one-consume query handshakes."""
+
+ if set(diagnostics) != set(METHODS):
+ raise ValueError("selector diagnostics must contain exactly CQER and RHT-CQER")
+ expected_selection_methods = {
+ CQER_METHOD: "query_ema32_weighted_aligned_mse_reduction",
+ RHT_METHOD: RHT_METHOD,
+ }
+ audited: dict[str, list[dict[str, Any]]] = {}
+ for method in METHODS:
+ records = diagnostics[method]
+ if len(records) != len(FROZEN_LINEAR_LAYERS):
+ raise ValueError(f"{method} must report every frozen recurrent layer")
+ by_layer: dict[int, Mapping[str, Any]] = {}
+ for record in records:
+ layer = _strict_int(record.get("layer_index"), context="diagnostic layer_index")
+ if layer in by_layer:
+ raise ValueError(f"{method} repeats diagnostic layer {layer}")
+ by_layer[layer] = record
+ if set(by_layer) != set(FROZEN_LINEAR_LAYERS):
+ raise ValueError(f"{method} diagnostic layer identity drifted")
+
+ method_rows: list[dict[str, Any]] = []
+ for layer in FROZEN_LINEAR_LAYERS:
+ record = by_layer[layer]
+ quota = _strict_int(record.get("quota"), context=f"{method} layer {layer} quota")
+ selected = _strict_int(
+ record.get("current_selected_count"),
+ context=f"{method} layer {layer} current_selected_count",
+ )
+ updates = _strict_int(
+ record.get("state_updates"),
+ context=f"{method} layer {layer} state_updates",
+ )
+ staged = _strict_int(
+ record.get("observations_staged"),
+ context=f"{method} layer {layer} observations_staged",
+ )
+ committed = _strict_int(
+ record.get("observations_committed"),
+ context=f"{method} layer {layer} observations_committed",
+ )
+ observed = _strict_int(
+ record.get("tokens_observed"),
+ context=f"{method} layer {layer} tokens_observed",
+ )
+ if quota != FROZEN_LAYER_QUOTAS[layer] or selected != quota:
+ raise ValueError(f"{method} layer {layer} did not realize its frozen quota")
+ if (updates, staged, committed) != (
+ EXPECTED_STATE_WRITES,
+ EXPECTED_STATE_WRITES,
+ EXPECTED_STATE_WRITES,
+ ):
+ raise ValueError(
+ f"{method} layer {layer} query observation handshake is incomplete"
+ )
+ if observed != EXPECTED_QUERY_TOKENS:
+ raise ValueError(f"{method} layer {layer} query token count drifted")
+ if record.get("pending_observation") is not False:
+ raise ValueError(f"{method} layer {layer} retains a pending observation")
+ if record.get("confirmation_two") is not False:
+ raise ValueError(f"{method} layer {layer} unexpectedly enabled Confirmation-2")
+ if record.get("selection_method") != expected_selection_methods[method]:
+ raise ValueError(f"{method} layer {layer} selection method drifted")
+ if method == RHT_METHOD and (
+ record.get("state_codec") != "right_rht_sha256_signs_v1"
+ or record.get("state_codec_seed") != SEED
+ or record.get("state_codec_axis") != "value"
+ or record.get("state_codec_normalization") != "orthonormal"
+ or record.get("state_codec_persistent_tensor_bytes") != 0
+ ):
+ raise ValueError(f"{method} layer {layer} codec contract drifted")
+ mask_hash = record.get("current_mask_sha256")
+ if (
+ not isinstance(mask_hash, str)
+ or len(mask_hash) != 64
+ or any(character not in "0123456789abcdef" for character in mask_hash)
+ ):
+ raise ValueError(f"{method} layer {layer} mask hash is invalid")
+ method_rows.append(
+ {
+ "layer_index": layer,
+ "quota": quota,
+ "state_updates": updates,
+ "observations_staged": staged,
+ "observations_committed": committed,
+ "tokens_observed": observed,
+ "selection_method": expected_selection_methods[method],
+ "current_mask_sha256": mask_hash,
+ }
+ )
+ audited[method] = method_rows
+ return {
+ "passed": True,
+ "quota_sum": sum(FROZEN_LAYER_QUOTAS.values()),
+ "state_writes": EXPECTED_STATE_WRITES,
+ "query_tokens": EXPECTED_QUERY_TOKENS,
+ "methods": audited,
+ }
+
+
+def _metric_summary(
+ metrics: Mapping[str, Mapping[str, Any]],
+ *,
+ expected_tokens: int,
+ context: str,
+) -> dict[str, dict[str, float | int | bool]]:
+ if set(metrics) != set(METHODS):
+ raise ValueError(f"{context} metrics must contain exactly CQER and RHT-CQER")
+ normalized: dict[str, dict[str, float | int | bool]] = {}
+ fields = (
+ "mean_kl",
+ "cvar95_kl",
+ "max_kl",
+ "top1_agreement",
+ "reference_nll",
+ "candidate_nll",
+ "delta_nll",
+ )
+ for method in METHODS:
+ record = metrics[method]
+ token_count = _strict_int(
+ record.get("token_count"),
+ context=f"{context} {method} token_count",
+ )
+ if token_count != expected_tokens:
+ raise ValueError(
+ f"{context} {method} must score exactly {expected_tokens} tokens"
+ )
+ if record.get("all_logits_finite") is not True:
+ raise ValueError(f"{context} {method} logits are not all finite")
+ normalized[method] = {
+ "token_count": token_count,
+ "all_logits_finite": True,
+ **{
+ field: _finite_float(
+ record.get(field),
+ context=f"{context} {method} {field}",
+ )
+ for field in fields
+ },
+ }
+ return normalized
+
+
+def _gate_check(function: Any) -> dict[str, Any]:
+ try:
+ result = function()
+ except (KeyError, TypeError, ValueError) as error:
+ return {"passed": False, "error": str(error)}
+ if isinstance(result, Mapping):
+ record = dict(result)
+ record["passed"] = record.get("passed") is True
+ return record
+ return {"passed": bool(result)}
+
+
+def evaluate_stage_a_gate(
+ *,
+ aligned_metrics: Mapping[str, Mapping[str, Any]],
+ full_code_metrics: Mapping[str, Mapping[str, Any]],
+ storage: Mapping[str, Mapping[str, Any]],
+ selector_diagnostics: Mapping[str, Sequence[Mapping[str, Any]]],
+ state_errors: Mapping[str, Mapping[str, Any]],
+ unit_evidence: Mapping[str, Any],
+ integrity: Mapping[str, Any],
+) -> dict[str, Any]:
+ """Evaluate only the frozen conjunction in the Experiment 009 protocol."""
+
+ aligned: dict[str, dict[str, float | int | bool]] | None = None
+ full: dict[str, dict[str, float | int | bool]] | None = None
+
+ def repository_check() -> dict[str, Any]:
+ fields = (
+ "repository_clean_at_start",
+ "repository_clean_at_end",
+ "repository_commit_stable",
+ "source_hashes_stable",
+ )
+ if any(integrity.get(field) is not True for field in fields):
+ raise ValueError("repository cleanliness, commit, or source hashes were not stable")
+ return {"passed": True, **{field: True for field in fields}}
+
+ def identity_check() -> dict[str, Any]:
+ if integrity.get("identity_authenticated_before_model_weights") is not True:
+ raise ValueError("row and token identity was not authenticated before model weights")
+ if integrity.get("protected_window_8_16_accessed") is not False:
+ raise ValueError("protected ranked window [8, 16) was accessed")
+ return {
+ "passed": True,
+ "identity_authenticated_before_model_weights": True,
+ "protected_window_8_16_accessed": False,
+ }
+
+ def storage_check() -> dict[str, Any]:
+ if set(storage) != set(METHODS):
+ raise ValueError("storage must contain exactly CQER and RHT-CQER")
+ expected = {
+ "payload_bytes": TARGET_PAYLOAD_BYTES,
+ "scale_bytes": TARGET_SCALE_BYTES,
+ "mask_bytes": TARGET_MASK_BYTES,
+ "resident_bytes": TARGET_PACKED_STATE_BYTES,
+ "selector_auxiliary_bytes": TARGET_SELECTOR_BYTES,
+ "resident_bytes_including_selector": TARGET_TOTAL_BYTES,
+ "high_precision_groups": TARGET_PROMOTED_ROWS,
+ }
+ for method in METHODS:
+ for field, value in expected.items():
+ if _strict_int(
+ storage[method].get(field),
+ context=f"{method} storage {field}",
+ ) != value:
+ raise ValueError(f"{method} storage {field} drifted")
+ return {"passed": True, **expected}
+
+ def finite_and_handshake_check() -> dict[str, Any]:
+ nonlocal aligned, full
+ aligned = _metric_summary(
+ aligned_metrics,
+ expected_tokens=ALIGNED_TOKENS,
+ context="aligned",
+ )
+ full = _metric_summary(
+ full_code_metrics,
+ expected_tokens=CODE_TOKENS,
+ context="full-code",
+ )
+ selector_audit = audit_selector_diagnostics(selector_diagnostics)
+ coverage = validate_state_error_coverage(state_errors)
+ return {
+ "passed": True,
+ "all_logits_and_metrics_finite": True,
+ "selector_audit": selector_audit,
+ "state_error_coverage": coverage,
+ }
+
+ def unit_check() -> dict[str, Any]:
+ inverse = _finite_float(
+ unit_evidence.get("inverse_relative_l2"),
+ context="unit inverse_relative_l2",
+ )
+ if not inverse < MAX_RHT_INVERSE_RELATIVE_L2:
+ raise ValueError("right-RHT inverse relative L2 did not meet the frozen bound")
+ if unit_evidence.get("physical_pack_matches_transformed_qdq") is not True:
+ raise ValueError("physical RHT pack did not exactly match transformed QDQ")
+ if unit_evidence.get("physical_pack_max_abs_difference") != 0.0:
+ raise ValueError("physical RHT pack reconstruction was not bit-exact")
+ if unit_evidence.get("sign_schedule_sha256") != EXPECTED_SIGN_SCHEDULE_SHA256:
+ raise ValueError("right-RHT sign schedule hash drifted")
+ return {
+ "passed": True,
+ "inverse_relative_l2": inverse,
+ "maximum_inverse_relative_l2": MAX_RHT_INVERSE_RELATIVE_L2,
+ "physical_pack_matches_transformed_qdq": True,
+ "sign_schedule_sha256": EXPECTED_SIGN_SCHEDULE_SHA256,
+ }
+
+ def state_sse_check() -> dict[str, Any]:
+ baseline = _finite_float(
+ state_errors[CQER_METHOD].get("aggregate_state_sse"),
+ context="CQER aggregate state SSE",
+ )
+ candidate = _finite_float(
+ state_errors[RHT_METHOD].get("aggregate_state_sse"),
+ context="RHT aggregate state SSE",
+ )
+ if baseline <= 0 or candidate < 0:
+ raise ValueError("state SSE baseline must be positive and candidate non-negative")
+ reduction = (baseline - candidate) / baseline
+ return {
+ "passed": reduction >= MIN_STATE_SSE_REDUCTION,
+ "cqer_state_sse": baseline,
+ "rht_state_sse": candidate,
+ "relative_reduction": reduction,
+ "minimum_relative_reduction": MIN_STATE_SSE_REDUCTION,
+ }
+
+ def delta_nll_check() -> dict[str, Any]:
+ normalized = aligned or _metric_summary(
+ aligned_metrics,
+ expected_tokens=ALIGNED_TOKENS,
+ context="aligned",
+ )
+ baseline = float(normalized[CQER_METHOD]["delta_nll"])
+ candidate = float(normalized[RHT_METHOD]["delta_nll"])
+ if baseline <= 0:
+ raise ValueError("CQER aligned excess NLL must be positive for a relative gate")
+ reduction = (baseline - candidate) / baseline
+ return {
+ "passed": reduction >= MIN_DELTA_NLL_REDUCTION,
+ "cqer_delta_nll": baseline,
+ "rht_delta_nll": candidate,
+ "relative_reduction": reduction,
+ "minimum_relative_reduction": MIN_DELTA_NLL_REDUCTION,
+ }
+
+ def mean_kl_check() -> dict[str, Any]:
+ normalized = aligned or _metric_summary(
+ aligned_metrics,
+ expected_tokens=ALIGNED_TOKENS,
+ context="aligned",
+ )
+ baseline = float(normalized[CQER_METHOD]["mean_kl"])
+ candidate = float(normalized[RHT_METHOD]["mean_kl"])
+ return {
+ "passed": candidate < baseline,
+ "cqer_mean_kl": baseline,
+ "rht_mean_kl": candidate,
+ }
+
+ def top1_check() -> dict[str, Any]:
+ normalized = aligned or _metric_summary(
+ aligned_metrics,
+ expected_tokens=ALIGNED_TOKENS,
+ context="aligned",
+ )
+ baseline = float(normalized[CQER_METHOD]["top1_agreement"])
+ candidate = float(normalized[RHT_METHOD]["top1_agreement"])
+ return {
+ "passed": candidate >= baseline,
+ "cqer_top1_agreement": baseline,
+ "rht_top1_agreement": candidate,
+ }
+
+ checks = {
+ "clean_stable_repository": _gate_check(repository_check),
+ "frozen_task_identity_before_model_weights": _gate_check(identity_check),
+ "exact_equal_storage": _gate_check(storage_check),
+ "finite_metrics_exact_quotas_and_handshakes": _gate_check(
+ finite_and_handshake_check
+ ),
+ "independent_rht_numeric_evidence": _gate_check(unit_check),
+ "state_sse_relative_reduction": _gate_check(state_sse_check),
+ "aligned_excess_nll_relative_reduction": _gate_check(delta_nll_check),
+ "lower_aligned_mean_kl": _gate_check(mean_kl_check),
+ "aligned_top1_not_lower": _gate_check(top1_check),
+ }
+ return {
+ "schema": "recurquant.experiment009-stage-a-gate.v1",
+ "applicable": True,
+ "passed": all(check["passed"] is True for check in checks.values()),
+ "checks": checks,
+ }
+
+
+def compute_unit_evidence() -> dict[str, Any]:
+ """Recompute deterministic inverse, sign, and physical-pack evidence on CPU."""
+
+ generator = torch.Generator().manual_seed(SEED)
+ state = torch.randn((1, 3, 7, 128), generator=generator, dtype=torch.float32)
+ encoded = right_rht_encode(state, layer_index=5, expected_heads=3)
+ restored = right_rht_decode(encoded, layer_index=5, expected_heads=3)
+ inverse_relative_l2 = float(
+ (
+ torch.linalg.vector_norm(restored - state)
+ / torch.linalg.vector_norm(state).clamp_min(1e-12)
+ ).item()
+ )
+
+ mask = torch.zeros((3, 7), dtype=torch.bool)
+ mask[0, 2] = True
+ mask[2, 4:] = True
+ low = QuantizationSpec(bits=4, group_size=128, flatten_last_dims=2)
+ high = QuantizationSpec(bits=8, group_size=128, flatten_last_dims=2)
+ packed = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=low,
+ high_spec=high,
+ right_rht_layer_index=5,
+ right_rht_expected_heads=3,
+ )
+ low_qdq = quantize_dequantize(encoded, low).tensor
+ high_qdq = quantize_dequantize(encoded, high).tensor
+ transformed_qdq = torch.where(
+ mask.reshape(1, 3, 7, 1),
+ high_qdq,
+ low_qdq,
+ )
+ expected = right_rht_decode(
+ transformed_qdq,
+ layer_index=5,
+ expected_heads=3,
+ output_dtype=state.dtype,
+ )
+ materialized = packed.dequantize()
+ maximum_difference = float((materialized - expected).abs().max().item())
+
+ schedule = torch.cat(
+ [
+ right_rht_signs(
+ layer_index=layer,
+ expected_heads=16,
+ width=128,
+ device="cpu",
+ ).to(torch.int8).reshape(-1)
+ for layer in FROZEN_LINEAR_LAYERS
+ ]
+ )
+ sign_sha256 = hashlib.sha256(schedule.numpy().tobytes()).hexdigest()
+ return {
+ "inverse_relative_l2": inverse_relative_l2,
+ "inverse_relative_l2_threshold": MAX_RHT_INVERSE_RELATIVE_L2,
+ "physical_pack_matches_transformed_qdq": torch.equal(materialized, expected),
+ "physical_pack_max_abs_difference": maximum_difference,
+ "physical_pack_storage_bytes": packed.storage_bytes,
+ "sign_schedule_sha256": sign_sha256,
+ "expected_sign_schedule_sha256": EXPECTED_SIGN_SCHEDULE_SHA256,
+ "seed": SEED,
+ "device": "cpu",
+ "dtype": "torch.float32",
+ }
+
+
+def _append_metrics(
+ accumulators: Mapping[str, Any],
+ reference_logits: torch.Tensor,
+ candidate_outputs: Mapping[str, Any],
+ target: torch.Tensor,
+) -> None:
+ pilot._append_metrics( # noqa: SLF001 - shared evaluator math is intentional.
+ accumulators,
+ reference_logits,
+ {name: output.logits for name, output in candidate_outputs.items()},
+ target,
+ )
+
+
+def evaluate_screen_task(
+ model: Qwen3_5ForCausalLM,
+ *,
+ prompt_ids: torch.Tensor,
+ code_ids: torch.Tensor,
+ plan: ExactBudgetRowPlan,
+) -> dict[str, Any]:
+ """Evaluate reference, CQER, and RHT-CQER in one teacher-forced loop."""
+
+ reference_cache = DynamicCache(config=model.config)
+ cqer = create_qwen35_query_ema_exact_budget_cache(
+ model,
+ plan=plan,
+ record_evidence=True,
+ )
+ rht = create_qwen35_right_rht_query_ema_exact_budget_cache(
+ model,
+ plan=plan,
+ record_evidence=True,
+ )
+ caches: dict[
+ str,
+ QueryEmaMixedPackedRecurrentStateCache
+ | RightRhtQueryEmaMixedPackedRecurrentStateCache,
+ ] = {
+ CQER_METHOD: cqer,
+ RHT_METHOD: rht,
+ }
+ aligned = {name: pilot._TokenAccumulator.empty() for name in METHODS} # noqa: SLF001
+ full = {name: pilot._TokenAccumulator.empty() for name in METHODS} # noqa: SLF001
+
+ with Qwen35QueryEnergyObserver(model, caches=list(caches.values())):
+ reference_output = model(
+ prompt_ids,
+ past_key_values=reference_cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ candidate_outputs = {
+ name: model(
+ prompt_ids,
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ for name, cache in caches.items()
+ }
+ _append_metrics(full, reference_output.logits, candidate_outputs, code_ids[:, :1])
+
+ for token_index in range(code_ids.shape[1] - 1):
+ input_token = code_ids[:, token_index : token_index + 1]
+ target_token = code_ids[:, token_index + 1 : token_index + 2]
+ reference_output = model(
+ input_token,
+ past_key_values=reference_cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ candidate_outputs = {
+ name: model(
+ input_token,
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ for name, cache in caches.items()
+ }
+ _append_metrics(
+ aligned,
+ reference_output.logits,
+ candidate_outputs,
+ target_token,
+ )
+ _append_metrics(
+ full,
+ reference_output.logits,
+ candidate_outputs,
+ target_token,
+ )
+
+ reference_bytes = sum(
+ state.tensor.numel() * state.tensor.element_size()
+ for state in iter_recurrent_states(reference_cache)
+ )
+ state_errors = {
+ name: aggregate_state_error_evidence(cache.update_evidence)
+ for name, cache in caches.items()
+ }
+ return {
+ "aligned_metrics": {
+ name: accumulator.summary() for name, accumulator in aligned.items()
+ },
+ "full_code_metrics": {
+ name: accumulator.summary() for name, accumulator in full.items()
+ },
+ "storage": {name: cache.storage_summary() for name, cache in caches.items()},
+ "selector_diagnostics": {
+ name: cache.query_ema_diagnostics() for name, cache in caches.items()
+ },
+ "state_errors": state_errors,
+ "reference_recurrent_state_bytes": reference_bytes,
+ }
+
+
+def _authenticate_selectors(
+ selector_path: Path,
+ loss_selector_path: Path,
+) -> tuple[dict[str, Any], dict[str, Any], dict[str, str], ExactBudgetRowPlan]:
+ selector, selector_file_sha = pilot.load_selector_artifact(
+ selector_path,
+ expected_kind=pilot.HRR_ARTIFACT_KIND,
+ )
+ loss_selector, loss_file_sha = pilot.load_selector_artifact(
+ loss_selector_path,
+ expected_kind=pilot.LOSS_ARTIFACT_KIND,
+ )
+ pilot.validate_compatible_selector(selector, loss_selector)
+ pilot.validate_cqer_selector_artifacts(
+ enabled=True,
+ selectors=(selector, loss_selector),
+ )
+ plan = pilot.plan_from_artifact(loss_selector, TARGET_FISHER_SCORE)
+ quotas = {
+ layer: len(plan.groups_for_layer(layer))
+ for layer, _heads, _rows in plan.score_shapes
+ }
+ pilot.validate_cqer_layer_quotas(enabled=True, quotas=quotas)
+ if quotas != FROZEN_LAYER_QUOTAS:
+ raise ValueError("target-Fisher quota vector drifted from Experiment 009")
+ if plan.resident_bytes != TARGET_PACKED_STATE_BYTES:
+ raise ValueError("target-Fisher plan does not realize the frozen byte budget")
+ return (
+ selector,
+ loss_selector,
+ {
+ "selector_file_sha256": selector_file_sha,
+ "loss_selector_file_sha256": loss_file_sha,
+ "selector_canonical_evidence_sha256": pilot.sha256_bytes(
+ canonical_json_bytes(selector)
+ ),
+ "loss_selector_canonical_evidence_sha256": pilot.sha256_bytes(
+ canonical_json_bytes(loss_selector)
+ ),
+ },
+ plan,
+ )
+
+
+def _package_versions() -> dict[str, str | None]:
+ versions: dict[str, str | None] = {}
+ for name in ("datasets", "numpy", "safetensors", "torch", "transformers"):
+ try:
+ versions[name] = importlib.metadata.version(name)
+ except importlib.metadata.PackageNotFoundError:
+ versions[name] = None
+ return versions
+
+
+def _atomic_write(path: Path, payload: bytes) -> None:
+ path.parent.mkdir(parents=True, exist_ok=True)
+ descriptor, temporary_name = tempfile.mkstemp(
+ prefix=f".{path.name}.",
+ suffix=".tmp",
+ dir=path.parent,
+ )
+ temporary = Path(temporary_name)
+ try:
+ with os.fdopen(descriptor, "wb") as handle:
+ handle.write(payload)
+ handle.flush()
+ os.fsync(handle.fileno())
+ os.replace(temporary, path)
+ finally:
+ if temporary.exists():
+ temporary.unlink()
+
+
+def main() -> int:
+ args = parse_args()
+ repository_root = Path(__file__).resolve().parents[1]
+ repository_start = pilot.git_state()
+ pilot.validate_cora_development_repository_start(repository_start)
+ pilot.validate_heldout_output_path(args.output, repository_root)
+ source_hashes_start = pilot.source_file_hashes(repository_root, SOURCE_FILES)
+
+ # Selector authentication precedes all dataset access.
+ selector, loss_selector, selector_hashes, plan = _authenticate_selectors(
+ args.selector,
+ args.loss_selector,
+ )
+
+ # The task-ID loader retains only task 666. It cannot select the protected
+ # ranked [8, 16) window or any other calibration identity.
+ rows = load_mbpp_rows_by_task_ids("calibration", task_ids=(TASK_ID,))
+ if len(rows) != 1 or int(rows[0]["task_id"]) != TASK_ID:
+ raise RuntimeError("Stage-A task-ID loader returned an unauthorized identity")
+ row = rows[0]
+ row_sha = mbpp_row_sha256(row)
+ if row_sha != TASK_ROW_SHA256:
+ raise ValueError("Stage-A row hash drifted before tokenization")
+ manifest = mbpp_manifest(rows, phase="calibration")
+ manifest_sha = mbpp_manifest_sha256(rows, phase="calibration")
+
+ device = pilot.select_device(args.device)
+ dtype = torch.bfloat16 if device.type == "cuda" else torch.float32
+ model_record = selector["model"]
+ if model_record["dtype"] != str(dtype):
+ raise ValueError(
+ "screen dtype does not match the frozen selector dtype: "
+ f"{dtype} != {model_record['dtype']}"
+ )
+ model_id = str(model_record["id"])
+ revision = str(model_record["revision"])
+
+ # Tokenizer metadata is authenticated before model weights are opened.
+ tokenizer = AutoTokenizer.from_pretrained(
+ model_id,
+ revision=revision,
+ local_files_only=args.local_files_only,
+ trust_remote_code=False,
+ )
+ encoded_tasks, token_manifest = pilot.encode_task_rows(tokenizer, rows)
+ if len(encoded_tasks) != 1 or len(token_manifest) != 1:
+ raise RuntimeError("Stage-A encoding returned an unexpected task count")
+ identity = validate_stage_a_identity(
+ task_id=token_manifest[0]["task_id"],
+ row_sha256=row_sha,
+ prompt_tokens=token_manifest[0]["prompt_tokens"],
+ code_tokens=token_manifest[0]["code_tokens"],
+ aligned_scored_tokens=token_manifest[0]["aligned_scored_tokens"],
+ )
+
+ unit_evidence = compute_unit_evidence()
+ model = Qwen3_5ForCausalLM.from_pretrained(
+ model_id,
+ revision=revision,
+ dtype=dtype,
+ attn_implementation="eager",
+ low_cpu_mem_usage=True,
+ use_safetensors=True,
+ local_files_only=args.local_files_only,
+ ).to(device)
+ model.eval()
+
+ _row, prompt_cpu, code_cpu = encoded_tasks[0]
+ torch.manual_seed(SEED)
+ with torch.inference_mode():
+ result = evaluate_screen_task(
+ model,
+ prompt_ids=prompt_cpu.to(device),
+ code_ids=code_cpu.to(device),
+ plan=plan,
+ )
+
+ repository_end = pilot.git_state()
+ source_hashes_end = pilot.source_file_hashes(repository_root, SOURCE_FILES)
+ pilot.validate_cora_development_repository_end(
+ start_repository=repository_start,
+ end_repository=repository_end,
+ start_source_hashes=source_hashes_start,
+ end_source_hashes=source_hashes_end,
+ )
+ integrity = {
+ "repository_clean_at_start": repository_start["worktree_clean"] is True,
+ "repository_clean_at_end": repository_end["worktree_clean"] is True,
+ "repository_commit_stable": (
+ repository_start["commit"] == repository_end["commit"]
+ ),
+ "source_hashes_stable": source_hashes_start == source_hashes_end,
+ "identity_authenticated_before_model_weights": (
+ identity["authenticated_before_model_weights"] is True
+ ),
+ "protected_window_8_16_accessed": False,
+ }
+ gate = evaluate_stage_a_gate(
+ aligned_metrics=result["aligned_metrics"],
+ full_code_metrics=result["full_code_metrics"],
+ storage=result["storage"],
+ selector_diagnostics=result["selector_diagnostics"],
+ state_errors=result["state_errors"],
+ unit_evidence=unit_evidence,
+ integrity=integrity,
+ )
+
+ evidence: dict[str, Any] = {
+ "schema_version": 1,
+ "artifact_kind": ARTIFACT_KIND,
+ "screening_only": True,
+ "claim_boundary": (
+ "This is a one-task, already-open falsification screen for a known "
+ "right-RHT codec composed with CQER-32. Passing authorizes only the "
+ "separately frozen 32-task development run. It is not novelty, speed, "
+ "confirmation, state-of-the-art, or breakthrough evidence."
+ ),
+ "created_at_utc": datetime.now(UTC).isoformat(),
+ "protocol": {
+ "name": "Experiment 009 Stage A",
+ "method": RHT_METHOD,
+ "task_locked": True,
+ "thresholds_locked": True,
+ "protected_ranked_window": [8, 16],
+ "protected_window_accessed": False,
+ },
+ "selector_artifacts": {
+ **selector_hashes,
+ "selector_path": str(args.selector.resolve()),
+ "loss_selector_path": str(args.loss_selector.resolve()),
+ "frozen_canonical_evidence_sha256s": list(
+ pilot.CQER_FROZEN_SELECTOR_CANONICAL_SHA256S
+ ),
+ "target_fisher_score": TARGET_FISHER_SCORE,
+ "target_fisher_layer_quotas": {
+ str(layer): quota for layer, quota in FROZEN_LAYER_QUOTAS.items()
+ },
+ "quota_sum": sum(FROZEN_LAYER_QUOTAS.values()),
+ "authenticated": True,
+ },
+ "model": {
+ "id": model_id,
+ "revision": revision,
+ "dtype": str(dtype),
+ "device": str(device),
+ },
+ "dataset": {
+ "phase": "calibration",
+ "selection_mode": "exact_already_open_task_id",
+ "identity": identity,
+ "manifest": manifest,
+ "manifest_sha256": manifest_sha,
+ "token_manifest": token_manifest,
+ "identity_authenticated_before_model_weights": True,
+ "protected_window_8_16_loaded_tokenized_or_evaluated": False,
+ },
+ "metric_contract": {
+ "aligned_primary": "code transitions after recurrent-state storage",
+ "aligned_token_count": ALIGNED_TOKENS,
+ "full_code_secondary_token_count": CODE_TOKENS,
+ "excluded_from_aligned": "prompt-to-first-code-token prediction",
+ },
+ "methods": list(METHODS),
+ "metrics_aligned": result["aligned_metrics"],
+ "metrics_full_code_secondary": result["full_code_metrics"],
+ "storage": {
+ "fp32_reference_recurrent_state_bytes": result[
+ "reference_recurrent_state_bytes"
+ ],
+ "candidates": result["storage"],
+ },
+ "selector_diagnostics": result["selector_diagnostics"],
+ "state_error": result["state_errors"],
+ "unit_evidence": unit_evidence,
+ "stage_a_gate": gate,
+ "environment": {
+ "python": sys.version,
+ "platform": platform.platform(),
+ "packages": _package_versions(),
+ "cuda_available": torch.cuda.is_available(),
+ "cuda_runtime": torch.version.cuda,
+ "gpu": (
+ torch.cuda.get_device_name(device) if device.type == "cuda" else None
+ ),
+ },
+ "repository": {
+ "commit": repository_end["commit"],
+ "start": repository_start,
+ "end": repository_end,
+ "stable_commit": repository_start["commit"] == repository_end["commit"],
+ },
+ "source_files": {
+ "paths": list(SOURCE_FILES),
+ "sha256_start": source_hashes_start,
+ "sha256_end": source_hashes_end,
+ "stable": source_hashes_start == source_hashes_end,
+ },
+ "command": [sys.executable, *sys.argv],
+ }
+ artifact = {
+ "schema_version": 1,
+ "artifact_kind": ARTIFACT_KIND,
+ "canonical_evidence_sha256": hashlib.sha256(
+ canonical_json_bytes(evidence)
+ ).hexdigest(),
+ "evidence": evidence,
+ }
+ payload = canonical_json_bytes(artifact)
+ _atomic_write(args.output, payload)
+ verification = verify_evidence_artifact(args.output)
+ if verification["valid"] is not True:
+ raise RuntimeError(
+ "written Stage-A artifact failed verification: "
+ + "; ".join(verification["errors"])
+ )
+
+ # Output is constrained to Git-ignored or external storage. Recheck that
+ # even artifact publication did not alter the authenticated repository.
+ post_write_repository = pilot.git_state()
+ post_write_hashes = pilot.source_file_hashes(repository_root, SOURCE_FILES)
+ pilot.validate_cora_development_repository_end(
+ start_repository=repository_start,
+ end_repository=post_write_repository,
+ start_source_hashes=source_hashes_start,
+ end_source_hashes=post_write_hashes,
+ )
+ print(
+ json.dumps(
+ {
+ "output": str(args.output.resolve()),
+ "artifact_sha256": hashlib.sha256(payload).hexdigest(),
+ "canonical_evidence_sha256": artifact[
+ "canonical_evidence_sha256"
+ ],
+ "stage_a_gate": gate,
+ "post_write_repository_authenticated": True,
+ },
+ indent=2,
+ sort_keys=True,
+ )
+ )
+ return 0 if gate["passed"] is True else 2
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/src/recurquant/__init__.py b/src/recurquant/__init__.py
index 9683976..720b25a 100644
--- a/src/recurquant/__init__.py
+++ b/src/recurquant/__init__.py
@@ -43,6 +43,17 @@
row_block_model_fisher_risk,
sample_model_pseudo_labels,
)
+from .multibit_policy import (
+ allocate_exact_multibit_codes,
+ frozen_qwen35_multibit_step_budgets,
+)
+from .multibit_quantization import (
+ INT4_PRECISION_CODE,
+ INT6_PRECISION_CODE,
+ INT8_PRECISION_CODE,
+ PackedMultiBitQuantizedTensor,
+ quantize_pack_multibit,
+)
from .packed_cache import (
AdaptiveMixedPackedRecurrentStateCache,
CoraMixedPackedLinearAttentionLayer,
@@ -52,6 +63,8 @@
QueryEmaMixedPackedLinearAttentionLayer,
QueryEmaMixedPackedRecurrentStateCache,
RankFusedMixedPackedRecurrentStateCache,
+ RightRhtQueryEmaMixedPackedLinearAttentionLayer,
+ RightRhtQueryEmaMixedPackedRecurrentStateCache,
)
from .quantization import (
PackedQuantizedTensor,
@@ -68,8 +81,10 @@
create_qwen35_packed_cache,
create_qwen35_query_ema_exact_budget_cache,
create_qwen35_rank_fused_exact_budget_cache,
+ create_qwen35_right_rht_query_ema_exact_budget_cache,
create_qwen35_v02_mixed_cache,
)
+from .rht import RHT_SEED, fwht_unnormalized, right_rht_decode, right_rht_encode
from .row_policy import ExactBudgetRowPlan, RowLocation, select_rows_exact_budget
from .transition_observer import Qwen35TransitionObserver
@@ -88,6 +103,7 @@
"HorizonReadRisk",
"MixedPackedRecurrentStateCache",
"PackedMixedQuantizedTensor",
+ "PackedMultiBitQuantizedTensor",
"PackedQuantizedTensor",
"PackedRecurrentStateCache",
"QueryEmaMixedPackedLinearAttentionLayer",
@@ -95,10 +111,16 @@
"Qwen35QueryEnergyObserver",
"Qwen35TransitionObserver",
"RankFusedMixedPackedRecurrentStateCache",
+ "RightRhtQueryEmaMixedPackedLinearAttentionLayer",
+ "RightRhtQueryEmaMixedPackedRecurrentStateCache",
+ "RHT_SEED",
"PhysicalMetricRun",
"PhysicalRowPromotionOracleResult",
"QuantizationResult",
"QuantizationSpec",
+ "INT4_PRECISION_CODE",
+ "INT6_PRECISION_CODE",
+ "INT8_PRECISION_CODE",
"RowBlockModelFisherRisk",
"RowLocation",
"RowPromotionMeasurement",
@@ -109,19 +131,26 @@
"TaskMacroSensitivityAccumulator",
"TaskMacroSensitivitySummary",
"check_directional_derivative",
+ "allocate_exact_multibit_codes",
"create_qwen35_adaptive_exact_budget_cache",
"create_qwen35_cora_exact_budget_cache",
"create_qwen35_exact_budget_cache",
"create_qwen35_packed_cache",
"create_qwen35_query_ema_exact_budget_cache",
"create_qwen35_rank_fused_exact_budget_cache",
+ "create_qwen35_right_rht_query_ema_exact_budget_cache",
"create_qwen35_v02_mixed_cache",
"finite_horizon_row_read_risk",
"finite_horizon_row_read_risk_from_energies",
+ "frozen_qwen35_multibit_step_budgets",
"evaluate_physical_row_promotions",
"quantize_dequantize",
"quantize_pack",
"quantize_pack_mixed",
+ "quantize_pack_multibit",
+ "right_rht_decode",
+ "right_rht_encode",
+ "fwht_unnormalized",
"row_block_model_fisher_risk",
"row_promotion_scores_from_errors",
"row_promotion_sensitivity_scores",
diff --git a/src/recurquant/mixed_quantization.py b/src/recurquant/mixed_quantization.py
index 2cc6fd9..7f8c5f0 100644
--- a/src/recurquant/mixed_quantization.py
+++ b/src/recurquant/mixed_quantization.py
@@ -19,6 +19,7 @@
_scale_dtype,
_stochastic_round,
)
+from .rht import right_rht_decode, right_rht_encode
def _validate_mixed_specs(
@@ -155,6 +156,33 @@ class PackedMixedQuantizedTensor:
padded_size: int
rows: int
groups_per_row: int
+ right_rht_layer_index: int | None = None
+ right_rht_expected_heads: int | None = None
+
+ def __post_init__(self) -> None:
+ configured = (
+ self.right_rht_layer_index is not None,
+ self.right_rht_expected_heads is not None,
+ )
+ if configured[0] != configured[1]:
+ raise ValueError(
+ "right-RHT layer index and expected head count must be configured together"
+ )
+ if configured[0]:
+ assert self.right_rht_layer_index is not None
+ assert self.right_rht_expected_heads is not None
+ if self.right_rht_layer_index < 0:
+ raise ValueError("right-RHT layer index must be non-negative")
+ if self.right_rht_expected_heads <= 0:
+ raise ValueError("right-RHT expected head count must be positive")
+ if len(self.original_shape) != 4:
+ raise ValueError("right-RHT packed tensors require rank-four source state")
+ if self.original_shape[1] != self.right_rht_expected_heads:
+ raise ValueError(
+ "right-RHT packed tensor head metadata does not match original shape"
+ )
+ if self.low_spec.flatten_last_dims != 2:
+ raise ValueError("right-RHT packed tensors require flatten_last_dims=2")
@property
def elements(self) -> int:
@@ -219,7 +247,16 @@ def dequantize(self) -> torch.Tensor:
torch.float32
).unsqueeze(1)
restored = restored_groups.reshape(self.rows, self.padded_size)[:, : self.flattened_size]
- return restored.reshape(self.original_shape).to(self.original_dtype)
+ restored = restored.reshape(self.original_shape)
+ if self.right_rht_layer_index is not None:
+ assert self.right_rht_expected_heads is not None
+ return right_rht_decode(
+ restored,
+ layer_index=self.right_rht_layer_index,
+ expected_heads=self.right_rht_expected_heads,
+ output_dtype=self.original_dtype,
+ )
+ return restored.to(self.original_dtype)
def to(self, device: torch.device | str) -> PackedMixedQuantizedTensor:
"""Move all resident tensors without materializing or requantizing."""
@@ -237,6 +274,8 @@ def to(self, device: torch.device | str) -> PackedMixedQuantizedTensor:
padded_size=self.padded_size,
rows=self.rows,
groups_per_row=self.groups_per_row,
+ right_rht_layer_index=self.right_rht_layer_index,
+ right_rht_expected_heads=self.right_rht_expected_heads,
)
def reorder_batch(self, beam_idx: torch.LongTensor) -> PackedMixedQuantizedTensor:
@@ -248,6 +287,8 @@ def reorder_batch(self, beam_idx: torch.LongTensor) -> PackedMixedQuantizedTenso
)
if beam_idx.ndim != 1 or beam_idx.dtype not in (torch.int32, torch.int64):
raise TypeError("beam_idx must be a one-dimensional int32 or int64 tensor")
+ if self.right_rht_layer_index is not None and beam_idx.numel() == 0:
+ raise ValueError("right-RHT packed tensors cannot reorder to an empty batch")
batch_size = self.original_shape[0]
if self.rows % batch_size:
@@ -284,6 +325,8 @@ def reorder_batch(self, beam_idx: torch.LongTensor) -> PackedMixedQuantizedTenso
padded_size=self.padded_size,
rows=selected_batch_size * (self.rows // batch_size),
groups_per_row=self.groups_per_row,
+ right_rht_layer_index=self.right_rht_layer_index,
+ right_rht_expected_heads=self.right_rht_expected_heads,
)
@@ -300,6 +343,8 @@ def _from_integer_groups(
padded_size: int,
rows: int,
groups_per_row: int,
+ right_rht_layer_index: int | None = None,
+ right_rht_expected_heads: int | None = None,
) -> PackedMixedQuantizedTensor:
flat_mask = high_precision_mask.reshape(-1)
return PackedMixedQuantizedTensor(
@@ -315,6 +360,8 @@ def _from_integer_groups(
padded_size=padded_size,
rows=rows,
groups_per_row=groups_per_row,
+ right_rht_layer_index=right_rht_layer_index,
+ right_rht_expected_heads=right_rht_expected_heads,
)
@@ -324,6 +371,8 @@ def quantize_pack_mixed(
*,
low_spec: QuantizationSpec,
high_spec: QuantizationSpec,
+ right_rht_layer_index: int | None = None,
+ right_rht_expected_heads: int | None = None,
) -> PackedMixedQuantizedTensor:
"""Quantize groups into physically separate INT4 and INT8 payload pools.
@@ -332,9 +381,27 @@ def quantize_pack_mixed(
"""
_validate_mixed_specs(low_spec, high_spec)
- working, original_dtype, flattened_size, padded_size, groups_per_row, grouped = _group_tensor(
- tensor, low_spec
+ configured = (
+ right_rht_layer_index is not None,
+ right_rht_expected_heads is not None,
+ )
+ if configured[0] != configured[1]:
+ raise ValueError(
+ "right-RHT layer index and expected head count must be configured together"
+ )
+ source = tensor
+ if right_rht_layer_index is not None:
+ assert right_rht_expected_heads is not None
+ source = right_rht_encode(
+ tensor,
+ layer_index=right_rht_layer_index,
+ expected_heads=right_rht_expected_heads,
+ output_dtype=torch.float32,
+ )
+ working, grouped_dtype, flattened_size, padded_size, groups_per_row, grouped = _group_tensor(
+ source, low_spec
)
+ original_dtype = tensor.dtype if configured[0] else grouped_dtype
rows = grouped.shape[0]
_validate_mask_shape(
high_precision_mask,
@@ -356,4 +423,6 @@ def quantize_pack_mixed(
padded_size=padded_size,
rows=rows,
groups_per_row=groups_per_row,
+ right_rht_layer_index=right_rht_layer_index,
+ right_rht_expected_heads=right_rht_expected_heads,
)
diff --git a/src/recurquant/multibit_policy.py b/src/recurquant/multibit_policy.py
new file mode 100644
index 0000000..8cd307d
--- /dev/null
+++ b/src/recurquant/multibit_policy.py
@@ -0,0 +1,256 @@
+"""Correctness-first exact-budget policy for row-wise INT4/INT6/INT8.
+
+The allocator in this module is deliberately a CPU reference implementation.
+For ``N`` rows and an exact marginal-step budget ``K``, it uses ``O(NK)`` time,
+``O(NK)`` bytes for backtracking choices, and ``O(K)`` floating-point working
+memory. It makes no runtime or deployment claim.
+
+Each output code consumes zero, one, or two 2-bit marginal steps:
+
+``0 -> INT4``, ``1 -> INT6``, and ``2 -> INT8``.
+
+The dynamic program chooses among all three complete row states. It therefore
+remains globally optimal when a row's INT6-to-INT8 benefit exceeds its
+INT4-to-INT6 benefit, where sorting individual marginal gains would violate the
+required precedence.
+"""
+
+from __future__ import annotations
+
+import math
+from types import MappingProxyType
+
+import numpy as np
+import torch
+
+FROZEN_QWEN35_INT8_ROW_QUOTAS = MappingProxyType(
+ {
+ 0: 355,
+ 1: 380,
+ 2: 269,
+ 4: 179,
+ 5: 185,
+ 6: 105,
+ 8: 80,
+ 9: 43,
+ 10: 84,
+ 12: 30,
+ 13: 62,
+ 14: 54,
+ 16: 45,
+ 17: 27,
+ 18: 7,
+ 20: 9,
+ 21: 7,
+ 22: 55,
+ }
+)
+
+QWEN35_ROWS_PER_LINEAR_LAYER = 16 * 128
+QWEN35_VALUE_DIM = 128
+QWEN35_SCALE_BYTES_PER_ROW = 2
+QWEN35_OLD_PRECISION_BITS_PER_ROW = 1
+QWEN35_MULTIBIT_PRECISION_BITS_PER_ROW = 2
+QWEN35_MARGINAL_STEP_BYTES = 32
+QWEN35_FROZEN_TOTAL_MARGINAL_STEPS = 3_808
+QWEN35_FROZEN_TOTAL_STATE_BYTES = 2_564_096
+
+
+def _validate_distortion_tensor(
+ tensor: torch.Tensor,
+ *,
+ name: str,
+ expected_shape: tuple[int, int] | None,
+) -> tuple[int, int]:
+ if not isinstance(tensor, torch.Tensor):
+ raise TypeError(f"{name} must be a torch.Tensor")
+ if tensor.ndim != 2 or tensor.numel() == 0:
+ raise ValueError(f"{name} must have non-empty shape [heads, rows]")
+ if not tensor.is_floating_point():
+ raise TypeError(f"{name} must use a floating-point dtype")
+ shape = (tensor.shape[0], tensor.shape[1])
+ if expected_shape is not None and shape != expected_shape:
+ raise ValueError(
+ f"D4, D6, and D8 must have identical shapes; {name} has {shape}, "
+ f"expected {expected_shape}"
+ )
+ if not torch.isfinite(tensor).all().item():
+ raise ValueError(f"{name} must contain only finite values")
+ if (tensor < 0).any().item():
+ raise ValueError(f"{name} must contain only nonnegative values")
+ return shape
+
+
+def allocate_exact_multibit_codes(
+ d4: torch.Tensor,
+ d6: torch.Tensor,
+ d8: torch.Tensor,
+ *,
+ marginal_steps: int,
+) -> torch.Tensor:
+ """Minimize exact total distortion under a 0/1/2 step budget.
+
+ ``d4``, ``d6``, and ``d8`` contain the complete weighted distortion for
+ representing each row at INT4, INT6, and INT8. All tensors must have the
+ same non-empty ``[heads, rows]`` shape and contain finite, nonnegative
+ floating-point values.
+
+ The returned CPU ``torch.uint8`` tensor has the input shape, uses codes
+ ``0``/``1``/``2`` for INT4/INT6/INT8, and has an exact code sum equal to
+ ``marginal_steps``. Among solutions with exactly equal CPU-FP64 objective,
+ the lexicographically greatest flattened code vector is chosen: lower
+ flattened row indices receive higher precision first.
+
+ This is a correctness/reference path. Its complexity is ``O(NK)`` time,
+ ``O(NK)`` choice bytes, and ``O(K)`` FP64 workspace for ``N`` rows and
+ budget ``K``.
+ """
+
+ shape = _validate_distortion_tensor(d4, name="D4", expected_shape=None)
+ _validate_distortion_tensor(d6, name="D6", expected_shape=shape)
+ _validate_distortion_tensor(d8, name="D8", expected_shape=shape)
+ if isinstance(marginal_steps, bool) or not isinstance(marginal_steps, int):
+ raise TypeError("marginal_steps must be an integer")
+
+ total_rows = math.prod(shape)
+ if not 0 <= marginal_steps <= 2 * total_rows:
+ raise ValueError(
+ "marginal_steps must be in the exact representable range "
+ f"[0, {2 * total_rows}]"
+ )
+
+ if marginal_steps == 0:
+ return torch.zeros(shape, dtype=torch.uint8)
+ if marginal_steps == 2 * total_rows:
+ return torch.full(shape, 2, dtype=torch.uint8)
+
+ flat_distortions = np.stack(
+ [
+ tensor.detach().to(device="cpu", dtype=torch.float64).reshape(-1).numpy()
+ for tensor in (d4, d6, d8)
+ ],
+ axis=1,
+ )
+
+ # Removing a row-wise constant leaves every allocation objective difference
+ # unchanged. Scaling the remaining nonnegative costs prevents overflow while
+ # retaining the exact discrete optimization problem in CPU FP64.
+ flat_distortions -= flat_distortions.min(axis=1, keepdims=True)
+ maximum = float(flat_distortions.max())
+ if maximum > 0.0:
+ flat_distortions /= maximum
+
+ unreachable = np.inf
+ next_cost = np.full(marginal_steps + 1, unreachable, dtype=np.float64)
+ next_cost[0] = 0.0
+ choices = np.full(
+ (total_rows, marginal_steps + 1),
+ np.iinfo(np.uint8).max,
+ dtype=np.uint8,
+ )
+
+ # Build suffix optima. Iterating rows backwards makes an equal-cost choice
+ # of the larger current code exactly equivalent to lexicographic priority
+ # for lower flattened row indices.
+ for row_index in range(total_rows - 1, -1, -1):
+ suffix_rows = total_rows - row_index - 1
+ next_maximum_steps = min(marginal_steps, 2 * suffix_rows)
+ current_cost = np.full(marginal_steps + 1, unreachable, dtype=np.float64)
+ current_choice = choices[row_index]
+
+ for code in (0, 1, 2):
+ available = min(next_maximum_steps, marginal_steps - code)
+ if available < 0:
+ continue
+ destination = slice(code, code + available + 1)
+ candidate = (
+ next_cost[: available + 1] + flat_distortions[row_index, code]
+ )
+ incumbent = current_cost[destination]
+ incumbent_code = current_choice[destination]
+ update = np.isfinite(candidate) & (
+ (candidate < incumbent)
+ | ((candidate == incumbent) & (code > incumbent_code))
+ )
+ incumbent[update] = candidate[update]
+ incumbent_code[update] = code
+
+ next_cost = current_cost
+
+ if not np.isfinite(next_cost[marginal_steps]):
+ raise RuntimeError("exact multibit dynamic program did not reach the requested budget")
+
+ flat_codes = np.empty(total_rows, dtype=np.uint8)
+ remaining = marginal_steps
+ invalid_choice = np.iinfo(np.uint8).max
+ for row_index in range(total_rows):
+ code = int(choices[row_index, remaining])
+ if code == invalid_choice:
+ raise RuntimeError("exact multibit dynamic-program backtracking is incomplete")
+ flat_codes[row_index] = code
+ remaining -= code
+ if remaining != 0:
+ raise RuntimeError("exact multibit dynamic-program backtracking changed the budget")
+
+ return torch.from_numpy(flat_codes.reshape(shape).copy())
+
+
+def frozen_qwen35_multibit_step_budgets() -> dict[int, int]:
+ """Return the exact per-layer 2-bit-step budgets matching frozen Q4/Q8 bytes.
+
+ A Qwen3.5-0.8B Gated DeltaNet layer contains 2,048 row groups. Replacing its
+ one-bit Q4/Q8 mask with a two-bit Q4/Q6/Q8 code costs 256 additional bytes,
+ equal to eight 32-byte marginal steps. Therefore a layer with frozen INT8
+ row quota ``q`` receives ``K = 2*q - 8`` steps.
+
+ The helper validates every old/new per-layer byte count, the 3,808-step
+ global sum, and the 2,564,096-byte global state total before returning.
+ """
+
+ budgets = {
+ layer_index: 2 * quota - 8
+ for layer_index, quota in FROZEN_QWEN35_INT8_ROW_QUOTAS.items()
+ }
+ if any(not 0 <= steps <= 2 * QWEN35_ROWS_PER_LINEAR_LAYER for steps in budgets.values()):
+ raise RuntimeError("frozen Qwen3.5 multibit step budget is outside [0, 2N]")
+ if sum(budgets.values()) != QWEN35_FROZEN_TOTAL_MARGINAL_STEPS:
+ raise RuntimeError("frozen Qwen3.5 multibit step budgets do not sum to 3,808")
+
+ q4_payload_bytes = math.ceil(4 * QWEN35_VALUE_DIM / 8)
+ q8_payload_bytes = math.ceil(8 * QWEN35_VALUE_DIM / 8)
+ old_mask_bytes = math.ceil(
+ QWEN35_ROWS_PER_LINEAR_LAYER * QWEN35_OLD_PRECISION_BITS_PER_ROW / 8
+ )
+ multibit_mask_bytes = math.ceil(
+ QWEN35_ROWS_PER_LINEAR_LAYER * QWEN35_MULTIBIT_PRECISION_BITS_PER_ROW / 8
+ )
+ base_payload_and_scales = QWEN35_ROWS_PER_LINEAR_LAYER * (
+ q4_payload_bytes + QWEN35_SCALE_BYTES_PER_ROW
+ )
+
+ old_total = 0
+ multibit_total = 0
+ for layer_index, quota in FROZEN_QWEN35_INT8_ROW_QUOTAS.items():
+ old_bytes = (
+ base_payload_and_scales
+ + old_mask_bytes
+ + quota * (q8_payload_bytes - q4_payload_bytes)
+ )
+ multibit_bytes = (
+ base_payload_and_scales
+ + multibit_mask_bytes
+ + budgets[layer_index] * QWEN35_MARGINAL_STEP_BYTES
+ )
+ if old_bytes != multibit_bytes:
+ raise RuntimeError(
+ f"frozen Qwen3.5 layer {layer_index} byte parity failed: "
+ f"{old_bytes} != {multibit_bytes}"
+ )
+ old_total += old_bytes
+ multibit_total += multibit_bytes
+
+ if old_total != QWEN35_FROZEN_TOTAL_STATE_BYTES:
+ raise RuntimeError("frozen Qwen3.5 Q4/Q8 state bytes do not equal 2,564,096")
+ if multibit_total != QWEN35_FROZEN_TOTAL_STATE_BYTES:
+ raise RuntimeError("frozen Qwen3.5 multibit state bytes do not equal 2,564,096")
+ return budgets
diff --git a/src/recurquant/multibit_quantization.py b/src/recurquant/multibit_quantization.py
new file mode 100644
index 0000000..16a5fe9
--- /dev/null
+++ b/src/recurquant/multibit_quantization.py
@@ -0,0 +1,685 @@
+"""Physical mixed-group INT4/INT6/INT8 packing for recurrent states.
+
+Each quantization group selects one of three symmetric signed precisions:
+``0 = INT4``, ``1 = INT6``, and ``2 = INT8``. Four precision codes share one
+byte, every group owns exactly one stored scale, and integer payloads are kept
+in separate width-specific pools. ``storage_bytes`` counts the resident tensor
+bytes exactly; Python metadata is intentionally excluded.
+
+INT6 uses a little-endian bit stream within each group: four two's-complement
+6-bit codes occupy three bytes. Consequently, a 128-element INT6 group occupies
+exactly 96 payload bytes.
+"""
+
+from __future__ import annotations
+
+import math
+from dataclasses import dataclass
+
+import torch
+
+from .quantization import (
+ QuantizationSpec,
+ _group_tensor,
+ _scale_dtype,
+ _stochastic_round,
+)
+
+INT4_PRECISION_CODE = 0
+INT6_PRECISION_CODE = 1
+INT8_PRECISION_CODE = 2
+_BITS_BY_PRECISION_CODE = (4, 6, 8)
+_INTEGER_DTYPES = {
+ torch.uint8,
+ torch.int8,
+ torch.int16,
+ torch.int32,
+ torch.int64,
+}
+
+
+def _validate_multibit_specs(
+ int4_spec: QuantizationSpec,
+ int6_spec: QuantizationSpec,
+ int8_spec: QuantizationSpec,
+) -> None:
+ specs = (int4_spec, int6_spec, int8_spec)
+ expected_bits = _BITS_BY_PRECISION_CODE
+ for label, spec, bits in zip(
+ ("int4_spec", "int6_spec", "int8_spec"),
+ specs,
+ expected_bits,
+ strict=True,
+ ):
+ if not isinstance(spec, QuantizationSpec):
+ raise TypeError(f"{label} must be a QuantizationSpec")
+ if spec.bits != bits:
+ raise ValueError(f"{label} must use {bits} bits")
+
+ shared_fields = (
+ "group_size",
+ "scale_bits",
+ "flatten_last_dims",
+ "rounding",
+ "seed",
+ "epsilon",
+ )
+ mismatched = [
+ field
+ for field in shared_fields
+ if any(getattr(spec, field) != getattr(int4_spec, field) for spec in specs[1:])
+ ]
+ if mismatched:
+ raise ValueError(
+ "INT4, INT6, and INT8 specs must differ only in bits; mismatched fields: "
+ + ", ".join(mismatched)
+ )
+
+ non_byte_widths = [
+ bits for bits in expected_bits if (int4_spec.group_size * bits) % 8 != 0
+ ]
+ if non_byte_widths:
+ widths = ", ".join(f"INT{bits}" for bits in non_byte_widths)
+ raise ValueError(
+ f"group_size={int4_spec.group_size} does not give whole-byte payloads for {widths}"
+ )
+
+
+def _validate_precision_code_shape(
+ precision_codes: torch.Tensor,
+ *,
+ rows: int,
+ groups_per_row: int,
+) -> None:
+ if not isinstance(precision_codes, torch.Tensor):
+ raise TypeError("precision_codes must be a torch.Tensor")
+ if precision_codes.dtype != torch.uint8:
+ raise TypeError("precision_codes must use torch.uint8")
+
+ expected_flat = (rows * groups_per_row,)
+ expected_grouped = (rows, groups_per_row)
+ if tuple(precision_codes.shape) not in (expected_flat, expected_grouped):
+ raise ValueError(
+ "precision_codes must have shape "
+ f"{expected_flat} or {expected_grouped}, got {tuple(precision_codes.shape)}"
+ )
+ if (precision_codes > INT8_PRECISION_CODE).any().item():
+ raise ValueError("precision_codes may contain only 0=INT4, 1=INT6, or 2=INT8")
+
+
+def _pack_precision_codes(precision_codes: torch.Tensor) -> torch.Tensor:
+ """Pack four canonical two-bit precision codes into each byte."""
+
+ if not isinstance(precision_codes, torch.Tensor):
+ raise TypeError("precision_codes must be a torch.Tensor")
+ if precision_codes.dtype != torch.uint8:
+ raise TypeError("precision_codes must use torch.uint8")
+ if (precision_codes > INT8_PRECISION_CODE).any().item():
+ raise ValueError("precision code 3 is reserved and must be rejected")
+
+ flat = precision_codes.reshape(-1)
+ padding = (-flat.numel()) % 4
+ if padding:
+ flat = torch.nn.functional.pad(flat, (0, padding))
+ chunks = flat.reshape(flat.numel() // 4, 4).to(torch.int16)
+ packed = (
+ chunks[:, 0]
+ | torch.bitwise_left_shift(chunks[:, 1], 2)
+ | torch.bitwise_left_shift(chunks[:, 2], 4)
+ | torch.bitwise_left_shift(chunks[:, 3], 6)
+ )
+ return packed.to(torch.uint8).contiguous()
+
+
+def _unpack_precision_codes(
+ packed: torch.Tensor,
+ total_groups: int,
+) -> torch.Tensor:
+ """Unpack and validate the canonical two-bit precision stream."""
+
+ if not isinstance(packed, torch.Tensor):
+ raise TypeError("packed precision codes must be a torch.Tensor")
+ if packed.dtype != torch.uint8 or packed.ndim != 1:
+ raise TypeError("packed precision codes must be a one-dimensional torch.uint8 tensor")
+ if not isinstance(total_groups, int) or total_groups < 0:
+ raise ValueError("total_groups must be a non-negative integer")
+
+ expected_bytes = math.ceil(total_groups / 4)
+ if packed.numel() != expected_bytes:
+ raise ValueError(
+ f"packed precision stream must contain {expected_bytes} bytes, got {packed.numel()}"
+ )
+
+ shifts = torch.tensor((0, 2, 4, 6), dtype=torch.int16, device=packed.device)
+ expanded = torch.bitwise_right_shift(packed.to(torch.int16).unsqueeze(1), shifts)
+ all_codes = torch.bitwise_and(expanded, 0x03).reshape(-1).to(torch.uint8)
+ codes = all_codes[:total_groups]
+ if (codes == 3).any().item():
+ raise ValueError("packed precision stream contains reserved precision code 3")
+ if (all_codes[total_groups:] != 0).any().item():
+ raise ValueError("unused precision-code padding bits must be zero")
+ return codes
+
+
+def _validate_integer_groups(
+ codes: torch.Tensor,
+ *,
+ bits: int,
+) -> None:
+ if not isinstance(codes, torch.Tensor):
+ raise TypeError("integer codes must be a torch.Tensor")
+ if codes.dtype not in _INTEGER_DTYPES:
+ raise TypeError("integer codes must use an integer dtype")
+ if codes.ndim != 2:
+ raise ValueError("integer codes must have shape [groups, group_size]")
+ if (codes.shape[1] * bits) % 8:
+ raise ValueError(f"INT{bits} group payload must occupy a whole number of bytes")
+
+ qmax = (1 << (bits - 1)) - 1
+ if codes.numel() and (codes.min().item() < -qmax or codes.max().item() > qmax):
+ raise ValueError(f"INT{bits} symmetric codes must lie in [{-qmax}, {qmax}]")
+
+
+def _pack_int4_groups(codes: torch.Tensor) -> torch.Tensor:
+ """Pack signed symmetric INT4 groups, preserving each group boundary."""
+
+ _validate_integer_groups(codes, bits=4)
+ nibbles = torch.bitwise_and(codes.to(torch.int16), 0x0F)
+ return (
+ nibbles[:, 0::2] | torch.bitwise_left_shift(nibbles[:, 1::2], 4)
+ ).to(torch.uint8).contiguous()
+
+
+def _unpack_int4_groups(payload: torch.Tensor, group_size: int) -> torch.Tensor:
+ if payload.dtype != torch.uint8 or payload.ndim != 2:
+ raise TypeError("INT4 payload must be a two-dimensional torch.uint8 tensor")
+ expected_width = group_size * 4 // 8
+ if group_size <= 0 or group_size * 4 % 8 or payload.shape[1] != expected_width:
+ raise ValueError("INT4 payload shape is inconsistent with group_size")
+
+ low = torch.bitwise_and(payload, 0x0F).to(torch.int16)
+ high = torch.bitwise_right_shift(payload, 4).to(torch.int16)
+ low = torch.where(low >= 8, low - 16, low)
+ high = torch.where(high >= 8, high - 16, high)
+ codes = torch.empty(
+ (payload.shape[0], group_size),
+ dtype=torch.int16,
+ device=payload.device,
+ )
+ codes[:, 0::2] = low
+ codes[:, 1::2] = high
+ if codes.numel() and (codes == -8).any().item():
+ raise ValueError("INT4 payload contains the reserved symmetric code -8")
+ return codes
+
+
+def _pack_int6_groups(codes: torch.Tensor) -> torch.Tensor:
+ """Pack four signed two's-complement INT6 codes into three bytes."""
+
+ _validate_integer_groups(codes, bits=6)
+ unsigned = torch.bitwise_and(codes.to(torch.int16), 0x3F).reshape(
+ codes.shape[0],
+ codes.shape[1] // 4,
+ 4,
+ )
+ first = unsigned[:, :, 0]
+ second = unsigned[:, :, 1]
+ third = unsigned[:, :, 2]
+ fourth = unsigned[:, :, 3]
+
+ byte0 = first | torch.bitwise_left_shift(torch.bitwise_and(second, 0x03), 6)
+ byte1 = torch.bitwise_right_shift(second, 2) | torch.bitwise_left_shift(
+ torch.bitwise_and(third, 0x0F),
+ 4,
+ )
+ byte2 = torch.bitwise_right_shift(third, 4) | torch.bitwise_left_shift(fourth, 2)
+ return (
+ torch.stack((byte0, byte1, byte2), dim=-1)
+ .reshape(codes.shape[0], codes.shape[1] * 6 // 8)
+ .to(torch.uint8)
+ .contiguous()
+ )
+
+
+def _unpack_int6_groups(payload: torch.Tensor, group_size: int) -> torch.Tensor:
+ """Unpack group-aligned three-byte blocks into signed INT6 codes."""
+
+ if payload.dtype != torch.uint8 or payload.ndim != 2:
+ raise TypeError("INT6 payload must be a two-dimensional torch.uint8 tensor")
+ expected_width = group_size * 6 // 8
+ if group_size <= 0 or group_size * 6 % 8 or payload.shape[1] != expected_width:
+ raise ValueError("INT6 payload shape is inconsistent with group_size")
+
+ triples = payload.reshape(payload.shape[0], group_size // 4, 3).to(torch.int16)
+ byte0 = triples[:, :, 0]
+ byte1 = triples[:, :, 1]
+ byte2 = triples[:, :, 2]
+ first = torch.bitwise_and(byte0, 0x3F)
+ second = torch.bitwise_right_shift(byte0, 6) | torch.bitwise_left_shift(
+ torch.bitwise_and(byte1, 0x0F),
+ 2,
+ )
+ third = torch.bitwise_right_shift(byte1, 4) | torch.bitwise_left_shift(
+ torch.bitwise_and(byte2, 0x03),
+ 4,
+ )
+ fourth = torch.bitwise_right_shift(byte2, 2)
+ unsigned = torch.stack((first, second, third, fourth), dim=-1).reshape(
+ payload.shape[0],
+ group_size,
+ )
+ codes = torch.where(unsigned >= 32, unsigned - 64, unsigned).to(torch.int16)
+ if codes.numel() and (codes == -32).any().item():
+ raise ValueError("INT6 payload contains the reserved symmetric code -32")
+ return codes
+
+
+def _quantize_multibit_groups(
+ grouped: torch.Tensor,
+ precision_codes: torch.Tensor,
+ spec: QuantizationSpec,
+) -> tuple[torch.Tensor, torch.Tensor]:
+ qmax_lookup = torch.tensor((7.0, 31.0, 127.0), device=grouped.device)
+ qmax = qmax_lookup[precision_codes.to(torch.long)].unsqueeze(1)
+ absmax = grouped.abs().amax(dim=-1, keepdim=True)
+ ideal_scales = torch.where(
+ absmax > spec.epsilon,
+ absmax / qmax,
+ torch.ones_like(absmax),
+ )
+ scale_dtype = _scale_dtype(spec.scale_bits)
+ if scale_dtype == torch.float16:
+ ideal_scales = ideal_scales.clamp(
+ min=2.0**-24,
+ max=torch.finfo(torch.float16).max,
+ )
+ stored_scales = ideal_scales.to(scale_dtype)
+ normalized = grouped / stored_scales.to(torch.float32)
+ if spec.rounding == "nearest":
+ quantized = torch.round(normalized)
+ else:
+ quantized = _stochastic_round(normalized, seed=spec.seed)
+ quantized = torch.minimum(torch.maximum(quantized, -qmax), qmax)
+ return quantized.to(torch.int16), stored_scales.squeeze(1).contiguous()
+
+
+@dataclass(frozen=True, slots=True)
+class PackedMultiBitQuantizedTensor:
+ """A tensor with separate INT4, INT6, and INT8 group payload pools."""
+
+ int4_payload: torch.Tensor
+ int6_payload: torch.Tensor
+ int8_payload: torch.Tensor
+ scales: torch.Tensor
+ packed_precision_codes: torch.Tensor
+ int4_spec: QuantizationSpec
+ int6_spec: QuantizationSpec
+ int8_spec: QuantizationSpec
+ original_shape: tuple[int, ...]
+ original_dtype: torch.dtype
+ flattened_size: int
+ padded_size: int
+ rows: int
+ groups_per_row: int
+
+ def __post_init__(self) -> None:
+ """Reject packed objects whose metadata and resident tensors disagree."""
+
+ _validate_multibit_specs(self.int4_spec, self.int6_spec, self.int8_spec)
+ metadata = {
+ "flattened_size": self.flattened_size,
+ "padded_size": self.padded_size,
+ "rows": self.rows,
+ "groups_per_row": self.groups_per_row,
+ }
+ for name, value in metadata.items():
+ if not isinstance(value, int) or isinstance(value, bool):
+ raise TypeError(f"{name} must be an integer")
+ if value < 0:
+ raise ValueError(f"{name} must be non-negative")
+
+ if not isinstance(self.original_shape, tuple):
+ raise TypeError("original_shape must be a tuple of integers")
+ if not self.original_shape:
+ raise ValueError("original_shape must not be empty")
+ if any(
+ not isinstance(dimension, int) or isinstance(dimension, bool)
+ for dimension in self.original_shape
+ ):
+ raise TypeError("original_shape must be a tuple of integers")
+ if any(dimension < 0 for dimension in self.original_shape):
+ raise ValueError("original_shape dimensions must be non-negative")
+ if len(self.original_shape) < self.int4_spec.flatten_last_dims:
+ raise ValueError("original_shape has fewer dimensions than flatten_last_dims")
+
+ flattened_dimensions = self.original_shape[-self.int4_spec.flatten_last_dims :]
+ if any(dimension <= 0 for dimension in flattened_dimensions):
+ raise ValueError("flattened original_shape dimensions must be positive")
+ expected_flattened_size = math.prod(flattened_dimensions)
+ if self.flattened_size != expected_flattened_size:
+ raise ValueError(
+ "flattened_size is inconsistent with original_shape and flatten_last_dims"
+ )
+ expected_groups_per_row = math.ceil(self.flattened_size / self.int4_spec.group_size)
+ if self.groups_per_row != expected_groups_per_row:
+ raise ValueError("groups_per_row is inconsistent with flattened_size and group_size")
+ expected_padded_size = self.groups_per_row * self.int4_spec.group_size
+ if self.padded_size != expected_padded_size:
+ raise ValueError("padded_size is inconsistent with groups_per_row and group_size")
+ expected_rows = math.prod(
+ self.original_shape[: -self.int4_spec.flatten_last_dims]
+ )
+ if self.rows != expected_rows:
+ raise ValueError("rows is inconsistent with original_shape and flatten_last_dims")
+
+ if not isinstance(self.original_dtype, torch.dtype):
+ raise TypeError("original_dtype must be a torch.dtype")
+ if not torch.empty((), dtype=self.original_dtype).is_floating_point():
+ raise TypeError("original_dtype must be a floating-point dtype")
+
+ resident_tensors = {
+ "int4_payload": self.int4_payload,
+ "int6_payload": self.int6_payload,
+ "int8_payload": self.int8_payload,
+ "scales": self.scales,
+ "packed_precision_codes": self.packed_precision_codes,
+ }
+ for name, tensor in resident_tensors.items():
+ if not isinstance(tensor, torch.Tensor):
+ raise TypeError(f"{name} must be a torch.Tensor")
+ if not tensor.is_contiguous():
+ raise ValueError(f"{name} must be contiguous")
+
+ resident_device = self.scales.device
+ mismatched_devices = [
+ name
+ for name, tensor in resident_tensors.items()
+ if tensor.device != resident_device
+ ]
+ if mismatched_devices:
+ raise ValueError(
+ "all resident tensors must share one device; mismatched: "
+ + ", ".join(mismatched_devices)
+ )
+
+ expected_scale_dtype = _scale_dtype(self.int4_spec.scale_bits)
+ if self.scales.dtype != expected_scale_dtype or self.scales.ndim != 1:
+ raise TypeError(
+ f"scales must be a one-dimensional {expected_scale_dtype} tensor"
+ )
+ if self.scales.numel() != self.total_groups:
+ raise ValueError(
+ f"scales must contain one value per group ({self.total_groups})"
+ )
+ if self.scales.numel():
+ if not torch.isfinite(self.scales).all().item():
+ raise ValueError("scales must contain only finite values")
+ if (self.scales <= 0).any().item():
+ raise ValueError("scales must be strictly positive")
+
+ precision_codes = _unpack_precision_codes(
+ self.packed_precision_codes,
+ self.total_groups,
+ )
+ expected_counts = tuple(
+ int((precision_codes == code).sum().item())
+ for code in (
+ INT4_PRECISION_CODE,
+ INT6_PRECISION_CODE,
+ INT8_PRECISION_CODE,
+ )
+ )
+ payload_layouts = (
+ ("int4_payload", self.int4_payload, torch.uint8, 4, expected_counts[0]),
+ ("int6_payload", self.int6_payload, torch.uint8, 6, expected_counts[1]),
+ ("int8_payload", self.int8_payload, torch.int8, 8, expected_counts[2]),
+ )
+ for name, payload, dtype, bits, expected_groups in payload_layouts:
+ if payload.dtype != dtype or payload.ndim != 2:
+ raise TypeError(f"{name} must be a two-dimensional {dtype} tensor")
+ expected_width = self.int4_spec.group_size * bits // 8
+ if tuple(payload.shape) != (expected_groups, expected_width):
+ raise ValueError(
+ f"{name} must have shape {(expected_groups, expected_width)}, "
+ f"got {tuple(payload.shape)}"
+ )
+
+ if self.int4_payload.numel():
+ low = torch.bitwise_and(self.int4_payload, 0x0F)
+ high = torch.bitwise_right_shift(self.int4_payload, 4)
+ if ((low == 8) | (high == 8)).any().item():
+ raise ValueError("int4_payload contains the reserved symmetric code -8")
+ if self.int6_payload.numel():
+ _unpack_int6_groups(self.int6_payload, self.int4_spec.group_size)
+ if self.int8_payload.numel() and (self.int8_payload == -128).any().item():
+ raise ValueError("int8_payload contains the reserved symmetric code -128")
+
+ @property
+ def elements(self) -> int:
+ return math.prod(self.original_shape)
+
+ @property
+ def total_groups(self) -> int:
+ return self.rows * self.groups_per_row
+
+ @property
+ def int4_groups(self) -> int:
+ return self.int4_payload.shape[0]
+
+ @property
+ def int6_groups(self) -> int:
+ return self.int6_payload.shape[0]
+
+ @property
+ def int8_groups(self) -> int:
+ return self.int8_payload.shape[0]
+
+ @property
+ def payload_bytes(self) -> int:
+ return sum(
+ payload.numel() * payload.element_size()
+ for payload in (self.int4_payload, self.int6_payload, self.int8_payload)
+ )
+
+ @property
+ def scale_bytes(self) -> int:
+ return self.scales.numel() * self.scales.element_size()
+
+ @property
+ def precision_code_bytes(self) -> int:
+ return self.packed_precision_codes.numel() * self.packed_precision_codes.element_size()
+
+ @property
+ def storage_bytes(self) -> int:
+ return self.payload_bytes + self.scale_bytes + self.precision_code_bytes
+
+ def precision_codes(self) -> torch.Tensor:
+ """Return precision codes in ``[rows, groups_per_row]`` order."""
+
+ return _unpack_precision_codes(
+ self.packed_precision_codes,
+ self.total_groups,
+ ).reshape(self.rows, self.groups_per_row)
+
+ def _integer_groups(self) -> torch.Tensor:
+ precision_codes = self.precision_codes().reshape(-1)
+ codes = torch.empty(
+ (self.total_groups, self.int4_spec.group_size),
+ dtype=torch.int16,
+ device=self.scales.device,
+ )
+ codes[precision_codes == INT4_PRECISION_CODE] = _unpack_int4_groups(
+ self.int4_payload,
+ self.int4_spec.group_size,
+ )
+ codes[precision_codes == INT6_PRECISION_CODE] = _unpack_int6_groups(
+ self.int6_payload,
+ self.int4_spec.group_size,
+ )
+ int8_codes = self.int8_payload.to(torch.int16)
+ if int8_codes.numel() and (int8_codes == -128).any().item():
+ raise ValueError("INT8 payload contains the reserved symmetric code -128")
+ codes[precision_codes == INT8_PRECISION_CODE] = int8_codes
+ return codes
+
+ def dequantize(self) -> torch.Tensor:
+ """Materialize the mixed packed tensor in its original dtype and shape."""
+
+ restored_groups = self._integer_groups().to(torch.float32) * self.scales.to(
+ torch.float32
+ ).unsqueeze(1)
+ restored = restored_groups.reshape(self.rows, self.padded_size)[:, : self.flattened_size]
+ return restored.reshape(self.original_shape).to(self.original_dtype)
+
+ def to(self, device: torch.device | str) -> PackedMultiBitQuantizedTensor:
+ """Move every resident tensor without materializing or requantizing."""
+
+ return PackedMultiBitQuantizedTensor(
+ int4_payload=self.int4_payload.to(device),
+ int6_payload=self.int6_payload.to(device),
+ int8_payload=self.int8_payload.to(device),
+ scales=self.scales.to(device),
+ packed_precision_codes=self.packed_precision_codes.to(device),
+ int4_spec=self.int4_spec,
+ int6_spec=self.int6_spec,
+ int8_spec=self.int8_spec,
+ original_shape=self.original_shape,
+ original_dtype=self.original_dtype,
+ flattened_size=self.flattened_size,
+ padded_size=self.padded_size,
+ rows=self.rows,
+ groups_per_row=self.groups_per_row,
+ )
+
+ def reorder_batch(self, beam_idx: torch.LongTensor) -> PackedMultiBitQuantizedTensor:
+ """Select packed batch entries without another quantization round trip."""
+
+ if len(self.original_shape) <= self.int4_spec.flatten_last_dims:
+ raise RuntimeError(
+ "Cannot reorder multibit groups when quantization includes the batch dimension"
+ )
+ if not isinstance(beam_idx, torch.Tensor):
+ raise TypeError("beam_idx must be a torch.Tensor")
+ if beam_idx.ndim != 1 or beam_idx.dtype not in (torch.int32, torch.int64):
+ raise TypeError("beam_idx must be a one-dimensional int32 or int64 tensor")
+
+ batch_size = self.original_shape[0]
+ if batch_size <= 0 or self.rows % batch_size:
+ raise RuntimeError("multibit row metadata is inconsistent with its batch dimension")
+ if beam_idx.numel() and (beam_idx.min().item() < 0 or beam_idx.max().item() >= batch_size):
+ raise IndexError("beam_idx contains an out-of-range batch index")
+
+ groups_per_batch = self.total_groups // batch_size
+ selected = beam_idx.to(self.scales.device)
+ selected_batch_size = selected.numel()
+ codes = self._integer_groups().reshape(
+ batch_size,
+ groups_per_batch,
+ self.int4_spec.group_size,
+ )
+ scales = self.scales.reshape(batch_size, groups_per_batch)
+ precision_codes = self.precision_codes().reshape(batch_size, groups_per_batch)
+
+ reordered_codes = codes.index_select(0, selected).reshape(
+ selected_batch_size * groups_per_batch,
+ self.int4_spec.group_size,
+ )
+ reordered_scales = scales.index_select(0, selected).reshape(-1).contiguous()
+ reordered_precision = precision_codes.index_select(0, selected).reshape(-1)
+ return _from_integer_groups(
+ reordered_codes,
+ reordered_scales,
+ reordered_precision,
+ int4_spec=self.int4_spec,
+ int6_spec=self.int6_spec,
+ int8_spec=self.int8_spec,
+ original_shape=(selected_batch_size, *self.original_shape[1:]),
+ original_dtype=self.original_dtype,
+ flattened_size=self.flattened_size,
+ padded_size=self.padded_size,
+ rows=selected_batch_size * (self.rows // batch_size),
+ groups_per_row=self.groups_per_row,
+ )
+
+
+def _from_integer_groups(
+ codes: torch.Tensor,
+ scales: torch.Tensor,
+ precision_codes: torch.Tensor,
+ *,
+ int4_spec: QuantizationSpec,
+ int6_spec: QuantizationSpec,
+ int8_spec: QuantizationSpec,
+ original_shape: tuple[int, ...],
+ original_dtype: torch.dtype,
+ flattened_size: int,
+ padded_size: int,
+ rows: int,
+ groups_per_row: int,
+) -> PackedMultiBitQuantizedTensor:
+ flat_precision = precision_codes.reshape(-1)
+ return PackedMultiBitQuantizedTensor(
+ int4_payload=_pack_int4_groups(codes[flat_precision == INT4_PRECISION_CODE]),
+ int6_payload=_pack_int6_groups(codes[flat_precision == INT6_PRECISION_CODE]),
+ int8_payload=codes[flat_precision == INT8_PRECISION_CODE].to(torch.int8).contiguous(),
+ scales=scales.contiguous(),
+ packed_precision_codes=_pack_precision_codes(flat_precision),
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ original_shape=original_shape,
+ original_dtype=original_dtype,
+ flattened_size=flattened_size,
+ padded_size=padded_size,
+ rows=rows,
+ groups_per_row=groups_per_row,
+ )
+
+
+def quantize_pack_multibit(
+ tensor: torch.Tensor,
+ precision_codes: torch.Tensor,
+ *,
+ int4_spec: QuantizationSpec,
+ int6_spec: QuantizationSpec,
+ int8_spec: QuantizationSpec,
+) -> PackedMultiBitQuantizedTensor:
+ """Quantize groups into separate physical INT4, INT6, and INT8 pools.
+
+ ``precision_codes`` may be flat or shaped ``[rows, groups_per_row]`` in the
+ exact group order produced by the shared grouped quantizer. It must use
+ ``torch.uint8`` and the canonical values 0, 1, and 2.
+ """
+
+ _validate_multibit_specs(int4_spec, int6_spec, int8_spec)
+ working, original_dtype, flattened_size, padded_size, groups_per_row, grouped = _group_tensor(
+ tensor,
+ int4_spec,
+ )
+ rows = grouped.shape[0]
+ _validate_precision_code_shape(
+ precision_codes,
+ rows=rows,
+ groups_per_row=groups_per_row,
+ )
+ flat_precision = precision_codes.detach().to(grouped.device).reshape(-1)
+ flat_groups = grouped.reshape(-1, int4_spec.group_size)
+ codes, scales = _quantize_multibit_groups(
+ flat_groups,
+ flat_precision,
+ int4_spec,
+ )
+ return _from_integer_groups(
+ codes,
+ scales,
+ flat_precision,
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ original_shape=tuple(working.shape),
+ original_dtype=original_dtype,
+ flattened_size=flattened_size,
+ padded_size=padded_size,
+ rows=rows,
+ groups_per_row=groups_per_row,
+ )
diff --git a/src/recurquant/packed_cache.py b/src/recurquant/packed_cache.py
index 3428601..528bfb3 100644
--- a/src/recurquant/packed_cache.py
+++ b/src/recurquant/packed_cache.py
@@ -21,6 +21,7 @@
quantize_pack,
scheduled_quantization_spec,
)
+from .rht import RHT_SEED, right_rht_decode, right_rht_encode
from .row_policy import ExactBudgetRowPlan
@@ -688,6 +689,48 @@ def _precision_mask(
self.expected_rows,
)
+ def _quantized_endpoint(
+ self,
+ recurrent_states: torch.Tensor,
+ spec: QuantizationSpec,
+ ) -> torch.Tensor:
+ """Return one aligned QDQ endpoint used by dynamic selectors."""
+
+ return quantize_dequantize(recurrent_states, spec).tensor
+
+ def _aligned_mse_benefit(
+ self,
+ recurrent_states: torch.Tensor,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ ) -> torch.Tensor:
+ """Return per-row low-to-high precision MSE reduction."""
+
+ source = recurrent_states.detach().to(torch.float32)
+ low = self._quantized_endpoint(recurrent_states, low_spec).to(torch.float32)
+ high = self._quantized_endpoint(recurrent_states, high_spec).to(torch.float32)
+ return (low - source).square().mean(dim=-1) - (high - source).square().mean(
+ dim=-1
+ )
+
+ def _pack_state(
+ self,
+ recurrent_states: torch.Tensor,
+ mask: torch.Tensor,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ ) -> PackedMixedQuantizedTensor:
+ """Physically pack one state; codec-aware subclasses override this hook."""
+
+ return quantize_pack_mixed(
+ recurrent_states,
+ mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+
def _store(self, recurrent_states: torch.Tensor, state_idx: int) -> torch.Tensor:
if torch.is_grad_enabled() and recurrent_states.requires_grad:
raise RuntimeError(
@@ -702,7 +745,7 @@ def _store(self, recurrent_states: torch.Tensor, state_idx: int) -> torch.Tensor
low_spec=low_spec,
high_spec=high_spec,
)
- packed = quantize_pack_mixed(
+ packed = self._pack_state(
recurrent_states,
mask,
low_spec=low_spec,
@@ -1221,12 +1264,10 @@ def _precision_mask(
pending.consumed = True
self._candidate_cutoff_score_margin = None
with torch.no_grad():
- source = recurrent_states.detach().to(torch.float32)
- low = quantize_dequantize(recurrent_states, low_spec).tensor.to(torch.float32)
- high = quantize_dequantize(recurrent_states, high_spec).tensor.to(torch.float32)
- benefit = (
- (low - source).square().mean(dim=-1)
- - (high - source).square().mean(dim=-1)
+ benefit = self._aligned_mse_benefit(
+ recurrent_states,
+ low_spec=low_spec,
+ high_spec=high_spec,
).reshape(self.expected_heads, self.expected_rows)
scores = (pending.candidate_ema * benefit).reshape(-1)
if not torch.isfinite(scores).all().item():
@@ -1584,6 +1625,95 @@ def prefetch(self) -> None:
)
+class RightRhtQueryEmaMixedPackedLinearAttentionLayer(
+ QueryEmaMixedPackedLinearAttentionLayer
+):
+ """CQER-32 with a deterministic right-side RHT value-axis codec.
+
+ The transform is orthonormal and stays inside each existing
+ ``[head, key-row]`` quantization group. It therefore preserves CQER's row
+ identities and packed-state byte contract. The current implementation
+ materializes transient sign and transform workspaces and makes no latency or
+ peak-memory claim.
+ """
+
+ transform_name = "right_rht_sha256_signs_v1"
+ transform_seed = RHT_SEED
+
+ def _quantized_endpoint(
+ self,
+ recurrent_states: torch.Tensor,
+ spec: QuantizationSpec,
+ ) -> torch.Tensor:
+ encoded = right_rht_encode(
+ recurrent_states,
+ layer_index=self.layer_index,
+ expected_heads=self.expected_heads,
+ output_dtype=torch.float32,
+ )
+ quantized = quantize_dequantize(encoded, spec).tensor
+ return right_rht_decode(
+ quantized,
+ layer_index=self.layer_index,
+ expected_heads=self.expected_heads,
+ output_dtype=torch.float32,
+ )
+
+ def _aligned_mse_benefit(
+ self,
+ recurrent_states: torch.Tensor,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ ) -> torch.Tensor:
+ # Orthonormal right-RHT preserves each row's squared error, so the
+ # selector can compare transformed endpoints without decoding either.
+ encoded = right_rht_encode(
+ recurrent_states,
+ layer_index=self.layer_index,
+ expected_heads=self.expected_heads,
+ output_dtype=torch.float32,
+ )
+ low = quantize_dequantize(encoded, low_spec).tensor.to(torch.float32)
+ high = quantize_dequantize(encoded, high_spec).tensor.to(torch.float32)
+ return (low - encoded).square().mean(dim=-1) - (high - encoded).square().mean(
+ dim=-1
+ )
+
+ def _pack_state(
+ self,
+ recurrent_states: torch.Tensor,
+ mask: torch.Tensor,
+ *,
+ low_spec: QuantizationSpec,
+ high_spec: QuantizationSpec,
+ ) -> PackedMixedQuantizedTensor:
+ return quantize_pack_mixed(
+ recurrent_states,
+ mask,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ right_rht_layer_index=self.layer_index,
+ right_rht_expected_heads=self.expected_heads,
+ )
+
+ def query_ema_diagnostics(self) -> dict[str, int | float | bool | str | None]:
+ diagnostics = super().query_ema_diagnostics()
+ diagnostics.update(
+ {
+ "selection_method": (
+ "right_rht_query_ema32_weighted_mse_target_fisher_quota"
+ ),
+ "state_codec": self.transform_name,
+ "state_codec_seed": self.transform_seed,
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ }
+ )
+ return diagnostics
+
+
@dataclass(slots=True)
class _PendingTransitionObservation:
update_index: int
@@ -2604,6 +2734,25 @@ def storage_summary(self) -> dict[str, int | float | bool]:
return summary
+class RightRhtQueryEmaMixedPackedRecurrentStateCache(
+ QueryEmaMixedPackedRecurrentStateCache
+):
+ """Exact-byte CQER-32 cache with a deterministic right-side RHT codec."""
+
+ _mixed_layer_class = RightRhtQueryEmaMixedPackedLinearAttentionLayer
+ selection_method = "right_rht_query_ema32_weighted_mse_target_fisher_quota"
+
+ def __init__(self, *args: object, confirmation_two: bool = False, **kwargs: object) -> None:
+ if confirmation_two:
+ raise ValueError("right-RHT CQER screening does not support Confirmation-2")
+ super().__init__(
+ *args,
+ confirmation_two=False,
+ **kwargs,
+ )
+ self.selection_method = "right_rht_query_ema32_weighted_mse_target_fisher_quota"
+
+
class CoraMixedPackedRecurrentStateCache(MixedPackedRecurrentStateCache):
"""CORA exact-quota cache; Confirmation-2 is enabled by default."""
diff --git a/src/recurquant/qwen35.py b/src/recurquant/qwen35.py
index 09ecb74..d25ac5a 100644
--- a/src/recurquant/qwen35.py
+++ b/src/recurquant/qwen35.py
@@ -17,6 +17,7 @@
PackedRecurrentStateCache,
QueryEmaMixedPackedRecurrentStateCache,
RankFusedMixedPackedRecurrentStateCache,
+ RightRhtQueryEmaMixedPackedRecurrentStateCache,
)
from .quantization import QuantizationSpec, RoundingMode
from .row_policy import ExactBudgetRowPlan
@@ -346,6 +347,31 @@ def create_qwen35_query_ema_exact_budget_cache(
)
+def create_qwen35_right_rht_query_ema_exact_budget_cache(
+ model_or_config: Qwen35Source,
+ *,
+ plan: ExactBudgetRowPlan,
+ rounding: RoundingMode = "nearest",
+ seed: int = 2339,
+ record_evidence: bool = False,
+) -> RightRhtQueryEmaMixedPackedRecurrentStateCache:
+ """Create the experimental right-RHT CQER-32 cache for Qwen3.5.
+
+ The orthonormal transform operates only on each recurrent row's value axis,
+ so the plan's row identities, INT8 quota, and packed-state byte count remain
+ unchanged. The current PyTorch codec uses transient FP32 workspaces and has
+ no latency or peak-memory claim.
+ """
+
+ return RightRhtQueryEmaMixedPackedRecurrentStateCache(
+ _validated_exact_budget_config(model_or_config, plan=plan),
+ plan=plan,
+ rounding=rounding,
+ seed=seed,
+ record_evidence=record_evidence,
+ )
+
+
def create_qwen35_cora_exact_budget_cache(
model_or_config: Qwen35Source,
*,
diff --git a/src/recurquant/rht.py b/src/recurquant/rht.py
new file mode 100644
index 0000000..9d512da
--- /dev/null
+++ b/src/recurquant/rht.py
@@ -0,0 +1,222 @@
+"""Deterministic right-side randomized Hadamard transforms for recurrent states.
+
+The codec is stateless. Its sign vectors are derived from the frozen seed,
+model-layer index, head index, and value width, so packed objects do not need
+to retain a sign tensor or RNG state. All arithmetic uses an FP32 workspace.
+"""
+
+from __future__ import annotations
+
+import hashlib
+import math
+
+import torch
+
+RHT_SEED = 2339
+_SIGN_DOMAIN = b"recurquant.right-rht.signs.v1\0"
+_SUPPORTED_DTYPES = frozenset((torch.float16, torch.bfloat16, torch.float32))
+
+
+def _validate_nonnegative_integer(value: object, *, name: str) -> int:
+ if isinstance(value, bool) or not isinstance(value, int):
+ raise TypeError(f"{name} must be an integer")
+ if value < 0:
+ raise ValueError(f"{name} must be non-negative")
+ return value
+
+
+def _validate_positive_integer(value: object, *, name: str) -> int:
+ validated = _validate_nonnegative_integer(value, name=name)
+ if validated == 0:
+ raise ValueError(f"{name} must be positive")
+ return validated
+
+
+def _validate_output_dtype(dtype: torch.dtype) -> None:
+ if dtype not in _SUPPORTED_DTYPES:
+ rendered = ", ".join(str(value) for value in sorted(_SUPPORTED_DTYPES, key=str))
+ raise TypeError(f"output_dtype must be one of {rendered}")
+
+
+def _validate_floating_tensor(tensor: torch.Tensor, *, name: str) -> None:
+ if not isinstance(tensor, torch.Tensor):
+ raise TypeError(f"{name} must be a torch.Tensor")
+ if tensor.dtype not in _SUPPORTED_DTYPES:
+ raise TypeError(f"{name} must use float16, bfloat16, or float32; got {tensor.dtype}")
+ if tensor.numel() == 0:
+ raise ValueError(f"{name} must not be empty")
+ if not torch.isfinite(tensor).all().item():
+ raise ValueError(f"{name} must contain only finite values")
+
+
+def _validate_power_of_two_width(width: int) -> None:
+ if width <= 0 or width & (width - 1):
+ raise ValueError(f"last dimension must be a positive power of two; got {width}")
+
+
+def _validate_state(
+ state: torch.Tensor,
+ *,
+ expected_heads: object,
+ name: str,
+) -> tuple[int, int]:
+ _validate_floating_tensor(state, name=name)
+ heads = _validate_positive_integer(expected_heads, name="expected_heads")
+ if state.ndim != 4:
+ raise ValueError(
+ f"{name} must have shape [batch, heads, rows, value]; got rank {state.ndim}"
+ )
+ if any(dimension <= 0 for dimension in state.shape):
+ raise ValueError(f"{name} dimensions must all be positive")
+ if state.shape[1] != heads:
+ raise ValueError(
+ f"{name} head dimension does not match expected_heads: {state.shape[1]} != {heads}"
+ )
+ width = state.shape[-1]
+ _validate_power_of_two_width(width)
+ return heads, width
+
+
+def _fwht_fp32(tensor: torch.Tensor) -> torch.Tensor:
+ """Return an unnormalized last-axis FWHT from an already validated tensor."""
+
+ width = tensor.shape[-1]
+ result = tensor.to(torch.float32).reshape(-1, width)
+ stride = 1
+ while stride < width:
+ blocks = result.reshape(-1, width // (2 * stride), 2 * stride)
+ left = blocks[..., :stride]
+ right = blocks[..., stride:]
+ result = torch.cat((left + right, left - right), dim=-1).reshape(-1, width)
+ stride *= 2
+ return result.reshape(tensor.shape)
+
+
+def fwht_unnormalized(
+ tensor: torch.Tensor,
+ *,
+ output_dtype: torch.dtype | None = None,
+) -> torch.Tensor:
+ """Apply an unnormalized Walsh-Hadamard transform over the last dimension.
+
+ The last dimension must be a positive power of two. Computation is always
+ performed in FP32. By default the result is converted back to the input
+ dtype; callers may request another supported output dtype.
+ """
+
+ _validate_floating_tensor(tensor, name="tensor")
+ if tensor.ndim == 0:
+ raise ValueError("tensor must have a last dimension")
+ _validate_power_of_two_width(tensor.shape[-1])
+ selected_dtype = tensor.dtype if output_dtype is None else output_dtype
+ _validate_output_dtype(selected_dtype)
+ return _fwht_fp32(tensor).to(selected_dtype)
+
+
+def _portable_sign_values(*, layer_index: int, head_index: int, width: int) -> list[float]:
+ values: list[float] = []
+ counter = 0
+ while len(values) < width:
+ message = b"".join(
+ (
+ _SIGN_DOMAIN,
+ RHT_SEED.to_bytes(8, "little", signed=False),
+ layer_index.to_bytes(8, "little", signed=False),
+ head_index.to_bytes(8, "little", signed=False),
+ width.to_bytes(8, "little", signed=False),
+ counter.to_bytes(8, "little", signed=False),
+ )
+ )
+ digest = hashlib.sha256(message).digest()
+ for byte in digest:
+ for bit_index in range(8):
+ values.append(1.0 if byte & (1 << bit_index) else -1.0)
+ if len(values) == width:
+ return values
+ counter += 1
+ return values
+
+
+def right_rht_signs(
+ *,
+ layer_index: int,
+ expected_heads: int,
+ width: int,
+ device: torch.device | str,
+) -> torch.Tensor:
+ """Materialize the frozen transient sign schedule as ``[1, heads, 1, width]``."""
+
+ layer = _validate_nonnegative_integer(layer_index, name="layer_index")
+ heads = _validate_positive_integer(expected_heads, name="expected_heads")
+ validated_width = _validate_positive_integer(width, name="width")
+ _validate_power_of_two_width(validated_width)
+ values = [
+ _portable_sign_values(
+ layer_index=layer,
+ head_index=head_index,
+ width=validated_width,
+ )
+ for head_index in range(heads)
+ ]
+ return torch.tensor(
+ values,
+ dtype=torch.float32,
+ device=device,
+ ).reshape(1, heads, 1, validated_width)
+
+
+def right_rht_encode(
+ state: torch.Tensor,
+ *,
+ layer_index: int,
+ expected_heads: int,
+ output_dtype: torch.dtype = torch.float32,
+) -> torch.Tensor:
+ """Encode ``[batch, heads, rows, value]`` state rows with normalized RHT.
+
+ For an unnormalized Hadamard matrix ``H`` and deterministic sign diagonal
+ ``D``, this computes ``state @ D @ H / sqrt(value)`` independently for each
+ layer and head.
+ """
+
+ layer = _validate_nonnegative_integer(layer_index, name="layer_index")
+ heads, width = _validate_state(
+ state,
+ expected_heads=expected_heads,
+ name="state",
+ )
+ _validate_output_dtype(output_dtype)
+ signs = right_rht_signs(
+ layer_index=layer,
+ expected_heads=heads,
+ width=width,
+ device=state.device,
+ )
+ encoded = _fwht_fp32(state.to(torch.float32) * signs) / math.sqrt(width)
+ return encoded.to(output_dtype)
+
+
+def right_rht_decode(
+ encoded: torch.Tensor,
+ *,
+ layer_index: int,
+ expected_heads: int,
+ output_dtype: torch.dtype = torch.float32,
+) -> torch.Tensor:
+ """Decode a normalized right-RHT tensor into the original value basis."""
+
+ layer = _validate_nonnegative_integer(layer_index, name="layer_index")
+ heads, width = _validate_state(
+ encoded,
+ expected_heads=expected_heads,
+ name="encoded",
+ )
+ _validate_output_dtype(output_dtype)
+ signs = right_rht_signs(
+ layer_index=layer,
+ expected_heads=heads,
+ width=width,
+ device=encoded.device,
+ )
+ decoded = (_fwht_fp32(encoded) / math.sqrt(width)) * signs
+ return decoded.to(output_dtype)
diff --git a/tests/test_multibit_policy.py b/tests/test_multibit_policy.py
new file mode 100644
index 0000000..af6a52a
--- /dev/null
+++ b/tests/test_multibit_policy.py
@@ -0,0 +1,174 @@
+from __future__ import annotations
+
+import itertools
+
+import pytest
+import torch
+
+from recurquant.multibit_policy import (
+ FROZEN_QWEN35_INT8_ROW_QUOTAS,
+ QWEN35_FROZEN_TOTAL_MARGINAL_STEPS,
+ allocate_exact_multibit_codes,
+ frozen_qwen35_multibit_step_budgets,
+)
+
+
+def _objective(
+ codes: torch.Tensor,
+ d4: torch.Tensor,
+ d6: torch.Tensor,
+ d8: torch.Tensor,
+) -> float:
+ stacked = torch.stack((d4, d6, d8), dim=-1).reshape(-1, 3).to(torch.float64)
+ selected = stacked.gather(1, codes.reshape(-1, 1).to(torch.long))
+ return float(selected.sum().item())
+
+
+def _brute_force_codes(
+ d4: torch.Tensor,
+ d6: torch.Tensor,
+ d8: torch.Tensor,
+ *,
+ marginal_steps: int,
+) -> torch.Tensor:
+ shape = d4.shape
+ candidates: list[tuple[float, tuple[int, ...]]] = []
+ for codes in itertools.product((0, 1, 2), repeat=d4.numel()):
+ if sum(codes) != marginal_steps:
+ continue
+ tensor = torch.tensor(codes, dtype=torch.uint8).reshape(shape)
+ candidates.append((_objective(tensor, d4, d6, d8), codes))
+ _, best = min(candidates, key=lambda item: (item[0], tuple(-code for code in item[1])))
+ return torch.tensor(best, dtype=torch.uint8).reshape(shape)
+
+
+def test_exact_allocator_handles_increasing_second_marginal_globally() -> None:
+ # Row 0 gains only 1 unit at 4->6 but 100 at 6->8. An available-marginal
+ # greedy allocator takes row 1's 60-unit first step and misses the optimum.
+ d4 = torch.tensor([[101.0, 60.0]])
+ d6 = torch.tensor([[100.0, 0.0]])
+ d8 = torch.tensor([[0.0, 0.0]])
+
+ codes = allocate_exact_multibit_codes(d4, d6, d8, marginal_steps=2)
+
+ assert torch.equal(codes, torch.tensor([[2, 0]], dtype=torch.uint8))
+ assert codes.sum().item() == 2
+ assert _objective(codes, d4, d6, d8) == 60.0
+
+
+@pytest.mark.parametrize("marginal_steps", range(9))
+def test_exact_allocator_matches_exhaustive_search(marginal_steps: int) -> None:
+ d4 = torch.tensor([[8.0, 2.0], [5.0, 9.0]], dtype=torch.float64)
+ d6 = torch.tensor([[7.0, 3.0], [1.0, 4.0]], dtype=torch.float64)
+ d8 = torch.tensor([[0.0, 1.0], [2.0, 6.0]], dtype=torch.float64)
+
+ actual = allocate_exact_multibit_codes(
+ d4,
+ d6,
+ d8,
+ marginal_steps=marginal_steps,
+ )
+ expected = _brute_force_codes(
+ d4,
+ d6,
+ d8,
+ marginal_steps=marginal_steps,
+ )
+
+ assert torch.equal(actual, expected)
+ assert actual.dtype == torch.uint8
+ assert actual.device.type == "cpu"
+ assert tuple(actual.shape) == (2, 2)
+ assert actual.sum().item() == marginal_steps
+
+
+def test_exact_ties_give_higher_codes_to_earlier_flattened_rows() -> None:
+ equal = torch.ones((2, 2))
+
+ codes = allocate_exact_multibit_codes(
+ equal,
+ equal,
+ equal,
+ marginal_steps=3,
+ )
+
+ assert torch.equal(codes, torch.tensor([[2, 1], [0, 0]], dtype=torch.uint8))
+
+
+def test_endpoint_budgets_return_all_int4_or_all_int8() -> None:
+ d4 = torch.ones((2, 3))
+ d6 = torch.ones((2, 3))
+ d8 = torch.ones((2, 3))
+
+ low = allocate_exact_multibit_codes(d4, d6, d8, marginal_steps=0)
+ high = allocate_exact_multibit_codes(d4, d6, d8, marginal_steps=12)
+
+ assert torch.equal(low, torch.zeros((2, 3), dtype=torch.uint8))
+ assert torch.equal(high, torch.full((2, 3), 2, dtype=torch.uint8))
+
+
+@pytest.mark.parametrize(
+ ("values", "match"),
+ [
+ ((torch.tensor([[float("nan")]]), torch.ones((1, 1)), torch.ones((1, 1))), "finite"),
+ ((-torch.ones((1, 1)), torch.ones((1, 1)), torch.ones((1, 1))), "nonnegative"),
+ ((torch.ones(1), torch.ones(1), torch.ones(1)), r"shape \[heads, rows\]"),
+ (
+ (torch.ones((1, 2)), torch.ones((2, 1)), torch.ones((1, 2))),
+ "identical shapes",
+ ),
+ ],
+)
+def test_invalid_distortion_values_and_shapes_are_rejected(
+ values: tuple[torch.Tensor, torch.Tensor, torch.Tensor],
+ match: str,
+) -> None:
+ with pytest.raises(ValueError, match=match):
+ allocate_exact_multibit_codes(*values, marginal_steps=0)
+
+
+def test_integer_distortions_and_invalid_step_budgets_are_rejected() -> None:
+ integer = torch.ones((1, 2), dtype=torch.int64)
+ floating = torch.ones((1, 2))
+
+ with pytest.raises(TypeError, match="floating-point"):
+ allocate_exact_multibit_codes(integer, floating, floating, marginal_steps=1)
+ with pytest.raises(TypeError, match="integer"):
+ allocate_exact_multibit_codes(floating, floating, floating, marginal_steps=True)
+ with pytest.raises(ValueError, match="representable range"):
+ allocate_exact_multibit_codes(floating, floating, floating, marginal_steps=5)
+
+
+def test_frozen_qwen35_step_budgets_match_old_bytes_exactly() -> None:
+ budgets = frozen_qwen35_multibit_step_budgets()
+
+ assert budgets == {
+ 0: 702,
+ 1: 752,
+ 2: 530,
+ 4: 350,
+ 5: 362,
+ 6: 202,
+ 8: 152,
+ 9: 78,
+ 10: 160,
+ 12: 52,
+ 13: 116,
+ 14: 100,
+ 16: 82,
+ 17: 46,
+ 18: 6,
+ 20: 10,
+ 21: 6,
+ 22: 102,
+ }
+ assert sum(FROZEN_QWEN35_INT8_ROW_QUOTAS.values()) == 1_976
+ assert sum(budgets.values()) == QWEN35_FROZEN_TOTAL_MARGINAL_STEPS == 3_808
+
+ rows = 16 * 128
+ old_base_per_layer = rows * (64 + 2) + 256
+ multibit_base_per_layer = rows * (64 + 2) + 512
+ for layer_index, old_quota in FROZEN_QWEN35_INT8_ROW_QUOTAS.items():
+ assert old_base_per_layer + 64 * old_quota == (
+ multibit_base_per_layer + 32 * budgets[layer_index]
+ )
diff --git a/tests/test_multibit_quantization.py b/tests/test_multibit_quantization.py
new file mode 100644
index 0000000..9d579a7
--- /dev/null
+++ b/tests/test_multibit_quantization.py
@@ -0,0 +1,707 @@
+from __future__ import annotations
+
+import math
+from dataclasses import replace
+
+import pytest
+import torch
+
+from recurquant.multibit_quantization import (
+ INT6_PRECISION_CODE,
+ _pack_int6_groups,
+ _pack_precision_codes,
+ _unpack_int6_groups,
+ _unpack_precision_codes,
+ quantize_pack_multibit,
+)
+from recurquant.quantization import QuantizationSpec
+
+
+def _specs(
+ *,
+ group_size: int = 128,
+ scale_bits: int = 16,
+ flatten_last_dims: int = 2,
+ rounding: str = "nearest",
+ seed: int = 2339,
+) -> tuple[QuantizationSpec, QuantizationSpec, QuantizationSpec]:
+ common = {
+ "group_size": group_size,
+ "scale_bits": scale_bits,
+ "flatten_last_dims": flatten_last_dims,
+ "rounding": rounding,
+ "seed": seed,
+ }
+ return (
+ QuantizationSpec(bits=4, **common),
+ QuantizationSpec(bits=6, **common),
+ QuantizationSpec(bits=8, **common),
+ )
+
+
+def _independent_nearest_reference(
+ tensor: torch.Tensor,
+ precision_codes: torch.Tensor,
+ spec: QuantizationSpec,
+) -> torch.Tensor:
+ working = tensor.detach().to(torch.float32)
+ flattened_size = math.prod(working.shape[-spec.flatten_last_dims :])
+ rows = working.reshape(-1, flattened_size)
+ groups_per_row = math.ceil(flattened_size / spec.group_size)
+ padded_size = groups_per_row * spec.group_size
+ if padded_size != flattened_size:
+ rows = torch.nn.functional.pad(rows, (0, padded_size - flattened_size))
+ groups = rows.reshape(-1, spec.group_size)
+
+ qmax = torch.tensor((7.0, 31.0, 127.0))[precision_codes.reshape(-1).long()]
+ absmax = groups.abs().amax(dim=1)
+ ideal_scales = torch.where(
+ absmax > spec.epsilon,
+ absmax / qmax,
+ torch.ones_like(absmax),
+ )
+ scale_dtype = torch.float16 if spec.scale_bits == 16 else torch.float32
+ if scale_dtype == torch.float16:
+ ideal_scales = ideal_scales.clamp(
+ min=2.0**-24,
+ max=torch.finfo(torch.float16).max,
+ )
+ scales = ideal_scales.to(scale_dtype).to(torch.float32)
+ integer_codes = torch.round(groups / scales.unsqueeze(1))
+ integer_codes = torch.minimum(
+ torch.maximum(integer_codes, -qmax.unsqueeze(1)),
+ qmax.unsqueeze(1),
+ )
+ restored = (integer_codes * scales.unsqueeze(1)).reshape(-1, padded_size)
+ restored = restored[:, :flattened_size]
+ return restored.reshape(tensor.shape).to(tensor.dtype)
+
+
+def _packed_validation_fixture():
+ state = torch.linspace(-1.0, 1.0, 12).reshape(1, 12)
+ precision = torch.tensor([[0, 1, 2]], dtype=torch.uint8)
+ int4_spec, int6_spec, int8_spec = _specs(
+ group_size=4,
+ flatten_last_dims=1,
+ )
+ return quantize_pack_multibit(
+ state,
+ precision,
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+
+
+def test_int6_exhaustive_symmetric_code_roundtrip() -> None:
+ values = torch.arange(-31, 32, dtype=torch.int16)
+ codes = values.unsqueeze(1).repeat(1, 4)
+
+ payload = _pack_int6_groups(codes)
+ restored = _unpack_int6_groups(payload, group_size=4)
+
+ assert payload.shape == (63, 3)
+ assert payload.dtype == torch.uint8
+ assert torch.equal(restored, codes)
+
+
+def test_int6_uses_little_endian_four_code_three_byte_layout() -> None:
+ codes = torch.tensor(
+ [
+ [0, 1, 2, 3],
+ [-1, -2, -3, -31],
+ ],
+ dtype=torch.int16,
+ )
+ unsigned = torch.bitwise_and(codes.to(torch.int64), 0x3F)
+ words = (
+ unsigned[:, 0]
+ | (unsigned[:, 1] << 6)
+ | (unsigned[:, 2] << 12)
+ | (unsigned[:, 3] << 18)
+ )
+ independent_payload = torch.stack(
+ (
+ torch.bitwise_and(words, 0xFF),
+ torch.bitwise_and(words >> 8, 0xFF),
+ torch.bitwise_and(words >> 16, 0xFF),
+ ),
+ dim=1,
+ ).to(torch.uint8)
+
+ assert torch.equal(_pack_int6_groups(codes), independent_payload)
+
+
+def test_group_size_128_int6_payload_is_exactly_96_bytes() -> None:
+ codes = torch.arange(128, dtype=torch.int16).remainder(63) - 31
+
+ payload = _pack_int6_groups(codes.reshape(1, 128))
+
+ assert payload.shape == (1, 96)
+ assert payload.numel() * payload.element_size() == 96
+ assert torch.equal(_unpack_int6_groups(payload, 128), codes.reshape(1, 128))
+
+
+def test_precision_codes_have_canonical_two_bit_encoding() -> None:
+ precision = torch.tensor([0, 1, 2, 0, 2, 1, 0, 2], dtype=torch.uint8)
+
+ first = _pack_precision_codes(precision)
+ second = _pack_precision_codes(precision.clone())
+
+ assert first.tolist() == [0x24, 0x86]
+ assert torch.equal(first, second)
+ assert torch.equal(_unpack_precision_codes(first, 8), precision)
+
+
+def test_mixed_qdq_matches_independent_reference_exactly() -> None:
+ state = torch.tensor(
+ [
+ [
+ [0.0, -0.23, 0.91, -1.7, 3.2],
+ [0.07, -0.51, 0.34, 1.2, -2.8],
+ [0.03, -0.11, 0.57, -0.8, 2.1],
+ ],
+ [
+ [-0.4, 0.0, 0.2, 0.8, -1.4],
+ [2.7, -1.3, 0.33, -0.09, 0.72],
+ [-3.1, 1.8, -0.63, 0.14, 0.01],
+ ],
+ ],
+ dtype=torch.float32,
+ )
+ int4_spec, int6_spec, int8_spec = _specs(
+ group_size=4,
+ flatten_last_dims=1,
+ )
+ precision = torch.tensor(
+ [
+ [0, 1],
+ [2, 0],
+ [1, 2],
+ [0, 2],
+ [1, 0],
+ [2, 1],
+ ],
+ dtype=torch.uint8,
+ )
+
+ packed = quantize_pack_multibit(
+ state,
+ precision,
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+ reference = _independent_nearest_reference(state, precision, int4_spec)
+
+ assert torch.equal(packed.dequantize(), reference)
+ assert torch.equal(packed.precision_codes(), precision)
+ assert packed.int4_payload.dtype == torch.uint8
+ assert packed.int6_payload.dtype == torch.uint8
+ assert packed.int8_payload.dtype == torch.int8
+ assert packed.scales.dtype == torch.float16
+ assert (packed.int4_groups, packed.int6_groups, packed.int8_groups) == (4, 4, 4)
+
+
+def test_qwen_layout_hits_old_target_with_corrected_two_bit_metadata() -> None:
+ total_groups = 18 * 16 * 128
+ int6_groups = 3_808
+ state = torch.zeros((1, 18 * 16, 128, 128), dtype=torch.float32)
+ precision = torch.zeros(total_groups, dtype=torch.uint8)
+ precision[:int6_groups] = INT6_PRECISION_CODE
+ int4_spec, int6_spec, int8_spec = _specs(group_size=128)
+
+ packed = quantize_pack_multibit(
+ state,
+ precision,
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+
+ assert packed.total_groups == 36_864
+ assert packed.int4_groups == 33_056
+ assert packed.int6_groups == 3_808
+ assert packed.int8_groups == 0
+ assert packed.payload_bytes == 2_481_152
+ assert packed.scale_bytes == 73_728
+ assert packed.precision_code_bytes == 9_216
+ assert packed.storage_bytes == 2_564_096
+
+
+def test_exact_storage_with_all_three_widths_and_fp32_scales() -> None:
+ state = torch.linspace(-2.0, 2.0, 48)
+ precision = torch.tensor(
+ [0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2],
+ dtype=torch.uint8,
+ )
+ int4_spec, int6_spec, int8_spec = _specs(
+ group_size=4,
+ scale_bits=32,
+ flatten_last_dims=1,
+ )
+
+ packed = quantize_pack_multibit(
+ state,
+ precision,
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+
+ assert packed.int4_payload.shape == (4, 2)
+ assert packed.int6_payload.shape == (4, 3)
+ assert packed.int8_payload.shape == (4, 4)
+ assert packed.payload_bytes == 36
+ assert packed.scale_bytes == 48
+ assert packed.precision_code_bytes == 3
+ assert packed.storage_bytes == 87
+ assert packed.scales.dtype == torch.float32
+
+
+def test_stochastic_quantization_is_seeded_and_deterministic() -> None:
+ state = torch.linspace(-1.13, 0.91, 400)
+ precision = torch.arange(100, dtype=torch.uint8).remainder(3)
+ int4_spec, int6_spec, int8_spec = _specs(
+ group_size=4,
+ flatten_last_dims=1,
+ rounding="stochastic",
+ seed=71,
+ )
+
+ first = quantize_pack_multibit(
+ state,
+ precision,
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+ second = quantize_pack_multibit(
+ state,
+ precision,
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+ different_seed = quantize_pack_multibit(
+ state,
+ precision,
+ int4_spec=replace(int4_spec, seed=72),
+ int6_spec=replace(int6_spec, seed=72),
+ int8_spec=replace(int8_spec, seed=72),
+ )
+
+ assert torch.equal(first.int4_payload, second.int4_payload)
+ assert torch.equal(first.int6_payload, second.int6_payload)
+ assert torch.equal(first.int8_payload, second.int8_payload)
+ assert torch.equal(first.scales, second.scales)
+ assert torch.equal(first.packed_precision_codes, second.packed_precision_codes)
+ assert not torch.equal(first.dequantize(), different_seed.dequantize())
+
+
+def test_batch_reorder_preserves_integer_codes_scales_and_duplicates() -> None:
+ generator = torch.Generator().manual_seed(103)
+ state = torch.randn((3, 2, 3, 5), generator=generator).to(torch.bfloat16)
+ precision = torch.arange(24, dtype=torch.uint8).remainder(3).reshape(6, 4)
+ int4_spec, int6_spec, int8_spec = _specs(
+ group_size=4,
+ flatten_last_dims=2,
+ )
+ packed = quantize_pack_multibit(
+ state,
+ precision,
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+ before = packed.dequantize()
+ before_codes = packed._integer_groups().reshape(3, 8, 4)
+ before_precision = packed.precision_codes().reshape(3, 8)
+ beam_idx = torch.tensor([2, 2, 0], dtype=torch.long)
+
+ reordered = packed.reorder_batch(beam_idx)
+
+ assert torch.equal(reordered.dequantize(), before.index_select(0, beam_idx))
+ assert torch.equal(
+ reordered._integer_groups().reshape(3, 8, 4),
+ before_codes.index_select(0, beam_idx),
+ )
+ assert torch.equal(
+ reordered.precision_codes().reshape(3, 8),
+ before_precision.index_select(0, beam_idx),
+ )
+ assert reordered.original_shape == state.shape
+
+
+def test_to_cpu_preserves_every_resident_tensor_and_storage() -> None:
+ state = torch.linspace(-2.0, 2.0, 48).reshape(3, 2, 8)
+ precision = torch.arange(12, dtype=torch.uint8).remainder(3).reshape(6, 2)
+ int4_spec, int6_spec, int8_spec = _specs(
+ group_size=4,
+ flatten_last_dims=1,
+ )
+ packed = quantize_pack_multibit(
+ state,
+ precision,
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+
+ transferred = packed.to(torch.device("cpu"))
+
+ assert transferred.int4_payload.device.type == "cpu"
+ assert transferred.int6_payload.device.type == "cpu"
+ assert transferred.int8_payload.device.type == "cpu"
+ assert transferred.scales.device.type == "cpu"
+ assert transferred.packed_precision_codes.device.type == "cpu"
+ assert transferred.storage_bytes == packed.storage_bytes
+ assert torch.equal(transferred.dequantize(), packed.dequantize())
+
+
+def test_empty_batch_reorder_remains_a_valid_packed_object() -> None:
+ packed = _packed_validation_fixture()
+
+ reordered = packed.reorder_batch(torch.empty(0, dtype=torch.long))
+
+ assert reordered.original_shape == (0, 12)
+ assert reordered.rows == 0
+ assert reordered.total_groups == 0
+ assert reordered.storage_bytes == 0
+ assert reordered.dequantize().shape == (0, 12)
+
+
+@pytest.mark.parametrize(
+ ("changes", "message"),
+ [
+ ({"flattened_size": 13}, "flattened_size"),
+ ({"padded_size": 16}, "padded_size"),
+ ({"rows": 2}, "rows"),
+ ({"groups_per_row": 4}, "groups_per_row"),
+ ({"original_shape": (1, 16)}, "flattened_size"),
+ ({"original_shape": [1, 12]}, "original_shape must be a tuple"),
+ ({"original_shape": (1, 0)}, "flattened.*must be positive"),
+ ({"original_dtype": torch.int32}, "floating-point dtype"),
+ ],
+)
+def test_direct_construction_rejects_inconsistent_metadata(
+ changes: dict[str, object],
+ message: str,
+) -> None:
+ packed = _packed_validation_fixture()
+
+ with pytest.raises((TypeError, ValueError), match=message):
+ replace(packed, **changes)
+
+
+def test_direct_construction_rejects_invalid_specs() -> None:
+ packed = _packed_validation_fixture()
+
+ with pytest.raises(TypeError, match="int4_spec.*QuantizationSpec"):
+ replace(packed, int4_spec=object())
+ with pytest.raises(ValueError, match="mismatched fields: group_size"):
+ replace(packed, int6_spec=replace(packed.int6_spec, group_size=8))
+
+
+def test_direct_construction_rejects_invalid_scales() -> None:
+ packed = _packed_validation_fixture()
+
+ with pytest.raises(TypeError, match="one-dimensional torch.float16"):
+ replace(packed, scales=packed.scales.to(torch.float32))
+ with pytest.raises(ValueError, match="one value per group"):
+ replace(packed, scales=packed.scales[:-1].clone())
+
+ nonfinite = packed.scales.clone()
+ nonfinite[0] = float("nan")
+ with pytest.raises(ValueError, match="only finite"):
+ replace(packed, scales=nonfinite)
+
+ nonpositive = packed.scales.clone()
+ nonpositive[0] = 0
+ with pytest.raises(ValueError, match="strictly positive"):
+ replace(packed, scales=nonpositive)
+
+ backing = torch.empty(
+ packed.scales.numel() * 2,
+ dtype=packed.scales.dtype,
+ )
+ noncontiguous = backing[::2]
+ noncontiguous.copy_(packed.scales)
+ with pytest.raises(ValueError, match="scales must be contiguous"):
+ replace(packed, scales=noncontiguous)
+
+
+def test_direct_construction_rejects_invalid_precision_stream() -> None:
+ packed = _packed_validation_fixture()
+
+ with pytest.raises(TypeError, match="packed precision codes.*torch.uint8"):
+ replace(
+ packed,
+ packed_precision_codes=packed.packed_precision_codes.to(torch.int16),
+ )
+ with pytest.raises(ValueError, match="must contain 1 bytes"):
+ replace(
+ packed,
+ packed_precision_codes=packed.packed_precision_codes[:0].clone(),
+ )
+
+ reserved = packed.packed_precision_codes.clone()
+ reserved[0] = torch.bitwise_or(
+ torch.bitwise_and(reserved[0], 0xFC),
+ torch.tensor(3, dtype=torch.uint8),
+ )
+ with pytest.raises(ValueError, match="reserved precision code 3"):
+ replace(packed, packed_precision_codes=reserved)
+
+ noncanonical_padding = packed.packed_precision_codes.clone()
+ noncanonical_padding[0] = torch.bitwise_or(
+ noncanonical_padding[0],
+ torch.tensor(0x40, dtype=torch.uint8),
+ )
+ with pytest.raises(ValueError, match="padding bits must be zero"):
+ replace(packed, packed_precision_codes=noncanonical_padding)
+
+
+@pytest.mark.parametrize(
+ ("field", "dtype", "message"),
+ [
+ ("int4_payload", torch.int8, "int4_payload.*torch.uint8"),
+ ("int6_payload", torch.int8, "int6_payload.*torch.uint8"),
+ ("int8_payload", torch.uint8, "int8_payload.*torch.int8"),
+ ],
+)
+def test_direct_construction_rejects_payload_dtypes(
+ field: str,
+ dtype: torch.dtype,
+ message: str,
+) -> None:
+ packed = _packed_validation_fixture()
+
+ with pytest.raises(TypeError, match=message):
+ replace(packed, **{field: getattr(packed, field).to(dtype)})
+
+
+@pytest.mark.parametrize(
+ ("field", "message"),
+ [
+ ("int4_payload", "int4_payload must have shape"),
+ ("int6_payload", "int6_payload must have shape"),
+ ("int8_payload", "int8_payload must have shape"),
+ ],
+)
+def test_direct_construction_rejects_payload_counts(
+ field: str,
+ message: str,
+) -> None:
+ packed = _packed_validation_fixture()
+ payload = getattr(packed, field)
+
+ with pytest.raises(ValueError, match=message):
+ replace(packed, **{field: payload[:0].clone()})
+
+
+def test_direct_construction_rejects_payload_row_widths_and_devices() -> None:
+ packed = _packed_validation_fixture()
+
+ with pytest.raises(ValueError, match="int6_payload must have shape"):
+ replace(packed, int6_payload=packed.int6_payload[:, :-1].clone())
+ with pytest.raises(ValueError, match="all resident tensors must share one device"):
+ replace(packed, int8_payload=packed.int8_payload.to("meta"))
+
+
+def test_direct_construction_rejects_reserved_symmetric_payload_codes() -> None:
+ packed = _packed_validation_fixture()
+
+ invalid_int4 = packed.int4_payload.clone()
+ invalid_int4[0, 0] = int(invalid_int4[0, 0].item()) & 0xF0 | 0x08
+ with pytest.raises(ValueError, match="int4_payload.*-8"):
+ replace(packed, int4_payload=invalid_int4)
+
+ invalid_int6 = packed.int6_payload.clone()
+ invalid_int6[0, 0] = int(invalid_int6[0, 0].item()) & 0xC0 | 0x20
+ with pytest.raises(ValueError, match="INT6 payload.*-32"):
+ replace(packed, int6_payload=invalid_int6)
+
+ invalid_int8 = packed.int8_payload.clone()
+ invalid_int8[0, 0] = -128
+ with pytest.raises(ValueError, match="int8_payload.*-128"):
+ replace(packed, int8_payload=invalid_int8)
+
+
+@pytest.mark.parametrize(
+ ("spec_index", "replacement", "message"),
+ [
+ (0, QuantizationSpec(bits=5), "int4_spec"),
+ (1, QuantizationSpec(bits=5), "int6_spec"),
+ (2, QuantizationSpec(bits=7), "int8_spec"),
+ (1, QuantizationSpec(bits=6, group_size=64), "group_size"),
+ (2, QuantizationSpec(bits=8, scale_bits=32), "scale_bits"),
+ ],
+)
+def test_invalid_specs_are_rejected(
+ spec_index: int,
+ replacement: QuantizationSpec,
+ message: str,
+) -> None:
+ specs = list(_specs())
+ specs[spec_index] = replacement
+
+ with pytest.raises(ValueError, match=message):
+ quantize_pack_multibit(
+ torch.ones(128),
+ torch.zeros(1, dtype=torch.uint8),
+ int4_spec=specs[0],
+ int6_spec=specs[1],
+ int8_spec=specs[2],
+ )
+
+
+def test_group_size_must_make_every_width_byte_representable() -> None:
+ int4_spec, int6_spec, int8_spec = _specs(
+ group_size=2,
+ flatten_last_dims=1,
+ )
+
+ with pytest.raises(ValueError, match="whole-byte payloads.*INT6"):
+ quantize_pack_multibit(
+ torch.ones(4),
+ torch.zeros(2, dtype=torch.uint8),
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+
+
+def test_invalid_precision_codes_are_rejected() -> None:
+ state = torch.ones((2, 8))
+ int4_spec, int6_spec, int8_spec = _specs(
+ group_size=4,
+ flatten_last_dims=1,
+ )
+
+ with pytest.raises(TypeError, match="torch.uint8"):
+ quantize_pack_multibit(
+ state,
+ torch.zeros((2, 2), dtype=torch.int64),
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+ with pytest.raises(ValueError, match="0=INT4"):
+ quantize_pack_multibit(
+ state,
+ torch.tensor([[0, 3], [1, 2]], dtype=torch.uint8),
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+ with pytest.raises(ValueError, match="must have shape"):
+ quantize_pack_multibit(
+ state,
+ torch.zeros((1, 4), dtype=torch.uint8),
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+ with pytest.raises(ValueError, match="reserved precision code 3"):
+ _unpack_precision_codes(torch.tensor([0b00000011], dtype=torch.uint8), 1)
+
+
+def test_nonfloating_nonfinite_and_empty_sources_are_rejected() -> None:
+ int4_spec, int6_spec, int8_spec = _specs(
+ group_size=4,
+ flatten_last_dims=1,
+ )
+ kwargs = {
+ "int4_spec": int4_spec,
+ "int6_spec": int6_spec,
+ "int8_spec": int8_spec,
+ }
+
+ with pytest.raises(TypeError, match="floating-point"):
+ quantize_pack_multibit(
+ torch.ones(4, dtype=torch.int32),
+ torch.zeros(1, dtype=torch.uint8),
+ **kwargs,
+ )
+ with pytest.raises(ValueError, match="finite"):
+ quantize_pack_multibit(
+ torch.tensor([1.0, float("nan"), 2.0, 3.0]),
+ torch.zeros(1, dtype=torch.uint8),
+ **kwargs,
+ )
+ with pytest.raises(ValueError, match="must not be empty"):
+ quantize_pack_multibit(
+ torch.empty(0),
+ torch.empty(0, dtype=torch.uint8),
+ **kwargs,
+ )
+
+
+def test_invalid_int6_codes_and_payload_shapes_are_rejected() -> None:
+ with pytest.raises(ValueError, match=r"\[-31, 31\]"):
+ _pack_int6_groups(torch.tensor([[-32, 0, 0, 0]], dtype=torch.int16))
+ with pytest.raises(ValueError, match="whole number of bytes"):
+ _pack_int6_groups(torch.zeros((1, 2), dtype=torch.int16))
+ with pytest.raises(TypeError, match="two-dimensional"):
+ _unpack_int6_groups(torch.zeros(3, dtype=torch.uint8), 4)
+ with pytest.raises(ValueError, match="inconsistent"):
+ _unpack_int6_groups(torch.zeros((1, 4), dtype=torch.uint8), 4)
+
+
+def test_invalid_reorder_indices_are_rejected() -> None:
+ int4_spec, int6_spec, int8_spec = _specs(
+ group_size=4,
+ flatten_last_dims=1,
+ )
+ packed = quantize_pack_multibit(
+ torch.ones((2, 8)),
+ torch.zeros((2, 2), dtype=torch.uint8),
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+
+ with pytest.raises(TypeError, match="int32 or int64"):
+ packed.reorder_batch(torch.tensor([0.0, 1.0]))
+ with pytest.raises(IndexError, match="out-of-range"):
+ packed.reorder_batch(torch.tensor([2], dtype=torch.long))
+
+
+@pytest.mark.skipif(not torch.cuda.is_available(), reason="CUDA is unavailable")
+def test_to_cuda_preserves_storage_dequantization_and_reorder() -> None:
+ state = torch.linspace(-2.0, 2.0, 48).reshape(3, 2, 8)
+ precision = torch.arange(12, dtype=torch.uint8).remainder(3).reshape(6, 2)
+ int4_spec, int6_spec, int8_spec = _specs(
+ group_size=4,
+ flatten_last_dims=1,
+ )
+ packed = quantize_pack_multibit(
+ state,
+ precision,
+ int4_spec=int4_spec,
+ int6_spec=int6_spec,
+ int8_spec=int8_spec,
+ )
+
+ on_cuda = packed.to("cuda")
+ beam_idx = torch.tensor([2, 0, 2], dtype=torch.long, device="cuda")
+ reordered = on_cuda.reorder_batch(beam_idx)
+
+ assert on_cuda.storage_bytes == packed.storage_bytes
+ assert torch.equal(on_cuda.dequantize().cpu(), packed.dequantize())
+ assert torch.equal(
+ reordered.dequantize().cpu(),
+ packed.dequantize().index_select(0, beam_idx.cpu()),
+ )
+
+
+def test_public_package_exports_multibit_primitives() -> None:
+ import recurquant
+
+ assert recurquant.quantize_pack_multibit is quantize_pack_multibit
+ assert recurquant.INT4_PRECISION_CODE == 0
+ assert recurquant.INT6_PRECISION_CODE == 1
+ assert recurquant.INT8_PRECISION_CODE == 2
+ assert callable(recurquant.allocate_exact_multibit_codes)
+ assert callable(recurquant.frozen_qwen35_multibit_step_budgets)
diff --git a/tests/test_rht.py b/tests/test_rht.py
new file mode 100644
index 0000000..57cab1c
--- /dev/null
+++ b/tests/test_rht.py
@@ -0,0 +1,249 @@
+from __future__ import annotations
+
+import hashlib
+
+import pytest
+import torch
+
+from recurquant.rht import (
+ fwht_unnormalized,
+ right_rht_decode,
+ right_rht_encode,
+ right_rht_signs,
+)
+
+
+def _q4_absmax(tensor: torch.Tensor) -> torch.Tensor:
+ scale = tensor.abs().amax(dim=-1, keepdim=True) / 7.0
+ scale = torch.where(scale > 0, scale, torch.ones_like(scale))
+ return torch.round(tensor / scale).clamp(-7, 7) * scale
+
+
+def test_unnormalized_fwht_has_expected_small_example_and_dtype_restore() -> None:
+ vector = torch.tensor([1.0, 2.0, 3.0, 4.0], dtype=torch.float16)
+
+ transformed = fwht_unnormalized(vector, output_dtype=torch.float32)
+
+ assert transformed.dtype == torch.float32
+ assert torch.equal(transformed, torch.tensor([10.0, -2.0, -4.0, 0.0]))
+ assert fwht_unnormalized(vector).dtype == torch.float16
+
+
+def test_unnormalized_fwht_rejects_scalar_and_unsupported_output_dtype() -> None:
+ with pytest.raises(ValueError, match="last dimension"):
+ fwht_unnormalized(torch.tensor(1.0))
+ with pytest.raises(TypeError, match="output_dtype"):
+ fwht_unnormalized(torch.ones(8), output_dtype=torch.float64)
+
+
+def test_encode_decode_inverse_has_tight_fp32_error_bound() -> None:
+ generator = torch.Generator().manual_seed(11)
+ state = torch.randn((2, 3, 5, 128), generator=generator)
+
+ encoded = right_rht_encode(state, layer_index=7, expected_heads=3)
+ restored = right_rht_decode(encoded, layer_index=7, expected_heads=3)
+ relative_l2 = torch.linalg.vector_norm(restored - state) / torch.linalg.vector_norm(state)
+
+ assert float(relative_l2.item()) < 3e-7
+ torch.testing.assert_close(restored, state, rtol=2e-6, atol=1e-6)
+
+
+def test_sign_schedule_is_deterministic_portable_and_rng_independent() -> None:
+ torch.manual_seed(1)
+ first = right_rht_signs(
+ layer_index=4,
+ expected_heads=3,
+ width=128,
+ device="cpu",
+ )
+ torch.manual_seed(999_999)
+ second = right_rht_signs(
+ layer_index=4,
+ expected_heads=3,
+ width=128,
+ device="cpu",
+ )
+ digest = hashlib.sha256(first.to(torch.int8).numpy().tobytes()).hexdigest()
+
+ assert torch.equal(first, second)
+ assert digest == "3cc14ffaf1ad8de3d77a1d277cb027c3dee9360429c0746232780acc55d42f55"
+
+
+def test_layers_and_heads_receive_different_sign_vectors() -> None:
+ first_layer = right_rht_signs(
+ layer_index=2,
+ expected_heads=4,
+ width=128,
+ device="cpu",
+ )
+ second_layer = right_rht_signs(
+ layer_index=3,
+ expected_heads=4,
+ width=128,
+ device="cpu",
+ )
+
+ assert all(
+ not torch.equal(first_layer[0, left, 0], first_layer[0, right, 0])
+ for left in range(4)
+ for right in range(left + 1, 4)
+ )
+ assert not torch.equal(first_layer, second_layer)
+
+
+def test_normalized_encode_preserves_every_row_norm() -> None:
+ generator = torch.Generator().manual_seed(23)
+ state = torch.randn((2, 4, 7, 128), generator=generator)
+
+ encoded = right_rht_encode(state, layer_index=5, expected_heads=4)
+
+ torch.testing.assert_close(
+ encoded.square().sum(dim=-1),
+ state.square().sum(dim=-1),
+ rtol=2e-6,
+ atol=2e-5,
+ )
+
+
+def test_decode_preserves_quantization_error_energy_per_row() -> None:
+ generator = torch.Generator().manual_seed(41)
+ state = torch.randn((2, 3, 6, 128), generator=generator)
+ encoded = right_rht_encode(state, layer_index=9, expected_heads=3)
+ quantized = _q4_absmax(encoded)
+ restored = right_rht_decode(quantized, layer_index=9, expected_heads=3)
+
+ source_error = (restored - state).square().sum(dim=-1)
+ transformed_error = (quantized - encoded).square().sum(dim=-1)
+
+ torch.testing.assert_close(source_error, transformed_error, rtol=8e-6, atol=2e-5)
+
+
+def test_zero_state_is_exact_and_batch_rows_broadcast_independently() -> None:
+ state = torch.zeros((3, 2, 5, 64), dtype=torch.float32)
+
+ encoded = right_rht_encode(state, layer_index=1, expected_heads=2)
+ restored = right_rht_decode(encoded, layer_index=1, expected_heads=2)
+
+ assert torch.equal(encoded, state)
+ assert torch.equal(restored, state)
+
+
+def test_hadamard_aligned_vector_maps_to_one_coordinate() -> None:
+ spike = torch.zeros((1, 1, 1, 128), dtype=torch.float32)
+ spike[..., 37] = 3.25
+ aligned = right_rht_decode(spike, layer_index=6, expected_heads=1)
+
+ encoded = right_rht_encode(aligned, layer_index=6, expected_heads=1)
+
+ torch.testing.assert_close(encoded, spike, rtol=2e-6, atol=1e-6)
+
+
+def test_exact_grid_adversary_documents_that_rotation_is_not_always_better() -> None:
+ values = torch.arange(128, dtype=torch.float32).remainder(15).sub(7)
+ state = values.reshape(1, 1, 1, 128)
+ baseline = _q4_absmax(state)
+ encoded = right_rht_encode(state, layer_index=0, expected_heads=1)
+ restored = right_rht_decode(
+ _q4_absmax(encoded),
+ layer_index=0,
+ expected_heads=1,
+ )
+
+ assert torch.equal(baseline, state)
+ assert float((restored - state).square().sum().item()) > 0.0
+
+
+@pytest.mark.parametrize(
+ ("state", "expected_heads", "message"),
+ [
+ (torch.ones((1, 2, 128)), 2, "shape"),
+ (torch.ones((1, 2, 3, 96)), 2, "power of two"),
+ (torch.ones((1, 2, 3, 128)), 3, "head dimension"),
+ (torch.ones((1, 2, 3, 128), dtype=torch.int64), 2, "float16"),
+ (torch.full((1, 2, 3, 128), float("nan")), 2, "finite"),
+ (torch.full((1, 2, 3, 128), float("inf")), 2, "finite"),
+ (torch.empty((0, 2, 3, 128)), 2, "empty"),
+ ],
+)
+def test_encode_fails_closed_on_invalid_state(
+ state: torch.Tensor,
+ expected_heads: int,
+ message: str,
+) -> None:
+ with pytest.raises((TypeError, ValueError), match=message):
+ right_rht_encode(
+ state,
+ layer_index=0,
+ expected_heads=expected_heads,
+ )
+
+
+@pytest.mark.parametrize(
+ ("layer_index", "expected_heads", "error", "message"),
+ [
+ (-1, 2, ValueError, "non-negative"),
+ (True, 2, TypeError, "integer"),
+ (0, 0, ValueError, "positive"),
+ (0, True, TypeError, "integer"),
+ ],
+)
+def test_encode_rejects_invalid_identity(
+ layer_index: int,
+ expected_heads: int,
+ error: type[Exception],
+ message: str,
+) -> None:
+ with pytest.raises(error, match=message):
+ right_rht_encode(
+ torch.ones((1, 2, 3, 128)),
+ layer_index=layer_index,
+ expected_heads=expected_heads,
+ )
+
+
+def test_decode_can_restore_requested_recurrent_state_dtype() -> None:
+ state = torch.randn((1, 2, 3, 128), dtype=torch.float32).to(torch.bfloat16)
+
+ encoded = right_rht_encode(
+ state,
+ layer_index=8,
+ expected_heads=2,
+ output_dtype=torch.float32,
+ )
+ restored = right_rht_decode(
+ encoded,
+ layer_index=8,
+ expected_heads=2,
+ output_dtype=torch.bfloat16,
+ )
+
+ assert encoded.dtype == torch.float32
+ assert restored.dtype == torch.bfloat16
+
+
+@pytest.mark.skipif(not torch.cuda.is_available(), reason="CUDA is unavailable")
+def test_cuda_matches_cpu_sign_schedule_and_inverse_bound() -> None:
+ generator = torch.Generator().manual_seed(71)
+ state_cpu = torch.randn((2, 3, 4, 128), generator=generator)
+ state_cuda = state_cpu.cuda()
+
+ cpu_signs = right_rht_signs(
+ layer_index=11,
+ expected_heads=3,
+ width=128,
+ device="cpu",
+ )
+ cuda_signs = right_rht_signs(
+ layer_index=11,
+ expected_heads=3,
+ width=128,
+ device="cuda",
+ )
+ encoded = right_rht_encode(state_cuda, layer_index=11, expected_heads=3)
+ restored = right_rht_decode(encoded, layer_index=11, expected_heads=3)
+ relative_l2 = torch.linalg.vector_norm(restored - state_cuda) / torch.linalg.vector_norm(
+ state_cuda
+ )
+
+ assert torch.equal(cpu_signs, cuda_signs.cpu())
+ assert float(relative_l2.item()) < 3e-7
diff --git a/tests/test_rht_mixed_quantization.py b/tests/test_rht_mixed_quantization.py
new file mode 100644
index 0000000..65d9bb7
--- /dev/null
+++ b/tests/test_rht_mixed_quantization.py
@@ -0,0 +1,169 @@
+from __future__ import annotations
+
+import pytest
+import torch
+
+from recurquant.mixed_quantization import quantize_pack_mixed
+from recurquant.quantization import QuantizationSpec, quantize_dequantize
+from recurquant.rht import right_rht_decode, right_rht_encode
+
+LOW = QuantizationSpec(bits=4, group_size=128, flatten_last_dims=2)
+HIGH = QuantizationSpec(bits=8, group_size=128, flatten_last_dims=2)
+
+
+def _independent_rht_qdq(
+ state: torch.Tensor,
+ mask: torch.Tensor,
+ *,
+ layer_index: int,
+) -> torch.Tensor:
+ encoded = right_rht_encode(
+ state,
+ layer_index=layer_index,
+ expected_heads=state.shape[1],
+ )
+ low = quantize_dequantize(encoded, LOW).tensor
+ high = quantize_dequantize(encoded, HIGH).tensor
+ selected = torch.where(mask.reshape(1, state.shape[1], state.shape[2], 1), high, low)
+ return right_rht_decode(
+ selected,
+ layer_index=layer_index,
+ expected_heads=state.shape[1],
+ output_dtype=state.dtype,
+ )
+
+
+def test_rht_mixed_pack_matches_independent_transformed_qdq() -> None:
+ generator = torch.Generator().manual_seed(91)
+ state = torch.randn((1, 3, 7, 128), generator=generator, dtype=torch.float32)
+ mask = torch.zeros((3, 7), dtype=torch.bool)
+ mask[0, 2] = True
+ mask[2, 4:] = True
+
+ packed = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=LOW,
+ high_spec=HIGH,
+ right_rht_layer_index=5,
+ right_rht_expected_heads=3,
+ )
+
+ expected = _independent_rht_qdq(state, mask, layer_index=5)
+ torch.testing.assert_close(packed.dequantize(), expected, rtol=0, atol=0)
+ assert packed.high_precision_groups == int(mask.sum().item())
+ assert packed.storage_bytes == (
+ packed.payload_bytes + packed.scale_bytes + packed.mask_bytes
+ )
+
+
+def test_rht_changes_error_without_changing_physical_byte_contract() -> None:
+ state = torch.randn((1, 2, 8, 128), generator=torch.Generator().manual_seed(101))
+ mask = torch.rand((2, 8), generator=torch.Generator().manual_seed(102)) > 0.6
+
+ baseline = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=LOW,
+ high_spec=HIGH,
+ )
+ transformed = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=LOW,
+ high_spec=HIGH,
+ right_rht_layer_index=4,
+ right_rht_expected_heads=2,
+ )
+
+ assert transformed.storage_bytes == baseline.storage_bytes
+ assert transformed.payload_bytes == baseline.payload_bytes
+ assert transformed.scale_bytes == baseline.scale_bytes
+ assert transformed.mask_bytes == baseline.mask_bytes
+ assert not torch.equal(transformed.dequantize(), baseline.dequantize())
+
+
+def test_rht_metadata_survives_transfer_and_batch_reorder() -> None:
+ state = torch.randn((3, 2, 4, 128), generator=torch.Generator().manual_seed(111))
+ mask = torch.zeros((state.shape[0] * state.shape[1], state.shape[2]), dtype=torch.bool)
+ mask[::2, 1] = True
+ packed = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=LOW,
+ high_spec=HIGH,
+ right_rht_layer_index=8,
+ right_rht_expected_heads=2,
+ )
+ expected = packed.dequantize()
+
+ moved = packed.to("cpu")
+ assert moved.right_rht_layer_index == 8
+ assert moved.right_rht_expected_heads == 2
+ torch.testing.assert_close(moved.dequantize(), expected, rtol=0, atol=0)
+
+ indices = torch.tensor([2, 0, 2], dtype=torch.long)
+ reordered = packed.reorder_batch(indices)
+ assert reordered.right_rht_layer_index == 8
+ assert reordered.right_rht_expected_heads == 2
+ torch.testing.assert_close(
+ reordered.dequantize(),
+ expected.index_select(0, indices),
+ rtol=0,
+ atol=0,
+ )
+
+
+@pytest.mark.parametrize(
+ ("layer_index", "expected_heads"),
+ [
+ (0, None),
+ (None, 2),
+ ],
+)
+def test_rht_configuration_must_be_complete(
+ layer_index: int | None,
+ expected_heads: int | None,
+) -> None:
+ state = torch.ones((1, 2, 3, 128))
+ mask = torch.zeros((2, 3), dtype=torch.bool)
+
+ with pytest.raises(ValueError, match="configured together"):
+ quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=LOW,
+ high_spec=HIGH,
+ right_rht_layer_index=layer_index,
+ right_rht_expected_heads=expected_heads,
+ )
+
+
+def test_rht_pack_rejects_wrong_head_geometry() -> None:
+ state = torch.ones((1, 2, 3, 128))
+ mask = torch.zeros((2, 3), dtype=torch.bool)
+
+ with pytest.raises(ValueError, match="head dimension"):
+ quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=LOW,
+ high_spec=HIGH,
+ right_rht_layer_index=0,
+ right_rht_expected_heads=3,
+ )
+
+
+def test_rht_reorder_rejects_empty_batch() -> None:
+ state = torch.ones((1, 2, 3, 128))
+ packed = quantize_pack_mixed(
+ state,
+ torch.zeros((2, 3), dtype=torch.bool),
+ low_spec=LOW,
+ high_spec=HIGH,
+ right_rht_layer_index=0,
+ right_rht_expected_heads=2,
+ )
+
+ with pytest.raises(ValueError, match="empty batch"):
+ packed.reorder_batch(torch.empty(0, dtype=torch.long))
diff --git a/tests/test_right_rht_query_ema_cache.py b/tests/test_right_rht_query_ema_cache.py
new file mode 100644
index 0000000..ce07b42
--- /dev/null
+++ b/tests/test_right_rht_query_ema_cache.py
@@ -0,0 +1,137 @@
+from __future__ import annotations
+
+import math
+
+import pytest
+import torch
+from transformers import Qwen3_5ForCausalLM
+
+from recurquant import (
+ Qwen35QueryEnergyObserver,
+ RightRhtQueryEmaMixedPackedLinearAttentionLayer,
+ RightRhtQueryEmaMixedPackedRecurrentStateCache,
+ create_qwen35_right_rht_query_ema_exact_budget_cache,
+)
+from recurquant.quantization import QuantizationSpec
+from recurquant.row_policy import ExactBudgetRowPlan, select_rows_exact_budget
+from tests.test_transformers_cache import tiny_config
+
+
+def _target_for_promotions(promotions: int) -> int:
+ total_groups = 16
+ group_size = 8
+ low_group_bytes = math.ceil(4 * group_size / 8) + 2
+ high_increment = math.ceil(8 * group_size / 8) - math.ceil(4 * group_size / 8)
+ return (
+ total_groups * low_group_bytes
+ + math.ceil(total_groups / 8)
+ + promotions * high_increment
+ )
+
+
+def _plan(promotions: int = 3) -> ExactBudgetRowPlan:
+ return select_rows_exact_budget(
+ {0: torch.arange(16, dtype=torch.float32).reshape(2, 8)},
+ target_resident_bytes=_target_for_promotions(promotions),
+ group_size=8,
+ )
+
+
+def _query() -> torch.Tensor:
+ query = torch.zeros((1, 2, 2, 8), dtype=torch.float32)
+ query[:, :, :, 3] = 1
+ return query
+
+
+def test_right_rht_query_cache_realizes_same_exact_byte_plan() -> None:
+ plan = _plan()
+ cache = create_qwen35_right_rht_query_ema_exact_budget_cache(
+ tiny_config(),
+ plan=plan,
+ record_evidence=True,
+ )
+ cache.stage_query_observation(0, _query())
+
+ cache.update_recurrent_state(
+ torch.randn((1, 2, 8, 8), generator=torch.Generator().manual_seed(121)),
+ layer_idx=0,
+ )
+
+ assert isinstance(cache, RightRhtQueryEmaMixedPackedRecurrentStateCache)
+ layer = cache.layers[0]
+ assert isinstance(layer, RightRhtQueryEmaMixedPackedLinearAttentionLayer)
+ packed = layer.packed_states[0]
+ assert packed is not None
+ assert packed.right_rht_layer_index == 0
+ assert packed.right_rht_expected_heads == 2
+ summary = cache.storage_summary()
+ assert summary["resident_bytes"] == plan.resident_bytes
+ assert summary["selector_auxiliary_bytes"] == 2 * 8 * 4
+ assert summary["resident_bytes_including_selector"] == plan.resident_bytes + 64
+ assert cache.high_precision_group_count() == plan.promoted_group_count
+
+ diagnostics = cache.query_ema_diagnostics()
+ assert diagnostics[0]["selection_method"] == (
+ "right_rht_query_ema32_weighted_mse_target_fisher_quota"
+ )
+ assert diagnostics[0]["state_codec"] == "right_rht_sha256_signs_v1"
+ assert diagnostics[0]["state_codec_seed"] == 2339
+ assert diagnostics[0]["state_codec_persistent_tensor_bytes"] == 0
+
+
+def test_right_rht_query_cache_rejects_confirmation_two() -> None:
+ with pytest.raises(ValueError, match="does not support Confirmation-2"):
+ RightRhtQueryEmaMixedPackedRecurrentStateCache(
+ tiny_config(),
+ plan=_plan(),
+ confirmation_two=True,
+ )
+
+
+def test_right_rht_selector_benefit_matches_decoded_endpoint_error() -> None:
+ cache = create_qwen35_right_rht_query_ema_exact_budget_cache(
+ tiny_config(),
+ plan=_plan(),
+ )
+ layer = cache.layers[0]
+ assert isinstance(layer, RightRhtQueryEmaMixedPackedLinearAttentionLayer)
+ state = torch.randn((1, 2, 8, 8), generator=torch.Generator().manual_seed(127))
+ low_spec = QuantizationSpec(bits=4, group_size=8, flatten_last_dims=2)
+ high_spec = QuantizationSpec(bits=8, group_size=8, flatten_last_dims=2)
+
+ transformed_benefit = layer._aligned_mse_benefit(
+ state,
+ low_spec=low_spec,
+ high_spec=high_spec,
+ )
+ low = layer._quantized_endpoint(state, low_spec)
+ high = layer._quantized_endpoint(state, high_spec)
+ decoded_benefit = (low - state).square().mean(dim=-1) - (
+ high - state
+ ).square().mean(dim=-1)
+
+ torch.testing.assert_close(transformed_benefit, decoded_benefit, rtol=2e-5, atol=2e-7)
+
+
+def test_right_rht_query_cache_runs_tiny_qwen_prefill_and_decode() -> None:
+ torch.manual_seed(131)
+ model = Qwen3_5ForCausalLM._from_config(
+ tiny_config(),
+ attn_implementation="eager",
+ ).eval()
+ cache = create_qwen35_right_rht_query_ema_exact_budget_cache(
+ model,
+ plan=_plan(),
+ )
+ prompt = torch.tensor([[1, 2, 3, 4]])
+
+ with torch.inference_mode(), Qwen35QueryEnergyObserver(model, caches=[cache]):
+ prefill = model(prompt, past_key_values=cache, use_cache=True)
+ next_token = prefill.logits[:, -1, :].argmax(dim=-1, keepdim=True)
+ decode = model(next_token, past_key_values=cache, use_cache=True)
+
+ assert decode.logits.shape == (1, 1, model.config.vocab_size)
+ diagnostics = cache.query_ema_diagnostics()
+ assert diagnostics[0]["state_updates"] == 2
+ assert diagnostics[0]["observations_committed"] == 2
+ assert diagnostics[0]["tokens_observed"] == 5
diff --git a/tests/test_screen_rht_cqer.py b/tests/test_screen_rht_cqer.py
new file mode 100644
index 0000000..721290c
--- /dev/null
+++ b/tests/test_screen_rht_cqer.py
@@ -0,0 +1,353 @@
+from __future__ import annotations
+
+from copy import deepcopy
+
+import pytest
+
+from scripts import screen_rht_cqer as screen
+
+
+def _metric(
+ *,
+ tokens: int,
+ delta_nll: float,
+ mean_kl: float,
+ top1: float,
+) -> dict[str, float | int | bool]:
+ return {
+ "token_count": tokens,
+ "mean_kl": mean_kl,
+ "cvar95_kl": mean_kl * 2,
+ "max_kl": mean_kl * 3,
+ "top1_agreement": top1,
+ "reference_nll": 2.0,
+ "candidate_nll": 2.0 + delta_nll,
+ "delta_nll": delta_nll,
+ "all_logits_finite": True,
+ }
+
+
+def _diagnostics(method: str) -> list[dict[str, object]]:
+ records: list[dict[str, object]] = []
+ for layer, quota in screen.FROZEN_LAYER_QUOTAS.items():
+ records.append(
+ {
+ "layer_index": layer,
+ "quota": quota,
+ "current_selected_count": quota,
+ "state_updates": screen.EXPECTED_STATE_WRITES,
+ "observations_staged": screen.EXPECTED_STATE_WRITES,
+ "observations_committed": screen.EXPECTED_STATE_WRITES,
+ "tokens_observed": screen.EXPECTED_QUERY_TOKENS,
+ "pending_observation": False,
+ "confirmation_two": False,
+ "selection_method": (
+ "query_ema32_weighted_aligned_mse_reduction"
+ if method == screen.CQER_METHOD
+ else screen.RHT_METHOD
+ ),
+ **(
+ {
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_seed": screen.SEED,
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ }
+ if method == screen.RHT_METHOD
+ else {}
+ ),
+ "current_mask_sha256": (
+ "a" * 64 if method == screen.CQER_METHOD else "b" * 64
+ ),
+ }
+ )
+ return records
+
+
+def _state_error(*, sse: float) -> dict[str, object]:
+ coverage = [
+ {
+ "write_ordinal": write,
+ "layer_index": layer,
+ "state_index": 0,
+ "shape": [1, 16, 128, 128],
+ }
+ for write in range(screen.EXPECTED_STATE_WRITES)
+ for layer in screen.FROZEN_LINEAR_LAYERS
+ ]
+ return {
+ "record_count": len(coverage),
+ "element_count": len(coverage) * 16 * 128 * 128,
+ "aggregate_state_sse": sse,
+ "aggregate_state_mse": sse / (len(coverage) * 16 * 128 * 128),
+ "coverage": coverage,
+ "per_layer": {
+ str(layer): {
+ "record_count": screen.EXPECTED_STATE_WRITES,
+ "element_count": screen.EXPECTED_STATE_WRITES * 16 * 128 * 128,
+ "state_sse": sse / len(screen.FROZEN_LINEAR_LAYERS),
+ }
+ for layer in screen.FROZEN_LINEAR_LAYERS
+ },
+ "per_write": {
+ str(write): {
+ "record_count": len(screen.FROZEN_LINEAR_LAYERS),
+ "element_count": len(screen.FROZEN_LINEAR_LAYERS) * 16 * 128 * 128,
+ "state_sse": sse / screen.EXPECTED_STATE_WRITES,
+ }
+ for write in range(screen.EXPECTED_STATE_WRITES)
+ },
+ }
+
+
+def _passing_gate_inputs() -> dict[str, object]:
+ aligned = {
+ screen.CQER_METHOD: _metric(
+ tokens=screen.ALIGNED_TOKENS,
+ delta_nll=1.0,
+ mean_kl=0.5,
+ top1=0.75,
+ ),
+ screen.RHT_METHOD: _metric(
+ tokens=screen.ALIGNED_TOKENS,
+ delta_nll=0.8,
+ mean_kl=0.4,
+ top1=0.76,
+ ),
+ }
+ full = {
+ screen.CQER_METHOD: _metric(
+ tokens=screen.CODE_TOKENS,
+ delta_nll=0.9,
+ mean_kl=0.45,
+ top1=0.76,
+ ),
+ screen.RHT_METHOD: _metric(
+ tokens=screen.CODE_TOKENS,
+ delta_nll=0.7,
+ mean_kl=0.35,
+ top1=0.77,
+ ),
+ }
+ storage_record = {
+ "payload_bytes": screen.TARGET_PAYLOAD_BYTES,
+ "scale_bytes": screen.TARGET_SCALE_BYTES,
+ "mask_bytes": screen.TARGET_MASK_BYTES,
+ "resident_bytes": screen.TARGET_PACKED_STATE_BYTES,
+ "selector_auxiliary_bytes": screen.TARGET_SELECTOR_BYTES,
+ "resident_bytes_including_selector": screen.TARGET_TOTAL_BYTES,
+ "high_precision_groups": screen.TARGET_PROMOTED_ROWS,
+ }
+ return {
+ "aligned_metrics": aligned,
+ "full_code_metrics": full,
+ "storage": {
+ screen.CQER_METHOD: dict(storage_record),
+ screen.RHT_METHOD: dict(storage_record),
+ },
+ "selector_diagnostics": {
+ method: _diagnostics(method) for method in screen.METHODS
+ },
+ "state_errors": {
+ screen.CQER_METHOD: _state_error(sse=100.0),
+ screen.RHT_METHOD: _state_error(sse=40.0),
+ },
+ "unit_evidence": {
+ "inverse_relative_l2": 2e-7,
+ "physical_pack_matches_transformed_qdq": True,
+ "physical_pack_max_abs_difference": 0.0,
+ "sign_schedule_sha256": screen.EXPECTED_SIGN_SCHEDULE_SHA256,
+ },
+ "integrity": {
+ "repository_clean_at_start": True,
+ "repository_clean_at_end": True,
+ "repository_commit_stable": True,
+ "source_hashes_stable": True,
+ "identity_authenticated_before_model_weights": True,
+ "protected_window_8_16_accessed": False,
+ },
+ }
+
+
+def test_stage_a_gate_passes_only_the_complete_frozen_conjunction() -> None:
+ gate = screen.evaluate_stage_a_gate(**_passing_gate_inputs())
+
+ assert gate["passed"] is True
+ assert all(check["passed"] is True for check in gate["checks"].values())
+ assert (
+ gate["checks"]["state_sse_relative_reduction"]["relative_reduction"]
+ == pytest.approx(0.6)
+ )
+ assert (
+ gate["checks"]["aligned_excess_nll_relative_reduction"][
+ "relative_reduction"
+ ]
+ == pytest.approx(0.2)
+ )
+
+
+@pytest.mark.parametrize(
+ ("mutation", "failed_check"),
+ [
+ (
+ lambda values: values["integrity"].__setitem__(
+ "repository_clean_at_end", False
+ ),
+ "clean_stable_repository",
+ ),
+ (
+ lambda values: values["storage"][screen.RHT_METHOD].__setitem__(
+ "resident_bytes", screen.TARGET_PACKED_STATE_BYTES - 1
+ ),
+ "exact_equal_storage",
+ ),
+ (
+ lambda values: values["state_errors"][screen.RHT_METHOD].__setitem__(
+ "aggregate_state_sse", 60.0
+ ),
+ "state_sse_relative_reduction",
+ ),
+ (
+ lambda values: values["aligned_metrics"][screen.RHT_METHOD].__setitem__(
+ "delta_nll", 0.95
+ ),
+ "aligned_excess_nll_relative_reduction",
+ ),
+ (
+ lambda values: values["unit_evidence"].__setitem__(
+ "inverse_relative_l2", screen.MAX_RHT_INVERSE_RELATIVE_L2
+ ),
+ "independent_rht_numeric_evidence",
+ ),
+ ],
+)
+def test_stage_a_gate_fails_closed_on_frozen_condition_drift(
+ mutation,
+ failed_check: str,
+) -> None:
+ values = deepcopy(_passing_gate_inputs())
+ mutation(values)
+
+ gate = screen.evaluate_stage_a_gate(**values)
+
+ assert gate["passed"] is False
+ assert gate["checks"][failed_check]["passed"] is False
+
+
+@pytest.mark.parametrize(
+ ("field", "value"),
+ [
+ ("selection_method", "unexpected_selector"),
+ ("state_codec_seed", screen.SEED + 1),
+ ("state_codec_axis", "key"),
+ ("state_codec_persistent_tensor_bytes", 1),
+ ],
+)
+def test_stage_a_gate_rejects_rht_method_or_codec_drift(
+ field: str,
+ value: object,
+) -> None:
+ inputs = deepcopy(_passing_gate_inputs())
+ inputs["selector_diagnostics"][screen.RHT_METHOD][0][field] = value
+
+ gate = screen.evaluate_stage_a_gate(**inputs)
+
+ assert gate["passed"] is False
+ assert (
+ gate["checks"]["finite_metrics_exact_quotas_and_handshakes"]["passed"]
+ is False
+ )
+
+
+def test_stage_a_identity_accepts_only_frozen_task_hash_and_token_counts() -> None:
+ identity = screen.validate_stage_a_identity(
+ task_id=screen.TASK_ID,
+ row_sha256=screen.TASK_ROW_SHA256,
+ prompt_tokens=screen.PROMPT_TOKENS,
+ code_tokens=screen.CODE_TOKENS,
+ aligned_scored_tokens=screen.ALIGNED_TOKENS,
+ )
+
+ assert identity["authenticated_before_model_weights"] is True
+ assert identity["aligned_scored_tokens"] == identity["code_tokens"] - 1
+
+
+@pytest.mark.parametrize(
+ ("field", "value", "message"),
+ [
+ ("task_id", 667, "locked"),
+ ("row_sha256", "0" * 64, "row SHA"),
+ ("prompt_tokens", 68, "token identity"),
+ ("code_tokens", 40, "token identity"),
+ ("aligned_scored_tokens", 37, "token identity"),
+ ],
+)
+def test_stage_a_identity_rejects_every_frozen_identity_drift(
+ field: str,
+ value: object,
+ message: str,
+) -> None:
+ values: dict[str, object] = {
+ "task_id": screen.TASK_ID,
+ "row_sha256": screen.TASK_ROW_SHA256,
+ "prompt_tokens": screen.PROMPT_TOKENS,
+ "code_tokens": screen.CODE_TOKENS,
+ "aligned_scored_tokens": screen.ALIGNED_TOKENS,
+ }
+ values[field] = value
+
+ with pytest.raises(ValueError, match=message):
+ screen.validate_stage_a_identity(**values)
+
+
+def test_state_error_evidence_aggregates_mse_to_sse_by_layer_and_write() -> None:
+ records = [
+ {
+ "update_index": 0,
+ "layer_index": 0,
+ "state_index": 0,
+ "shape": [1, 1, 2, 2],
+ "mean_squared_error": 0.25,
+ "max_absolute_error": 1.0,
+ "relative_l2_error": 0.1,
+ },
+ {
+ "update_index": 1,
+ "layer_index": 1,
+ "state_index": 0,
+ "shape": [1, 1, 2, 3],
+ "mean_squared_error": 0.5,
+ "max_absolute_error": 1.5,
+ "relative_l2_error": 0.2,
+ },
+ ]
+
+ aggregate = screen.aggregate_state_error_evidence(records)
+
+ assert aggregate["record_count"] == 2
+ assert aggregate["element_count"] == 10
+ assert aggregate["aggregate_state_sse"] == pytest.approx(4.0)
+ assert aggregate["aggregate_state_mse"] == pytest.approx(0.4)
+ assert aggregate["per_layer"]["0"]["state_sse"] == pytest.approx(1.0)
+ assert aggregate["per_layer"]["1"]["state_sse"] == pytest.approx(3.0)
+ assert aggregate["per_write"]["0"]["record_count"] == 2
+ assert [record["write_ordinal"] for record in aggregate["records"]] == [0, 0]
+
+
+def test_state_error_evidence_rejects_duplicate_or_nonfinite_records() -> None:
+ record = {
+ "update_index": 0,
+ "layer_index": 0,
+ "state_index": 0,
+ "shape": [1, 2],
+ "mean_squared_error": 0.1,
+ "max_absolute_error": 0.2,
+ "relative_l2_error": 0.3,
+ }
+ with pytest.raises(ValueError, match="duplicate"):
+ screen.aggregate_state_error_evidence([record, dict(record)])
+ with pytest.raises(ValueError, match="finite"):
+ screen.aggregate_state_error_evidence(
+ [{**record, "mean_squared_error": float("nan")}]
+ )
From 1cbc20f6c493e79f771d047fc63e96a7464eacf4 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Sun, 26 Jul 2026 11:37:10 +0800
Subject: [PATCH 16/22] research: authenticate RHT-CQER Stage A pass
---
...iment009-rht-cqer-stage-a-666-5be8d48.json | 63253 ++++++++++++++++
research/CLAIM_BOUNDARY.md | 14 +-
research/EXPERIMENT_009_STAGE_A_RESULT.md | 91 +
research/STATUS.md | 14 +-
4 files changed, 63362 insertions(+), 10 deletions(-)
create mode 100644 evidence/experiment009-rht-cqer-stage-a-666-5be8d48.json
create mode 100644 research/EXPERIMENT_009_STAGE_A_RESULT.md
diff --git a/evidence/experiment009-rht-cqer-stage-a-666-5be8d48.json b/evidence/experiment009-rht-cqer-stage-a-666-5be8d48.json
new file mode 100644
index 0000000..5bf4554
--- /dev/null
+++ b/evidence/experiment009-rht-cqer-stage-a-666-5be8d48.json
@@ -0,0 +1,63253 @@
+{
+ "artifact_kind": "recurquant_rht_cqer32_stage_a_screen",
+ "canonical_evidence_sha256": "9e03a1e8cefb5801406a47a2e5e365686afb0a05e10e099a989cee616b505ed1",
+ "evidence": {
+ "artifact_kind": "recurquant_rht_cqer32_stage_a_screen",
+ "claim_boundary": "This is a one-task, already-open falsification screen for a known right-RHT codec composed with CQER-32. Passing authorizes only the separately frozen 32-task development run. It is not novelty, speed, confirmation, state-of-the-art, or breakthrough evidence.",
+ "command": [
+ "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant\\.venv\\Scripts\\python.exe",
+ "scripts\\screen_rht_cqer.py",
+ "--selector-artifact",
+ "artifacts\\experiment006-hrr-selector-8task-c2ad68b.json",
+ "--loss-selector-artifact",
+ "artifacts\\experiment006-loss-selector-8task-c2ad68b.json",
+ "--output",
+ "artifacts\\experiment009-rht-cqer-stage-a-666-5be8d48.json",
+ "--device",
+ "cuda",
+ "--local-files-only"
+ ],
+ "created_at_utc": "2026-07-26T03:34:27.699967+00:00",
+ "dataset": {
+ "identity": {
+ "aligned_scored_tokens": 38,
+ "authenticated_before_model_weights": true,
+ "code_tokens": 39,
+ "prompt_tokens": 69,
+ "row_sha256": "b4f5989005c921c3ab94ab52c8115e79f99a22390bc1d6e6235d36fd02687fb9",
+ "task_id": 666
+ },
+ "identity_authenticated_before_model_weights": true,
+ "manifest": {
+ "config": "full",
+ "dataset_id": "google-research-datasets/mbpp",
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "phase": "calibration",
+ "revision": "4bb6404fdc6cacfda99d4ac4205087b89d32030c",
+ "row_count": 1,
+ "rows": [
+ {
+ "sha256": "b4f5989005c921c3ab94ab52c8115e79f99a22390bc1d6e6235d36fd02687fb9",
+ "task_id": 666
+ }
+ ],
+ "schema": "recurquant.mbpp-manifest.v1",
+ "selection_namespace": "rq-v0.2",
+ "source_split": "train"
+ },
+ "manifest_sha256": "3c21e7d6534bcdeb5b6af7fdf80560529639e27b77ffaa4f086491a7a3a50ea4",
+ "phase": "calibration",
+ "protected_window_8_16_loaded_tokenized_or_evaluated": false,
+ "selection_mode": "exact_already_open_task_id",
+ "token_manifest": [
+ {
+ "aligned_scored_tokens": 38,
+ "code_tokens": 39,
+ "full_code_scored_tokens": 39,
+ "prompt_tokens": 69,
+ "task_id": 666
+ }
+ ]
+ },
+ "environment": {
+ "cuda_available": true,
+ "cuda_runtime": "12.8",
+ "gpu": "NVIDIA GeForce RTX 5070 Laptop GPU",
+ "packages": {
+ "datasets": "4.8.5",
+ "numpy": "2.4.6",
+ "safetensors": "0.8.0",
+ "torch": "2.11.0+cu128",
+ "transformers": "5.14.1"
+ },
+ "platform": "Windows-10-10.0.26200-SP0",
+ "python": "3.11.15 (main, Jun 2 2026, 22:29:49) [MSC v.1944 64 bit (AMD64)]"
+ },
+ "methods": [
+ "query_ema32_weighted_mse_target_fisher_quota",
+ "right_rht_query_ema32_weighted_mse_target_fisher_quota"
+ ],
+ "metric_contract": {
+ "aligned_primary": "code transitions after recurrent-state storage",
+ "aligned_token_count": 38,
+ "excluded_from_aligned": "prompt-to-first-code-token prediction",
+ "full_code_secondary_token_count": 39
+ },
+ "metrics_aligned": {
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8963398933410645,
+ "cvar95_kl": 1.2762696743011475,
+ "delta_nll": 0.32924437522888184,
+ "max_kl": 1.5639057159423828,
+ "mean_kl": 0.2243848294019699,
+ "reference_nll": 0.5670955181121826,
+ "token_count": 38,
+ "top1_agreement": 0.8684210777282715
+ },
+ "right_rht_query_ema32_weighted_mse_target_fisher_quota": {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7034451365470886,
+ "cvar95_kl": 1.02266263961792,
+ "delta_nll": 0.136349618434906,
+ "max_kl": 1.3979166746139526,
+ "mean_kl": 0.1543886959552765,
+ "reference_nll": 0.5670955181121826,
+ "token_count": 38,
+ "top1_agreement": 0.8684210777282715
+ }
+ },
+ "metrics_full_code_secondary": {
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "all_logits_finite": true,
+ "candidate_nll": 0.8880572319030762,
+ "cvar95_kl": 1.2762696743011475,
+ "delta_nll": 0.3208022117614746,
+ "max_kl": 1.5639057159423828,
+ "mean_kl": 0.21863137185573578,
+ "reference_nll": 0.5672550201416016,
+ "token_count": 39,
+ "top1_agreement": 0.8717948794364929
+ },
+ "right_rht_query_ema32_weighted_mse_target_fisher_quota": {
+ "all_logits_finite": true,
+ "candidate_nll": 0.7001084685325623,
+ "cvar95_kl": 1.02266263961792,
+ "delta_nll": 0.1328534483909607,
+ "max_kl": 1.3979166746139526,
+ "mean_kl": 0.15043000876903534,
+ "reference_nll": 0.5672550201416016,
+ "token_count": 39,
+ "top1_agreement": 0.8717948794364929
+ }
+ },
+ "model": {
+ "device": "cuda",
+ "dtype": "torch.bfloat16",
+ "id": "Qwen/Qwen3.5-0.8B-Base",
+ "revision": "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68"
+ },
+ "protocol": {
+ "method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "name": "Experiment 009 Stage A",
+ "protected_ranked_window": [
+ 8,
+ 16
+ ],
+ "protected_window_accessed": false,
+ "task_locked": true,
+ "thresholds_locked": true
+ },
+ "repository": {
+ "commit": "5be8d48369d94081e55aa389c25f63c303c7b0dd",
+ "end": {
+ "commit": "5be8d48369d94081e55aa389c25f63c303c7b0dd",
+ "status": [],
+ "worktree_clean": true
+ },
+ "stable_commit": true,
+ "start": {
+ "commit": "5be8d48369d94081e55aa389c25f63c303c7b0dd",
+ "status": [],
+ "worktree_clean": true
+ }
+ },
+ "schema_version": 1,
+ "screening_only": true,
+ "selector_artifacts": {
+ "authenticated": true,
+ "frozen_canonical_evidence_sha256s": [
+ "7970961fd88b522998189ad64f26b333aed9c88ff5f653de5449fd9e01d8cbc8",
+ "bff4e33253990b8115e1f35e74516c4975c2fe4aac5066475afe968eb8a64609"
+ ],
+ "loss_selector_canonical_evidence_sha256": "bff4e33253990b8115e1f35e74516c4975c2fe4aac5066475afe968eb8a64609",
+ "loss_selector_file_sha256": "95c16656edb32efbc985f2fea59e229634dd558f4f4bf04819b8efc37783a1d6",
+ "loss_selector_path": "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant-adoption\\artifacts\\experiment006-loss-selector-8task-c2ad68b.json",
+ "quota_sum": 1976,
+ "selector_canonical_evidence_sha256": "7970961fd88b522998189ad64f26b333aed9c88ff5f653de5449fd9e01d8cbc8",
+ "selector_file_sha256": "d0c4267095ee3f5068627b189a1fd9f58cb02f6e25672d9b89dd0990e5b09330",
+ "selector_path": "C:\\Users\\Labeeb\\Documents\\Codex\\2026-07-18\\soi\\work\\recurquant-adoption\\artifacts\\experiment006-hrr-selector-8task-c2ad68b.json",
+ "target_fisher_layer_quotas": {
+ "0": 355,
+ "1": 380,
+ "10": 84,
+ "12": 30,
+ "13": 62,
+ "14": 54,
+ "16": 45,
+ "17": 27,
+ "18": 7,
+ "2": 269,
+ "20": 9,
+ "21": 7,
+ "22": 55,
+ "4": 179,
+ "5": 185,
+ "6": 105,
+ "8": 80,
+ "9": 43
+ },
+ "target_fisher_score": "target_directional_fisher_difference_int4"
+ },
+ "selector_diagnostics": {
+ "query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "996da9a21d56ddcc3537b5c754564eefd42c7fdc211e4d3e7bfe3bb076b0ecd3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "996da9a21d56ddcc3537b5c754564eefd42c7fdc211e4d3e7bfe3bb076b0ecd3",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.5556806448889802e-08,
+ "last_committed_normalized_gap": 0.010141095146536827,
+ "last_committed_score_gap": 2.5917401558217534e-10,
+ "last_cutoff_score_margin": 2.5917401558217534e-10,
+ "last_mask_churn": 22,
+ "last_mask_overlap": 344,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.5556806448889802e-08,
+ "last_raw_normalized_gap": 0.010141095146536827,
+ "last_raw_score_gap": 2.5917401558217534e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "996da9a21d56ddcc3537b5c754564eefd42c7fdc211e4d3e7bfe3bb076b0ecd3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "eed3720a7f89e7493bb594bd43128dfea8b5be6ae00d12e6198ffc95f5aa058a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "eed3720a7f89e7493bb594bd43128dfea8b5be6ae00d12e6198ffc95f5aa058a",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.2023924078619075e-09,
+ "last_committed_normalized_gap": 0.0028713259380310774,
+ "last_committed_score_gap": 3.4524605396768493e-12,
+ "last_cutoff_score_margin": 3.4524605396768493e-12,
+ "last_mask_churn": 116,
+ "last_mask_overlap": 322,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.2023924078619075e-09,
+ "last_raw_normalized_gap": 0.0028713259380310774,
+ "last_raw_score_gap": 3.4524605396768493e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "eed3720a7f89e7493bb594bd43128dfea8b5be6ae00d12e6198ffc95f5aa058a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f05bf63dba879ad0983013f898a3f2c504da70ff280d1e5bfecfc3a63bd8e1d6",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f05bf63dba879ad0983013f898a3f2c504da70ff280d1e5bfecfc3a63bd8e1d6",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.656691032778326e-09,
+ "last_committed_normalized_gap": 0.0016673761419951916,
+ "last_committed_score_gap": 7.764455745018495e-12,
+ "last_cutoff_score_margin": 7.764455745018495e-12,
+ "last_mask_churn": 74,
+ "last_mask_overlap": 232,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.656691032778326e-09,
+ "last_raw_normalized_gap": 0.0016673761419951916,
+ "last_raw_score_gap": 7.764455745018495e-12,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "f05bf63dba879ad0983013f898a3f2c504da70ff280d1e5bfecfc3a63bd8e1d6",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1604539313102578e-07,
+ "last_committed_normalized_gap": 0.2588611841201782,
+ "last_committed_score_gap": 5.592576712842856e-08,
+ "last_cutoff_score_margin": 5.592576712842856e-08,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1604539313102578e-07,
+ "last_raw_normalized_gap": 0.2588611841201782,
+ "last_raw_score_gap": 5.592576712842856e-08,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "51487fdbc763bd9fffa17a4196333b0e84cd251e1acb2771c97d8f9d3018b91b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "51487fdbc763bd9fffa17a4196333b0e84cd251e1acb2771c97d8f9d3018b91b",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.193731501482944e-08,
+ "last_committed_normalized_gap": 0.014320285990834236,
+ "last_committed_score_gap": 4.573514900130249e-10,
+ "last_cutoff_score_margin": 4.573514900130249e-10,
+ "last_mask_churn": 12,
+ "last_mask_overlap": 179,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.193731501482944e-08,
+ "last_raw_normalized_gap": 0.014320285990834236,
+ "last_raw_score_gap": 4.573514900130249e-10,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "51487fdbc763bd9fffa17a4196333b0e84cd251e1acb2771c97d8f9d3018b91b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "069001eef479566e001bac52a2f21b6723e8b08d3ed5207f10f34eb199965719",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "069001eef479566e001bac52a2f21b6723e8b08d3ed5207f10f34eb199965719",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.4639199125431333e-08,
+ "last_committed_normalized_gap": 0.029478028416633606,
+ "last_committed_score_gap": 7.26315008137135e-10,
+ "last_cutoff_score_margin": 7.26315008137135e-10,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 96,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.4639199125431333e-08,
+ "last_raw_normalized_gap": 0.029478028416633606,
+ "last_raw_score_gap": 7.26315008137135e-10,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "069001eef479566e001bac52a2f21b6723e8b08d3ed5207f10f34eb199965719",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "43be031fef3ef039e86118be66f85a46c58d850bdacb89c3f58bdeb34689deba",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "43be031fef3ef039e86118be66f85a46c58d850bdacb89c3f58bdeb34689deba",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.506385202304955e-08,
+ "last_committed_normalized_gap": 0.20905691385269165,
+ "last_committed_score_gap": 1.5692616983642438e-08,
+ "last_cutoff_score_margin": 1.5692616983642438e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 79,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.506385202304955e-08,
+ "last_raw_normalized_gap": 0.20905691385269165,
+ "last_raw_score_gap": 1.5692616983642438e-08,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "43be031fef3ef039e86118be66f85a46c58d850bdacb89c3f58bdeb34689deba",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "7b8c1d06b6f271886bcb057cd1397447fa01283c8ca107c6f90d4ebcf04d2b81",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "7b8c1d06b6f271886bcb057cd1397447fa01283c8ca107c6f90d4ebcf04d2b81",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.030809629464784e-08,
+ "last_committed_normalized_gap": 0.0719054564833641,
+ "last_committed_score_gap": 4.336481396194358e-09,
+ "last_cutoff_score_margin": 4.336481396194358e-09,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 41,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.030809629464784e-08,
+ "last_raw_normalized_gap": 0.0719054564833641,
+ "last_raw_score_gap": 4.336481396194358e-09,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "7b8c1d06b6f271886bcb057cd1397447fa01283c8ca107c6f90d4ebcf04d2b81",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "80e59f62dbb6ab8d7f3febd9787af5f24908c6cfff1214ecb5465ad5edd0e300",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "80e59f62dbb6ab8d7f3febd9787af5f24908c6cfff1214ecb5465ad5edd0e300",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.049540093196356e-08,
+ "last_committed_normalized_gap": 0.0036231076810508966,
+ "last_committed_score_gap": 7.425704495744867e-11,
+ "last_cutoff_score_margin": 7.425704495744867e-11,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 81,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.049540093196356e-08,
+ "last_raw_normalized_gap": 0.0036231076810508966,
+ "last_raw_score_gap": 7.425704495744867e-11,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "80e59f62dbb6ab8d7f3febd9787af5f24908c6cfff1214ecb5465ad5edd0e300",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fafe29ad0ea2ff634ae6f2bdd8290ca4f37e2decd96373377556317a9e307c05",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fafe29ad0ea2ff634ae6f2bdd8290ca4f37e2decd96373377556317a9e307c05",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 8.495617294101976e-07,
+ "last_committed_normalized_gap": 0.1854623556137085,
+ "last_committed_score_gap": 1.57561714786425e-07,
+ "last_cutoff_score_margin": 1.57561714786425e-07,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 8.495617294101976e-07,
+ "last_raw_normalized_gap": 0.1854623556137085,
+ "last_raw_score_gap": 1.57561714786425e-07,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "fafe29ad0ea2ff634ae6f2bdd8290ca4f37e2decd96373377556317a9e307c05",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "128c23927c85abea0d8026dc086ff201ec1ba61c7ea52a39d779c2fa2d38384b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "128c23927c85abea0d8026dc086ff201ec1ba61c7ea52a39d779c2fa2d38384b",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.597040188983101e-08,
+ "last_committed_normalized_gap": 0.019338222220540047,
+ "last_committed_score_gap": 3.0883917645496695e-10,
+ "last_cutoff_score_margin": 3.0883917645496695e-10,
+ "last_mask_churn": 18,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.597040188983101e-08,
+ "last_raw_normalized_gap": 0.019338222220540047,
+ "last_raw_score_gap": 3.0883917645496695e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "128c23927c85abea0d8026dc086ff201ec1ba61c7ea52a39d779c2fa2d38384b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5713eb042d8790c592bd01fe43ad8411bb7243ce13fb92e2b91bfc81c7de6233",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5713eb042d8790c592bd01fe43ad8411bb7243ce13fb92e2b91bfc81c7de6233",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 7.118929801208651e-08,
+ "last_committed_normalized_gap": 0.16851258277893066,
+ "last_committed_score_gap": 1.1996291959803784e-08,
+ "last_cutoff_score_margin": 1.1996291959803784e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 52,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 7.118929801208651e-08,
+ "last_raw_normalized_gap": 0.16851258277893066,
+ "last_raw_score_gap": 1.1996291959803784e-08,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "5713eb042d8790c592bd01fe43ad8411bb7243ce13fb92e2b91bfc81c7de6233",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "84229d522ba9c63907173a06a0d7ddfe2c2401adcb6ff6a9fe281bceee5f72c9",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "84229d522ba9c63907173a06a0d7ddfe2c2401adcb6ff6a9fe281bceee5f72c9",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.371622488477442e-06,
+ "last_committed_normalized_gap": 0.005243383813649416,
+ "last_committed_score_gap": 7.191943041107152e-09,
+ "last_cutoff_score_margin": 7.191943041107152e-09,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 42,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.371622488477442e-06,
+ "last_raw_normalized_gap": 0.005243383813649416,
+ "last_raw_score_gap": 7.191943041107152e-09,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "84229d522ba9c63907173a06a0d7ddfe2c2401adcb6ff6a9fe281bceee5f72c9",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "c4adfb4b9682560c2bbbec83e6933042fe21a1ab2aaf933cf2a3c85435f624bd",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "c4adfb4b9682560c2bbbec83e6933042fe21a1ab2aaf933cf2a3c85435f624bd",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.898132483001973e-07,
+ "last_committed_normalized_gap": 0.16719917953014374,
+ "last_committed_score_gap": 1.1533620636328124e-07,
+ "last_cutoff_score_margin": 1.1533620636328124e-07,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 25,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.898132483001973e-07,
+ "last_raw_normalized_gap": 0.16719917953014374,
+ "last_raw_score_gap": 1.1533620636328124e-07,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "c4adfb4b9682560c2bbbec83e6933042fe21a1ab2aaf933cf2a3c85435f624bd",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.6703142288606614e-05,
+ "last_committed_normalized_gap": 0.5337585210800171,
+ "last_committed_score_gap": 2.4928200218710117e-05,
+ "last_cutoff_score_margin": 2.4928200218710117e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.6703142288606614e-05,
+ "last_raw_normalized_gap": 0.5337585210800171,
+ "last_raw_score_gap": 2.4928200218710117e-05,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.552474688855e-05,
+ "last_committed_normalized_gap": 0.847438633441925,
+ "last_committed_score_gap": 2.1630656192428432e-05,
+ "last_cutoff_score_margin": 2.1630656192428432e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.552474688855e-05,
+ "last_raw_normalized_gap": 0.847438633441925,
+ "last_raw_score_gap": 2.1630656192428432e-05,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.597691334609408e-05,
+ "last_committed_normalized_gap": 0.8653373718261719,
+ "last_committed_score_gap": 1.3825419955537654e-05,
+ "last_cutoff_score_margin": 1.3825419955537654e-05,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.597691334609408e-05,
+ "last_raw_normalized_gap": 0.8653373718261719,
+ "last_raw_score_gap": 1.3825419955537654e-05,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "ae89d2228261ddae07798540f6e751d232361d5ab04e79a5d2ed1a2ea3330258",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "ae89d2228261ddae07798540f6e751d232361d5ab04e79a5d2ed1a2ea3330258",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8787646638429578e-07,
+ "last_committed_normalized_gap": 0.16151657700538635,
+ "last_committed_score_gap": 3.0345162826961314e-08,
+ "last_cutoff_score_margin": 3.0345162826961314e-08,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 53,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8787646638429578e-07,
+ "last_raw_normalized_gap": 0.16151657700538635,
+ "last_raw_score_gap": 3.0345162826961314e-08,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "ae89d2228261ddae07798540f6e751d232361d5ab04e79a5d2ed1a2ea3330258",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "selector_auxiliary_bytes": 8192,
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ],
+ "right_rht_query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "cf81b22ae9e80a24b04b57b00f4669f28211d6cbfe3f16e1d40d20fbe9476c79",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "cf81b22ae9e80a24b04b57b00f4669f28211d6cbfe3f16e1d40d20fbe9476c79",
+ "current_selected_count": 355,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.672580988795971e-09,
+ "last_committed_normalized_gap": 0.159062922000885,
+ "last_committed_score_gap": 7.432343629432125e-10,
+ "last_cutoff_score_margin": 7.432343629432125e-10,
+ "last_mask_churn": 26,
+ "last_mask_overlap": 342,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.672580988795971e-09,
+ "last_raw_normalized_gap": 0.159062922000885,
+ "last_raw_score_gap": 7.432343629432125e-10,
+ "layer_index": 0,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 355,
+ "raw_mask_sha256": "cf81b22ae9e80a24b04b57b00f4669f28211d6cbfe3f16e1d40d20fbe9476c79",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "44e20213102175f4c8e5459fd185033e3c6a72cacecedc0666f4f6cbab8b73b2",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "44e20213102175f4c8e5459fd185033e3c6a72cacecedc0666f4f6cbab8b73b2",
+ "current_selected_count": 380,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.115929819192843e-10,
+ "last_committed_normalized_gap": 0.009262333624064922,
+ "last_committed_score_gap": 3.812311577533478e-12,
+ "last_cutoff_score_margin": 3.812311577533478e-12,
+ "last_mask_churn": 118,
+ "last_mask_overlap": 321,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.115929819192843e-10,
+ "last_raw_normalized_gap": 0.009262333624064922,
+ "last_raw_score_gap": 3.812311577533478e-12,
+ "layer_index": 1,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 380,
+ "raw_mask_sha256": "44e20213102175f4c8e5459fd185033e3c6a72cacecedc0666f4f6cbab8b73b2",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "21cf7e14311c962df5d3b54eab81133d5f24347919c41c3eb3bf7dadf3e9e125",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "21cf7e14311c962df5d3b54eab81133d5f24347919c41c3eb3bf7dadf3e9e125",
+ "current_selected_count": 269,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.7110642902551376e-09,
+ "last_committed_normalized_gap": 0.015714742243289948,
+ "last_committed_score_gap": 2.6888935522606516e-11,
+ "last_cutoff_score_margin": 2.6888935522606516e-11,
+ "last_mask_churn": 56,
+ "last_mask_overlap": 241,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.7110642902551376e-09,
+ "last_raw_normalized_gap": 0.015714742243289948,
+ "last_raw_score_gap": 2.6888935522606516e-11,
+ "layer_index": 2,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 269,
+ "raw_mask_sha256": "21cf7e14311c962df5d3b54eab81133d5f24347919c41c3eb3bf7dadf3e9e125",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "584e3f426767dabdeab85d5775802124bcb7a6f72bd00807b16b44128cfc2432",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "584e3f426767dabdeab85d5775802124bcb7a6f72bd00807b16b44128cfc2432",
+ "current_selected_count": 179,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.464242119363917e-08,
+ "last_committed_normalized_gap": 0.007427883334457874,
+ "last_committed_score_gap": 4.801563591172453e-10,
+ "last_cutoff_score_margin": 4.801563591172453e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 177,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.464242119363917e-08,
+ "last_raw_normalized_gap": 0.007427883334457874,
+ "last_raw_score_gap": 4.801563591172453e-10,
+ "layer_index": 4,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 179,
+ "raw_mask_sha256": "584e3f426767dabdeab85d5775802124bcb7a6f72bd00807b16b44128cfc2432",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "09e1cf843bf8c1f0060aa40a4b8b14d0f3ef00bdadfb0df532924710670c32a3",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "09e1cf843bf8c1f0060aa40a4b8b14d0f3ef00bdadfb0df532924710670c32a3",
+ "current_selected_count": 185,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.8087092712448793e-08,
+ "last_committed_normalized_gap": 0.05922023206949234,
+ "last_committed_score_gap": 1.0711218578762782e-09,
+ "last_cutoff_score_margin": 1.0711218578762782e-09,
+ "last_mask_churn": 28,
+ "last_mask_overlap": 171,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.8087092712448793e-08,
+ "last_raw_normalized_gap": 0.05922023206949234,
+ "last_raw_score_gap": 1.0711218578762782e-09,
+ "layer_index": 5,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 185,
+ "raw_mask_sha256": "09e1cf843bf8c1f0060aa40a4b8b14d0f3ef00bdadfb0df532924710670c32a3",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "be455147b033cddb67fb763636f7d818f8e3749360ebe654ac2dbd31b80c627a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "be455147b033cddb67fb763636f7d818f8e3749360ebe654ac2dbd31b80c627a",
+ "current_selected_count": 105,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 4.985973411919531e-09,
+ "last_committed_normalized_gap": 0.0031024953350424767,
+ "last_committed_score_gap": 1.546895944670723e-11,
+ "last_cutoff_score_margin": 1.546895944670723e-11,
+ "last_mask_churn": 28,
+ "last_mask_overlap": 91,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 4.985973411919531e-09,
+ "last_raw_normalized_gap": 0.0031024953350424767,
+ "last_raw_score_gap": 1.546895944670723e-11,
+ "layer_index": 6,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 105,
+ "raw_mask_sha256": "be455147b033cddb67fb763636f7d818f8e3749360ebe654ac2dbd31b80c627a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b448abd533d4409a4a44a80437fe61892287c06aeb39277ab17327d22025391b",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b448abd533d4409a4a44a80437fe61892287c06aeb39277ab17327d22025391b",
+ "current_selected_count": 80,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 3.0990573662847964e-08,
+ "last_committed_normalized_gap": 0.00675599230453372,
+ "last_committed_score_gap": 2.0937207523274992e-10,
+ "last_cutoff_score_margin": 2.0937207523274992e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 78,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 3.0990573662847964e-08,
+ "last_raw_normalized_gap": 0.00675599230453372,
+ "last_raw_score_gap": 2.0937207523274992e-10,
+ "layer_index": 8,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 80,
+ "raw_mask_sha256": "b448abd533d4409a4a44a80437fe61892287c06aeb39277ab17327d22025391b",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "fd8c4487df177dc9ec36f979dc08f211fb71516ba348d28e93716b805c392e74",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "fd8c4487df177dc9ec36f979dc08f211fb71516ba348d28e93716b805c392e74",
+ "current_selected_count": 43,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0151366797449555e-08,
+ "last_committed_normalized_gap": 0.026435863226652145,
+ "last_committed_score_gap": 5.327187579950987e-10,
+ "last_cutoff_score_margin": 5.327187579950987e-10,
+ "last_mask_churn": 6,
+ "last_mask_overlap": 40,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0151366797449555e-08,
+ "last_raw_normalized_gap": 0.026435863226652145,
+ "last_raw_score_gap": 5.327187579950987e-10,
+ "layer_index": 9,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 43,
+ "raw_mask_sha256": "fd8c4487df177dc9ec36f979dc08f211fb71516ba348d28e93716b805c392e74",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b3dd656903ddb9bc8ae6974e7c8770d803680a1e34891007333673219cc2e8cc",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b3dd656903ddb9bc8ae6974e7c8770d803680a1e34891007333673219cc2e8cc",
+ "current_selected_count": 84,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.0367226772939375e-09,
+ "last_committed_normalized_gap": 0.01829257793724537,
+ "last_committed_score_gap": 1.1042722292131657e-10,
+ "last_cutoff_score_margin": 1.1042722292131657e-10,
+ "last_mask_churn": 20,
+ "last_mask_overlap": 74,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.0367226772939375e-09,
+ "last_raw_normalized_gap": 0.01829257793724537,
+ "last_raw_score_gap": 1.1042722292131657e-10,
+ "layer_index": 10,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 84,
+ "raw_mask_sha256": "b3dd656903ddb9bc8ae6974e7c8770d803680a1e34891007333673219cc2e8cc",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "f8da5c91ac9f10c885bbca41ae84051d39289958290d026b64f9f75835d4cfc8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "f8da5c91ac9f10c885bbca41ae84051d39289958290d026b64f9f75835d4cfc8",
+ "current_selected_count": 30,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.674476320407848e-07,
+ "last_committed_normalized_gap": 0.06590324640274048,
+ "last_committed_score_gap": 1.7625666259846184e-08,
+ "last_cutoff_score_margin": 1.7625666259846184e-08,
+ "last_mask_churn": 2,
+ "last_mask_overlap": 29,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.674476320407848e-07,
+ "last_raw_normalized_gap": 0.06590324640274048,
+ "last_raw_score_gap": 1.7625666259846184e-08,
+ "layer_index": 12,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 30,
+ "raw_mask_sha256": "f8da5c91ac9f10c885bbca41ae84051d39289958290d026b64f9f75835d4cfc8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "5ec71fe1ae591701405ca113db261395e08404d0f4fd4f498fe38abdc056d982",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "5ec71fe1ae591701405ca113db261395e08404d0f4fd4f498fe38abdc056d982",
+ "current_selected_count": 62,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.0642234649083093e-08,
+ "last_committed_normalized_gap": 0.09371569752693176,
+ "last_committed_score_gap": 9.973444292654676e-10,
+ "last_cutoff_score_margin": 9.973444292654676e-10,
+ "last_mask_churn": 30,
+ "last_mask_overlap": 47,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.0642234649083093e-08,
+ "last_raw_normalized_gap": 0.09371569752693176,
+ "last_raw_score_gap": 9.973444292654676e-10,
+ "layer_index": 13,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 62,
+ "raw_mask_sha256": "5ec71fe1ae591701405ca113db261395e08404d0f4fd4f498fe38abdc056d982",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "924a532c721208ae801a4b8a372c6be7f8acef09951296de78955e3436862ad8",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "924a532c721208ae801a4b8a372c6be7f8acef09951296de78955e3436862ad8",
+ "current_selected_count": 54,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.2207116145978034e-08,
+ "last_committed_normalized_gap": 0.062138888984918594,
+ "last_committed_score_gap": 1.3799255071944572e-09,
+ "last_cutoff_score_margin": 1.3799255071944572e-09,
+ "last_mask_churn": 10,
+ "last_mask_overlap": 49,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.2207116145978034e-08,
+ "last_raw_normalized_gap": 0.062138888984918594,
+ "last_raw_score_gap": 1.3799255071944572e-09,
+ "layer_index": 14,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 54,
+ "raw_mask_sha256": "924a532c721208ae801a4b8a372c6be7f8acef09951296de78955e3436862ad8",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "99c82b2d6e242f3c1f3de8c64018f6f81d7230fbb159c4a138206a726ccb2a4c",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "99c82b2d6e242f3c1f3de8c64018f6f81d7230fbb159c4a138206a726ccb2a4c",
+ "current_selected_count": 45,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.1878928180285584e-07,
+ "last_committed_normalized_gap": 0.018777109682559967,
+ "last_committed_score_gap": 4.1082302004724625e-09,
+ "last_cutoff_score_margin": 4.1082302004724625e-09,
+ "last_mask_churn": 8,
+ "last_mask_overlap": 41,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.1878928180285584e-07,
+ "last_raw_normalized_gap": 0.018777109682559967,
+ "last_raw_score_gap": 4.1082302004724625e-09,
+ "layer_index": 16,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 45,
+ "raw_mask_sha256": "99c82b2d6e242f3c1f3de8c64018f6f81d7230fbb159c4a138206a726ccb2a4c",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "95a7dfd775d82e5517e419cc821d282667bbfeba8606939bdd45edd84be5e378",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "95a7dfd775d82e5517e419cc821d282667bbfeba8606939bdd45edd84be5e378",
+ "current_selected_count": 27,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.0293008162752812e-07,
+ "last_committed_normalized_gap": 0.0006155490409582853,
+ "last_committed_score_gap": 1.249134129466256e-10,
+ "last_cutoff_score_margin": 1.249134129466256e-10,
+ "last_mask_churn": 4,
+ "last_mask_overlap": 25,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.0293008162752812e-07,
+ "last_raw_normalized_gap": 0.0006155490409582853,
+ "last_raw_score_gap": 1.249134129466256e-10,
+ "layer_index": 17,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 27,
+ "raw_mask_sha256": "95a7dfd775d82e5517e419cc821d282667bbfeba8606939bdd45edd84be5e378",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.521929662994808e-06,
+ "last_committed_normalized_gap": 0.26611506938934326,
+ "last_committed_score_gap": 1.7355837371724192e-06,
+ "last_cutoff_score_margin": 1.7355837371724192e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.521929662994808e-06,
+ "last_raw_normalized_gap": 0.26611506938934326,
+ "last_raw_score_gap": 1.7355837371724192e-06,
+ "layer_index": 18,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "current_selected_count": 9,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 2.28659700951539e-06,
+ "last_committed_normalized_gap": 0.4520246386528015,
+ "last_committed_score_gap": 1.033598209687625e-06,
+ "last_cutoff_score_margin": 1.033598209687625e-06,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 9,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 2.28659700951539e-06,
+ "last_raw_normalized_gap": 0.4520246386528015,
+ "last_raw_score_gap": 1.033598209687625e-06,
+ "layer_index": 20,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 9,
+ "raw_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "current_selected_count": 7,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 1.5379897604361759e-06,
+ "last_committed_normalized_gap": 0.3797908425331116,
+ "last_committed_score_gap": 5.84114445700834e-07,
+ "last_cutoff_score_margin": 5.84114445700834e-07,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 7,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 1.5379897604361759e-06,
+ "last_raw_normalized_gap": 0.3797908425331116,
+ "last_raw_score_gap": 5.84114445700834e-07,
+ "layer_index": 21,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 7,
+ "raw_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "admissions_total": 0,
+ "chunk_equivalence_atol": 2e-08,
+ "chunk_equivalence_rtol": 2e-06,
+ "committed_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "committed_normalized_churn": null,
+ "committed_xor_churn_total": 0,
+ "confirmation_two": false,
+ "current_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "current_selected_count": 55,
+ "dwell_total": 0,
+ "ema_decay": 0.9785720620877001,
+ "initial_ema_value": 0.0078125,
+ "l2norm_eps": 1e-06,
+ "last_committed_cutoff_score": 6.60992967027596e-08,
+ "last_committed_normalized_gap": 0.10312127321958542,
+ "last_committed_score_gap": 6.816243569573999e-09,
+ "last_cutoff_score_margin": 6.816243569573999e-09,
+ "last_mask_churn": 0,
+ "last_mask_overlap": 55,
+ "last_query_token_count": 1,
+ "last_raw_cutoff_score": 6.60992967027596e-08,
+ "last_raw_normalized_gap": 0.10312127321958542,
+ "last_raw_score_gap": 6.816243569573999e-09,
+ "layer_index": 22,
+ "mask_transition_count": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "pending_observation": false,
+ "previous_raw_mask_bytes": 0,
+ "quota": 55,
+ "raw_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "raw_normalized_churn": null,
+ "raw_xor_churn_total": 0,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "selector_auxiliary_bytes": 8192,
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ "state_codec_seed": 2339,
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ]
+ },
+ "source_files": {
+ "paths": [
+ "research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md",
+ "scripts/screen_rht_cqer.py",
+ "scripts/pilot_evaluate_hrr.py",
+ "src/recurquant/__init__.py",
+ "src/recurquant/cache.py",
+ "src/recurquant/evaluation.py",
+ "src/recurquant/evidence.py",
+ "src/recurquant/metrics.py",
+ "src/recurquant/mixed_quantization.py",
+ "src/recurquant/packed_cache.py",
+ "src/recurquant/public_data.py",
+ "src/recurquant/quantization.py",
+ "src/recurquant/query_energy.py",
+ "src/recurquant/qwen35.py",
+ "src/recurquant/rht.py",
+ "src/recurquant/row_policy.py",
+ "tests/test_rht.py",
+ "tests/test_rht_mixed_quantization.py",
+ "tests/test_right_rht_query_ema_cache.py",
+ "tests/test_screen_rht_cqer.py"
+ ],
+ "sha256_end": {
+ "research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md": "82aaa17aa9f6a20d7c9d5a23aabf4ad1e357d095afc3b9fab856ee38df6997e0",
+ "scripts/pilot_evaluate_hrr.py": "bc87ef6b39df47390503c2688f855dda468454ce06488d3343c8ae9a3b28c9d1",
+ "scripts/screen_rht_cqer.py": "6e847bc0708c76f754c35fed78315403a74d330bba566688a5fba0ef9c427bcd",
+ "src/recurquant/__init__.py": "85cf0560e8d469b9942a07df8463a28437c9e6ec3bc2791de4d762cbc3bf4283",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "026efa893458a2d991338d9a2f784b2a5035decbc826faf8e3652225a7af5d7d",
+ "src/recurquant/packed_cache.py": "620ddc858b465c6038d13206d475d84bf03960334cacd7e40258ad59421bf8f2",
+ "src/recurquant/public_data.py": "561148178b4d4d538de897a32834895cef5303121acae3ecdae9e3bf2e325370",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/query_energy.py": "4484ee2f2f2e64c8d30810012c646a186b4635cf617244e42c7bfeac01493d63",
+ "src/recurquant/qwen35.py": "591c9956a1e621211df571f0546fb6537acc157a4ae31565995892a1983488ee",
+ "src/recurquant/rht.py": "13ed9e4686b4ab8a8d4d4cb95b5109bda00d4306bf7b79b44e9b84a134eee001",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708",
+ "tests/test_rht.py": "a17bbb205aa9ace762aff3fa3a507828974578606b2af4070a80d974e2a97a14",
+ "tests/test_rht_mixed_quantization.py": "26b43f92d429aca0ee0f91c54061187f3a227b63abe7bf41f7502a18c7f89cdf",
+ "tests/test_right_rht_query_ema_cache.py": "9727b78e4c9cae490ebe86f01e2c9fd51ed6c4ce42942e523be2f7042bcc97d0",
+ "tests/test_screen_rht_cqer.py": "6276f99fb967faea1e1f1ba42dbf0dda4e08df88df11c4ddb3a1aa10ee8a17ce"
+ },
+ "sha256_start": {
+ "research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md": "82aaa17aa9f6a20d7c9d5a23aabf4ad1e357d095afc3b9fab856ee38df6997e0",
+ "scripts/pilot_evaluate_hrr.py": "bc87ef6b39df47390503c2688f855dda468454ce06488d3343c8ae9a3b28c9d1",
+ "scripts/screen_rht_cqer.py": "6e847bc0708c76f754c35fed78315403a74d330bba566688a5fba0ef9c427bcd",
+ "src/recurquant/__init__.py": "85cf0560e8d469b9942a07df8463a28437c9e6ec3bc2791de4d762cbc3bf4283",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "026efa893458a2d991338d9a2f784b2a5035decbc826faf8e3652225a7af5d7d",
+ "src/recurquant/packed_cache.py": "620ddc858b465c6038d13206d475d84bf03960334cacd7e40258ad59421bf8f2",
+ "src/recurquant/public_data.py": "561148178b4d4d538de897a32834895cef5303121acae3ecdae9e3bf2e325370",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/query_energy.py": "4484ee2f2f2e64c8d30810012c646a186b4635cf617244e42c7bfeac01493d63",
+ "src/recurquant/qwen35.py": "591c9956a1e621211df571f0546fb6537acc157a4ae31565995892a1983488ee",
+ "src/recurquant/rht.py": "13ed9e4686b4ab8a8d4d4cb95b5109bda00d4306bf7b79b44e9b84a134eee001",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708",
+ "tests/test_rht.py": "a17bbb205aa9ace762aff3fa3a507828974578606b2af4070a80d974e2a97a14",
+ "tests/test_rht_mixed_quantization.py": "26b43f92d429aca0ee0f91c54061187f3a227b63abe7bf41f7502a18c7f89cdf",
+ "tests/test_right_rht_query_ema_cache.py": "9727b78e4c9cae490ebe86f01e2c9fd51ed6c4ce42942e523be2f7042bcc97d0",
+ "tests/test_screen_rht_cqer.py": "6276f99fb967faea1e1f1ba42dbf0dda4e08df88df11c4ddb3a1aa10ee8a17ce"
+ },
+ "stable": true
+ },
+ "stage_a_gate": {
+ "applicable": true,
+ "checks": {
+ "aligned_excess_nll_relative_reduction": {
+ "cqer_delta_nll": 0.32924437522888184,
+ "minimum_relative_reduction": 0.1,
+ "passed": true,
+ "relative_reduction": 0.5858710772503876,
+ "rht_delta_nll": 0.136349618434906
+ },
+ "aligned_top1_not_lower": {
+ "cqer_top1_agreement": 0.8684210777282715,
+ "passed": true,
+ "rht_top1_agreement": 0.8684210777282715
+ },
+ "clean_stable_repository": {
+ "passed": true,
+ "repository_clean_at_end": true,
+ "repository_clean_at_start": true,
+ "repository_commit_stable": true,
+ "source_hashes_stable": true
+ },
+ "exact_equal_storage": {
+ "high_precision_groups": 1976,
+ "mask_bytes": 4608,
+ "passed": true,
+ "payload_bytes": 2485760,
+ "resident_bytes": 2564096,
+ "resident_bytes_including_selector": 2711552,
+ "scale_bytes": 73728,
+ "selector_auxiliary_bytes": 147456
+ },
+ "finite_metrics_exact_quotas_and_handshakes": {
+ "all_logits_and_metrics_finite": true,
+ "passed": true,
+ "selector_audit": {
+ "methods": {
+ "query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "current_mask_sha256": "996da9a21d56ddcc3537b5c754564eefd42c7fdc211e4d3e7bfe3bb076b0ecd3",
+ "layer_index": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 355,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "eed3720a7f89e7493bb594bd43128dfea8b5be6ae00d12e6198ffc95f5aa058a",
+ "layer_index": 1,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 380,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "f05bf63dba879ad0983013f898a3f2c504da70ff280d1e5bfecfc3a63bd8e1d6",
+ "layer_index": 2,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 269,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "layer_index": 4,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 179,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "51487fdbc763bd9fffa17a4196333b0e84cd251e1acb2771c97d8f9d3018b91b",
+ "layer_index": 5,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 185,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "069001eef479566e001bac52a2f21b6723e8b08d3ed5207f10f34eb199965719",
+ "layer_index": 6,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 105,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "43be031fef3ef039e86118be66f85a46c58d850bdacb89c3f58bdeb34689deba",
+ "layer_index": 8,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 80,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "7b8c1d06b6f271886bcb057cd1397447fa01283c8ca107c6f90d4ebcf04d2b81",
+ "layer_index": 9,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 43,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "80e59f62dbb6ab8d7f3febd9787af5f24908c6cfff1214ecb5465ad5edd0e300",
+ "layer_index": 10,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 84,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "fafe29ad0ea2ff634ae6f2bdd8290ca4f37e2decd96373377556317a9e307c05",
+ "layer_index": 12,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 30,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "128c23927c85abea0d8026dc086ff201ec1ba61c7ea52a39d779c2fa2d38384b",
+ "layer_index": 13,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 62,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "5713eb042d8790c592bd01fe43ad8411bb7243ce13fb92e2b91bfc81c7de6233",
+ "layer_index": 14,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 54,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "84229d522ba9c63907173a06a0d7ddfe2c2401adcb6ff6a9fe281bceee5f72c9",
+ "layer_index": 16,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 45,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "c4adfb4b9682560c2bbbec83e6933042fe21a1ab2aaf933cf2a3c85435f624bd",
+ "layer_index": 17,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 27,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 7,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 9,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 7,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "ae89d2228261ddae07798540f6e751d232361d5ab04e79a5d2ed1a2ea3330258",
+ "layer_index": 22,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 55,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ],
+ "right_rht_query_ema32_weighted_mse_target_fisher_quota": [
+ {
+ "current_mask_sha256": "cf81b22ae9e80a24b04b57b00f4669f28211d6cbfe3f16e1d40d20fbe9476c79",
+ "layer_index": 0,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 355,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "44e20213102175f4c8e5459fd185033e3c6a72cacecedc0666f4f6cbab8b73b2",
+ "layer_index": 1,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 380,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "21cf7e14311c962df5d3b54eab81133d5f24347919c41c3eb3bf7dadf3e9e125",
+ "layer_index": 2,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 269,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "584e3f426767dabdeab85d5775802124bcb7a6f72bd00807b16b44128cfc2432",
+ "layer_index": 4,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 179,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "09e1cf843bf8c1f0060aa40a4b8b14d0f3ef00bdadfb0df532924710670c32a3",
+ "layer_index": 5,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 185,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "be455147b033cddb67fb763636f7d818f8e3749360ebe654ac2dbd31b80c627a",
+ "layer_index": 6,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 105,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "b448abd533d4409a4a44a80437fe61892287c06aeb39277ab17327d22025391b",
+ "layer_index": 8,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 80,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "fd8c4487df177dc9ec36f979dc08f211fb71516ba348d28e93716b805c392e74",
+ "layer_index": 9,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 43,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "b3dd656903ddb9bc8ae6974e7c8770d803680a1e34891007333673219cc2e8cc",
+ "layer_index": 10,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 84,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "f8da5c91ac9f10c885bbca41ae84051d39289958290d026b64f9f75835d4cfc8",
+ "layer_index": 12,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 30,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "5ec71fe1ae591701405ca113db261395e08404d0f4fd4f498fe38abdc056d982",
+ "layer_index": 13,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 62,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "924a532c721208ae801a4b8a372c6be7f8acef09951296de78955e3436862ad8",
+ "layer_index": 14,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 54,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "99c82b2d6e242f3c1f3de8c64018f6f81d7230fbb159c4a138206a726ccb2a4c",
+ "layer_index": 16,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 45,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "95a7dfd775d82e5517e419cc821d282667bbfeba8606939bdd45edd84be5e378",
+ "layer_index": 17,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 27,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 7,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "layer_index": 20,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 9,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 7,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ },
+ {
+ "current_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "layer_index": 22,
+ "observations_committed": 39,
+ "observations_staged": 39,
+ "quota": 55,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "state_updates": 39,
+ "tokens_observed": 107
+ }
+ ]
+ },
+ "passed": true,
+ "query_tokens": 107,
+ "quota_sum": 1976,
+ "state_writes": 39
+ },
+ "state_error_coverage": {
+ "linear_layers": [
+ 0,
+ 1,
+ 2,
+ 4,
+ 5,
+ 6,
+ 8,
+ 9,
+ 10,
+ 12,
+ 13,
+ 14,
+ 16,
+ 17,
+ 18,
+ 20,
+ 21,
+ 22
+ ],
+ "passed": true,
+ "record_count_per_method": 702,
+ "state_writes": 39
+ }
+ },
+ "frozen_task_identity_before_model_weights": {
+ "identity_authenticated_before_model_weights": true,
+ "passed": true,
+ "protected_window_8_16_accessed": false
+ },
+ "independent_rht_numeric_evidence": {
+ "inverse_relative_l2": 1.1467717797586374e-07,
+ "maximum_inverse_relative_l2": 3e-07,
+ "passed": true,
+ "physical_pack_matches_transformed_qdq": true,
+ "sign_schedule_sha256": "2d5137b5ebeb325f100b34190618783b9e47bd2ce9b27b6cdf3cdc94459dabc3"
+ },
+ "lower_aligned_mean_kl": {
+ "cqer_mean_kl": 0.2243848294019699,
+ "passed": true,
+ "rht_mean_kl": 0.1543886959552765
+ },
+ "state_sse_relative_reduction": {
+ "cqer_state_sse": 906.6038761907257,
+ "minimum_relative_reduction": 0.5,
+ "passed": true,
+ "relative_reduction": 0.5997415414306453,
+ "rht_state_sse": 362.875870017102
+ }
+ },
+ "passed": true,
+ "schema": "recurquant.experiment009-stage-a-gate.v1"
+ },
+ "state_error": {
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "aggregate_state_mse": 4.926523258560951e-06,
+ "aggregate_state_sse": 906.6038761907257,
+ "coverage": [
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ }
+ ],
+ "element_count": 184025088,
+ "per_layer": {
+ "0": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 3.6326010823249817
+ },
+ "1": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 1.348608244676143
+ },
+ "10": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 4.174373295158148
+ },
+ "12": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 16.809824258089066
+ },
+ "13": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 6.972442120313644
+ },
+ "14": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 11.069624669849873
+ },
+ "16": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 80.87651500105858
+ },
+ "17": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 157.67421114444733
+ },
+ "18": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 277.93979692459106
+ },
+ "2": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 4.464524235576391
+ },
+ "20": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 131.1487734913826
+ },
+ "21": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 132.2627729177475
+ },
+ "22": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 19.57766753435135
+ },
+ "4": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 25.522320583462715
+ },
+ "5": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 9.572646051645279
+ },
+ "6": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 9.171773917973042
+ },
+ "8": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 8.86710523813963
+ },
+ "9": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 5.518295479938388
+ }
+ },
+ "per_write": {
+ "0": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 172.2728787213564
+ },
+ "1": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 33.9937516823411
+ },
+ "10": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 21.06241251528263
+ },
+ "11": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 17.427464220672846
+ },
+ "12": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 23.888751985505223
+ },
+ "13": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 27.1016415245831
+ },
+ "14": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 24.72623297199607
+ },
+ "15": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 17.961655344814062
+ },
+ "16": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 18.485840998589993
+ },
+ "17": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 17.495167948305607
+ },
+ "18": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 15.908886145800352
+ },
+ "19": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 17.06519451364875
+ },
+ "2": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 27.261838011443615
+ },
+ "20": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 22.617078008130193
+ },
+ "21": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 19.100309178233147
+ },
+ "22": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 22.041738711297512
+ },
+ "23": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 26.260313477367163
+ },
+ "24": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 19.12120972201228
+ },
+ "25": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 12.838970452547073
+ },
+ "26": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 10.507662534713745
+ },
+ "27": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 15.339757468551397
+ },
+ "28": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 17.597416952252388
+ },
+ "29": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 16.15416217967868
+ },
+ "3": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 21.66133752465248
+ },
+ "30": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 13.17043886333704
+ },
+ "31": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 15.200594207271934
+ },
+ "32": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 11.201381592079997
+ },
+ "33": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 10.813163632526994
+ },
+ "34": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 7.9022206813097
+ },
+ "35": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 7.30804368853569
+ },
+ "36": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 6.790719095617533
+ },
+ "37": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 11.8408069354482
+ },
+ "38": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 23.754897840321064
+ },
+ "4": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 26.53552259504795
+ },
+ "5": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 25.11096779629588
+ },
+ "6": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 27.190133010968566
+ },
+ "7": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 28.883754830807447
+ },
+ "8": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 29.98412226885557
+ },
+ "9": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 23.02543635852635
+ }
+ },
+ "record_count": 702,
+ "records": [
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "c00a99b56ed960fb1a2eff7bda3406bb0d1f7bed3320b60c1b98f8befe90d054",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.048343487083911896,
+ "mean_squared_error": 3.611915417423006e-06,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.06025094538927078,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.9468419551849365,
+ "total_groups": 2048,
+ "update_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "280d93989aa2604cd71aaf2e483f339af95f2acf1033a6ff94ccecb6d8791d54",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.00860579777508974,
+ "mean_squared_error": 3.519498363857565e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.050548337399959564,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09226153790950775,
+ "total_groups": 2048,
+ "update_index": 1,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "1e9e2c25c60fe8da4b60708d108c4ceff37f79f794df1f37825b98c2e101e14a",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021095678210258484,
+ "mean_squared_error": 1.6375146287828102e-06,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.08436096459627151,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.429264634847641,
+ "total_groups": 2048,
+ "update_index": 2,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "2c2fe5f5918c6b067875cbaa3392bc1380a021079cefb880fd996898e867c288",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.054929036647081375,
+ "mean_squared_error": 1.3705738638236653e-05,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.060822609812021255,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.592877149581909,
+ "total_groups": 2048,
+ "update_index": 3,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "fb031683ecfdf56c73e0777d6bb1ea58e683e0bffb3535e9d346172d93532668",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.032509759068489075,
+ "mean_squared_error": 6.522816420329036e-06,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.11570581793785095,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.7099171876907349,
+ "total_groups": 2048,
+ "update_index": 4,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "80da85b166006e6e85d64cafec07f6bdcf539b0aaaeaa38d4b0088f80ada40d6",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029377907514572144,
+ "mean_squared_error": 2.8808681236114353e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.1655392348766327,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7552022933959961,
+ "total_groups": 2048,
+ "update_index": 5,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "714d4b8184d2f635330a74da7baa90102cd79166dc6fafa6737799bb99584e19",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.040769338607788086,
+ "mean_squared_error": 4.488249032874592e-06,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.08810921758413315,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.176567554473877,
+ "total_groups": 2048,
+ "update_index": 6,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "1f6661a9dd89512c1110fb7797b008ff651a6fe72a933d72e8157a9ac9a8e408",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03580416738986969,
+ "mean_squared_error": 3.1189033506962005e-06,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.1325133740901947,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8176017999649048,
+ "total_groups": 2048,
+ "update_index": 7,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "2ec2aacc8825eb438bf90db177bf00589f2d2a94f9fcb064ac00d55f721d7928",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019440073519945145,
+ "mean_squared_error": 1.3028775356360711e-06,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.14965614676475525,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3415415287017822,
+ "total_groups": 2048,
+ "update_index": 8,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "226dba1692dd07885093fd51f96cac5d04741dcefc8f5cde799f487a9eddd950",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.052673786878585815,
+ "mean_squared_error": 8.551938663003966e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.12651674449443817,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.2418394088745117,
+ "total_groups": 2048,
+ "update_index": 9,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "14137ba2b8cde1b097ff5ba915d5380ee52285239bf8b405a9a4f0c7027d822f",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023944148793816566,
+ "mean_squared_error": 2.1214191292528994e-06,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.15195362269878387,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5561172962188721,
+ "total_groups": 2048,
+ "update_index": 10,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "f2051084768703d8780561f926a1c62216b0942cc62461860df68021247ff199",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03951409459114075,
+ "mean_squared_error": 3.321882104501128e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.12095196545124054,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8708114624023438,
+ "total_groups": 2048,
+ "update_index": 11,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "c226f75d229bdf12c35d66d14f2226c65c00a9c9753f610a297f2a6124a73b3d",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1268254965543747,
+ "mean_squared_error": 5.7718923926586285e-05,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.23480629920959473,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 15.130669593811035,
+ "total_groups": 2048,
+ "update_index": 12,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "55e39dea57a3a16cc3d8a39b7348f6f61f98a2b41e94bc9f496d9bb1e4832493",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.189808651804924,
+ "mean_squared_error": 0.00012567367230076343,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.3008132576942444,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 32.94459915161133,
+ "total_groups": 2048,
+ "update_index": 13,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.37044498324394226,
+ "mean_squared_error": 0.0002325870154891163,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.27571117877960205,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 60.971290588378906,
+ "total_groups": 2048,
+ "update_index": 14,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "5beb27a0eedf095d016b9ca38e941b26f638d35e8b521f568ea7f9fca62ec2a1",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1965218037366867,
+ "mean_squared_error": 7.92484061094001e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.22918753325939178,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 20.774494171142578,
+ "total_groups": 2048,
+ "update_index": 15,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12419265508651733,
+ "mean_squared_error": 9.792715718504041e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.27986302971839905,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 25.671016693115234,
+ "total_groups": 2048,
+ "update_index": 16,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "c864a5036a685c429c727e0be8125c86ca8e2dff685fb0cb5d0d3e316aed8442",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05267389118671417,
+ "mean_squared_error": 1.2397631508065388e-05,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.20242741703987122,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.249964714050293,
+ "total_groups": 2048,
+ "update_index": 17,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "98a7ce674e394f49b5e78e0ce603b34741c88bb4ec028410aa6acebb09d2e5a2",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04185502231121063,
+ "mean_squared_error": 5.374468514673936e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.023124229162931442,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14088846743106842,
+ "total_groups": 2048,
+ "update_index": 18,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "3f956da12e088e691ade2518c4ca9e43bcbbe899bd63bc4ae717b2c9675c772c",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010411765426397324,
+ "mean_squared_error": 8.677562846060027e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.024957437068223953,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.022747710347175598,
+ "total_groups": 2048,
+ "update_index": 19,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "eff8516fd983b7653eaa3055815fe446799eeeec8ffdf062dfc7e78433ed881a",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013539910316467285,
+ "mean_squared_error": 3.320198516121309e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.04024532064795494,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08703701198101044,
+ "total_groups": 2048,
+ "update_index": 20,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "0d0d06b15a29f01275185bb6a3562f41af2cd71aca4c065259f1fc770e3d27c6",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.054389312863349915,
+ "mean_squared_error": 2.326177309441846e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.0250160563737154,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6097934246063232,
+ "total_groups": 2048,
+ "update_index": 21,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "47a0e71907fcc5c30ee999ace566d97df27b5b46a927a581d954cbee63d77db2",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03398339822888374,
+ "mean_squared_error": 9.96509015749325e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.0447382926940918,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.26122885942459106,
+ "total_groups": 2048,
+ "update_index": 22,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "5ab1841cc9f968e6dbf9692a0ec0fffe5ed5f911c374929d390b86d9298e922d",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018823958933353424,
+ "mean_squared_error": 4.0469529949405114e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.07108286768198013,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10608844459056854,
+ "total_groups": 2048,
+ "update_index": 23,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "21bd97641ef74be9c4ef51fcda0b44fa356c172afab422eebeb40e92577769d7",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0323466956615448,
+ "mean_squared_error": 7.67281676417042e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03667754679918289,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20113828778266907,
+ "total_groups": 2048,
+ "update_index": 24,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "1f6661a9dd89512c1110fb7797b008ff651a6fe72a933d72e8157a9ac9a8e408",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03262750059366226,
+ "mean_squared_error": 4.4900565399075276e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04945218190550804,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11770413815975189,
+ "total_groups": 2048,
+ "update_index": 25,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "8c460dcba8e399c33312d5ccd451fc117eae9b03e8293c29523c6ce5ff5a35f7",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01464003324508667,
+ "mean_squared_error": 2.3983457708709466e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.08327949792146683,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06287119537591934,
+ "total_groups": 2048,
+ "update_index": 26,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "226dba1692dd07885093fd51f96cac5d04741dcefc8f5cde799f487a9eddd950",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029171649366617203,
+ "mean_squared_error": 1.1590672102101962e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04784398153424263,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3038425147533417,
+ "total_groups": 2048,
+ "update_index": 27,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "c60d2030f879234a7d28dbcba3eb9046ebec30e275139d0943946bcd3cc1e48c",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015768874436616898,
+ "mean_squared_error": 4.139090492571995e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.0820205956697464,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10850377380847931,
+ "total_groups": 2048,
+ "update_index": 28,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "ce97a083d94a223c8e77037645b95bd233331eae67977fa343e722dfd523f640",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030476203188300133,
+ "mean_squared_error": 9.807026799535379e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.07334952801465988,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.25708532333374023,
+ "total_groups": 2048,
+ "update_index": 29,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "246a19061e51f995888a577dc0a0d3e67e640e270d5e17a9a48a9b7e290ae06e",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07841372489929199,
+ "mean_squared_error": 1.5320098100346513e-05,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.1159520223736763,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.016071796417236,
+ "total_groups": 2048,
+ "update_index": 30,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "574eee02293d3ad054277d37060a668de673787ae16051713e14b72f48c0b672",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10540656745433807,
+ "mean_squared_error": 2.5932033167919144e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.1334347277879715,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 6.797926902770996,
+ "total_groups": 2048,
+ "update_index": 31,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.2055586278438568,
+ "mean_squared_error": 4.773118416778743e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.12153729796409607,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 12.512443542480469,
+ "total_groups": 2048,
+ "update_index": 32,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "5beb27a0eedf095d016b9ca38e941b26f638d35e8b521f568ea7f9fca62ec2a1",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10028843581676483,
+ "mean_squared_error": 1.5918129065539688e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.10020992159843445,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.172842025756836,
+ "total_groups": 2048,
+ "update_index": 33,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07572334259748459,
+ "mean_squared_error": 1.2853070074925199e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.09838665276765823,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.3693552017211914,
+ "total_groups": 2048,
+ "update_index": 34,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "66c076daa7cf7238e758ce4a7d54e674474acce7d214ec40d9fdebe0f169a223",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04151199758052826,
+ "mean_squared_error": 3.2279322113026865e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.1029532179236412,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8461830615997314,
+ "total_groups": 2048,
+ "update_index": 35,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "e0c5dde4b14b0f885b7d3c128af0578fa28563626bbcf068867e51f30c8fd356",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019579540938138962,
+ "mean_squared_error": 2.743487073075812e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.01647031120955944,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07191886752843857,
+ "total_groups": 2048,
+ "update_index": 36,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "e2aaf46bb3c61518191ab03fe7267dc75d968e9ee515d16f02eb2a42bb9e0e5c",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007954536937177181,
+ "mean_squared_error": 1.9160870579071343e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.037934623658657074,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05022907257080078,
+ "total_groups": 2048,
+ "update_index": 37,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "461cbf1fe958357710da54e6a782f38114ce1ac5eb554d94cb5a90c5cfb6700c",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01757761277258396,
+ "mean_squared_error": 7.968634463395574e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.05860506743192673,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20889297127723694,
+ "total_groups": 2048,
+ "update_index": 38,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "0d0d06b15a29f01275185bb6a3562f41af2cd71aca4c065259f1fc770e3d27c6",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.038938045501708984,
+ "mean_squared_error": 2.6583193175611086e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.026798533275723457,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6968624591827393,
+ "total_groups": 2048,
+ "update_index": 39,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "16fde8b5974beeac53aced1ba09a1bcca484a82a87445bb1bd314078b15d74af",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.050625771284103394,
+ "mean_squared_error": 1.7315516060989466e-06,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.05791092291474342,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.45391586422920227,
+ "total_groups": 2048,
+ "update_index": 40,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "b7bca42b2cb25363f6456b0dcd6e67f793c721f7734e8d6578657eefa0cb646a",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02182570844888687,
+ "mean_squared_error": 1.1117123221993097e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.09906011819839478,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.29142871499061584,
+ "total_groups": 2048,
+ "update_index": 41,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "4a818983709f3dd0972611e4979aa2792b69ad1c0b17652b83fbc316c42091ab",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03465364873409271,
+ "mean_squared_error": 1.2181010333733866e-06,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.045536357909440994,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.31931787729263306,
+ "total_groups": 2048,
+ "update_index": 42,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "83af0ee1b0efbab3a0d60612159f5db10a8e4db4ee1a8cfa4c66a4f55d0b53c2",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029901089146733284,
+ "mean_squared_error": 7.896558145148447e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.06711357086896896,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20700353384017944,
+ "total_groups": 2048,
+ "update_index": 43,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "2f2ad906b057fd4538f24e6d0c1c437c63bc5dd0d3cc6644dba6bff87b8eef32",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025113414973020554,
+ "mean_squared_error": 7.063674729579361e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.10855630040168762,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1851699948310852,
+ "total_groups": 2048,
+ "update_index": 44,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "226dba1692dd07885093fd51f96cac5d04741dcefc8f5cde799f487a9eddd950",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.035925883799791336,
+ "mean_squared_error": 1.8429890360494028e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.05934878811240196,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.48312851786613464,
+ "total_groups": 2048,
+ "update_index": 45,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "daf39ed128545b771b090ad264a27716e581e0737095c52e60d8b1e606d69696",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024382002651691437,
+ "mean_squared_error": 9.764466994965915e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.10875915735960007,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2559696435928345,
+ "total_groups": 2048,
+ "update_index": 46,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "847aaffceccb2bc5ef1b89e9c59bc76307a6868655a33b16d7dea99b0fc01941",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027270251885056496,
+ "mean_squared_error": 1.4576470448446344e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.08430590480566025,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.38211342692375183,
+ "total_groups": 2048,
+ "update_index": 47,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "03709c24e18ea955502b1c0e5440a940f91ed02f5d0a0fa784c5f1764d615ea6",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10038533806800842,
+ "mean_squared_error": 1.1842965250252746e-05,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.09714525938034058,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.104562282562256,
+ "total_groups": 2048,
+ "update_index": 48,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "574eee02293d3ad054277d37060a668de673787ae16051713e14b72f48c0b672",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09915021061897278,
+ "mean_squared_error": 1.9117898773401976e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.11070028692483902,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 5.0116424560546875,
+ "total_groups": 2048,
+ "update_index": 49,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.16929951310157776,
+ "mean_squared_error": 2.6747227821033448e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08926797658205032,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 7.011625289916992,
+ "total_groups": 2048,
+ "update_index": 50,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "5beb27a0eedf095d016b9ca38e941b26f638d35e8b521f568ea7f9fca62ec2a1",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07773465663194656,
+ "mean_squared_error": 1.5872847143327817e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.09809354692697525,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.160971641540527,
+ "total_groups": 2048,
+ "update_index": 51,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09076252579689026,
+ "mean_squared_error": 1.4653041944256984e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.1042008250951767,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.8412070274353027,
+ "total_groups": 2048,
+ "update_index": 52,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "66c076daa7cf7238e758ce4a7d54e674474acce7d214ec40d9fdebe0f169a223",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0319020040333271,
+ "mean_squared_error": 2.0060667793586617e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.08237822353839874,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.525878369808197,
+ "total_groups": 2048,
+ "update_index": 53,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "90bb16906d01bb11517329d850efa226d802af6db7619450b373b14058e92011",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020525187253952026,
+ "mean_squared_error": 2.822859244133724e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.016634970903396606,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0739995613694191,
+ "total_groups": 2048,
+ "update_index": 54,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "b85ac4e5a8ec876210460429d75f0b9c4e3fb51e6b77651a110df1e65a18086f",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008964129723608494,
+ "mean_squared_error": 2.3439307028638723e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.04144873470067978,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.061444737017154694,
+ "total_groups": 2048,
+ "update_index": 55,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "0fc91d4143e712d9a4799cd82094a222e3136148942d0767d7fa45ef2ce7b614",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01915360987186432,
+ "mean_squared_error": 6.647339887422277e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.052013009786605835,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17425602674484253,
+ "total_groups": 2048,
+ "update_index": 56,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "5f67888718b8ea1bffb49a744497e33d5fd9e2d2107e6d114055182accbafb93",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04427092894911766,
+ "mean_squared_error": 2.6902753234026022e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.02682778425514698,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7052395343780518,
+ "total_groups": 2048,
+ "update_index": 57,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "37adeda644a32633298c84b31f8651a15ef4d78908d0bfce37e4266cbf052aa1",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.046101029962301254,
+ "mean_squared_error": 1.619813019715366e-06,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.05538268759846687,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4246242642402649,
+ "total_groups": 2048,
+ "update_index": 58,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "2242024aa035e6fb3549ccd9d1eb3596f605eb24de50f5aaa99ebaf2d9dbfc6f",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023020591586828232,
+ "mean_squared_error": 1.1537063073774334e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.09044532477855682,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3024371862411499,
+ "total_groups": 2048,
+ "update_index": 59,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "4a818983709f3dd0972611e4979aa2792b69ad1c0b17652b83fbc316c42091ab",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02823634445667267,
+ "mean_squared_error": 1.017162503558211e-06,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.04135134443640709,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.26664304733276367,
+ "total_groups": 2048,
+ "update_index": 60,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "3579251f0420e15f0c6eec84cc5222d77b2c75bf08f8bf6d2039af56adf7f71b",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04077612981200218,
+ "mean_squared_error": 5.049886340202647e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.057099971920251846,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13237974047660828,
+ "total_groups": 2048,
+ "update_index": 61,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "74f03ba2202b6e9a57dd48d0a1eded01d593e9a957cd8bf61e63270be40687b6",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022094544023275375,
+ "mean_squared_error": 6.173695510369726e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.0910930261015892,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16183972358703613,
+ "total_groups": 2048,
+ "update_index": 62,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "226dba1692dd07885093fd51f96cac5d04741dcefc8f5cde799f487a9eddd950",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03825686126947403,
+ "mean_squared_error": 1.8804851151799085e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.05849551036953926,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4929578900337219,
+ "total_groups": 2048,
+ "update_index": 63,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "86fc1f4bf40f3a54b8014ec72354ddc3d2945da333975c0d2319ebe712ef2acf",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029649928212165833,
+ "mean_squared_error": 7.131415600269975e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.08681619167327881,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18694578111171722,
+ "total_groups": 2048,
+ "update_index": 64,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "3e52118933e205f220a510248310dd3b9d48f31b6bb9ae75061fb747631035c0",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03753957524895668,
+ "mean_squared_error": 1.4373731573869009e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.07916836440563202,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.37679874897003174,
+ "total_groups": 2048,
+ "update_index": 65,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "44799425b7f0b439d82f31f95d95a80cd2a291986b03720250413a0911e1dab5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.13094758987426758,
+ "mean_squared_error": 7.64907781558577e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.07704810053110123,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.005159854888916,
+ "total_groups": 2048,
+ "update_index": 66,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "574eee02293d3ad054277d37060a668de673787ae16051713e14b72f48c0b672",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10017911344766617,
+ "mean_squared_error": 1.2481728845159523e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.08667948842048645,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.272010326385498,
+ "total_groups": 2048,
+ "update_index": 67,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1469285488128662,
+ "mean_squared_error": 2.1911449948675e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08084076642990112,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 5.743955135345459,
+ "total_groups": 2048,
+ "update_index": 68,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "5beb27a0eedf095d016b9ca38e941b26f638d35e8b521f568ea7f9fca62ec2a1",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09680497646331787,
+ "mean_squared_error": 1.3982418749947101e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.09206376224756241,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.665407180786133,
+ "total_groups": 2048,
+ "update_index": 69,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08302810788154602,
+ "mean_squared_error": 1.1893037481058855e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.09315187484025955,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.1176884174346924,
+ "total_groups": 2048,
+ "update_index": 70,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "5c954aa32b5f89c6f301737f4faf00562ef5d5662fd90a16d6f430f879e88fd3",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.038769859820604324,
+ "mean_squared_error": 1.898004029499134e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.08067887276411057,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.497550368309021,
+ "total_groups": 2048,
+ "update_index": 71,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "367a2a48778d9bb06dc77305ba217bddd55e681a3d1b1bd788eb416ae1fe68bb",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020230010151863098,
+ "mean_squared_error": 2.201451820837974e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.014681409113109112,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05770973861217499,
+ "total_groups": 2048,
+ "update_index": 72,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "f32c7ef15d3d54ac580952338f75ff80b096544e9f1906cd618d72135b587672",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.005569680593907833,
+ "mean_squared_error": 4.277472953617689e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.01910620741546154,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.011213138699531555,
+ "total_groups": 2048,
+ "update_index": 73,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "26dda7dcbe58a8114376e13dd9a97d48229b87193c1a1625f6bc62db103e196d",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015256330370903015,
+ "mean_squared_error": 2.8269090535104624e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.034615520387887955,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07410572469234467,
+ "total_groups": 2048,
+ "update_index": 74,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "c56934653633462039a82b2b38b4db6ae542c5141e0c63a5a28fccd1f5b58aa6",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0454573780298233,
+ "mean_squared_error": 1.7208548115377198e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.021531620994210243,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.451111763715744,
+ "total_groups": 2048,
+ "update_index": 75,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "8f6eb80855ef4e57db4d551ee66f896c5eb518aeb1ce19e1cabe811d1bf33886",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03052932769060135,
+ "mean_squared_error": 8.663453172630398e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.040981724858284,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2271072268486023,
+ "total_groups": 2048,
+ "update_index": 76,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "2abc86e4cc6a8fd08d5fd0c0998ff9cf88bb209f4913e8429fab937afcfbed26",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02606257051229477,
+ "mean_squared_error": 7.565887472082977e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.07465272396802902,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.198335200548172,
+ "total_groups": 2048,
+ "update_index": 77,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "0060b818565c515fb23142308e606eca3176090474e1e39a047b2fa470cf3213",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02828908897936344,
+ "mean_squared_error": 1.0188902024310664e-06,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.041179854422807693,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2670959532260895,
+ "total_groups": 2048,
+ "update_index": 78,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "2f4374094a2f2c2ab21c7c7af98560fd1c006dc2c88582a41c5a2c28a724eea5",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03630802035331726,
+ "mean_squared_error": 5.876338491361821e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.06570084393024445,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15404468774795532,
+ "total_groups": 2048,
+ "update_index": 79,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "d00dc0c636007afdabd0765b76700e397fa12e4c5b9f205b61a5c67a98f2ab5c",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023732587695121765,
+ "mean_squared_error": 5.582620588029386e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.08313139528036118,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14634504914283752,
+ "total_groups": 2048,
+ "update_index": 80,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "0ccb3fb5128fa6cf2928c3dda8849d45d5882d06819e892123279d32ce388f62",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08312681317329407,
+ "mean_squared_error": 2.461452822899446e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.06534139066934586,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6452550888061523,
+ "total_groups": 2048,
+ "update_index": 81,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "d706bc174976e626fc872a7af3c09c57dd9c57af699c0e3fb3a13c168003a0d9",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0261419415473938,
+ "mean_squared_error": 8.641442263979116e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.08996998518705368,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22653022408485413,
+ "total_groups": 2048,
+ "update_index": 82,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "1fa422171b0ed631480d8925774377c42f48d3f6fb7ec91daec4ed23dab59d28",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.038306523114442825,
+ "mean_squared_error": 1.5011698906164384e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.07892927527427673,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3935226798057556,
+ "total_groups": 2048,
+ "update_index": 83,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "8c284f50c387a9e2c6a18f4bdac217ca62175e47d77d20e20a73fc71f7397f98",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1386999934911728,
+ "mean_squared_error": 6.186927294038469e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.06899675726890564,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.6218658685684204,
+ "total_groups": 2048,
+ "update_index": 84,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "01eff0b73058da326fe0ea6a33f7c7dd8f64462a023e59ab7850661f7fef0d0c",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10369578003883362,
+ "mean_squared_error": 1.8315760826226324e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.10269594937562943,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.801366806030273,
+ "total_groups": 2048,
+ "update_index": 85,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11929082870483398,
+ "mean_squared_error": 2.8720649424940348e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.09100054949522018,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 7.5289459228515625,
+ "total_groups": 2048,
+ "update_index": 86,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "5beb27a0eedf095d016b9ca38e941b26f638d35e8b521f568ea7f9fca62ec2a1",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11047688871622086,
+ "mean_squared_error": 1.889502163976431e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.10719457268714905,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.953216552734375,
+ "total_groups": 2048,
+ "update_index": 87,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.13835296034812927,
+ "mean_squared_error": 1.6115391190396622e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.10537489503622055,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.224553108215332,
+ "total_groups": 2048,
+ "update_index": 88,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "97132cc9d380325bd8ed7bd8d9215edb4d89acd549d06fb9849a9308143fead2",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.034844085574150085,
+ "mean_squared_error": 2.11028236662969e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.08359827846288681,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5531978607177734,
+ "total_groups": 2048,
+ "update_index": 89,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "05fe28449ae464529ebcbb0256aab3383238575842b89c4a134a392379458ede",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02053474821150303,
+ "mean_squared_error": 2.106811507474049e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.014373925514519215,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05522879958152771,
+ "total_groups": 2048,
+ "update_index": 90,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "07308df6ca233965cd34fb5ad802497fe7548b997c68663f3d0af3c719757f8b",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008038803935050964,
+ "mean_squared_error": 9.177249182812375e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02678563818335533,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.024057608097791672,
+ "total_groups": 2048,
+ "update_index": 91,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "650da461c95733b693e165f6b00a88a18b333fddcaf1fea89b74efde0973b652",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021535543724894524,
+ "mean_squared_error": 6.560309202541248e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.051821183413267136,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1719745695590973,
+ "total_groups": 2048,
+ "update_index": 92,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "a265e5fa113e90a4fb0f3c1ba4593bd8a340b4605cfca7c4bdec24c3f89aa8b2",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04785585403442383,
+ "mean_squared_error": 3.0484391118079657e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.028603333979845047,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7991300225257874,
+ "total_groups": 2048,
+ "update_index": 93,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "361bd7cf1d5b02e28dc8de5dbb9fe01124b72c701e99cf72a80c7681b7d96141",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026762546971440315,
+ "mean_squared_error": 8.011209047253942e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.039192184805870056,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21000903844833374,
+ "total_groups": 2048,
+ "update_index": 94,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "e6e798189d3ecf90ba4812179bbcdc69afd86058215231d8296f406585f03c46",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027112215757369995,
+ "mean_squared_error": 1.135248453465465e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.0891183391213417,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.29759857058525085,
+ "total_groups": 2048,
+ "update_index": 95,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "221ae48aa82b794e752516e1832c10cb996f075dc192748d6925f887f13eb135",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027839237824082375,
+ "mean_squared_error": 9.352326060252381e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.039280228316783905,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.24516561627388,
+ "total_groups": 2048,
+ "update_index": 96,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "1a1f0c3068b12c8ea986f752dccf9c657450ed309b10fea05602f5cd0196120d",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03695455938577652,
+ "mean_squared_error": 7.174766096795793e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.07374123483896255,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18808218836784363,
+ "total_groups": 2048,
+ "update_index": 97,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "1b7c62a159c44a8b56a5814f423ada5c536616cc1d8d6e5203e8ebcc7e6bc20b",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02984795533120632,
+ "mean_squared_error": 7.572774620712153e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.08943946659564972,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19851574301719666,
+ "total_groups": 2048,
+ "update_index": 98,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "0ccb3fb5128fa6cf2928c3dda8849d45d5882d06819e892123279d32ce388f62",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.033945679664611816,
+ "mean_squared_error": 2.2819872356194537e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.06337589770555496,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5982092618942261,
+ "total_groups": 2048,
+ "update_index": 99,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "02795cbcb38d12ad14a3af985ea6b025e603a17e0a38fa3b3108c60cc29bcc1e",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02490498125553131,
+ "mean_squared_error": 8.204945061152102e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.09030145406723022,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21508771181106567,
+ "total_groups": 2048,
+ "update_index": 100,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "ebd5ed3b646826b3341f9186f658b8a8216bfcae9b96d630b0939f9e3747325f",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0337589867413044,
+ "mean_squared_error": 1.5919415545795346e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.07889223843812943,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4173179268836975,
+ "total_groups": 2048,
+ "update_index": 101,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "8c284f50c387a9e2c6a18f4bdac217ca62175e47d77d20e20a73fc71f7397f98",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10847063362598419,
+ "mean_squared_error": 6.827317520219367e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.07192320376634598,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.7897403240203857,
+ "total_groups": 2048,
+ "update_index": 102,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "01eff0b73058da326fe0ea6a33f7c7dd8f64462a023e59ab7850661f7fef0d0c",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06746834516525269,
+ "mean_squared_error": 1.454368612030521e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.08970770984888077,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.812540054321289,
+ "total_groups": 2048,
+ "update_index": 103,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.17419227957725525,
+ "mean_squared_error": 2.6113102649105713e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08516715466976166,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 6.845393180847168,
+ "total_groups": 2048,
+ "update_index": 104,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "5beb27a0eedf095d016b9ca38e941b26f638d35e8b521f568ea7f9fca62ec2a1",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11148132383823395,
+ "mean_squared_error": 1.5135063222260214e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.09499841183423996,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.9675660133361816,
+ "total_groups": 2048,
+ "update_index": 105,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10805090516805649,
+ "mean_squared_error": 1.8384882423561066e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.11126824468374252,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.819486618041992,
+ "total_groups": 2048,
+ "update_index": 106,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "97132cc9d380325bd8ed7bd8d9215edb4d89acd549d06fb9849a9308143fead2",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02953656017780304,
+ "mean_squared_error": 1.73898524735705e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.07679440826177597,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4558645486831665,
+ "total_groups": 2048,
+ "update_index": 107,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "0d8119edcebcd01683041358b574fa7e9696fba27064a8e3c7caacd56dbdf51b",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01609855704009533,
+ "mean_squared_error": 2.504593794583343e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.015526472590863705,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06565642356872559,
+ "total_groups": 2048,
+ "update_index": 108,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "777c98ff29a4d2ee2a5a32b224ef0176ca471f3fb888d313e192cb6c8b629671",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008074400946497917,
+ "mean_squared_error": 9.141805179524454e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02688644267618656,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.023964693769812584,
+ "total_groups": 2048,
+ "update_index": 109,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "db4d7d86c61b127c86f03159dc967f6c242839f81f3f7e3b85a6b6d7fc7d18cc",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012160345911979675,
+ "mean_squared_error": 2.779913188533101e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.03536134585738182,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07287375628948212,
+ "total_groups": 2048,
+ "update_index": 110,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "37c16cd31a30e387cb24b4b9db1d65d069e261b19c9835276ecdad4709c994f9",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04708898067474365,
+ "mean_squared_error": 2.3068619157129433e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.025042589753866196,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6047300100326538,
+ "total_groups": 2048,
+ "update_index": 111,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "361bd7cf1d5b02e28dc8de5dbb9fe01124b72c701e99cf72a80c7681b7d96141",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03766556829214096,
+ "mean_squared_error": 8.807412541500526e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.04255661740899086,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23088103532791138,
+ "total_groups": 2048,
+ "update_index": 112,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "e45d660bc17b44dbc2ddb337eaf4ac795541b1dfc5ae489c2dfdf349ff1c214b",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024464145302772522,
+ "mean_squared_error": 1.0415581073175417e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.08762794733047485,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.27303820848464966,
+ "total_groups": 2048,
+ "update_index": 113,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "5cb900f136e8706a509d6ef8f4599c1b6540fad451a20f4446bf3ae18481e939",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026647981256246567,
+ "mean_squared_error": 9.33529690883006e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.039302002638578415,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.24471920728683472,
+ "total_groups": 2048,
+ "update_index": 114,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "1a1f0c3068b12c8ea986f752dccf9c657450ed309b10fea05602f5cd0196120d",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027190443128347397,
+ "mean_squared_error": 4.772620059156907e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.061097562313079834,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12511137127876282,
+ "total_groups": 2048,
+ "update_index": 115,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "02d9f1cc43eb2fa29180140f59e757e4f10b24a5465c88562ddaf0c0433ae3e7",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024077627807855606,
+ "mean_squared_error": 6.94187974659144e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.08559197187423706,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18197721242904663,
+ "total_groups": 2048,
+ "update_index": 116,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "0ccb3fb5128fa6cf2928c3dda8849d45d5882d06819e892123279d32ce388f62",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03942745923995972,
+ "mean_squared_error": 2.2749304662283976e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.06353771686553955,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.596359372138977,
+ "total_groups": 2048,
+ "update_index": 117,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "51a78a1cbd6ca315d52d05aaba73af2fbe0e6c983a0dec62f4bdc5956469ec68",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026614069938659668,
+ "mean_squared_error": 6.285173412834411e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.07984130829572678,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16476204991340637,
+ "total_groups": 2048,
+ "update_index": 118,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "a31c9981072eac61507f34f4130cc830ce5e03d02e766fab1feebaf6047b53aa",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03957280516624451,
+ "mean_squared_error": 1.252591118827695e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.06978368014097214,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3283592462539673,
+ "total_groups": 2048,
+ "update_index": 119,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "8c284f50c387a9e2c6a18f4bdac217ca62175e47d77d20e20a73fc71f7397f98",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0709928423166275,
+ "mean_squared_error": 6.722985290252836e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.07145035266876221,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.7623902559280396,
+ "total_groups": 2048,
+ "update_index": 120,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "46376378f4800dfb1d60397baaa549f2098a6e3087c37b39ac72a234441bb6f0",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08142992854118347,
+ "mean_squared_error": 1.6030769984354265e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.09758318215608597,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.2023701667785645,
+ "total_groups": 2048,
+ "update_index": 121,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.14864759147167206,
+ "mean_squared_error": 3.066716453759e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.09098885208368301,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 8.039213180541992,
+ "total_groups": 2048,
+ "update_index": 122,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12254852056503296,
+ "mean_squared_error": 1.8034515960607678e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.10267876833677292,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.727640151977539,
+ "total_groups": 2048,
+ "update_index": 123,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1558464765548706,
+ "mean_squared_error": 1.908869671751745e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.11039242148399353,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 5.0039873123168945,
+ "total_groups": 2048,
+ "update_index": 124,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "12d0f54444a30ca2e6e2dccdf5193bb2fd01bf4ec3dc6b04b843812627293f2a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.041213057935237885,
+ "mean_squared_error": 2.0679449335148092e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.07898048311471939,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5420993566513062,
+ "total_groups": 2048,
+ "update_index": 125,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "3ba5d2329e9abddfb9aec616034bacb2f40a6cfa9a5a53c22670a23724dba3b2",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024148374795913696,
+ "mean_squared_error": 2.9386535516096046e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.016619466245174408,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07703503966331482,
+ "total_groups": 2048,
+ "update_index": 126,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "23143cf53269837ea7ca682232c61d32c2a1cd5339ed1b913a75659b1102fbf7",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0096651092171669,
+ "mean_squared_error": 1.1346263306677429e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02945280633866787,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02974354848265648,
+ "total_groups": 2048,
+ "update_index": 127,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "dff1e43e1b250f2982f764b78187bc97bc7dc69f8e1eeae869688459b90b38b3",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01788850873708725,
+ "mean_squared_error": 4.184060173884063e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.04318944737315178,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10968262702226639,
+ "total_groups": 2048,
+ "update_index": 128,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "90a349f451de4dc84e711562df011ad6555d220312d7b62eb086077f8fe860b2",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04920988902449608,
+ "mean_squared_error": 3.887606908392627e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.03242956101894379,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0191128253936768,
+ "total_groups": 2048,
+ "update_index": 129,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "14d7fd98c427dc7d16c21fa6ee2d05581499865ec0623eaf1f71aa7a33f9a577",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023001017048954964,
+ "mean_squared_error": 6.813763206992007e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.038045529276132584,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17861871421337128,
+ "total_groups": 2048,
+ "update_index": 130,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "76e0b422e1777e38ee06a5a070dc45b9084cc6238d0cb92b65018a0ad0cb57a9",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021610625088214874,
+ "mean_squared_error": 7.78565663495101e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.07785423845052719,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20409631729125977,
+ "total_groups": 2048,
+ "update_index": 131,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "5cb900f136e8706a509d6ef8f4599c1b6540fad451a20f4446bf3ae18481e939",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027502834796905518,
+ "mean_squared_error": 7.579005227853486e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.035560812801122665,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19867907464504242,
+ "total_groups": 2048,
+ "update_index": 132,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "1a1f0c3068b12c8ea986f752dccf9c657450ed309b10fea05602f5cd0196120d",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029868824407458305,
+ "mean_squared_error": 4.698256077517726e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.06148579716682434,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12316196411848068,
+ "total_groups": 2048,
+ "update_index": 133,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "529ec741b5277d871c4880a7d9bc6121d0b3ffef5f205685acdf6a2de71a3f20",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022232113406062126,
+ "mean_squared_error": 5.138071514920739e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.07467867434024811,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13469146192073822,
+ "total_groups": 2048,
+ "update_index": 134,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "0ccb3fb5128fa6cf2928c3dda8849d45d5882d06819e892123279d32ce388f62",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05657433718442917,
+ "mean_squared_error": 1.9950141449953662e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.05962549149990082,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5229809880256653,
+ "total_groups": 2048,
+ "update_index": 135,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "da49fdeb3b1ec0b815a03bf18f2b774d896fa168261ce337ed256498378f4df4",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026302151381969452,
+ "mean_squared_error": 7.579553766845493e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.08535449951887131,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19869345426559448,
+ "total_groups": 2048,
+ "update_index": 136,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "d956ca986b798722376463ab90e49792f75539d615e8dc68814903a53b11316e",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.044834256172180176,
+ "mean_squared_error": 1.214612893818412e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.06848601996898651,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3184034824371338,
+ "total_groups": 2048,
+ "update_index": 137,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "51f05491715fee1a9b616349f9506f289a3d82a07650b9a7731cf3d85941b76a",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09305264800786972,
+ "mean_squared_error": 1.0146299246116541e-05,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.08741980791091919,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.6597914695739746,
+ "total_groups": 2048,
+ "update_index": 138,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "ec04807103bd2c1c926b7e0c9b11812c59bec65bb7af58fe1b17a5ed22edf92a",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06992535293102264,
+ "mean_squared_error": 1.6595628039794974e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.10093139111995697,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.350444316864014,
+ "total_groups": 2048,
+ "update_index": 139,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1696469634771347,
+ "mean_squared_error": 3.527066292008385e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.09725204110145569,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 9.245992660522461,
+ "total_groups": 2048,
+ "update_index": 140,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07671162486076355,
+ "mean_squared_error": 1.578381852596067e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.09638311713933945,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.137633323669434,
+ "total_groups": 2048,
+ "update_index": 141,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09315220266580582,
+ "mean_squared_error": 1.6929996490944177e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.10145258158445358,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.43809700012207,
+ "total_groups": 2048,
+ "update_index": 142,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "3d7c9f69d220242baa2406e4b1507dd599a1085d0e3f01538f70559ad3f621d6",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06116538494825363,
+ "mean_squared_error": 3.5739767554332502e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.09865734726190567,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.936896562576294,
+ "total_groups": 2048,
+ "update_index": 143,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "ec841aaf43aff751e269abdfb00542c62d18c6fb4f064b1a376a6ee36fb48359",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03836090490221977,
+ "mean_squared_error": 1.7158274090434134e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.01277401763945818,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.044979386031627655,
+ "total_groups": 2048,
+ "update_index": 144,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "4a79738174b7b8a2b1ab241981be639994325b8c00262be48563c41094ff483f",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008607432246208191,
+ "mean_squared_error": 1.1153974810440559e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02766023948788643,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0292394757270813,
+ "total_groups": 2048,
+ "update_index": 145,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "609d85ac6b3502779f6194df298d202b67a8286fda1124362de3a7d9f5642236",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015954583883285522,
+ "mean_squared_error": 4.4778892061003717e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.04209895059466362,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11738517880439758,
+ "total_groups": 2048,
+ "update_index": 146,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "771ad1efcc2c0ec1cbadfd66b2e5c6a2856b4717bccd93329f843020f3c31c9a",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04970495030283928,
+ "mean_squared_error": 2.6052530301967636e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.02649505063891411,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6829514503479004,
+ "total_groups": 2048,
+ "update_index": 147,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "65f8a72c20a530b3b092ecaab9bc01ebe2e041291be09fcd3cf373cb64f6037f",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.032491832971572876,
+ "mean_squared_error": 9.155177735920006e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.04371532425284386,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2399974912405014,
+ "total_groups": 2048,
+ "update_index": 148,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "cc162720bdff71d939fa98264b45f928c6ba271afe390ab30f12beff05e6f7e9",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0186634361743927,
+ "mean_squared_error": 1.065264086719253e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.09466685354709625,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2792525887489319,
+ "total_groups": 2048,
+ "update_index": 149,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "5cb900f136e8706a509d6ef8f4599c1b6540fad451a20f4446bf3ae18481e939",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027467641979455948,
+ "mean_squared_error": 9.641859151088283e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.040037501603364944,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2527555525302887,
+ "total_groups": 2048,
+ "update_index": 150,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "36a78f6a10ed2c1296901d28d7e42d4f762c56c5ff31d276ffe9beafff71e7fc",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03721531480550766,
+ "mean_squared_error": 9.449578897147148e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.06907307356595993,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2477150410413742,
+ "total_groups": 2048,
+ "update_index": 151,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "8d339945a6bd3044e626e4a198841379f266b2c68401f30a2a213ccc2b384e61",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02397325448691845,
+ "mean_squared_error": 6.53025949759467e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.08844717592000961,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17118683457374573,
+ "total_groups": 2048,
+ "update_index": 152,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "0ccb3fb5128fa6cf2928c3dda8849d45d5882d06819e892123279d32ce388f62",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05536142736673355,
+ "mean_squared_error": 1.7162022913908004e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.055486246943473816,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.44989213347435,
+ "total_groups": 2048,
+ "update_index": 153,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "996627b92bbe44ece7893cb00d71e670f3d3723bd85c64d9bda26cbafde54548",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021788163110613823,
+ "mean_squared_error": 7.546076403741608e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.08631901443004608,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19781586527824402,
+ "total_groups": 2048,
+ "update_index": 154,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "59a48355b62ef793288a3960a32744be27ec12fa74104ef30ea2e39d28210fc1",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02949550747871399,
+ "mean_squared_error": 1.7567663235240616e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.08348192274570465,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4605257511138916,
+ "total_groups": 2048,
+ "update_index": 155,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "51f05491715fee1a9b616349f9506f289a3d82a07650b9a7731cf3d85941b76a",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07650011777877808,
+ "mean_squared_error": 8.544069714844227e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.08145956695079803,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.239776611328125,
+ "total_groups": 2048,
+ "update_index": 156,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "c3288645627c8fc9c0285ca4edf142ea8614c7eb8d524028b635f3e8ca6862e2",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0763440877199173,
+ "mean_squared_error": 1.9753973901970312e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.10923507809638977,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 5.1783857345581055,
+ "total_groups": 2048,
+ "update_index": 157,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.20162978768348694,
+ "mean_squared_error": 3.5910805308958516e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.09694050252437592,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 9.413802146911621,
+ "total_groups": 2048,
+ "update_index": 158,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1028510332107544,
+ "mean_squared_error": 1.8586861187941395e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.10200604796409607,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.872434139251709,
+ "total_groups": 2048,
+ "update_index": 159,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11166349053382874,
+ "mean_squared_error": 1.6447682355646975e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.09911014139652252,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.311661243438721,
+ "total_groups": 2048,
+ "update_index": 160,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "2c2b53c9e14998e3c0d208e359e348a864ccdcac31c956173af43adbe2843c8e",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04553893208503723,
+ "mean_squared_error": 3.030264451808762e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.09065859019756317,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.794365644454956,
+ "total_groups": 2048,
+ "update_index": 161,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "d2c9499f1711af28784467466c72ec3087ad72dd6966a40202992883b5390777",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01957692950963974,
+ "mean_squared_error": 2.039502930983872e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.013883380219340324,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05346434563398361,
+ "total_groups": 2048,
+ "update_index": 162,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "3cfcd4a61e24107a0772aa959d470c2c83df098f188353a9b6bc4ac0c4286b9a",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.006969757378101349,
+ "mean_squared_error": 8.811887397541796e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.025888513773679733,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.023099834099411964,
+ "total_groups": 2048,
+ "update_index": 163,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "1066152f4291810bfb2abd7e5a3be95d8d960ae1bee5e00ace724fce2fc22479",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011230776086449623,
+ "mean_squared_error": 2.681604769350088e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.03436555713415146,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07029666006565094,
+ "total_groups": 2048,
+ "update_index": 164,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "894a59d5ae933b050df10c88c6ce3a11da50630849782872fd5c3a651ab93601",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027889788150787354,
+ "mean_squared_error": 1.7064623989426764e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.02144045941531658,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.44733887910842896,
+ "total_groups": 2048,
+ "update_index": 165,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "d8bd4e703216e369c5f4a03b2eee5d4664fdaaa4dba077a8d21035dd56a0b02e",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.040956318378448486,
+ "mean_squared_error": 1.2475993571570143e-06,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.04944828525185585,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.32705068588256836,
+ "total_groups": 2048,
+ "update_index": 166,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "1aa5856210c92021a99230048119d9ec37d4738c1ae41f355977fa74c43a6a83",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022628627717494965,
+ "mean_squared_error": 1.0092724096466554e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.0932183712720871,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.26457470655441284,
+ "total_groups": 2048,
+ "update_index": 167,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "c01a7cb866b1025cbed6e1b7e37704138aba1cab863c54ca41baa78d299ee3e1",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03487435728311539,
+ "mean_squared_error": 1.082870653590362e-06,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.04214012250304222,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.28386804461479187,
+ "total_groups": 2048,
+ "update_index": 168,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "36a78f6a10ed2c1296901d28d7e42d4f762c56c5ff31d276ffe9beafff71e7fc",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03229203820228577,
+ "mean_squared_error": 4.955744543622131e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.05061676353216171,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.129911869764328,
+ "total_groups": 2048,
+ "update_index": 169,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "f2c46d122929cb9fef44b67ea1fd4cd99e93e129e6a6b1f5402193e83a81be50",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023554828017950058,
+ "mean_squared_error": 5.12887424974906e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.07537998259067535,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13445036113262177,
+ "total_groups": 2048,
+ "update_index": 170,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "51b681d52f0e115e2ff01c6d2b2d1cb347a4d51935b71237b3a03ee31039b05d",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0551825612783432,
+ "mean_squared_error": 2.2873402940604137e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.06253786385059357,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5996125340461731,
+ "total_groups": 2048,
+ "update_index": 171,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "b25f7852f004f0fb806186aba28d2e05dfdb2442a6e6eff08fa7aa2b494dc19c",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030816882848739624,
+ "mean_squared_error": 6.7251596647111e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.07926404476165771,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17629602551460266,
+ "total_groups": 2048,
+ "update_index": 172,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "e6589747ac2649d719e8560ba1e8d2a5381e490ac515c8cd8336e8dea6b528e0",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03604096174240112,
+ "mean_squared_error": 1.2134353255532915e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.06772170960903168,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.31809478998184204,
+ "total_groups": 2048,
+ "update_index": 173,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "b710d9c871ce98fae7f389c23c535830b5f0463c09ef1f9d78540f894c6b4914",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10564970970153809,
+ "mean_squared_error": 9.777539162314497e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.08644015341997147,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.5631232261657715,
+ "total_groups": 2048,
+ "update_index": 174,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "c3288645627c8fc9c0285ca4edf142ea8614c7eb8d524028b635f3e8ca6862e2",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0881471335887909,
+ "mean_squared_error": 1.3628308806801215e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.08968857675790787,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.5725793838500977,
+ "total_groups": 2048,
+ "update_index": 175,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.14190471172332764,
+ "mean_squared_error": 2.9359285690588877e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08846146613359451,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 7.6963605880737305,
+ "total_groups": 2048,
+ "update_index": 176,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07527969777584076,
+ "mean_squared_error": 1.1663072655210271e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.08073794096708298,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.0574045181274414,
+ "total_groups": 2048,
+ "update_index": 177,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0941786840558052,
+ "mean_squared_error": 1.1072046618210152e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08194848895072937,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.902470588684082,
+ "total_groups": 2048,
+ "update_index": 178,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "2c2b53c9e14998e3c0d208e359e348a864ccdcac31c956173af43adbe2843c8e",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0536806546151638,
+ "mean_squared_error": 1.5466282548004529e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06498850136995316,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4054393172264099,
+ "total_groups": 2048,
+ "update_index": 179,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "1162248f8f77988d1f4c12fdc0133210135695490973e057b71711a9294c744c",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0244353786110878,
+ "mean_squared_error": 4.996869620299549e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.02154476009309292,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1309899389743805,
+ "total_groups": 2048,
+ "update_index": 180,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "7cdc7e70dc560c57125c8cc70bf2a9ee18bf3393f1dde888fd3a3b0f90b4477c",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01175689697265625,
+ "mean_squared_error": 2.288056464294641e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.036534570157527924,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05998002737760544,
+ "total_groups": 2048,
+ "update_index": 181,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "092166125f8c2be693a35208cf09c867dfa07c8cc6ca0b5b95bdb06a8c0a0f3c",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018697895109653473,
+ "mean_squared_error": 5.696582547898288e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.04607972502708435,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14933249354362488,
+ "total_groups": 2048,
+ "update_index": 182,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "536c3f46875627b6e40604d26e7efb21e4b39045e5b083484ba1d58fc73a0b76",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04901769757270813,
+ "mean_squared_error": 3.954575731768273e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.032445028424263,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.036668300628662,
+ "total_groups": 2048,
+ "update_index": 183,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "02a06965dc20f20743d5ede0e9c8e9654fdddd0090095952ba74dda820570d16",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0465596467256546,
+ "mean_squared_error": 1.0398830454505514e-06,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.04432697594165802,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.27259910106658936,
+ "total_groups": 2048,
+ "update_index": 184,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "7781ca625381e45d1e10ec0afa835fd88d24bf44a302b29105e34c9a9c599eb7",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026109827682375908,
+ "mean_squared_error": 6.819986424488889e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.07619280368089676,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17878185212612152,
+ "total_groups": 2048,
+ "update_index": 185,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "f39c83cd65a42fbc79edf2dd42f668520b3f14b8ed7a72454860203db5da4722",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03662913665175438,
+ "mean_squared_error": 9.029397460835753e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03825981169939041,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23670023679733276,
+ "total_groups": 2048,
+ "update_index": 186,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "36a78f6a10ed2c1296901d28d7e42d4f762c56c5ff31d276ffe9beafff71e7fc",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03551212325692177,
+ "mean_squared_error": 3.4381955060780456e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04227500408887863,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09013023227453232,
+ "total_groups": 2048,
+ "update_index": 187,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "824a9819a9291cf033be15d397655c437f9ce9ad0e4d77e01c1ec77045fc2601",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02635171450674534,
+ "mean_squared_error": 3.678173357002379e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.062407903373241425,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09642110764980316,
+ "total_groups": 2048,
+ "update_index": 188,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "51b681d52f0e115e2ff01c6d2b2d1cb347a4d51935b71237b3a03ee31039b05d",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.040651991963386536,
+ "mean_squared_error": 2.2588676529267104e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.061863191425800323,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5921486020088196,
+ "total_groups": 2048,
+ "update_index": 189,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "95436e8c9182f14ecc13a2d70ccb794a276f0803eefc45f9b2f23477a1a0a474",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022567376494407654,
+ "mean_squared_error": 7.666336614420288e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.07923886179924011,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2009684145450592,
+ "total_groups": 2048,
+ "update_index": 190,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "8dac1e24ac0d1ae01eda12c3ed25f7a1ed5a4789ca65ea889a6d6e87cd6f9ce4",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03092832863330841,
+ "mean_squared_error": 1.2112077456549741e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.06516653299331665,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.31751084327697754,
+ "total_groups": 2048,
+ "update_index": 191,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "b710d9c871ce98fae7f389c23c535830b5f0463c09ef1f9d78540f894c6b4914",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10042726993560791,
+ "mean_squared_error": 8.569260899093933e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.07912984490394592,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.24638032913208,
+ "total_groups": 2048,
+ "update_index": 192,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "c3288645627c8fc9c0285ca4edf142ea8614c7eb8d524028b635f3e8ca6862e2",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07974308729171753,
+ "mean_squared_error": 1.4361930880113505e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.09051880985498428,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.7648940086364746,
+ "total_groups": 2048,
+ "update_index": 193,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.14060798287391663,
+ "mean_squared_error": 2.262793896079529e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07858618348836899,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 5.931778430938721,
+ "total_groups": 2048,
+ "update_index": 194,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08444439619779587,
+ "mean_squared_error": 1.1017616998287849e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.07872243225574493,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.88820219039917,
+ "total_groups": 2048,
+ "update_index": 195,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09799593687057495,
+ "mean_squared_error": 9.772628800419625e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07788693904876709,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.561836004257202,
+ "total_groups": 2048,
+ "update_index": 196,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "2c2b53c9e14998e3c0d208e359e348a864ccdcac31c956173af43adbe2843c8e",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04147504270076752,
+ "mean_squared_error": 1.1714569154719356e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.05673559382557869,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3070904016494751,
+ "total_groups": 2048,
+ "update_index": 197,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "011d70d3110448c2a2d71aec9f10a7c60d54e974074efb32a5a3a6dcb71d2fae",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026674784719944,
+ "mean_squared_error": 2.513926062874816e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.015391036868095398,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06590106338262558,
+ "total_groups": 2048,
+ "update_index": 198,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "c51afa1d5ce2162eff7c0b4bc83a368fbfadf565e6c965ee77680248299faeda",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007642260752618313,
+ "mean_squared_error": 8.806522089344071e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.023796264082193375,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02308576926589012,
+ "total_groups": 2048,
+ "update_index": 199,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "d62e6acc80ff35679ce5aca3a9c86ab9f3992a2b88be55179c7fe368f5a86ece",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017737777903676033,
+ "mean_squared_error": 2.679074668776593e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.0320022776722908,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07023033499717712,
+ "total_groups": 2048,
+ "update_index": 200,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "96b8504a55c08af600f168ede4006708b41ba8eba621f3c60d71b6296d8359e5",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.049845606088638306,
+ "mean_squared_error": 1.9209837773814797e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.022644922137260437,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5035743713378906,
+ "total_groups": 2048,
+ "update_index": 201,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "02a06965dc20f20743d5ede0e9c8e9654fdddd0090095952ba74dda820570d16",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05044487491250038,
+ "mean_squared_error": 5.811357937091088e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.03321143984794617,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15234126150608063,
+ "total_groups": 2048,
+ "update_index": 202,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "7781ca625381e45d1e10ec0afa835fd88d24bf44a302b29105e34c9a9c599eb7",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024420984089374542,
+ "mean_squared_error": 4.5615556132361235e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.06233403831720352,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11957844346761703,
+ "total_groups": 2048,
+ "update_index": 203,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "67fa2192def83d8afae1a324a66646fdf32cccd44cd5519ee16eb982fbc9a153",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03654101490974426,
+ "mean_squared_error": 6.032893224983127e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03116207756102085,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15814867615699768,
+ "total_groups": 2048,
+ "update_index": 204,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "36a78f6a10ed2c1296901d28d7e42d4f762c56c5ff31d276ffe9beafff71e7fc",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03484809398651123,
+ "mean_squared_error": 1.9754477875721932e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03237906098365784,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0517851784825325,
+ "total_groups": 2048,
+ "update_index": 205,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "824a9819a9291cf033be15d397655c437f9ce9ad0e4d77e01c1ec77045fc2601",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02714335173368454,
+ "mean_squared_error": 1.6187004803214222e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04128264635801315,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04243326187133789,
+ "total_groups": 2048,
+ "update_index": 206,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "51b681d52f0e115e2ff01c6d2b2d1cb347a4d51935b71237b3a03ee31039b05d",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04749917984008789,
+ "mean_squared_error": 1.460021508137288e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04930270463228226,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.38273587822914124,
+ "total_groups": 2048,
+ "update_index": 207,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "27a335772926cd2e8c4bd418f35dd9ac8091d2b83a9d20bca1cfa2b638b426bb",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016657866537570953,
+ "mean_squared_error": 2.99204316434043e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.0497177392244339,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07843461632728577,
+ "total_groups": 2048,
+ "update_index": 208,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "8dac1e24ac0d1ae01eda12c3ed25f7a1ed5a4789ca65ea889a6d6e87cd6f9ce4",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024714767932891846,
+ "mean_squared_error": 6.140894583950285e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.047464873641729355,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16097986698150635,
+ "total_groups": 2048,
+ "update_index": 209,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "b710d9c871ce98fae7f389c23c535830b5f0463c09ef1f9d78540f894c6b4914",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1048814207315445,
+ "mean_squared_error": 4.0384643398283515e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.053552281111478806,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0586591958999634,
+ "total_groups": 2048,
+ "update_index": 210,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "c3288645627c8fc9c0285ca4edf142ea8614c7eb8d524028b635f3e8ca6862e2",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07754513621330261,
+ "mean_squared_error": 9.288000910601113e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.0722528025507927,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.434793710708618,
+ "total_groups": 2048,
+ "update_index": 211,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.13931837677955627,
+ "mean_squared_error": 2.2802338207839057e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07788156718015671,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 5.977496147155762,
+ "total_groups": 2048,
+ "update_index": 212,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1424252986907959,
+ "mean_squared_error": 1.0985132576024625e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.07732949405908585,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.8796865940093994,
+ "total_groups": 2048,
+ "update_index": 213,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10316917300224304,
+ "mean_squared_error": 1.1167117008881178e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08157861232757568,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.9273927211761475,
+ "total_groups": 2048,
+ "update_index": 214,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "4d51391f687a784967ec7d92ff2010fe503df7186d59d0670c86446663dcf8c9",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0428665429353714,
+ "mean_squared_error": 1.2977872074770858e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06042470410466194,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.34020712971687317,
+ "total_groups": 2048,
+ "update_index": 215,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "ecf3535bc7849c37e443ebb0ca434846cf145eed65cb6eb4e89c8d5ea0df8b2f",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022846879437565804,
+ "mean_squared_error": 2.2744595185031358e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.014582136645913124,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0596235916018486,
+ "total_groups": 2048,
+ "update_index": 216,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "261d20dfb88c9bfd3106c93f94a0ae8443ff110fa638a2df63fe2d1c6a7c5100",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.00589402299374342,
+ "mean_squared_error": 6.197118551654057e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02222379483282566,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.016245374456048012,
+ "total_groups": 2048,
+ "update_index": 217,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "51779567693d704ca0bb7cf720827cd13f9db71147755c4e3a16526c383e963a",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01138971745967865,
+ "mean_squared_error": 2.4482091021127417e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.034155312925577164,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06417833268642426,
+ "total_groups": 2048,
+ "update_index": 218,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "38ef8563e88a573764c7540b94665560445f6aa42b679041d415bf324b7b7780",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04969912767410278,
+ "mean_squared_error": 2.116052428391413e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.02375004254281521,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5547104477882385,
+ "total_groups": 2048,
+ "update_index": 219,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "02a06965dc20f20743d5ede0e9c8e9654fdddd0090095952ba74dda820570d16",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018438950181007385,
+ "mean_squared_error": 5.104101319375332e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.031728699803352356,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1338009536266327,
+ "total_groups": 2048,
+ "update_index": 220,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "7907f581e571cd73cc2e3d6dfde02fe7bcbba6b4b4cf195eea829500c3269db0",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027314942330121994,
+ "mean_squared_error": 1.0875758107431466e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.09364937990903854,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2851014733314514,
+ "total_groups": 2048,
+ "update_index": 221,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "67fa2192def83d8afae1a324a66646fdf32cccd44cd5519ee16eb982fbc9a153",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.034918248653411865,
+ "mean_squared_error": 7.135589612516924e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03370162472128868,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18705520033836365,
+ "total_groups": 2048,
+ "update_index": 222,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "36a78f6a10ed2c1296901d28d7e42d4f762c56c5ff31d276ffe9beafff71e7fc",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04073761776089668,
+ "mean_squared_error": 6.410876949303201e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.0601000152528286,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16805729269981384,
+ "total_groups": 2048,
+ "update_index": 223,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "8626929bc0952bef84b51687d56d4b4ddfc1576fbbbe88e673e7364df5e17143",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0225193090736866,
+ "mean_squared_error": 4.834511173612555e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.07043817639350891,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12673380970954895,
+ "total_groups": 2048,
+ "update_index": 224,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "51b681d52f0e115e2ff01c6d2b2d1cb347a4d51935b71237b3a03ee31039b05d",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03770935535430908,
+ "mean_squared_error": 1.9973765574832214e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.05683425813913345,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5236002802848816,
+ "total_groups": 2048,
+ "update_index": 225,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "b0290c6385effd4df8b05b312dd4f76eae05949e346f8e66f3cf11bfe389a186",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025371819734573364,
+ "mean_squared_error": 8.653176450934552e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.08923041820526123,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22683782875537872,
+ "total_groups": 2048,
+ "update_index": 226,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "35b7f11c10e302da52dcfbfc3bfb4c6a50e36f9bd06808b3255f385af983edce",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02736808732151985,
+ "mean_squared_error": 1.4416559679375496e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.07690345495939255,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.377921462059021,
+ "total_groups": 2048,
+ "update_index": 227,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "7aec1eb4245b8636166383e648725cf06924d0b5ccf749cbda6da97d2b0ad9d2",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07786473631858826,
+ "mean_squared_error": 7.971816557983402e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.07577372342348099,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.089763879776001,
+ "total_groups": 2048,
+ "update_index": 228,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "c3288645627c8fc9c0285ca4edf142ea8614c7eb8d524028b635f3e8ca6862e2",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08347351849079132,
+ "mean_squared_error": 1.3884080544812605e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.08994479477405548,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.6396284103393555,
+ "total_groups": 2048,
+ "update_index": 229,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12202988564968109,
+ "mean_squared_error": 2.701158882700838e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08491815626621246,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 7.080925941467285,
+ "total_groups": 2048,
+ "update_index": 230,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09567481279373169,
+ "mean_squared_error": 1.5162224372033961e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.09144969284534454,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.9746861457824707,
+ "total_groups": 2048,
+ "update_index": 231,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10584137588739395,
+ "mean_squared_error": 1.4644666407548357e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.09245363622903824,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.8390114307403564,
+ "total_groups": 2048,
+ "update_index": 232,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "2c2b53c9e14998e3c0d208e359e348a864ccdcac31c956173af43adbe2843c8e",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05465175583958626,
+ "mean_squared_error": 2.0632558062061435e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.07406236231327057,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5408701300621033,
+ "total_groups": 2048,
+ "update_index": 233,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "b3aa391200866a1bafafa476aa7e7cc15a99a0ac7d61d1b4db2ac58efdf12154",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020458662882447243,
+ "mean_squared_error": 1.9141633345043374e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.013617006130516529,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0501786433160305,
+ "total_groups": 2048,
+ "update_index": 234,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "c9eb86e6d70019617083504f97e316ecf77f7da01411f819fa1c4c71d14633f2",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008825850673019886,
+ "mean_squared_error": 1.1829487789327686e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.027173833921551704,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03101029247045517,
+ "total_groups": 2048,
+ "update_index": 235,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "cc9389493d662e4762d38a119bccb4e6c667438e0211a7dbd5b9379cf7b344f1",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014164500869810581,
+ "mean_squared_error": 2.139785806321015e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.031405944377183914,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05609320104122162,
+ "total_groups": 2048,
+ "update_index": 236,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "2900f02054cad6fc34c86aaafa8ac73a8c42d44848b7a14a532470ef33aa45b8",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04488020017743111,
+ "mean_squared_error": 1.8213702333014226e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.02200949378311634,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4774612784385681,
+ "total_groups": 2048,
+ "update_index": 237,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "125cc2e2dd138258633717f598212c53222e1cd2f851c3c825d06ddb7936ca54",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026080742478370667,
+ "mean_squared_error": 6.991294867475517e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.03766145929694176,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1832726001739502,
+ "total_groups": 2048,
+ "update_index": 238,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "b530cb8917924023b6b116dfa54e51042184be461f13c53438751185b09daf00",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018956586718559265,
+ "mean_squared_error": 5.335978130460717e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.06922212988138199,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13987946510314941,
+ "total_groups": 2048,
+ "update_index": 239,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "b18222645379d6d433e2cba017ad588ed768b1e0add3f85870ea79bea68479a0",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.035340815782547,
+ "mean_squared_error": 7.443090339620539e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03411310538649559,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19511614739894867,
+ "total_groups": 2048,
+ "update_index": 240,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "b9bf13132c9491d53f7d65c3e6fb71154c0be8f61e9c0b4b706236b49d9dce31",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03474029153585434,
+ "mean_squared_error": 5.766518142991117e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.0541175901889801,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15116581320762634,
+ "total_groups": 2048,
+ "update_index": 241,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "dbc68c4589b1af4d10e720e5c6667cb44c44ee58a8280220f53d33e039bf8ad1",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017561201006174088,
+ "mean_squared_error": 2.731325139393448e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.05410978943109512,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0716000497341156,
+ "total_groups": 2048,
+ "update_index": 242,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "56494c444396d250d3830c05bd56316c2c032ccbda39cc38cf97ef4d94482a86",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03997600078582764,
+ "mean_squared_error": 1.6584292552579427e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.0521714985370636,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.43474727869033813,
+ "total_groups": 2048,
+ "update_index": 243,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "bcaaca2923acbaa1f723225477299412d4b1c13525ff5bae634aa9d5465f02dc",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02078910917043686,
+ "mean_squared_error": 5.860806595592294e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.07558214664459229,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15363752841949463,
+ "total_groups": 2048,
+ "update_index": 244,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "b0042edde1d6587ed2d7939d673eef38392cb009165640407178565cde8f1d92",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025301694869995117,
+ "mean_squared_error": 9.662285265221726e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.06365574896335602,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2532910108566284,
+ "total_groups": 2048,
+ "update_index": 245,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "e0b88888f12d9478bb9fe0a933d4decef239a9933d202a3e59bc43c54c96977a",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11764593422412872,
+ "mean_squared_error": 1.1131180144730024e-05,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.08885372430086136,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.9179720878601074,
+ "total_groups": 2048,
+ "update_index": 246,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "574eee02293d3ad054277d37060a668de673787ae16051713e14b72f48c0b672",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09711265563964844,
+ "mean_squared_error": 1.75801724253688e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.10326098650693893,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.608536720275879,
+ "total_groups": 2048,
+ "update_index": 247,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.20673388242721558,
+ "mean_squared_error": 3.5672048397827893e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.0973912924528122,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 9.351213455200195,
+ "total_groups": 2048,
+ "update_index": 248,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06256115436553955,
+ "mean_squared_error": 1.4044389899936505e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.09013932198286057,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.681652545928955,
+ "total_groups": 2048,
+ "update_index": 249,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09138720482587814,
+ "mean_squared_error": 1.4034531886863988e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.09161433577537537,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.6790683269500732,
+ "total_groups": 2048,
+ "update_index": 250,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "38122fcfc7b91099959c0f2e8436c730da8efd2c1f11769b6118a2609de514af",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04707665741443634,
+ "mean_squared_error": 2.5396159344381886e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.0840078666806221,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6657450795173645,
+ "total_groups": 2048,
+ "update_index": 251,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "3e8d8fcb7a51b063240bda40852955be5dbdbc866fb675b4c0531d3396ceddf8",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01670953631401062,
+ "mean_squared_error": 2.3505252499944618e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.015032297931611538,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06161760911345482,
+ "total_groups": 2048,
+ "update_index": 252,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "9da6b49ec4cda307ad2fd0105d481fd44e6d3ed975296ff5406ff3cfefb4aea6",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012396126985549927,
+ "mean_squared_error": 3.981007239417522e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.05187375470995903,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1043597161769867,
+ "total_groups": 2048,
+ "update_index": 253,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "0785d885938d542076c96310b431e608248daee71735ca469e6945a4f2fe8e62",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016737323254346848,
+ "mean_squared_error": 8.116098229038471e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.05845305696129799,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2127586454153061,
+ "total_groups": 2048,
+ "update_index": 254,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "2900f02054cad6fc34c86aaafa8ac73a8c42d44848b7a14a532470ef33aa45b8",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05015075206756592,
+ "mean_squared_error": 2.932794814114459e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.027908971533179283,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7688145637512207,
+ "total_groups": 2048,
+ "update_index": 255,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "54fa3cb83507c6fa7b3fd61eaef8f6a6a40e97b48399fc3531268845f6fd631c",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.032138366252183914,
+ "mean_squared_error": 9.346499609819148e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.04153546690940857,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.24501287937164307,
+ "total_groups": 2048,
+ "update_index": 256,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "0c4b9a457f3458f28bb1e01cf80e6ede303b3d181473ef72f0eda039aad4684b",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025805607438087463,
+ "mean_squared_error": 1.4344695955514908e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.1034882515668869,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.37603759765625,
+ "total_groups": 2048,
+ "update_index": 257,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "baff3445f708df795e80637ec861a1f088fc2be68b99f72640267b54337d3553",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0380963459610939,
+ "mean_squared_error": 1.1581016678974265e-06,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.042100436985492706,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.303589403629303,
+ "total_groups": 2048,
+ "update_index": 258,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "b3c7d5e49f7b1b17fd26fde6fb8d57326348cd8ff480e2f92c1f7dd421b14689",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06132113188505173,
+ "mean_squared_error": 6.407558430510107e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.057438887655735016,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16797029972076416,
+ "total_groups": 2048,
+ "update_index": 259,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "b02c380e5947dba1dac6b21612549174b9d908bf96a862e95b63832f7ad550a7",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02770933508872986,
+ "mean_squared_error": 5.742256234952947e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.07294438779354095,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15052980184555054,
+ "total_groups": 2048,
+ "update_index": 260,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "56494c444396d250d3830c05bd56316c2c032ccbda39cc38cf97ef4d94482a86",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04247765243053436,
+ "mean_squared_error": 1.8845006479750737e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.05472096428275108,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4940105378627777,
+ "total_groups": 2048,
+ "update_index": 261,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "c8b45a6da424024e1727883d8ac334f831dfa27b37bbe7758c926b371d978d4e",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026903539896011353,
+ "mean_squared_error": 9.132168656833528e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.08966811746358871,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23939432203769684,
+ "total_groups": 2048,
+ "update_index": 262,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "0cf5e8f2fb547a81f9023ea8c44e68924e7b58d4bfe9ce2550c735c224f808d9",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03820532560348511,
+ "mean_squared_error": 1.4090655895415694e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.07296272367238998,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.36937808990478516,
+ "total_groups": 2048,
+ "update_index": 263,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "4eed15d8a578bb1c54764091879eebd5df86aa792c99f391bd27db2adf5b59c9",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12024819850921631,
+ "mean_squared_error": 7.350429768848699e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.0705823302268982,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.9268710613250732,
+ "total_groups": 2048,
+ "update_index": 264,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "574eee02293d3ad054277d37060a668de673787ae16051713e14b72f48c0b672",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10681844502687454,
+ "mean_squared_error": 2.004561247304082e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.10627838224172592,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 5.2548370361328125,
+ "total_groups": 2048,
+ "update_index": 265,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.20810942351818085,
+ "mean_squared_error": 2.42386304307729e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07984990626573563,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 6.354011535644531,
+ "total_groups": 2048,
+ "update_index": 266,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10432841628789902,
+ "mean_squared_error": 1.5353745766333304e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.09303197264671326,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.024892330169678,
+ "total_groups": 2048,
+ "update_index": 267,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08405718207359314,
+ "mean_squared_error": 1.2323775081313215e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08695483207702637,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.2306036949157715,
+ "total_groups": 2048,
+ "update_index": 268,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "38122fcfc7b91099959c0f2e8436c730da8efd2c1f11769b6118a2609de514af",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03690226376056671,
+ "mean_squared_error": 1.6843561070345459e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.0689290314912796,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.441543847322464,
+ "total_groups": 2048,
+ "update_index": 269,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "67a20965a6e585e705b7ab1e323597acf9b34d3bf4e6375da8a7b13477138b6b",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018943166360259056,
+ "mean_squared_error": 2.456986294419039e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.015665041282773018,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06440842151641846,
+ "total_groups": 2048,
+ "update_index": 270,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "54990eea89fd6a50360142c7f414a750edb16ee76243e7ea4d64ce8bd8b5a261",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007511537056416273,
+ "mean_squared_error": 1.0759316637631855e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.028570597991347313,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02820490300655365,
+ "total_groups": 2048,
+ "update_index": 271,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "246e271af22391fdc7de44091adedc9013a7eb5b91e5a80190d5886550bcd06c",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012846305966377258,
+ "mean_squared_error": 3.4908873658423545e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.039277032017707825,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09151151776313782,
+ "total_groups": 2048,
+ "update_index": 272,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "856ba302d4eb5838fcd72726e707bdb861b5e4213d81def66266bbfbc8aeac16",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04569721221923828,
+ "mean_squared_error": 2.117443273164099e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.023658769205212593,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5550750494003296,
+ "total_groups": 2048,
+ "update_index": 273,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "7ce394f42e2ee0d291366bc31cf3f62e2675b6c3a44ebea2d811cf2671a0c40a",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.041669268161058426,
+ "mean_squared_error": 9.003363174997503e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.041082728654146194,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23601776361465454,
+ "total_groups": 2048,
+ "update_index": 274,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "e32af7a74073f394047d3ed513e0a9815d70e369d14786de0af4d7b680e1f59a",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022301718592643738,
+ "mean_squared_error": 6.807802606090263e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.0739661157131195,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1784624606370926,
+ "total_groups": 2048,
+ "update_index": 275,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "baff3445f708df795e80637ec861a1f088fc2be68b99f72640267b54337d3553",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025059953331947327,
+ "mean_squared_error": 5.287358249006502e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.028520239517092705,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13860492408275604,
+ "total_groups": 2048,
+ "update_index": 276,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "b3c7d5e49f7b1b17fd26fde6fb8d57326348cd8ff480e2f92c1f7dd421b14689",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04063696414232254,
+ "mean_squared_error": 2.1758607715582912e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03498511388897896,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05703888460993767,
+ "total_groups": 2048,
+ "update_index": 277,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "b02c380e5947dba1dac6b21612549174b9d908bf96a862e95b63832f7ad550a7",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02816063165664673,
+ "mean_squared_error": 2.1982134512654739e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.044621389359235764,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05762484669685364,
+ "total_groups": 2048,
+ "update_index": 278,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "56494c444396d250d3830c05bd56316c2c032ccbda39cc38cf97ef4d94482a86",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04589340090751648,
+ "mean_squared_error": 1.2083828551112674e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04355551302433014,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3167703151702881,
+ "total_groups": 2048,
+ "update_index": 279,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "88b3cb8daf1dea478200bab333016d192a98f625e29a47f11e9596a2e6407750",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026470117270946503,
+ "mean_squared_error": 5.362408046494238e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.06730116158723831,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14057230949401855,
+ "total_groups": 2048,
+ "update_index": 280,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "9c67108738826f7a5c3d33021c627b63bc6ca522c319fcbbf70019d514aa5f14",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03259482979774475,
+ "mean_squared_error": 8.84191081240715e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.056822218000888824,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.231785386800766,
+ "total_groups": 2048,
+ "update_index": 281,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "bc995d8fd46539e5f3d697347301900f49fa57ad1037cf479c795371c9a71fa6",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10237741470336914,
+ "mean_squared_error": 8.792565495241433e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.07573535293340683,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.3049182891845703,
+ "total_groups": 2048,
+ "update_index": 282,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "574eee02293d3ad054277d37060a668de673787ae16051713e14b72f48c0b672",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07552218437194824,
+ "mean_squared_error": 1.1432639439590275e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.07994072139263153,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.996997833251953,
+ "total_groups": 2048,
+ "update_index": 283,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12301459908485413,
+ "mean_squared_error": 1.9035818695556372e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07099264115095139,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.99012565612793,
+ "total_groups": 2048,
+ "update_index": 284,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07213369011878967,
+ "mean_squared_error": 1.0869105608435348e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.07735679298639297,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.849270820617676,
+ "total_groups": 2048,
+ "update_index": 285,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08289647847414017,
+ "mean_squared_error": 8.819102731649764e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07362890243530273,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.3118748664855957,
+ "total_groups": 2048,
+ "update_index": 286,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "38122fcfc7b91099959c0f2e8436c730da8efd2c1f11769b6118a2609de514af",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03255490958690643,
+ "mean_squared_error": 1.5731471876279102e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06664738059043884,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4123910963535309,
+ "total_groups": 2048,
+ "update_index": 287,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "82f51740cb3fe2883d922a63e3732cc013a6b040b3f9bf0fce3b2d350684629a",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024996738880872726,
+ "mean_squared_error": 2.7563314120016e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.01658138819038868,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07225557416677475,
+ "total_groups": 2048,
+ "update_index": 288,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "8054770505c43023af2628b99c49668442882ce969bf070a3774ba26db5129f4",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012771417386829853,
+ "mean_squared_error": 3.144652396258607e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.04535277187824249,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08243517577648163,
+ "total_groups": 2048,
+ "update_index": 289,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "334bd0d6ae7de369e65c048c0f936c46a4a3dc40a7cd8b89ec98157aebbd89d1",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015178542584180832,
+ "mean_squared_error": 6.064087756385561e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.05097038298845291,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15896642208099365,
+ "total_groups": 2048,
+ "update_index": 290,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "f27d020bf3daa06187e322b666349b0fd030454c8b6b16befb5673e9388272e6",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.042693138122558594,
+ "mean_squared_error": 1.9615035853348672e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.02271323651075363,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5141963958740234,
+ "total_groups": 2048,
+ "update_index": 291,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "9e0f675e1d2a61b3b1e5b714b4e24d766c9e7545b6e7f8da79017d35da762c70",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027369923889636993,
+ "mean_squared_error": 6.948268946871394e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.03612944856286049,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18214470148086548,
+ "total_groups": 2048,
+ "update_index": 292,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "524831f0c160ccda35085c98f1979ce91b615fff3aad7d9c69d40781b61bdd19",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01973988115787506,
+ "mean_squared_error": 7.050822432574932e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.0754602700471878,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1848330795764923,
+ "total_groups": 2048,
+ "update_index": 293,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "baff3445f708df795e80637ec861a1f088fc2be68b99f72640267b54337d3553",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027918875217437744,
+ "mean_squared_error": 4.0121130950865336e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02472735568881035,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10517513751983643,
+ "total_groups": 2048,
+ "update_index": 294,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "b3c7d5e49f7b1b17fd26fde6fb8d57326348cd8ff480e2f92c1f7dd421b14689",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03879456967115402,
+ "mean_squared_error": 2.1643904801749159e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03643707558512688,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.056738197803497314,
+ "total_groups": 2048,
+ "update_index": 295,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "b02c380e5947dba1dac6b21612549174b9d908bf96a862e95b63832f7ad550a7",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016314037144184113,
+ "mean_squared_error": 1.0909988645835256e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.03150174021720886,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.028599880635738373,
+ "total_groups": 2048,
+ "update_index": 296,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c4099bfd96561bedcd877975af822053433acd193aafa8dce68e820494d796d0",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03341227024793625,
+ "mean_squared_error": 8.727463409741176e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.036999862641096115,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2287852168083191,
+ "total_groups": 2048,
+ "update_index": 297,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "88b3cb8daf1dea478200bab333016d192a98f625e29a47f11e9596a2e6407750",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025134235620498657,
+ "mean_squared_error": 4.502534522998758e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.061022717505693436,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11803124099969864,
+ "total_groups": 2048,
+ "update_index": 298,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "9c67108738826f7a5c3d33021c627b63bc6ca522c319fcbbf70019d514aa5f14",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03600575402379036,
+ "mean_squared_error": 6.617705707867572e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04894468933343887,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17347918450832367,
+ "total_groups": 2048,
+ "update_index": 299,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "bc995d8fd46539e5f3d697347301900f49fa57ad1037cf479c795371c9a71fa6",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10485580563545227,
+ "mean_squared_error": 4.504820481088245e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05407699570059776,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.180911660194397,
+ "total_groups": 2048,
+ "update_index": 300,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "574eee02293d3ad054277d37060a668de673787ae16051713e14b72f48c0b672",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06604328751564026,
+ "mean_squared_error": 1.4406085028895177e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.08915478736162186,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.7764687538146973,
+ "total_groups": 2048,
+ "update_index": 301,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11683690547943115,
+ "mean_squared_error": 2.192908686993178e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07647503912448883,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 5.7485785484313965,
+ "total_groups": 2048,
+ "update_index": 302,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07826424390077591,
+ "mean_squared_error": 1.0314674000255764e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.07578949630260468,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.703929901123047,
+ "total_groups": 2048,
+ "update_index": 303,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06783504784107208,
+ "mean_squared_error": 1.0757754353107885e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08166098594665527,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.8200807571411133,
+ "total_groups": 2048,
+ "update_index": 304,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "38122fcfc7b91099959c0f2e8436c730da8efd2c1f11769b6118a2609de514af",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04354037344455719,
+ "mean_squared_error": 1.336025889031589e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06289453059434891,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3502311706542969,
+ "total_groups": 2048,
+ "update_index": 305,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "faa257b42e4f10fb78f661200141df3be28218e2b0267719a5e9d91ae196c1a9",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018702836707234383,
+ "mean_squared_error": 2.1438714270516357e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.01459963247179985,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0562003031373024,
+ "total_groups": 2048,
+ "update_index": 306,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "e34c8712b489b7e4ec7d630e517e3d13b1b329628ce377f5d4aa022effcd2c79",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0072202421724796295,
+ "mean_squared_error": 1.4638061429650406e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.034144338220357895,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03837279975414276,
+ "total_groups": 2048,
+ "update_index": 307,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "b1a3fb049d3b4268e679b69da9802338a10a4c8b5335b05e4dc6f244ed6fd349",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015988683328032494,
+ "mean_squared_error": 6.68164659600734e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.052482228726148605,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17515535652637482,
+ "total_groups": 2048,
+ "update_index": 308,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "23ca690792cac9d8eead6c3b2ba7fe8f0c221aca24ef401483639f2765b99ea8",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04475485160946846,
+ "mean_squared_error": 2.7662513275572564e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.02696234919130802,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7251561880111694,
+ "total_groups": 2048,
+ "update_index": 309,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "c8d55804fbd47d85994401269af039facb610cc4e3ec9521ba2552f78755e62a",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.028077788650989532,
+ "mean_squared_error": 9.609539119992405e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.04289240762591362,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2519083023071289,
+ "total_groups": 2048,
+ "update_index": 310,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "e0415a28bca99f0fffbb3e8bc2f85c52664a4f7308d72179b8420b95621d91d7",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01814664900302887,
+ "mean_squared_error": 8.337515282619279e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.08009353280067444,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21856296062469482,
+ "total_groups": 2048,
+ "update_index": 311,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "baff3445f708df795e80637ec861a1f088fc2be68b99f72640267b54337d3553",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02107742428779602,
+ "mean_squared_error": 3.8709896443833713e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.024276364594697952,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10147567093372345,
+ "total_groups": 2048,
+ "update_index": 312,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "1d73adc2913bb3f2a1fb28f60662c776ab4bbd3cb1028b47fbae0ba3d3a50b7e",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03664366155862808,
+ "mean_squared_error": 2.518225983294542e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.040529727935791016,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06601378321647644,
+ "total_groups": 2048,
+ "update_index": 313,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "b02c380e5947dba1dac6b21612549174b9d908bf96a862e95b63832f7ad550a7",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018178658559918404,
+ "mean_squared_error": 1.932789928105194e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04233231022953987,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0506669282913208,
+ "total_groups": 2048,
+ "update_index": 314,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c4099bfd96561bedcd877975af822053433acd193aafa8dce68e820494d796d0",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0299852192401886,
+ "mean_squared_error": 8.268083888651745e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03598199039697647,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2167428582906723,
+ "total_groups": 2048,
+ "update_index": 315,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "1e18b4dadf125ff488799aa790b40777764e02574070143076cff01115716496",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02624666877090931,
+ "mean_squared_error": 5.056284066995431e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.0649898424744606,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13254745304584503,
+ "total_groups": 2048,
+ "update_index": 316,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "bda73f462700c661bd7d07ea07e280ba0d7fd6b5b686d4b4d45c1c7917b44919",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03375454246997833,
+ "mean_squared_error": 8.172842740350461e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.05429994314908981,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21424616873264313,
+ "total_groups": 2048,
+ "update_index": 317,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "bc995d8fd46539e5f3d697347301900f49fa57ad1037cf479c795371c9a71fa6",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.059510380029678345,
+ "mean_squared_error": 3.338332135172095e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.046645861119031906,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8751237392425537,
+ "total_groups": 2048,
+ "update_index": 318,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "574eee02293d3ad054277d37060a668de673787ae16051713e14b72f48c0b672",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07122677564620972,
+ "mean_squared_error": 1.1928491403523367e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.07987529039382935,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.1269824504852295,
+ "total_groups": 2048,
+ "update_index": 319,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09678530693054199,
+ "mean_squared_error": 2.185939229093492e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07520103454589844,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 5.730308532714844,
+ "total_groups": 2048,
+ "update_index": 320,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10536310076713562,
+ "mean_squared_error": 9.876043804979417e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.07379724085330963,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.5889456272125244,
+ "total_groups": 2048,
+ "update_index": 321,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08310268819332123,
+ "mean_squared_error": 9.75775947154034e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07743718475103378,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.5579380989074707,
+ "total_groups": 2048,
+ "update_index": 322,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "1f2421ceb6a6f71bccea48b1c2a1e8c374be3e76c1e0fe972266ded8ad7b9e53",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.032461076974868774,
+ "mean_squared_error": 1.4069394183024997e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06376770883798599,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3688207268714905,
+ "total_groups": 2048,
+ "update_index": 323,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "8cac7a406f94f4a769706d334a9a4135dacb1ba1f4113dc97d65f23dde89da3f",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015997743234038353,
+ "mean_squared_error": 2.517340647045785e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.015736933797597885,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06599057465791702,
+ "total_groups": 2048,
+ "update_index": 324,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "cfe37adaefccd3cec795b2bd5dc0e6ddb29384bfb56699278500a8c335470b7d",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007412724196910858,
+ "mean_squared_error": 8.644225601983635e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02627861313521862,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02266031876206398,
+ "total_groups": 2048,
+ "update_index": 325,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "63df606bf1ddcce6c8c5d0f3782462934d11da72fbed039d00bd776c593472a8",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01632555201649666,
+ "mean_squared_error": 6.141629569356155e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.04993681609630585,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16099913418293,
+ "total_groups": 2048,
+ "update_index": 326,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "23ca690792cac9d8eead6c3b2ba7fe8f0c221aca24ef401483639f2765b99ea8",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04658383131027222,
+ "mean_squared_error": 1.9227431948820595e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.02246890775859356,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5040355920791626,
+ "total_groups": 2048,
+ "update_index": 327,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "c8d55804fbd47d85994401269af039facb610cc4e3ec9521ba2552f78755e62a",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03481164574623108,
+ "mean_squared_error": 6.9257646373444e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.03613855317234993,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18155476450920105,
+ "total_groups": 2048,
+ "update_index": 328,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "c8a97ae2cfe26f368021dfa117c7390c5b684955a5ee129ac2328448d687ff8c",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02404084801673889,
+ "mean_squared_error": 9.055543728209159e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.08105841279029846,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23738564550876617,
+ "total_groups": 2048,
+ "update_index": 329,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "baff3445f708df795e80637ec861a1f088fc2be68b99f72640267b54337d3553",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02798059582710266,
+ "mean_squared_error": 5.742588200519094e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02947945147752762,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15053850412368774,
+ "total_groups": 2048,
+ "update_index": 330,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "1d73adc2913bb3f2a1fb28f60662c776ab4bbd3cb1028b47fbae0ba3d3a50b7e",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.037824515253305435,
+ "mean_squared_error": 2.492755584171391e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04204549267888069,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06534609198570251,
+ "total_groups": 2048,
+ "update_index": 331,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "5d72a0517db5ff064b642035ed886c388a81e05e75eaf96252d5bf42515ed6c6",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.028981607407331467,
+ "mean_squared_error": 3.245908146709553e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.05412684753537178,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0850895345211029,
+ "total_groups": 2048,
+ "update_index": 332,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c4099bfd96561bedcd877975af822053433acd193aafa8dce68e820494d796d0",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03800910711288452,
+ "mean_squared_error": 1.137564822784043e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04202021658420563,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.29820579290390015,
+ "total_groups": 2048,
+ "update_index": 333,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "e09694d5e05952cb8659170cd1ef1524509d798863c0d654d61a9f37a38aa5c7",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029015541076660156,
+ "mean_squared_error": 5.643134954880225e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.06772805005311966,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14793139696121216,
+ "total_groups": 2048,
+ "update_index": 334,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "e3c03ab5f0db8670e4cb381a02c38ce0ceb5538d8e8db7756f80f30a1e41843b",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029013901948928833,
+ "mean_squared_error": 1.0324145023332676e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.06043369323015213,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2706412672996521,
+ "total_groups": 2048,
+ "update_index": 335,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "bc995d8fd46539e5f3d697347301900f49fa57ad1037cf479c795371c9a71fa6",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09721176326274872,
+ "mean_squared_error": 4.434320089785615e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05350999906659126,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1624304056167603,
+ "total_groups": 2048,
+ "update_index": 336,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "574eee02293d3ad054277d37060a668de673787ae16051713e14b72f48c0b672",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08775623142719269,
+ "mean_squared_error": 9.405928722117096e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06999329477548599,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.465707778930664,
+ "total_groups": 2048,
+ "update_index": 337,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08676590025424957,
+ "mean_squared_error": 1.5433473890880123e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06275087594985962,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.045792579650879,
+ "total_groups": 2048,
+ "update_index": 338,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07775484025478363,
+ "mean_squared_error": 1.0975387340295129e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.07676585763692856,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.877131938934326,
+ "total_groups": 2048,
+ "update_index": 339,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07899855822324753,
+ "mean_squared_error": 1.0540544280956965e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08029000461101532,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.7631404399871826,
+ "total_groups": 2048,
+ "update_index": 340,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "c2566e5fe69ec4828b44b772e9806e0f094e29a17dddf4c8e18e96a7a60bbc9a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0490071177482605,
+ "mean_squared_error": 1.5422988326463383e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.0665706917643547,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4043043851852417,
+ "total_groups": 2048,
+ "update_index": 341,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "3896260be3d08fbcadc47a7c9d01a18a1dda6e211160f399c0d55a346a3b7889",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01660718023777008,
+ "mean_squared_error": 1.3803560250380542e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.011731322854757309,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03618520498275757,
+ "total_groups": 2048,
+ "update_index": 342,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "5374ab2e2b20f9aecc79768519bd3a09e931df12f8e61a4f5d7b0c7eea733025",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.00528833270072937,
+ "mean_squared_error": 4.292455457743927e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.01921645738184452,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01125241443514824,
+ "total_groups": 2048,
+ "update_index": 343,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "efaf1dc8b877d75b7527af4e30d0a39d487b9bcb92df22710453d9a29fb76a55",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013475552201271057,
+ "mean_squared_error": 3.1726978022561525e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.03709791973233223,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08317036926746368,
+ "total_groups": 2048,
+ "update_index": 344,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "fa0151b438a32408a9c1bbb4ba2ffeeb052100f254ad56743b1cdbb072ecc551",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04755891114473343,
+ "mean_squared_error": 2.044762823061319e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.023230798542499542,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5360223054885864,
+ "total_groups": 2048,
+ "update_index": 345,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "919a5db968065085d86036ec44e47daa4d5774398307d999d31bcec74adcf141",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01826818659901619,
+ "mean_squared_error": 4.662386459131085e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.029666030779480934,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12222166359424591,
+ "total_groups": 2048,
+ "update_index": 346,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "152d4dc0b9c92979c4cb5001a69e9242b39a3139b6ac4627a4f4b4ecf0d94698",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024388164281845093,
+ "mean_squared_error": 5.656117991748033e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.06455466151237488,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14827173948287964,
+ "total_groups": 2048,
+ "update_index": 347,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "baff3445f708df795e80637ec861a1f088fc2be68b99f72640267b54337d3553",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04189863055944443,
+ "mean_squared_error": 7.23570167338039e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.032956503331661224,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1896795779466629,
+ "total_groups": 2048,
+ "update_index": 348,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "1d73adc2913bb3f2a1fb28f60662c776ab4bbd3cb1028b47fbae0ba3d3a50b7e",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05370187759399414,
+ "mean_squared_error": 2.93324035283149e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04677865654230118,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07689313590526581,
+ "total_groups": 2048,
+ "update_index": 349,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "e25281620489cb98834cec43df6ec6e549304d78f90416b9b9e191980cabac44",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023088699206709862,
+ "mean_squared_error": 3.5716755064640893e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.05716528743505478,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09362933039665222,
+ "total_groups": 2048,
+ "update_index": 350,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c4099bfd96561bedcd877975af822053433acd193aafa8dce68e820494d796d0",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03557126969099045,
+ "mean_squared_error": 1.1024992545571877e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.0413200818002224,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2890135645866394,
+ "total_groups": 2048,
+ "update_index": 351,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "40989c0aa1766a103aa20560adc088531f0f0e4d12db1699c353ffbafbf4de55",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021477147936820984,
+ "mean_squared_error": 5.329847567736579e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.06759848445653915,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13971875607967377,
+ "total_groups": 2048,
+ "update_index": 352,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "8a1487c51d6fe2b39db5570e1de66e81cfefd716fe5142f0686c6c143bdc9aed",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03195297718048096,
+ "mean_squared_error": 8.215071147787967e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.054544344544410706,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21535316109657288,
+ "total_groups": 2048,
+ "update_index": 353,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "bc995d8fd46539e5f3d697347301900f49fa57ad1037cf479c795371c9a71fa6",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05707651376724243,
+ "mean_squared_error": 3.975495019403752e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.050973448902368546,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0421521663665771,
+ "total_groups": 2048,
+ "update_index": 354,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "ec04807103bd2c1c926b7e0c9b11812c59bec65bb7af58fe1b17a5ed22edf92a",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0964726135134697,
+ "mean_squared_error": 1.073720159183722e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.0784633606672287,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.814692974090576,
+ "total_groups": 2048,
+ "update_index": 355,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09503474086523056,
+ "mean_squared_error": 1.812003756640479e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06800290942192078,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.750059127807617,
+ "total_groups": 2048,
+ "update_index": 356,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07342413067817688,
+ "mean_squared_error": 1.1568779882509261e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.07936269789934158,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.032686233520508,
+ "total_groups": 2048,
+ "update_index": 357,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0895293727517128,
+ "mean_squared_error": 1.1563051884877495e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08257746696472168,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.031184673309326,
+ "total_groups": 2048,
+ "update_index": 358,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "c2566e5fe69ec4828b44b772e9806e0f094e29a17dddf4c8e18e96a7a60bbc9a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0402839295566082,
+ "mean_squared_error": 1.728088818708784e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.0679747685790062,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.45300811529159546,
+ "total_groups": 2048,
+ "update_index": 359,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "b14febea6ac59d063f734c22d56bfda77a7f4ac1414cb640d1d1f1473801b556",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020268253982067108,
+ "mean_squared_error": 2.5838852479864727e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.01586364023387432,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06773500144481659,
+ "total_groups": 2048,
+ "update_index": 360,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "965a302626b0d33ad51977f165d034143c1fb516b989667700181f3289eff1a4",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007068715989589691,
+ "mean_squared_error": 8.820195063208303e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.026246074587106705,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.023121612146496773,
+ "total_groups": 2048,
+ "update_index": 361,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "004e7b96b94dc202f8f0cf03af6f5c9c14dead55a562de55fb4f04f871b8837b",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017457887530326843,
+ "mean_squared_error": 2.624840362841496e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.03455321863293648,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06880861520767212,
+ "total_groups": 2048,
+ "update_index": 362,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "b8de75c95379c32590f853f48d87ae4791080b793d75faca3d9af084a539790e",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04779571294784546,
+ "mean_squared_error": 3.021711563633289e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.028224535286426544,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.792123556137085,
+ "total_groups": 2048,
+ "update_index": 363,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "d8c620ba428fce97a10464d2e0095cdd87f96e05ee1dbf3491754037428d0b36",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022837519645690918,
+ "mean_squared_error": 4.363098469184479e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02918175235390663,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1143760085105896,
+ "total_groups": 2048,
+ "update_index": 364,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "70aa76f85a5d829723f3b21469236eb2150359800e3ba8088088a5eb323a79fd",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02223832905292511,
+ "mean_squared_error": 8.108739848466939e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.07748308032751083,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21256574988365173,
+ "total_groups": 2048,
+ "update_index": 365,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "a5eb9b5adb4036f284f56d466c3284201b605e4d3d74cbd366df65b75985d97d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.037115778774023056,
+ "mean_squared_error": 8.492683036820381e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.035850729793310165,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2226305902004242,
+ "total_groups": 2048,
+ "update_index": 366,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "faeafc2a4fac674a5b6d059d2e5caaf9c09fa2cdbe9a0297b681f81a5f437195",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03407922387123108,
+ "mean_squared_error": 5.60260502879828e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.06360113620758057,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14686892926692963,
+ "total_groups": 2048,
+ "update_index": 367,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "ab4062ff0379cf69f8805addd21e4e1ac590024deaee442d0ca8cadec1eba809",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020340636372566223,
+ "mean_squared_error": 4.962228672411584e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.06752577424049377,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13008184731006622,
+ "total_groups": 2048,
+ "update_index": 368,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c4099bfd96561bedcd877975af822053433acd193aafa8dce68e820494d796d0",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.045333586633205414,
+ "mean_squared_error": 1.4515454722641152e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04741375520825386,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3805139362812042,
+ "total_groups": 2048,
+ "update_index": 369,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "8acf771f302bb236a2772b98213d1a934619ae1b5d7642556b4c7a451df80246",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022980935871601105,
+ "mean_squared_error": 8.739770009924541e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.08625510334968567,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2291078269481659,
+ "total_groups": 2048,
+ "update_index": 370,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "e7a3714cac9c47136e4921d0083471a3fc298a3cff65ec266c7069b8918ced05",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03502793610095978,
+ "mean_squared_error": 1.4178358469507657e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.07006347924470901,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3716771602630615,
+ "total_groups": 2048,
+ "update_index": 371,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09668092429637909,
+ "mean_squared_error": 7.648925020475872e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.07079940289258957,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.005119800567627,
+ "total_groups": 2048,
+ "update_index": 372,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "ec04807103bd2c1c926b7e0c9b11812c59bec65bb7af58fe1b17a5ed22edf92a",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07010464370250702,
+ "mean_squared_error": 1.5046283806441352e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.0935802012681961,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.9442930221557617,
+ "total_groups": 2048,
+ "update_index": 373,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.15780699253082275,
+ "mean_squared_error": 2.4244880478363484e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07880960404872894,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 6.355649948120117,
+ "total_groups": 2048,
+ "update_index": 374,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08884888887405396,
+ "mean_squared_error": 1.1778333828260656e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.08014833182096481,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.0876195430755615,
+ "total_groups": 2048,
+ "update_index": 375,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09217619895935059,
+ "mean_squared_error": 1.3976690752315335e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08816059678792953,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.663905620574951,
+ "total_groups": 2048,
+ "update_index": 376,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "38122fcfc7b91099959c0f2e8436c730da8efd2c1f11769b6118a2609de514af",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0580582357943058,
+ "mean_squared_error": 3.055111847061198e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.08920245617628098,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8008792400360107,
+ "total_groups": 2048,
+ "update_index": 377,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "dcc8dbf2d89274d8e7bba10df03c62246a577a82457aaa92516042ca268a896c",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023866543546319008,
+ "mean_squared_error": 4.728011333554605e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.020987261086702347,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12394198030233383,
+ "total_groups": 2048,
+ "update_index": 378,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "9a69adc012106432a8248cd9f660e7e5201c52c8e6143f975b3b178ebd19ee1e",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0078110769391059875,
+ "mean_squared_error": 1.0978487807733472e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02647578716278076,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.028779447078704834,
+ "total_groups": 2048,
+ "update_index": 379,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "81956c68f83b9d5acd891d1bf4166e62642393a90fd55767f20f839314bf8415",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012568850070238113,
+ "mean_squared_error": 2.9817272206855705e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.03614354878664017,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07816419005393982,
+ "total_groups": 2048,
+ "update_index": 380,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "b8de75c95379c32590f853f48d87ae4791080b793d75faca3d9af084a539790e",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04280060529708862,
+ "mean_squared_error": 2.2264887320488924e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.024268871173262596,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5836606621742249,
+ "total_groups": 2048,
+ "update_index": 381,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "26aa072e322e214aa0f028c2734aa2156005fbe6323d87250b9b80949093ce64",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029560554772615433,
+ "mean_squared_error": 5.483879021994653e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.032694511115550995,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14375659823417664,
+ "total_groups": 2048,
+ "update_index": 382,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "5f832859b015368ad49fec6305ccdf3195604462f28d5e0530f6247e9a660877",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0206034854054451,
+ "mean_squared_error": 6.422449132514885e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.06887272745370865,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1683606505393982,
+ "total_groups": 2048,
+ "update_index": 383,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "a5eb9b5adb4036f284f56d466c3284201b605e4d3d74cbd366df65b75985d97d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025908201932907104,
+ "mean_squared_error": 7.10243057255866e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03283977508544922,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18618595600128174,
+ "total_groups": 2048,
+ "update_index": 384,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "e7d691c85cacf6ffed926b4ecc4b3dfaeb3a841bc42f81999652f0450edce19d",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.052048102021217346,
+ "mean_squared_error": 7.871659022384847e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.06306399405002594,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20635081827640533,
+ "total_groups": 2048,
+ "update_index": 385,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "ab4062ff0379cf69f8805addd21e4e1ac590024deaee442d0ca8cadec1eba809",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027317672967910767,
+ "mean_squared_error": 3.102639709595678e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.05322850123047829,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08133383840322495,
+ "total_groups": 2048,
+ "update_index": 386,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c4099bfd96561bedcd877975af822053433acd193aafa8dce68e820494d796d0",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03905820846557617,
+ "mean_squared_error": 1.0481433037057286e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04019785299897194,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2747644782066345,
+ "total_groups": 2048,
+ "update_index": 387,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "aa2cf617d51f2bde239b42c1bdd356b47bf82e2809b4cddb8d240258b110333d",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.031290799379348755,
+ "mean_squared_error": 6.448455565077893e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.07065028697252274,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16904239356517792,
+ "total_groups": 2048,
+ "update_index": 388,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "7b828716b7bb68a91e525b95b26d9f94ed11fcd6af43bafb78fdc42964fd06b7",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03098900616168976,
+ "mean_squared_error": 1.191796172861359e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.06289426982402802,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3124222159385681,
+ "total_groups": 2048,
+ "update_index": 389,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.15551435947418213,
+ "mean_squared_error": 8.123480256472249e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.07315081357955933,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.129521608352661,
+ "total_groups": 2048,
+ "update_index": 390,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "ec04807103bd2c1c926b7e0c9b11812c59bec65bb7af58fe1b17a5ed22edf92a",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07805200666189194,
+ "mean_squared_error": 1.22449719128781e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.08374659717082977,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.2099459171295166,
+ "total_groups": 2048,
+ "update_index": 391,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.18391931056976318,
+ "mean_squared_error": 2.2165793780004606e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07478991150856018,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 5.810629844665527,
+ "total_groups": 2048,
+ "update_index": 392,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "d902bd8024c9a649776b3e0e5b4747147291c47602d1f4fe0bcbcd40b22483e9",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11570107936859131,
+ "mean_squared_error": 8.829521902953275e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06873084604740143,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.314606189727783,
+ "total_groups": 2048,
+ "update_index": 393,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09986858069896698,
+ "mean_squared_error": 1.0657889106369112e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.0757361426949501,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.7939016819000244,
+ "total_groups": 2048,
+ "update_index": 394,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "38122fcfc7b91099959c0f2e8436c730da8efd2c1f11769b6118a2609de514af",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03970812261104584,
+ "mean_squared_error": 1.849901991590741e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06735335290431976,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.48494070768356323,
+ "total_groups": 2048,
+ "update_index": 395,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "e8a494b9f8c9607d2cabc6b01cc4aac1f35b71dca3fc5445b4cd23890bd7499e",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016603119671344757,
+ "mean_squared_error": 1.6398226421188156e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.012404314242303371,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04298696666955948,
+ "total_groups": 2048,
+ "update_index": 396,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "f42a5b504ca59021e5bb7a81864fab752e0a3b508f77d3b3fdb25c05c4b21636",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.009887132793664932,
+ "mean_squared_error": 9.281421853302163e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.024858081713318825,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.024330690503120422,
+ "total_groups": 2048,
+ "update_index": 397,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "b21c427226b460c1aad07951c3242d225b4dd1c21d6dafc4486dca0ac5a33fcd",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015221454203128815,
+ "mean_squared_error": 2.715774769512791e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.03463458642363548,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07119240611791611,
+ "total_groups": 2048,
+ "update_index": 398,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "b8de75c95379c32590f853f48d87ae4791080b793d75faca3d9af084a539790e",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04158011078834534,
+ "mean_squared_error": 1.8492511344447848e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.02214803732931614,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4847700893878937,
+ "total_groups": 2048,
+ "update_index": 399,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "d16d97d875de5a8762d029fcb589bbc1506c0294c15b2770d5cfc20f0509459b",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030232150107622147,
+ "mean_squared_error": 6.821395004408259e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.0361069031059742,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17881877720355988,
+ "total_groups": 2048,
+ "update_index": 400,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "9c7e92702024f4ad1679895e3c8d45d925ba691c77b050c4e0562c3bb6e289c4",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01983579248189926,
+ "mean_squared_error": 5.719394380321319e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.06975855678319931,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14993049204349518,
+ "total_groups": 2048,
+ "update_index": 401,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "c87f43f175a399cf0f85dea7245f61274299c8b07f03c62c1fb9f8cf0b243af5",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03901384025812149,
+ "mean_squared_error": 6.90559886606934e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03252150118350983,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1810261309146881,
+ "total_groups": 2048,
+ "update_index": 402,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "e7d691c85cacf6ffed926b4ecc4b3dfaeb3a841bc42f81999652f0450edce19d",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.041059140115976334,
+ "mean_squared_error": 4.27400749458684e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.046695347875356674,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11204054206609726,
+ "total_groups": 2048,
+ "update_index": 403,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "ab4062ff0379cf69f8805addd21e4e1ac590024deaee442d0ca8cadec1eba809",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026254141703248024,
+ "mean_squared_error": 2.858098469005199e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.05207179859280586,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07492333650588989,
+ "total_groups": 2048,
+ "update_index": 404,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c4099bfd96561bedcd877975af822053433acd193aafa8dce68e820494d796d0",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03537410497665405,
+ "mean_squared_error": 1.1038182492484339e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.041117653250694275,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.28935933113098145,
+ "total_groups": 2048,
+ "update_index": 405,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "e010c2f18bd762e2480b2b6ae4a0905aac2e2a85d7f73ed4c8e491706e478549",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03307792544364929,
+ "mean_squared_error": 4.99471298098797e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.06172506883740425,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13093340396881104,
+ "total_groups": 2048,
+ "update_index": 406,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "4d8e13cd382881b19711a0adb05afbc5ca7a3892925f9c60493af0d476734ab2",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026865988969802856,
+ "mean_squared_error": 7.918683309071639e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.05147704482078552,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20758353173732758,
+ "total_groups": 2048,
+ "update_index": 407,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12364828586578369,
+ "mean_squared_error": 5.4081592679722235e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.060235291719436646,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.4177165031433105,
+ "total_groups": 2048,
+ "update_index": 408,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "92d382acb406de728b4288facedd001e6aa07367af8d7df81cda4096228c8c86",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06773967295885086,
+ "mean_squared_error": 1.4006409401190467e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.09063611924648285,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.671696186065674,
+ "total_groups": 2048,
+ "update_index": 409,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.14171019196510315,
+ "mean_squared_error": 3.241546073695645e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08948440104722977,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 8.497518539428711,
+ "total_groups": 2048,
+ "update_index": 410,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07824134081602097,
+ "mean_squared_error": 1.1215122867724858e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.07718420773744583,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.9399771690368652,
+ "total_groups": 2048,
+ "update_index": 411,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10552429407835007,
+ "mean_squared_error": 1.1750530575227458e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.0803295150399208,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.0803310871124268,
+ "total_groups": 2048,
+ "update_index": 412,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "38122fcfc7b91099959c0f2e8436c730da8efd2c1f11769b6118a2609de514af",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.042944908142089844,
+ "mean_squared_error": 1.8562451487014187e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.0683748722076416,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4866035282611847,
+ "total_groups": 2048,
+ "update_index": 413,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "972e390c8431622fbaac596eab0bfed6dd3660d1538911a43f0e6a064f19fcd8",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029052674770355225,
+ "mean_squared_error": 2.68040110995571e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.01577003113925457,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07026510685682297,
+ "total_groups": 2048,
+ "update_index": 414,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "9ca9dac2487f60fd0f3d5add8fe0444b3630d72b7ca752ae22d7d7fdd599b730",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008885648101568222,
+ "mean_squared_error": 1.509018972001286e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.03348160907626152,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03955802693963051,
+ "total_groups": 2048,
+ "update_index": 415,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "578c6dd0b8b635bad4517c751b142a150cfd305503b382a0d130eb7332e0fbaa",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02470402419567108,
+ "mean_squared_error": 6.101689677961986e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.0483868382871151,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15995213389396667,
+ "total_groups": 2048,
+ "update_index": 416,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "ce303c167e59dedfb314fdeba79a5e33c9585b6fb8ccbc23276d27b1e4c71eb1",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04165828227996826,
+ "mean_squared_error": 2.5297972570115235e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.025902310386300087,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6631711721420288,
+ "total_groups": 2048,
+ "update_index": 417,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "58ec2c67a674178826a1826d1b63fad08a4097d5054628f114328794512e6c49",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030459478497505188,
+ "mean_squared_error": 1.330741042693262e-06,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.04841456934809685,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.34884577989578247,
+ "total_groups": 2048,
+ "update_index": 418,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "10c924e0abe5e8c1e1192877d9e63596b95afa2a92db28912a4fb97911230701",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027178220450878143,
+ "mean_squared_error": 1.198755057885137e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.09580890834331512,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.31424644589424133,
+ "total_groups": 2048,
+ "update_index": 419,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "c87f43f175a399cf0f85dea7245f61274299c8b07f03c62c1fb9f8cf0b243af5",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05094406008720398,
+ "mean_squared_error": 9.063240327122912e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03711022436618805,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23758740723133087,
+ "total_groups": 2048,
+ "update_index": 420,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "335985b7735eb08904a3f1faac0f2389c118ff8c5d6b6679220c89d33786d2c0",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04582344368100166,
+ "mean_squared_error": 6.531787448693649e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.060947906225919724,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1712268888950348,
+ "total_groups": 2048,
+ "update_index": 421,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "d78add8e759b9c55b0cc8f1c13955f1be87a0bb591b8472acb91e2dfecd087b6",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02610928937792778,
+ "mean_squared_error": 4.150467134422797e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.0639556497335434,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10880200564861298,
+ "total_groups": 2048,
+ "update_index": 422,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c4099bfd96561bedcd877975af822053433acd193aafa8dce68e820494d796d0",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05107441544532776,
+ "mean_squared_error": 1.4840170479146764e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.047335077077150345,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3890261650085449,
+ "total_groups": 2048,
+ "update_index": 423,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "f93283766139e154d113366d5e6c855bd19c7b995bb95043d4cbb663ef4bd706",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.028127960860729218,
+ "mean_squared_error": 7.950554845592706e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.07670731842517853,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20841902494430542,
+ "total_groups": 2048,
+ "update_index": 424,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "c55d21dd13550f38a8fc51d65fa7eae7197934d4fc59d7c3abc6ee83f707cec7",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030392155051231384,
+ "mean_squared_error": 1.1234875501031638e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.06053853780031204,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2945155203342438,
+ "total_groups": 2048,
+ "update_index": 425,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.18401551246643066,
+ "mean_squared_error": 7.657038622710388e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.07123666256666183,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.007246732711792,
+ "total_groups": 2048,
+ "update_index": 426,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "92d382acb406de728b4288facedd001e6aa07367af8d7df81cda4096228c8c86",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07822270691394806,
+ "mean_squared_error": 1.842461097112391e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.10151591897010803,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.829901218414307,
+ "total_groups": 2048,
+ "update_index": 427,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.19481538236141205,
+ "mean_squared_error": 3.240109799662605e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08840034902095795,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 8.493753433227539,
+ "total_groups": 2048,
+ "update_index": 428,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.13244199752807617,
+ "mean_squared_error": 1.4734953765582759e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.08793630450963974,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.8626797199249268,
+ "total_groups": 2048,
+ "update_index": 429,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11464465409517288,
+ "mean_squared_error": 1.3524258974939585e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08659351617097855,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.5453033447265625,
+ "total_groups": 2048,
+ "update_index": 430,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "74dd89de5091be37a4a95df592cf55b94c7d480cd0ef570950add4b978054d0d",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04311389476060867,
+ "mean_squared_error": 1.9676717784022912e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.07371477037668228,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5158133506774902,
+ "total_groups": 2048,
+ "update_index": 431,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "4c48662bf6d7d6357c382c0b26cd2a64a6dcb3f8d6acde5d0bdd023aa65ac8d7",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02078181505203247,
+ "mean_squared_error": 2.592962573544355e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.015424543060362339,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06797295808792114,
+ "total_groups": 2048,
+ "update_index": 432,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "a60b9aad096ba6b1d88d1a2d6d40edde133d017c77d25f8784244481de393ccb",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.009251187555491924,
+ "mean_squared_error": 2.297402517115188e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.0401732437312603,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06022502854466438,
+ "total_groups": 2048,
+ "update_index": 433,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "d65108786f3c03fd273e72ec7857f66414ca69d91061976dd5fc42a41583970b",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019320346415042877,
+ "mean_squared_error": 6.215804546627623e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.04839014261960983,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16294358670711517,
+ "total_groups": 2048,
+ "update_index": 434,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "4042908d6cab0a8eeaf6c83dd133b8c24ff19a2de7802e2f7c20d2d3d1d4b472",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05300099030137062,
+ "mean_squared_error": 2.4981022761494387e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.025643840432167053,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6548625230789185,
+ "total_groups": 2048,
+ "update_index": 435,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "f2c90b38125dcd5db68d1fdb9083eb06309dd35aa702959f9067d1dc1c5cdcbd",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02846795693039894,
+ "mean_squared_error": 8.869060366123449e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.039539635181427,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23249709606170654,
+ "total_groups": 2048,
+ "update_index": 436,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "5517d0c58d88e597a92d50577601f0a167e9ddc2a44a149e287df0be393c97f7",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03098641335964203,
+ "mean_squared_error": 6.305406259343727e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.06833609938621521,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16529244184494019,
+ "total_groups": 2048,
+ "update_index": 437,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "c87f43f175a399cf0f85dea7245f61274299c8b07f03c62c1fb9f8cf0b243af5",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03147916868329048,
+ "mean_squared_error": 5.253340304989251e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.028238967061042786,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13771316409111023,
+ "total_groups": 2048,
+ "update_index": 438,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "335985b7735eb08904a3f1faac0f2389c118ff8c5d6b6679220c89d33786d2c0",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.049989596009254456,
+ "mean_squared_error": 3.0565246333935647e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04268152639269829,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08012495934963226,
+ "total_groups": 2048,
+ "update_index": 439,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "87c8cc21533508dae1e0d47dbc207e86957ea35427c0cf4f0bc7e0b94b827ee7",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02438490279018879,
+ "mean_squared_error": 2.6155279897466244e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.05066082626581192,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06856449693441391,
+ "total_groups": 2048,
+ "update_index": 440,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c4099bfd96561bedcd877975af822053433acd193aafa8dce68e820494d796d0",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03642359375953674,
+ "mean_squared_error": 1.074592773875338e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04033343866467476,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2816980481147766,
+ "total_groups": 2048,
+ "update_index": 441,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "ee785e24206656d46923bc73d39e77b9c0d8962498ba23565de201def9931fdb",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.028644848614931107,
+ "mean_squared_error": 4.972409328729555e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05991215631365776,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13034872710704803,
+ "total_groups": 2048,
+ "update_index": 442,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "c55d21dd13550f38a8fc51d65fa7eae7197934d4fc59d7c3abc6ee83f707cec7",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027928128838539124,
+ "mean_squared_error": 8.60513921452366e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.052802279591560364,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22557856142520905,
+ "total_groups": 2048,
+ "update_index": 443,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08388546109199524,
+ "mean_squared_error": 5.791354851680808e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.06168045476078987,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.5181689262390137,
+ "total_groups": 2048,
+ "update_index": 444,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "65b07e2869da7a46817a2841f1c293a23e2f778cfabd42c89c0dc82e701dbda7",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09411194920539856,
+ "mean_squared_error": 1.2551923646242358e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.0821542888879776,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.2904114723205566,
+ "total_groups": 2048,
+ "update_index": 445,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11887611448764801,
+ "mean_squared_error": 1.87782607099507e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06701744347810745,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.922608375549316,
+ "total_groups": 2048,
+ "update_index": 446,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10111910849809647,
+ "mean_squared_error": 1.2237648661539424e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.07969728112220764,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.208026170730591,
+ "total_groups": 2048,
+ "update_index": 447,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07588353753089905,
+ "mean_squared_error": 1.3440261682262644e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.08629325032234192,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.5232839584350586,
+ "total_groups": 2048,
+ "update_index": 448,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "74dd89de5091be37a4a95df592cf55b94c7d480cd0ef570950add4b978054d0d",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04608866572380066,
+ "mean_squared_error": 1.4911240668880055e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06473775207996368,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3908892273902893,
+ "total_groups": 2048,
+ "update_index": 449,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "48d7486b0352a3e74e0ad2d88c916059068e885998f6c576145626d67651055a",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025905855000019073,
+ "mean_squared_error": 3.745497849649837e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.01864301599562168,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09818597882986069,
+ "total_groups": 2048,
+ "update_index": 450,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "9f50db0e36c656a4973fbbbb79c59f99a672af53acd5a945076482ee89129035",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.00942612998187542,
+ "mean_squared_error": 1.5938630326672865e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.03350279480218887,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.041782163083553314,
+ "total_groups": 2048,
+ "update_index": 451,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "d9df2188327d6816e8e1bed21c29a6201997905e8e63f73d282a97b96e6fe05d",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018550772219896317,
+ "mean_squared_error": 5.315074531608843e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.04437396302819252,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13933148980140686,
+ "total_groups": 2048,
+ "update_index": 452,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "db084daa520463b3a91a743d444832ce5bde4ca958d75332aa6f76cd4f97c1d9",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.049614280462265015,
+ "mean_squared_error": 2.986510025948519e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.027983369305729866,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7828956842422485,
+ "total_groups": 2048,
+ "update_index": 453,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "f2c90b38125dcd5db68d1fdb9083eb06309dd35aa702959f9067d1dc1c5cdcbd",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027316220104694366,
+ "mean_squared_error": 4.0236147924588295e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.026823390275239944,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10547664761543274,
+ "total_groups": 2048,
+ "update_index": 454,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "fee224bed12dc18057ce347d4c83ebb94b5ef3c3a45a0882dd8a1da3b1f2b2f6",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02684975229203701,
+ "mean_squared_error": 8.307240477734013e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.07681529223918915,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2177693247795105,
+ "total_groups": 2048,
+ "update_index": 455,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "163b4c976d6fd9149f11ed819521987bc631af179eaad299decd7eaeefeab51d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04351646080613136,
+ "mean_squared_error": 8.220300742323161e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03526479750871658,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21549025177955627,
+ "total_groups": 2048,
+ "update_index": 456,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "335985b7735eb08904a3f1faac0f2389c118ff8c5d6b6679220c89d33786d2c0",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04140724241733551,
+ "mean_squared_error": 2.6160591914958786e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03973638266324997,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06857842206954956,
+ "total_groups": 2048,
+ "update_index": 457,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "e1a60c2945928e7f9acd645ae5d73798119f3b07ea0d813cda2c83423707c558",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013856770470738411,
+ "mean_squared_error": 2.832477434822067e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.05251722037792206,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0742516964673996,
+ "total_groups": 2048,
+ "update_index": 458,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c4099bfd96561bedcd877975af822053433acd193aafa8dce68e820494d796d0",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04168054461479187,
+ "mean_squared_error": 1.3813041732646525e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04567904397845268,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.36210060119628906,
+ "total_groups": 2048,
+ "update_index": 459,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "606a61ff53ad9cac4144561b0a72244bff833b9a73ae9829ba2ec1615d534263",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03671732544898987,
+ "mean_squared_error": 5.829435849591391e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.06297241896390915,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15281516313552856,
+ "total_groups": 2048,
+ "update_index": 460,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "c55d21dd13550f38a8fc51d65fa7eae7197934d4fc59d7c3abc6ee83f707cec7",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03145790100097656,
+ "mean_squared_error": 8.702689910933259e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.052523862570524216,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22813579440116882,
+ "total_groups": 2048,
+ "update_index": 461,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0487908273935318,
+ "mean_squared_error": 2.1643948002747493e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.03766413778066635,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5673831105232239,
+ "total_groups": 2048,
+ "update_index": 462,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "65b07e2869da7a46817a2841f1c293a23e2f778cfabd42c89c0dc82e701dbda7",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09773170948028564,
+ "mean_squared_error": 8.23095251689665e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06540582329034805,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.1576948165893555,
+ "total_groups": 2048,
+ "update_index": 463,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08214107155799866,
+ "mean_squared_error": 1.1482544323371258e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.052245933562517166,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.010080099105835,
+ "total_groups": 2048,
+ "update_index": 464,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09779155254364014,
+ "mean_squared_error": 8.485140824632253e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06612970679998398,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.2243287563323975,
+ "total_groups": 2048,
+ "update_index": 465,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08159029483795166,
+ "mean_squared_error": 7.910713975434192e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06634613871574402,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.0737462043762207,
+ "total_groups": 2048,
+ "update_index": 466,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "74dd89de5091be37a4a95df592cf55b94c7d480cd0ef570950add4b978054d0d",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04420962929725647,
+ "mean_squared_error": 1.2165994576207595e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.05819326639175415,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3189242482185364,
+ "total_groups": 2048,
+ "update_index": 467,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "067b6b8bc6e0920a46144af0157be47cda5112f9464cad6241ea304643789ac4",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016577526926994324,
+ "mean_squared_error": 3.7513979123104946e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.019035954028367996,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09834064543247223,
+ "total_groups": 2048,
+ "update_index": 468,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "db5511de4810479950df527984ef02bab6fae9cefff17258c8b48cef39b735a7",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011375201866030693,
+ "mean_squared_error": 1.1497488117129251e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02896096184849739,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.030139975249767303,
+ "total_groups": 2048,
+ "update_index": 469,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "bfb966d7e91d60d31723db6571a1e24fb82e4bdbbcb4697427e0bbe0d208c9a8",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020270049571990967,
+ "mean_squared_error": 3.734639335561951e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.03746791183948517,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09790132939815521,
+ "total_groups": 2048,
+ "update_index": 470,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "db084daa520463b3a91a743d444832ce5bde4ca958d75332aa6f76cd4f97c1d9",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.043761879205703735,
+ "mean_squared_error": 1.3229812338977354e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.018615221604704857,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.34681159257888794,
+ "total_groups": 2048,
+ "update_index": 471,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "18ed9f49dd628208ba7816d4502d0e81c900ab6e16e00acd037584d38dcfd32a",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01682397909462452,
+ "mean_squared_error": 3.7146276099520037e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.025815166532993317,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0973767340183258,
+ "total_groups": 2048,
+ "update_index": 472,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "b3e24a2da1ba048aacfc0e61049864015817ac7636873200e22a4403f35f7de3",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024119462817907333,
+ "mean_squared_error": 5.325605343386997e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.06084698811173439,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13960754871368408,
+ "total_groups": 2048,
+ "update_index": 473,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "163b4c976d6fd9149f11ed819521987bc631af179eaad299decd7eaeefeab51d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03688553720712662,
+ "mean_squared_error": 6.643934966632514e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03151572123169899,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17416676878929138,
+ "total_groups": 2048,
+ "update_index": 474,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "335985b7735eb08904a3f1faac0f2389c118ff8c5d6b6679220c89d33786d2c0",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03732937574386597,
+ "mean_squared_error": 3.501218373003212e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.046569351106882095,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0917823389172554,
+ "total_groups": 2048,
+ "update_index": 475,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "e1a60c2945928e7f9acd645ae5d73798119f3b07ea0d813cda2c83423707c558",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021943217143416405,
+ "mean_squared_error": 2.532948428779491e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.049213770776987076,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0663997232913971,
+ "total_groups": 2048,
+ "update_index": 476,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c4099bfd96561bedcd877975af822053433acd193aafa8dce68e820494d796d0",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04120102524757385,
+ "mean_squared_error": 6.503436225102632e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03131914138793945,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17048367857933044,
+ "total_groups": 2048,
+ "update_index": 477,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "2d6b11a71dacbb843e803b45a3454d94718a4e703efb8713ab1cddfc768fe2a1",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03677665442228317,
+ "mean_squared_error": 5.420191655503004e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05864271521568298,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14208707213401794,
+ "total_groups": 2048,
+ "update_index": 478,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "c55d21dd13550f38a8fc51d65fa7eae7197934d4fc59d7c3abc6ee83f707cec7",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02969592809677124,
+ "mean_squared_error": 5.429906195786316e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04140736535191536,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1423417329788208,
+ "total_groups": 2048,
+ "update_index": 479,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10088443756103516,
+ "mean_squared_error": 1.7673963839115459e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.034099508076906204,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4633123576641083,
+ "total_groups": 2048,
+ "update_index": 480,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "65b07e2869da7a46817a2841f1c293a23e2f778cfabd42c89c0dc82e701dbda7",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07117950916290283,
+ "mean_squared_error": 5.594718459178694e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.05396239832043648,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.4666218757629395,
+ "total_groups": 2048,
+ "update_index": 481,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09971845149993896,
+ "mean_squared_error": 1.1495176295284182e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.0522870197892189,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.0133914947509766,
+ "total_groups": 2048,
+ "update_index": 482,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09225252270698547,
+ "mean_squared_error": 6.822424438723829e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05931265279650688,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.7884576320648193,
+ "total_groups": 2048,
+ "update_index": 483,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08437478542327881,
+ "mean_squared_error": 7.2896491474239156e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06382331997156143,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.910937786102295,
+ "total_groups": 2048,
+ "update_index": 484,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "74dd89de5091be37a4a95df592cf55b94c7d480cd0ef570950add4b978054d0d",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0412813276052475,
+ "mean_squared_error": 1.0204400950897252e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.0525677315890789,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2675022482872009,
+ "total_groups": 2048,
+ "update_index": 485,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "09b6f66cd005cb240c1e5e8508715474a0ac67cf44b194967ff107dc6af65ea3",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021609969437122345,
+ "mean_squared_error": 4.1705990838636353e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.019843243062496185,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10932975262403488,
+ "total_groups": 2048,
+ "update_index": 486,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "47f4825d7b4187a314e6a621ecb6edbfec215c933df2cdd3b9bc5a91a520ff69",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008696337230503559,
+ "mean_squared_error": 1.6620604981198994e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.03388175368309021,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04356991872191429,
+ "total_groups": 2048,
+ "update_index": 487,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "a33ac6c20c52d5cf02f9d62f38d85044af7ffc46085ff8271e411089d6db1ed9",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021396832540631294,
+ "mean_squared_error": 6.162889576444286e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.047388311475515366,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1615564525127411,
+ "total_groups": 2048,
+ "update_index": 488,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "11f369e2249426370daecc090627cf45c3033c636ed519e231ed461fc2368b8f",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0451945960521698,
+ "mean_squared_error": 2.726290176724433e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.026729479432106018,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7146806120872498,
+ "total_groups": 2048,
+ "update_index": 489,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "f2c90b38125dcd5db68d1fdb9083eb06309dd35aa702959f9067d1dc1c5cdcbd",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.034792009741067886,
+ "mean_squared_error": 1.0389270528321504e-06,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.04258507862687111,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2723484933376312,
+ "total_groups": 2048,
+ "update_index": 490,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "61ab01047b034831553f1ec80fe032271797fbd2f45b506f438735d137dd3672",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02444949746131897,
+ "mean_squared_error": 1.1275476481387159e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.08533572405576706,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.29557985067367554,
+ "total_groups": 2048,
+ "update_index": 491,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "163b4c976d6fd9149f11ed819521987bc631af179eaad299decd7eaeefeab51d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03526553511619568,
+ "mean_squared_error": 6.464484272328264e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.0311159435659647,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16946257650852203,
+ "total_groups": 2048,
+ "update_index": 492,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "37202ad0fdf9e5cb5e37dfd95156fa9e78f7e211e48a5978b1892d60fcee215d",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.040310658514499664,
+ "mean_squared_error": 4.415221610543085e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.05333108827471733,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11574238538742065,
+ "total_groups": 2048,
+ "update_index": 493,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "f66ed013bbabdf62d503084319183c7a9124a43883ad38c7f5575d3d054787ca",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024764040485024452,
+ "mean_squared_error": 3.3830102097454073e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.056965142488479614,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08868358284235,
+ "total_groups": 2048,
+ "update_index": 494,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "2bbd51cfde5bca71e2812405aef2a4e8d41bad80b0993a1ee4340f4aa16de039",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04731100797653198,
+ "mean_squared_error": 1.0363359024267993e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03961823135614395,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2716692388057709,
+ "total_groups": 2048,
+ "update_index": 495,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "2fa6d73c38b7f47e8d664efa3c697491c5dd0e39cf1aee4e92d471906ec2b244",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026747582480311394,
+ "mean_squared_error": 5.161665512787295e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05676107481122017,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13530996441841125,
+ "total_groups": 2048,
+ "update_index": 496,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "c55d21dd13550f38a8fc51d65fa7eae7197934d4fc59d7c3abc6ee83f707cec7",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026776060461997986,
+ "mean_squared_error": 6.049083935977251e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04405510798096657,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15857310593128204,
+ "total_groups": 2048,
+ "update_index": 497,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08829474449157715,
+ "mean_squared_error": 5.186755061004078e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.0581505261361599,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.359676718711853,
+ "total_groups": 2048,
+ "update_index": 498,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "65b07e2869da7a46817a2841f1c293a23e2f778cfabd42c89c0dc82e701dbda7",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05950038880109787,
+ "mean_squared_error": 7.882053978391923e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06334999203681946,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.0662331581115723,
+ "total_groups": 2048,
+ "update_index": 499,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09956562519073486,
+ "mean_squared_error": 1.4597346307709813e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05852632597088814,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.8266067504882812,
+ "total_groups": 2048,
+ "update_index": 500,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.129990816116333,
+ "mean_squared_error": 9.4566139523522e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06883376836776733,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.478994607925415,
+ "total_groups": 2048,
+ "update_index": 501,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10046836733818054,
+ "mean_squared_error": 1.0333093086956069e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07532846182584763,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.7087583541870117,
+ "total_groups": 2048,
+ "update_index": 502,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "c2566e5fe69ec4828b44b772e9806e0f094e29a17dddf4c8e18e96a7a60bbc9a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03626661002635956,
+ "mean_squared_error": 1.3846662341165938e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.061561934649944305,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3629819452762604,
+ "total_groups": 2048,
+ "update_index": 503,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "9f20ef4bc4fbdbe8f4892d0add3cf81fd36d3b163d8d3d5aa2677dada7e72d14",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01622253656387329,
+ "mean_squared_error": 1.9944948803640727e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.013710933737456799,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05228448659181595,
+ "total_groups": 2048,
+ "update_index": 504,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "cae47d9e54c9db82a1337dd4dd2576c0b0e0a1265545b224c4ae6ddfe91692fa",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.004627300426363945,
+ "mean_squared_error": 4.395209884933138e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.0192110575735569,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.011521779000759125,
+ "total_groups": 2048,
+ "update_index": 505,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "6ff0b96154bfed5bceadeaedd5a6bf5bfe192dc214a31a06d87c2247b9a7d539",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012358561158180237,
+ "mean_squared_error": 1.5927471963550488e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.02568032220005989,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04175291210412979,
+ "total_groups": 2048,
+ "update_index": 506,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "b8acdd8a394ad3a9adb6c6a84b2c89d743ad67f2aea98988f30e6c9499e502ea",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.044867873191833496,
+ "mean_squared_error": 1.3782687346974853e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.019151631742715836,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3613048791885376,
+ "total_groups": 2048,
+ "update_index": 507,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "f2c90b38125dcd5db68d1fdb9083eb06309dd35aa702959f9067d1dc1c5cdcbd",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022764936089515686,
+ "mean_squared_error": 4.3394217641434807e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02790682576596737,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11375533789396286,
+ "total_groups": 2048,
+ "update_index": 508,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "5444879e1830838f8fd44c4c2cff7a2eab118ccb510b2b4e4c8841faaf2aad5d",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029288291931152344,
+ "mean_squared_error": 7.684384399908595e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.07077992707490921,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20144152641296387,
+ "total_groups": 2048,
+ "update_index": 509,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "163b4c976d6fd9149f11ed819521987bc631af179eaad299decd7eaeefeab51d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.039761483669281006,
+ "mean_squared_error": 9.361431239085505e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.037476904690265656,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.24540430307388306,
+ "total_groups": 2048,
+ "update_index": 510,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "37202ad0fdf9e5cb5e37dfd95156fa9e78f7e211e48a5978b1892d60fcee215d",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.043093204498291016,
+ "mean_squared_error": 3.387569620372233e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04763802886009216,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08880310505628586,
+ "total_groups": 2048,
+ "update_index": 511,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "580fc96148ea9d6ded0d780fbb95ae79cccd15e70f2736d5abb8b0e3cde0cfab",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024915480986237526,
+ "mean_squared_error": 3.68853562804361e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.059830885380506516,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09669274836778641,
+ "total_groups": 2048,
+ "update_index": 512,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "43b063494966062beaba53bd595f2fc5cd111e63ac7575cd1259d813bfb9c35e",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04393715783953667,
+ "mean_squared_error": 1.6119172414619243e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.049340732395648956,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4225544333457947,
+ "total_groups": 2048,
+ "update_index": 513,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "8d1d33e97d5d5f623581b43ea73a026641853e3da7ac41dfdf8d8bf753b3b61a",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030015796422958374,
+ "mean_squared_error": 7.140482694012462e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.06670317053794861,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1871834695339203,
+ "total_groups": 2048,
+ "update_index": 514,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "c55d21dd13550f38a8fc51d65fa7eae7197934d4fc59d7c3abc6ee83f707cec7",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03167809545993805,
+ "mean_squared_error": 8.714877708371205e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.053237129002809525,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2284552901983261,
+ "total_groups": 2048,
+ "update_index": 515,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "b43785d5921aff362be50c6c00c28c9efcf970cd7605e7a8a990d0e4728655ef",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07962429523468018,
+ "mean_squared_error": 4.569263637677068e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.054507091641426086,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1978050470352173,
+ "total_groups": 2048,
+ "update_index": 516,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "b0ff91e1a499818a90722d29f0abcdec0968fa654131f7237cfde8511a4310b8",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.087238609790802,
+ "mean_squared_error": 1.037577931128908e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.07477347552776337,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.7199482917785645,
+ "total_groups": 2048,
+ "update_index": 517,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1143520250916481,
+ "mean_squared_error": 1.9454877474345267e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06806660443544388,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 5.099979400634766,
+ "total_groups": 2048,
+ "update_index": 518,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11406087875366211,
+ "mean_squared_error": 1.3097853297949769e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.0816991850733757,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.433523654937744,
+ "total_groups": 2048,
+ "update_index": 519,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09871019423007965,
+ "mean_squared_error": 1.0181836842093617e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07369572669267654,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.669107437133789,
+ "total_groups": 2048,
+ "update_index": 520,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "c2566e5fe69ec4828b44b772e9806e0f094e29a17dddf4c8e18e96a7a60bbc9a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.044567689299583435,
+ "mean_squared_error": 1.624675178391044e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06487632542848587,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.42589884996414185,
+ "total_groups": 2048,
+ "update_index": 521,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "0b849b5083b58351c4f715e07a470f34479d2f98b480f8aff428451bfdad810c",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019654611125588417,
+ "mean_squared_error": 1.9505232273786532e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.013360761106014252,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05113179609179497,
+ "total_groups": 2048,
+ "update_index": 522,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "a2fe25fe3bcb3b30d46ea2858218a2795c72b59e0f01e3325a46ed44489c27da",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01021917536854744,
+ "mean_squared_error": 8.789942285147845e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.025977864861488342,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.023042306303977966,
+ "total_groups": 2048,
+ "update_index": 523,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "5dd72deda5d416a27a2ac5ac43eb078160550de0cc3570b759e349355099d113",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01680438220500946,
+ "mean_squared_error": 2.1149273266019009e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.030079297721385956,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05544155091047287,
+ "total_groups": 2048,
+ "update_index": 524,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "ce55f2af29ff141ec654bee09683210e87df5fed63af51d6640351b921a5b71e",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.047125816345214844,
+ "mean_squared_error": 2.390491999904043e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.025189068168401718,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6266531348228455,
+ "total_groups": 2048,
+ "update_index": 525,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "dd3eb6f3cef9317a147726d43f8d394724e808874bbbaefd0b75b02ba06efb38",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.028955459594726562,
+ "mean_squared_error": 5.121131039231841e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.030957993119955063,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13424737751483917,
+ "total_groups": 2048,
+ "update_index": 526,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "b3be426e147b8d3db9ce518dc3c1d097f1aae888a70de16f2047866e83334cb9",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0300949364900589,
+ "mean_squared_error": 8.756080092098273e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.07774584740400314,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22953538596630096,
+ "total_groups": 2048,
+ "update_index": 527,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "c22934060d76ae57cf046d42e16f2d81f559ac0437acab43cc3af986d6c75e04",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04470963403582573,
+ "mean_squared_error": 1.217707222167519e-06,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.04256422817707062,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3192146420478821,
+ "total_groups": 2048,
+ "update_index": 528,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "fe040f0a82d2040b8d2adcb59ef473b4191930e6dde6cf8859b0e967b10d8c87",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05194962024688721,
+ "mean_squared_error": 6.372416692101979e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.06489651650190353,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1670490801334381,
+ "total_groups": 2048,
+ "update_index": 529,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "26097e461e26903a5f9b0be9318b2c3f1c20b2601e3534dc5907d65d29bcdc07",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026589710265398026,
+ "mean_squared_error": 4.415788623646222e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.06536415964365005,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11575724929571152,
+ "total_groups": 2048,
+ "update_index": 530,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "43b063494966062beaba53bd595f2fc5cd111e63ac7575cd1259d813bfb9c35e",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03981676697731018,
+ "mean_squared_error": 1.2619334484043065e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04356871917843819,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.33080828189849854,
+ "total_groups": 2048,
+ "update_index": 531,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "286e2c88f452a11463b061967f4b53c3ab252f500ebfc472d28cb10c313ddfdb",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02679014950990677,
+ "mean_squared_error": 9.022148788062623e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.0786248967051506,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23651021718978882,
+ "total_groups": 2048,
+ "update_index": 532,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "9a5e2a6e519093719c789c32e75a9d8e770ef65b45c89a2032f3b890431eaae4",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03175903111696243,
+ "mean_squared_error": 1.2179148143331986e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.0630628913640976,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.319269061088562,
+ "total_groups": 2048,
+ "update_index": 533,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "b43785d5921aff362be50c6c00c28c9efcf970cd7605e7a8a990d0e4728655ef",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12750732898712158,
+ "mean_squared_error": 6.038330866431352e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.06245257332921028,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.5829122066497803,
+ "total_groups": 2048,
+ "update_index": 534,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "33ada21902a84a019c4ec54271ef55fc11174979cac906e9a33a545cc233efe2",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07890580594539642,
+ "mean_squared_error": 1.0498511983314529e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.07536894828081131,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.752121925354004,
+ "total_groups": 2048,
+ "update_index": 535,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11555701494216919,
+ "mean_squared_error": 1.7593993106856942e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06521686911582947,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.612159729003906,
+ "total_groups": 2048,
+ "update_index": 536,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10742723941802979,
+ "mean_squared_error": 8.581213478464633e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06642075628042221,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.249513626098633,
+ "total_groups": 2048,
+ "update_index": 537,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08536598086357117,
+ "mean_squared_error": 7.349968200287549e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.061771683394908905,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.9267500638961792,
+ "total_groups": 2048,
+ "update_index": 538,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "91ea5ad23ec525a8970b7b6f3a339a08d6badd7462f1d6460bc82717f5ff92bd",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.050758153200149536,
+ "mean_squared_error": 1.6099721733553451e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06443043053150177,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4220445454120636,
+ "total_groups": 2048,
+ "update_index": 539,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "c604372b0dce98cbbe897998d0bbf526f9f63b95e8e60d61d9e22df49004626d",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.035516880452632904,
+ "mean_squared_error": 4.1226326175092254e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.019205547869205475,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10807234048843384,
+ "total_groups": 2048,
+ "update_index": 540,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "27bf7638ead6705909b35e5e4efc242c8eb9e82dc21434230140a48868ae60a6",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008311424404382706,
+ "mean_squared_error": 1.3804168474962353e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.028935935348272324,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03618679940700531,
+ "total_groups": 2048,
+ "update_index": 541,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "10df0b2949873225dbca47a3aa5ee9f8a262f4add9e9b68d3dabcc920e37d015",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013244220986962318,
+ "mean_squared_error": 2.178716442813311e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.03057454526424408,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05711374431848526,
+ "total_groups": 2048,
+ "update_index": 542,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "ce55f2af29ff141ec654bee09683210e87df5fed63af51d6640351b921a5b71e",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04894919693470001,
+ "mean_squared_error": 1.6031253835535608e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.020591095089912415,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.42024970054626465,
+ "total_groups": 2048,
+ "update_index": 543,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "f2c90b38125dcd5db68d1fdb9083eb06309dd35aa702959f9067d1dc1c5cdcbd",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02622847631573677,
+ "mean_squared_error": 5.564068601415784e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.03204692527651787,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14585871994495392,
+ "total_groups": 2048,
+ "update_index": 544,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "87897fb4e167741aa88e7efa5b79263ff638c179cf4660ae50195d5af5eed6a1",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016672108322381973,
+ "mean_squared_error": 7.265739441209007e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.07082713395357132,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1904670000076294,
+ "total_groups": 2048,
+ "update_index": 545,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "c22934060d76ae57cf046d42e16f2d81f559ac0437acab43cc3af986d6c75e04",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04830172657966614,
+ "mean_squared_error": 7.17930845439696e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.032579079270362854,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18820126354694366,
+ "total_groups": 2048,
+ "update_index": 546,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "8f75472d2b2b1ebb81fe02d8f064bfc8bbdc29ca1b3d42bb70716d05bdf549d2",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04182980954647064,
+ "mean_squared_error": 8.966864015746978e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.06786755472421646,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23506096005439758,
+ "total_groups": 2048,
+ "update_index": 547,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "26097e461e26903a5f9b0be9318b2c3f1c20b2601e3534dc5907d65d29bcdc07",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02285449206829071,
+ "mean_squared_error": 3.7123896845514537e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.06027571111917496,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09731806814670563,
+ "total_groups": 2048,
+ "update_index": 548,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "43b063494966062beaba53bd595f2fc5cd111e63ac7575cd1259d813bfb9c35e",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04320818930864334,
+ "mean_squared_error": 1.0394203400210245e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.039589736610651016,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.27247780561447144,
+ "total_groups": 2048,
+ "update_index": 549,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "92d41ec86b7ba30daab43c2028156bc6ad39788d831bc353f77857b2ed1eb4ae",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.028868310153484344,
+ "mean_squared_error": 8.08213371783495e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.07159058749675751,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2118682861328125,
+ "total_groups": 2048,
+ "update_index": 550,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "83fc7ad9965d3920d2a007ed5e0ce11420f08186802d4cd0284d0a041c687baa",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03172164410352707,
+ "mean_squared_error": 1.0627177289279643e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.05788587033748627,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2785850763320923,
+ "total_groups": 2048,
+ "update_index": 551,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "b43785d5921aff362be50c6c00c28c9efcf970cd7605e7a8a990d0e4728655ef",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06366026401519775,
+ "mean_squared_error": 4.7292414819821715e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05467187613248825,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2397422790527344,
+ "total_groups": 2048,
+ "update_index": 552,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "33ada21902a84a019c4ec54271ef55fc11174979cac906e9a33a545cc233efe2",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08256475627422333,
+ "mean_squared_error": 8.878774679033086e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06844419240951538,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.327517509460449,
+ "total_groups": 2048,
+ "update_index": 553,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.14239093661308289,
+ "mean_squared_error": 1.5639747289242223e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.061335958540439606,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.099865913391113,
+ "total_groups": 2048,
+ "update_index": 554,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07877111434936523,
+ "mean_squared_error": 6.416173164325301e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05739492550492287,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.6819612979888916,
+ "total_groups": 2048,
+ "update_index": 555,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08758478611707687,
+ "mean_squared_error": 5.139289442013251e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.051192302256822586,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.3472338914871216,
+ "total_groups": 2048,
+ "update_index": 556,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "91ea5ad23ec525a8970b7b6f3a339a08d6badd7462f1d6460bc82717f5ff92bd",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.046725109219551086,
+ "mean_squared_error": 8.87520627657068e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04770825803279877,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23265820741653442,
+ "total_groups": 2048,
+ "update_index": 557,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "6e5e6e3a335009dccad6445395c2547c2d679eb5f2a1b7b49432424c2bf0950c",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016944846138358116,
+ "mean_squared_error": 2.3062219156599895e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.014412833377718925,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06045622378587723,
+ "total_groups": 2048,
+ "update_index": 558,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "a0e9c4bd1351d16aace8551affb1a8b54c3520c411283ff863268b3a8b824c57",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007832697592675686,
+ "mean_squared_error": 6.200054514238218e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.021166430786252022,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.016253070905804634,
+ "total_groups": 2048,
+ "update_index": 559,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "578f94bf0f57df73d7dbcb03e6678a18494e075f7dbdf23a808a5f0b960754c0",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014460740610957146,
+ "mean_squared_error": 3.6064315622752474e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.037548039108514786,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09454043954610825,
+ "total_groups": 2048,
+ "update_index": 560,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "ce55f2af29ff141ec654bee09683210e87df5fed63af51d6640351b921a5b71e",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.053253695368766785,
+ "mean_squared_error": 1.6923498833421036e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.021166520193219185,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4436393678188324,
+ "total_groups": 2048,
+ "update_index": 561,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "8d8c36d70914e119c0250e21e7b2faf07017aaf0cccb1edd7d34e4a54e6b1acc",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.028230279684066772,
+ "mean_squared_error": 7.207521548480145e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.03648294508457184,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1889408528804779,
+ "total_groups": 2048,
+ "update_index": 562,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "b115dd1c37ad32488b69f037b4c357a59bc8a6fc46971130437703283479ca28",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018413443118333817,
+ "mean_squared_error": 6.557967822118371e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.0686250850558281,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17191319167613983,
+ "total_groups": 2048,
+ "update_index": 563,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "c22934060d76ae57cf046d42e16f2d81f559ac0437acab43cc3af986d6c75e04",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04562336206436157,
+ "mean_squared_error": 5.805088107990741e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.029331747442483902,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1521769016981125,
+ "total_groups": 2048,
+ "update_index": 564,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "8f75472d2b2b1ebb81fe02d8f064bfc8bbdc29ca1b3d42bb70716d05bdf549d2",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.040378328412771225,
+ "mean_squared_error": 4.032682170418411e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.046312395483255386,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1057143434882164,
+ "total_groups": 2048,
+ "update_index": 565,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "d4e15c01466f4fdbadcfb76722f5fe57d6388402f0e7f411ceda2b2e7c5cfbdc",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015911132097244263,
+ "mean_squared_error": 2.0273772349810315e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04474532976746559,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05314647778868675,
+ "total_groups": 2048,
+ "update_index": 566,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "43b063494966062beaba53bd595f2fc5cd111e63ac7575cd1259d813bfb9c35e",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03153267502784729,
+ "mean_squared_error": 8.431173341705289e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03557390347123146,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22101815044879913,
+ "total_groups": 2048,
+ "update_index": 567,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "92d41ec86b7ba30daab43c2028156bc6ad39788d831bc353f77857b2ed1eb4ae",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025293298065662384,
+ "mean_squared_error": 3.229476988053648e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.04583525285124779,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08465880155563354,
+ "total_groups": 2048,
+ "update_index": 568,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "83fc7ad9965d3920d2a007ed5e0ce11420f08186802d4cd0284d0a041c687baa",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030262131243944168,
+ "mean_squared_error": 6.602891744478256e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.045211128890514374,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1730908453464508,
+ "total_groups": 2048,
+ "update_index": 569,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "b43785d5921aff362be50c6c00c28c9efcf970cd7605e7a8a990d0e4728655ef",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06740446388721466,
+ "mean_squared_error": 4.3103455027448945e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.0518232025206089,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1299312114715576,
+ "total_groups": 2048,
+ "update_index": 570,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "7e4ad4ab9984883199e9497ef6e4ac2fe987174bd904298d7d0eff93a51e953f",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10349997133016586,
+ "mean_squared_error": 1.2243333003425505e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.07950577884912491,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.2095162868499756,
+ "total_groups": 2048,
+ "update_index": 571,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11732345819473267,
+ "mean_squared_error": 1.5655574316042475e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06109153479337692,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.104014873504639,
+ "total_groups": 2048,
+ "update_index": 572,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08642665296792984,
+ "mean_squared_error": 1.0546884368523024e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.07251466065645218,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.7648024559020996,
+ "total_groups": 2048,
+ "update_index": 573,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09508596360683441,
+ "mean_squared_error": 7.4594108809833415e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06145181506872177,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.955439805984497,
+ "total_groups": 2048,
+ "update_index": 574,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "91ea5ad23ec525a8970b7b6f3a339a08d6badd7462f1d6460bc82717f5ff92bd",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.041352346539497375,
+ "mean_squared_error": 1.0350834145356202e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.052142415195703506,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.27134090662002563,
+ "total_groups": 2048,
+ "update_index": 575,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "7a0dc2b532b9011d27f508cfa61e871ba497b6e0b1dc33228eef6de836187ef5",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01632741279900074,
+ "mean_squared_error": 1.7982824829232413e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.01267784833908081,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04714089632034302,
+ "total_groups": 2048,
+ "update_index": 576,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "ccbb5579376f7c6f52108f64f3ffab37ed6910f899b18465d4030ec1dacde62d",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.005956847220659256,
+ "mean_squared_error": 7.093982645756114e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02331160567700863,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.018596449866890907,
+ "total_groups": 2048,
+ "update_index": 577,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "e76155ec89eec9890035faa9df4582385f7d47e9a98c83a4f58aa278eb4cb4a1",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011319072917103767,
+ "mean_squared_error": 1.742016451089512e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.02713724598288536,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0456659160554409,
+ "total_groups": 2048,
+ "update_index": 578,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "ce55f2af29ff141ec654bee09683210e87df5fed63af51d6640351b921a5b71e",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0511750765144825,
+ "mean_squared_error": 1.3957874216430355e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.019187171012163162,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3658972978591919,
+ "total_groups": 2048,
+ "update_index": 579,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "2fd4937f41695e6612f5d48e041b1dacdb59b2a5a556ae5a0ea1f9a168e9cb89",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02926383912563324,
+ "mean_squared_error": 7.695584827160928e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.03690612316131592,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20173513889312744,
+ "total_groups": 2048,
+ "update_index": 580,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "14518ab8fec096c4beb54e41beefaba525bf0c719cb1d347295d73f151fcaf50",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03029346652328968,
+ "mean_squared_error": 1.020118361338973e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.08268704265356064,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.26741790771484375,
+ "total_groups": 2048,
+ "update_index": 581,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "e78b6168b0ab62c254e6005006fb2984582574330ddddc6693e453259e4ec850",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03784240782260895,
+ "mean_squared_error": 8.717209425412875e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.035759687423706055,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22851641476154327,
+ "total_groups": 2048,
+ "update_index": 582,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "8f75472d2b2b1ebb81fe02d8f064bfc8bbdc29ca1b3d42bb70716d05bdf549d2",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03561468422412872,
+ "mean_squared_error": 4.2976276404260716e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04909428209066391,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11265973001718521,
+ "total_groups": 2048,
+ "update_index": 583,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "046a4c678563211466af443d6d184f7c7dc8adca112aa5cccaa6df0572d6f6ea",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02337278053164482,
+ "mean_squared_error": 3.864621476168395e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.0613117478787899,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10130873322486877,
+ "total_groups": 2048,
+ "update_index": 584,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "d2a1dc79ff7fa988aad8a4533ddee9739c55af504143da430936e6a8cb758bcb",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.039289943873882294,
+ "mean_squared_error": 1.2267835245438619e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04274831712245941,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3215939402580261,
+ "total_groups": 2048,
+ "update_index": 585,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "a85d1dda888108aff1535d6d7f83bdafdd6399d6433aede6054d7e94bd4ae2a6",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03300875425338745,
+ "mean_squared_error": 6.711655942126526e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.0669814869761467,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17594203352928162,
+ "total_groups": 2048,
+ "update_index": 586,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "83fc7ad9965d3920d2a007ed5e0ce11420f08186802d4cd0284d0a041c687baa",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03744739294052124,
+ "mean_squared_error": 1.186247118312167e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.06012481823563576,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3109675645828247,
+ "total_groups": 2048,
+ "update_index": 587,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11201971769332886,
+ "mean_squared_error": 9.232167030859273e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.07509476691484451,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.4201571941375732,
+ "total_groups": 2048,
+ "update_index": 588,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "7e4ad4ab9984883199e9497ef6e4ac2fe987174bd904298d7d0eff93a51e953f",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08878345787525177,
+ "mean_squared_error": 7.812739568180405e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06325919926166534,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.048062801361084,
+ "total_groups": 2048,
+ "update_index": 589,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07460509240627289,
+ "mean_squared_error": 8.144475941662677e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.0442107617855072,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.1350255012512207,
+ "total_groups": 2048,
+ "update_index": 590,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06411701440811157,
+ "mean_squared_error": 4.179855295660673e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.04561280086636543,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0957239866256714,
+ "total_groups": 2048,
+ "update_index": 591,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09423676133155823,
+ "mean_squared_error": 4.157602234045044e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04601582512259483,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.089890480041504,
+ "total_groups": 2048,
+ "update_index": 592,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "91ea5ad23ec525a8970b7b6f3a339a08d6badd7462f1d6460bc82717f5ff92bd",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.040068771690130234,
+ "mean_squared_error": 8.2046358329535e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04592102766036987,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21507960557937622,
+ "total_groups": 2048,
+ "update_index": 593,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "3053792e56629242658765a263905503c26567415a6635d21ba3ede753df81d4",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01611613854765892,
+ "mean_squared_error": 2.2766728591250285e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.014209468849003315,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05968161299824715,
+ "total_groups": 2048,
+ "update_index": 594,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "c2b047710a18c43cb513800534d9d7c2c69d77349540eedc714605f16f5fa68b",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007633247412741184,
+ "mean_squared_error": 1.0112730564060257e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02636113204061985,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02650991640985012,
+ "total_groups": 2048,
+ "update_index": 595,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "cb64a2e0857b522f197ca8e9adc09f7797b30fa3a9f8f27b944e9d665ff443ea",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020564399659633636,
+ "mean_squared_error": 5.020414164391696e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.04161226749420166,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13160714507102966,
+ "total_groups": 2048,
+ "update_index": 596,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "b1cba29be9b556a65000822216cae8d5f8eb0bd3b77494acfe7d0cd12c944149",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.053932659327983856,
+ "mean_squared_error": 2.288190898980247e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.02455918863415718,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5998355150222778,
+ "total_groups": 2048,
+ "update_index": 597,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "487e44ea96143f33ffb4f6c818f4edec94c2430d9db198311185b9d341bbb7cd",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03920925408601761,
+ "mean_squared_error": 1.049853040058224e-06,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.043554119765758514,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.27521267533302307,
+ "total_groups": 2048,
+ "update_index": 598,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "3e3705b0ba3dbffb5740998fca910538d90ada22933c262b00cfc5f9c1f19ef2",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030664503574371338,
+ "mean_squared_error": 9.575765034242067e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.07901129871606827,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.25102293491363525,
+ "total_groups": 2048,
+ "update_index": 599,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "e78b6168b0ab62c254e6005006fb2984582574330ddddc6693e453259e4ec850",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03880700096487999,
+ "mean_squared_error": 7.118452458598767e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.032325759530067444,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18660596013069153,
+ "total_groups": 2048,
+ "update_index": 600,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "8f75472d2b2b1ebb81fe02d8f064bfc8bbdc29ca1b3d42bb70716d05bdf549d2",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.036109745502471924,
+ "mean_squared_error": 5.182660061109345e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.05575570464134216,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13586032390594482,
+ "total_groups": 2048,
+ "update_index": 601,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "6e3ddd2e64be378a48eb563bec95c10295ef0b8adf79e8b99206310305a7393f",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02363526076078415,
+ "mean_squared_error": 3.8001718394298223e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.05984129384160042,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09961922466754913,
+ "total_groups": 2048,
+ "update_index": 602,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "d3fcd1ae5587863a3f465a9213bce0752128519291622b41cdc9a2555ea6f09f",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04405467212200165,
+ "mean_squared_error": 1.7124546047853073e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.05049773305654526,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4489096999168396,
+ "total_groups": 2048,
+ "update_index": 603,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "1700408537996a9c4ebe4e9190c1f520aa15dbcc72a1640d55dfe494429ceba2",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022370852530002594,
+ "mean_squared_error": 7.420273959724e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.0695742815732956,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19451802968978882,
+ "total_groups": 2048,
+ "update_index": 604,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "8b2bc237559b86ae82512d4f70f29687b20755d607e8388fc4780cb400915c85",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029302343726158142,
+ "mean_squared_error": 1.006083493848564e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.05492572858929634,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.263738751411438,
+ "total_groups": 2048,
+ "update_index": 605,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0938982367515564,
+ "mean_squared_error": 3.836890300590312e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.04763943329453468,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0058177709579468,
+ "total_groups": 2048,
+ "update_index": 606,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "7e4ad4ab9984883199e9497ef6e4ac2fe987174bd904298d7d0eff93a51e953f",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08635255694389343,
+ "mean_squared_error": 7.170465323724784e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.059985384345054626,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8796944618225098,
+ "total_groups": 2048,
+ "update_index": 607,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0852934867143631,
+ "mean_squared_error": 9.941685675585177e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04874143376946449,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.6061532497406006,
+ "total_groups": 2048,
+ "update_index": 608,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08577145636081696,
+ "mean_squared_error": 4.84134443468065e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.04892710596323013,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2691293954849243,
+ "total_groups": 2048,
+ "update_index": 609,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09752707928419113,
+ "mean_squared_error": 4.841055670112837e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05015483498573303,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2690536975860596,
+ "total_groups": 2048,
+ "update_index": 610,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "91ea5ad23ec525a8970b7b6f3a339a08d6badd7462f1d6460bc82717f5ff92bd",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030006766319274902,
+ "mean_squared_error": 4.203539560876379e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.033266033977270126,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11019326746463776,
+ "total_groups": 2048,
+ "update_index": 611,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "8e3eca6558bcba92ff19d26d8d84654e52d66d412582a7fbe321c5529f94180c",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01724085584282875,
+ "mean_squared_error": 1.8395407153093402e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.012861017137765884,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04822245612740517,
+ "total_groups": 2048,
+ "update_index": 612,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "4fecbbf4fb2ba4c05bc1ece104aebc546a642eabfa2411f180e99c96d2f93e0d",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.00807115063071251,
+ "mean_squared_error": 8.451395672182116e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.024573812261223793,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.022154826670885086,
+ "total_groups": 2048,
+ "update_index": 613,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "a06b8fd1ddb27a8f9ebfe252105d2e4db7879323ab123a467d45204467d2431b",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017496244981884956,
+ "mean_squared_error": 2.1666363636541064e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.027465125545859337,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05679707229137421,
+ "total_groups": 2048,
+ "update_index": 614,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "b1cba29be9b556a65000822216cae8d5f8eb0bd3b77494acfe7d0cd12c944149",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04670906066894531,
+ "mean_squared_error": 1.2733835319522768e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.018369637429714203,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.33380985260009766,
+ "total_groups": 2048,
+ "update_index": 615,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "487e44ea96143f33ffb4f6c818f4edec94c2430d9db198311185b9d341bbb7cd",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0323258638381958,
+ "mean_squared_error": 5.023885023547336e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.030237719416618347,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1316981315612793,
+ "total_groups": 2048,
+ "update_index": 616,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "954d2df91b79afdcd5b32c2d713da99f5338128ec2ba3e83e003ecb098e18eb6",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027230678126215935,
+ "mean_squared_error": 6.953218871785793e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.06773285567760468,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1822744607925415,
+ "total_groups": 2048,
+ "update_index": 617,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "e78b6168b0ab62c254e6005006fb2984582574330ddddc6693e453259e4ec850",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0337371826171875,
+ "mean_squared_error": 4.5646189050785324e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.025940267369151115,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11965874582529068,
+ "total_groups": 2048,
+ "update_index": 618,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "8f75472d2b2b1ebb81fe02d8f064bfc8bbdc29ca1b3d42bb70716d05bdf549d2",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.033810194581747055,
+ "mean_squared_error": 1.406044987106725e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.029499374330043793,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03685862571001053,
+ "total_groups": 2048,
+ "update_index": 619,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "6e3ddd2e64be378a48eb563bec95c10295ef0b8adf79e8b99206310305a7393f",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021611131727695465,
+ "mean_squared_error": 1.3770647910860134e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.0360088013112545,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03609892725944519,
+ "total_groups": 2048,
+ "update_index": 620,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "d3fcd1ae5587863a3f465a9213bce0752128519291622b41cdc9a2555ea6f09f",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03984534367918968,
+ "mean_squared_error": 7.613384696014691e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03361925855278969,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19958031177520752,
+ "total_groups": 2048,
+ "update_index": 621,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "bb91ced24abb29acfd49299b84f1fc94dd4ebb941ead36f55baf52bd84476595",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024360723793506622,
+ "mean_squared_error": 3.5711482837541553e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.04894504323601723,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09361550956964493,
+ "total_groups": 2048,
+ "update_index": 622,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "8b2bc237559b86ae82512d4f70f29687b20755d607e8388fc4780cb400915c85",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030630439519882202,
+ "mean_squared_error": 6.727133836648136e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04524410143494606,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1763477772474289,
+ "total_groups": 2048,
+ "update_index": 623,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08585062623023987,
+ "mean_squared_error": 3.918746642739279e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.048420265316963196,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0272759199142456,
+ "total_groups": 2048,
+ "update_index": 624,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "7e4ad4ab9984883199e9497ef6e4ac2fe987174bd904298d7d0eff93a51e953f",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08481413125991821,
+ "mean_squared_error": 4.902855835098308e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.04955948144197464,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2852542400360107,
+ "total_groups": 2048,
+ "update_index": 625,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.065800741314888,
+ "mean_squared_error": 7.650994120922405e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.0428176075220108,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.005662202835083,
+ "total_groups": 2048,
+ "update_index": 626,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06522179394960403,
+ "mean_squared_error": 3.1822407891013427e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.04007823020219803,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8342053294181824,
+ "total_groups": 2048,
+ "update_index": 627,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08498004823923111,
+ "mean_squared_error": 4.264746166882105e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.047602128237485886,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1179776191711426,
+ "total_groups": 2048,
+ "update_index": 628,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "e523565a1f5c20bbfdfbf2416dd89ad8c9902c744639013862cfd89c7b3b3679",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04129737243056297,
+ "mean_squared_error": 7.428309345414164e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04408513009548187,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19472867250442505,
+ "total_groups": 2048,
+ "update_index": 629,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "4b83dc3ad3563b596f2de2f3ac45f881cf0a6f6566ec66d55157dd9c711214e4",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024404987692832947,
+ "mean_squared_error": 3.4563595363579225e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.017622940242290497,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09060639142990112,
+ "total_groups": 2048,
+ "update_index": 630,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "7aca8ae3cb348d2e7671719e33b0bb503a750ffb4189654a74db9853a4ff0c56",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013555677607655525,
+ "mean_squared_error": 2.456367269587645e-07,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.03790127858519554,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06439219415187836,
+ "total_groups": 2048,
+ "update_index": 631,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "0c3cdc2e4be2fac0f2fef7226ae22331316511d8a334358dc53087abba57abf7",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022920481860637665,
+ "mean_squared_error": 5.794792059532483e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.04389893263578415,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15190699696540833,
+ "total_groups": 2048,
+ "update_index": 632,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05393535643815994,
+ "mean_squared_error": 1.973466396520962e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.02279273420572281,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5173323750495911,
+ "total_groups": 2048,
+ "update_index": 633,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "b34407a10dbff836aa74afa11c07e6d2d50af37979f42fcebab3e8ee2c321884",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.052002184092998505,
+ "mean_squared_error": 1.097263634619594e-06,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.04419086501002312,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.28764107823371887,
+ "total_groups": 2048,
+ "update_index": 634,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "90c2bce459083e28974bd30cf64662a22afffc18a024995a520e8665411459fb",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027937300503253937,
+ "mean_squared_error": 1.3257238151709316e-06,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.0907965898513794,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3475305438041687,
+ "total_groups": 2048,
+ "update_index": 635,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "e34c74ceec3434cfe3821fbbac5c9de493813790a9348c1cac07976071041c6d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03567449003458023,
+ "mean_squared_error": 6.445656595133187e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03078031912446022,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1689690202474594,
+ "total_groups": 2048,
+ "update_index": 636,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "8f75472d2b2b1ebb81fe02d8f064bfc8bbdc29ca1b3d42bb70716d05bdf549d2",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.039195165038108826,
+ "mean_squared_error": 2.821656153173535e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04146941751241684,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07396802306175232,
+ "total_groups": 2048,
+ "update_index": 637,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "6e3ddd2e64be378a48eb563bec95c10295ef0b8adf79e8b99206310305a7393f",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.031145615503191948,
+ "mean_squared_error": 2.8836271326326823e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.0522095188498497,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07559255510568619,
+ "total_groups": 2048,
+ "update_index": 638,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "d3fcd1ae5587863a3f465a9213bce0752128519291622b41cdc9a2555ea6f09f",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03719744086265564,
+ "mean_squared_error": 9.122263691097032e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.036669615656137466,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23913466930389404,
+ "total_groups": 2048,
+ "update_index": 639,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "4908ea3be9fa20a2f65c88444dd32d5c0858c5d18bc6af5ed0eeaf8ac63f6b0b",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027279049158096313,
+ "mean_squared_error": 5.430745204648701e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05916867032647133,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14236372709274292,
+ "total_groups": 2048,
+ "update_index": 640,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "8b2bc237559b86ae82512d4f70f29687b20755d607e8388fc4780cb400915c85",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03629612922668457,
+ "mean_squared_error": 4.207728068195138e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.035676561295986176,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11030306667089462,
+ "total_groups": 2048,
+ "update_index": 641,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06627053022384644,
+ "mean_squared_error": 1.606713794899406e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.030942048877477646,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.42119038105010986,
+ "total_groups": 2048,
+ "update_index": 642,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "7e4ad4ab9984883199e9497ef6e4ac2fe987174bd904298d7d0eff93a51e953f",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05795848369598389,
+ "mean_squared_error": 4.288090167392511e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.046107642352581024,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1240971088409424,
+ "total_groups": 2048,
+ "update_index": 643,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05927637219429016,
+ "mean_squared_error": 6.873001439089421e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04041028022766113,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8017160892486572,
+ "total_groups": 2048,
+ "update_index": 644,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.061217546463012695,
+ "mean_squared_error": 2.7832370506075677e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.03754384443163872,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7296088933944702,
+ "total_groups": 2048,
+ "update_index": 645,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08335084468126297,
+ "mean_squared_error": 3.130349341518013e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04102115333080292,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.820602297782898,
+ "total_groups": 2048,
+ "update_index": 646,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "e523565a1f5c20bbfdfbf2416dd89ad8c9902c744639013862cfd89c7b3b3679",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03660205006599426,
+ "mean_squared_error": 5.382090648708981e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.037421613931655884,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14108827710151672,
+ "total_groups": 2048,
+ "update_index": 647,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "1fb26a1cd31d0bbfa092a038a8761dd24e7d929a1ec080dfa4cae97eef06392e",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023248828947544098,
+ "mean_squared_error": 2.3680377125856467e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.014491231180727482,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.062076687812805176,
+ "total_groups": 2048,
+ "update_index": 648,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "f1b147221dc2308bb5fc2c77433617432777485ee0173ec172e9f7cf692e52a0",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.009226648136973381,
+ "mean_squared_error": 9.354003083217322e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.023702464997768402,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.024520957842469215,
+ "total_groups": 2048,
+ "update_index": 649,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "7af2086850b73ed385f8878ace9fd7e41566351a5dacb02f76a35e2600acd7ca",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020202860236167908,
+ "mean_squared_error": 1.8521757283451734e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.024724680930376053,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.048553675413131714,
+ "total_groups": 2048,
+ "update_index": 650,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.045496582984924316,
+ "mean_squared_error": 9.245748628927686e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.015612896531820297,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.24237175285816193,
+ "total_groups": 2048,
+ "update_index": 651,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "b34407a10dbff836aa74afa11c07e6d2d50af37979f42fcebab3e8ee2c321884",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03222997486591339,
+ "mean_squared_error": 3.788551907746296e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.025952735915780067,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0993146151304245,
+ "total_groups": 2048,
+ "update_index": 652,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "90c2bce459083e28974bd30cf64662a22afffc18a024995a520e8665411459fb",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025485828518867493,
+ "mean_squared_error": 5.320358695826144e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.057050954550504684,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13947001099586487,
+ "total_groups": 2048,
+ "update_index": 653,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "e34c74ceec3434cfe3821fbbac5c9de493813790a9348c1cac07976071041c6d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029732659459114075,
+ "mean_squared_error": 4.315365913498681e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.025317907333374023,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11312472820281982,
+ "total_groups": 2048,
+ "update_index": 654,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "8f75472d2b2b1ebb81fe02d8f064bfc8bbdc29ca1b3d42bb70716d05bdf549d2",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021207787096500397,
+ "mean_squared_error": 1.0195092414733153e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.025087609887123108,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.026725823059678078,
+ "total_groups": 2048,
+ "update_index": 655,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "6e3ddd2e64be378a48eb563bec95c10295ef0b8adf79e8b99206310305a7393f",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025821462273597717,
+ "mean_squared_error": 1.4680904314445797e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.03741920739412308,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03848510980606079,
+ "total_groups": 2048,
+ "update_index": 656,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "d3fcd1ae5587863a3f465a9213bce0752128519291622b41cdc9a2555ea6f09f",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04276236891746521,
+ "mean_squared_error": 1.361435010949208e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.044683534651994705,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.35689201951026917,
+ "total_groups": 2048,
+ "update_index": 657,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "bc07b660d19624af86fe61b181cf6999d883b65a165845a25285e09e46094079",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.037729717791080475,
+ "mean_squared_error": 4.677567062572052e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.054589878767728806,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1226196140050888,
+ "total_groups": 2048,
+ "update_index": 658,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "8b2bc237559b86ae82512d4f70f29687b20755d607e8388fc4780cb400915c85",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020689889788627625,
+ "mean_squared_error": 2.5959019467336475e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.02808365598320961,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06805001199245453,
+ "total_groups": 2048,
+ "update_index": 659,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.043083131313323975,
+ "mean_squared_error": 1.1040854133170797e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.025557778775691986,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.28942936658859253,
+ "total_groups": 2048,
+ "update_index": 660,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "7e4ad4ab9984883199e9497ef6e4ac2fe987174bd904298d7d0eff93a51e953f",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06453748047351837,
+ "mean_squared_error": 5.162510660738917e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.04997701942920685,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.3533211946487427,
+ "total_groups": 2048,
+ "update_index": 661,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09601962566375732,
+ "mean_squared_error": 7.740389264654368e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04261310398578644,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.0290966033935547,
+ "total_groups": 2048,
+ "update_index": 662,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08552420139312744,
+ "mean_squared_error": 3.2266470952890813e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.040236812084913254,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8458461761474609,
+ "total_groups": 2048,
+ "update_index": 663,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0779697448015213,
+ "mean_squared_error": 2.9835082386853173e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.039931923151016235,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7821087837219238,
+ "total_groups": 2048,
+ "update_index": 664,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "e523565a1f5c20bbfdfbf2416dd89ad8c9902c744639013862cfd89c7b3b3679",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04182669147849083,
+ "mean_squared_error": 5.672911242982082e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.038871731609106064,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14871196448802948,
+ "total_groups": 2048,
+ "update_index": 665,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "b3fb912a52ae641db4673d4da9e867d49a1d87273ffbd6e0203f2905d5caf7e3",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020149491727352142,
+ "mean_squared_error": 2.2448240599715064e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.014103719964623451,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.058846715837717056,
+ "total_groups": 2048,
+ "update_index": 666,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "87289d9767e2b96072dc098dc3d723086c1d6a7201a18b7574bf69ad9a178875",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.004507407546043396,
+ "mean_squared_error": 2.6262030772272738e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.014467907138168812,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0068844337947666645,
+ "total_groups": 2048,
+ "update_index": 667,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "88ec45384611785092bd4913cde1e710d1a43e726b518656abb6212fb6b72d10",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011971361935138702,
+ "mean_squared_error": 1.6152159787452547e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.026188144460320473,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.042341917753219604,
+ "total_groups": 2048,
+ "update_index": 668,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04544496536254883,
+ "mean_squared_error": 1.1328864957249607e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.0173069816082716,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2969793975353241,
+ "total_groups": 2048,
+ "update_index": 669,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "7e0de400159084df42076e660eb250ccd499dd9a47f527cc01c1532d330df632",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0263577401638031,
+ "mean_squared_error": 4.683202803335007e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02927936427295208,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12276735156774521,
+ "total_groups": 2048,
+ "update_index": 670,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "ef51a1ad2aa3333b2d9e4262fbdbfc9f67543ac5b508d3fb895e7d29e575ee2a",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02421305701136589,
+ "mean_squared_error": 9.59775093178905e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.07792579382658005,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2515992820262909,
+ "total_groups": 2048,
+ "update_index": 671,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "bb11bb812bf138249a8df09f83deb6777b460c54e52b468909611e89c26f8b2b",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.036392927169799805,
+ "mean_squared_error": 8.553162160751526e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03552817180752754,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2242160141468048,
+ "total_groups": 2048,
+ "update_index": 672,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "8f75472d2b2b1ebb81fe02d8f064bfc8bbdc29ca1b3d42bb70716d05bdf549d2",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03017754852771759,
+ "mean_squared_error": 3.922340852113848e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.049553707242012024,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10282181203365326,
+ "total_groups": 2048,
+ "update_index": 673,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "f0149bf50a346e2619d4d39062848a648b5667921a5f407b7953f0516a80882a",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024462630972266197,
+ "mean_squared_error": 3.7094832805451006e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.059046391397714615,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09724187850952148,
+ "total_groups": 2048,
+ "update_index": 674,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "d3fcd1ae5587863a3f465a9213bce0752128519291622b41cdc9a2555ea6f09f",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03225216269493103,
+ "mean_squared_error": 1.2663522284128703e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04246604070067406,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3319666385650635,
+ "total_groups": 2048,
+ "update_index": 675,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "85b9d9e755926785f20215bc0f30f501ee8c25eda7994e8107c655e066f72ea1",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03435153141617775,
+ "mean_squared_error": 8.40886741571012e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.07254887372255325,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22043341398239136,
+ "total_groups": 2048,
+ "update_index": 676,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "8b2bc237559b86ae82512d4f70f29687b20755d607e8388fc4780cb400915c85",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02782515436410904,
+ "mean_squared_error": 6.260711984396039e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.043608199805021286,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16412080824375153,
+ "total_groups": 2048,
+ "update_index": 677,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "080dc4a70325bfc162e2a6a0cf0f4af9de628d04c006416c3d69040693765fc5",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05682402849197388,
+ "mean_squared_error": 3.3286664802290034e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.04464079812169075,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8725899457931519,
+ "total_groups": 2048,
+ "update_index": 678,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "7e4ad4ab9984883199e9497ef6e4ac2fe987174bd904298d7d0eff93a51e953f",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06612503528594971,
+ "mean_squared_error": 6.941306310181972e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.059394944459199905,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8196218013763428,
+ "total_groups": 2048,
+ "update_index": 679,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10393501818180084,
+ "mean_squared_error": 1.4402223314391449e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05835645645856857,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.775456428527832,
+ "total_groups": 2048,
+ "update_index": 680,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09608232975006104,
+ "mean_squared_error": 5.061505362391472e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.050798747688531876,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.32684326171875,
+ "total_groups": 2048,
+ "update_index": 681,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08396889269351959,
+ "mean_squared_error": 6.888438292662613e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06042799353599548,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.805762767791748,
+ "total_groups": 2048,
+ "update_index": 682,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "91ea5ad23ec525a8970b7b6f3a339a08d6badd7462f1d6460bc82717f5ff92bd",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04027712345123291,
+ "mean_squared_error": 1.2218973779454245e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.055922091007232666,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.32031306624412537,
+ "total_groups": 2048,
+ "update_index": 683,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "996da9a21d56ddcc3537b5c754564eefd42c7fdc211e4d3e7bfe3bb076b0ecd3",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03664451465010643,
+ "mean_squared_error": 2.450926785968477e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.01499545481055975,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06424957513809204,
+ "total_groups": 2048,
+ "update_index": 684,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "eed3720a7f89e7493bb594bd43128dfea8b5be6ae00d12e6198ffc95f5aa058a",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.006813660264015198,
+ "mean_squared_error": 8.175086918527086e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02384984865784645,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.021430499851703644,
+ "total_groups": 2048,
+ "update_index": 685,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "f05bf63dba879ad0983013f898a3f2c504da70ff280d1e5bfecfc3a63bd8e1d6",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01479019969701767,
+ "mean_squared_error": 2.318866449968482e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.03213481605052948,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06078769266605377,
+ "total_groups": 2048,
+ "update_index": 686,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "09a4c2179f5c8ead8fd886ab57368895f2fe4cfe7ef637f8efe38c4758f9d043",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03951172158122063,
+ "mean_squared_error": 1.9317985788802616e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.022565675899386406,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5064094066619873,
+ "total_groups": 2048,
+ "update_index": 687,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "51487fdbc763bd9fffa17a4196333b0e84cd251e1acb2771c97d8f9d3018b91b",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027189210057258606,
+ "mean_squared_error": 5.865260277460038e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.03373265266418457,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15375427901744843,
+ "total_groups": 2048,
+ "update_index": 688,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "069001eef479566e001bac52a2f21b6723e8b08d3ed5207f10f34eb199965719",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019686996936798096,
+ "mean_squared_error": 9.033287824422587e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.08653108030557632,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23680222034454346,
+ "total_groups": 2048,
+ "update_index": 689,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "43be031fef3ef039e86118be66f85a46c58d850bdacb89c3f58bdeb34689deba",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.031951405107975006,
+ "mean_squared_error": 6.665065939159831e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03210659697651863,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17472070455551147,
+ "total_groups": 2048,
+ "update_index": 690,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "7b8c1d06b6f271886bcb057cd1397447fa01283c8ca107c6f90d4ebcf04d2b81",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.036622583866119385,
+ "mean_squared_error": 9.391903859068407e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.07117176800966263,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.24620312452316284,
+ "total_groups": 2048,
+ "update_index": 691,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "80e59f62dbb6ab8d7f3febd9787af5f24908c6cfff1214ecb5465ad5edd0e300",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020435061305761337,
+ "mean_squared_error": 5.651631909131538e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.0782943069934845,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1481541395187378,
+ "total_groups": 2048,
+ "update_index": 692,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "fafe29ad0ea2ff634ae6f2bdd8290ca4f37e2decd96373377556317a9e307c05",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04710817337036133,
+ "mean_squared_error": 2.038706952589564e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.05416702851653099,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5344347953796387,
+ "total_groups": 2048,
+ "update_index": 693,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "128c23927c85abea0d8026dc086ff201ec1ba61c7ea52a39d779c2fa2d38384b",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01935763657093048,
+ "mean_squared_error": 5.335607511369744e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.06981135904788971,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13986974954605103,
+ "total_groups": 2048,
+ "update_index": 694,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "5713eb042d8790c592bd01fe43ad8411bb7243ce13fb92e2b91bfc81c7de6233",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027164891362190247,
+ "mean_squared_error": 1.252172523891204e-06,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.06620434671640396,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3282495141029358,
+ "total_groups": 2048,
+ "update_index": 695,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "84229d522ba9c63907173a06a0d7ddfe2c2401adcb6ff6a9fe281bceee5f72c9",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1756824254989624,
+ "mean_squared_error": 1.72545769601129e-05,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.100845105946064,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 4.523183822631836,
+ "total_groups": 2048,
+ "update_index": 696,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "c4adfb4b9682560c2bbbec83e6933042fe21a1ab2aaf933cf2a3c85435f624bd",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07003474235534668,
+ "mean_squared_error": 1.407948639098322e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.08674097806215286,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.6908528804779053,
+ "total_groups": 2048,
+ "update_index": 697,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a75183d3a5372857ee778d1ca89e5df8ca5ad1f7f18eb3584b30356cb6ad7e4a",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.14104896783828735,
+ "mean_squared_error": 2.5829758669715375e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07886771857738495,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 6.771116256713867,
+ "total_groups": 2048,
+ "update_index": 698,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "61595f5dcfe36a9e1fd381f395ef70db26083bbfd50616282e4c8da6dafaa722",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.14033228158950806,
+ "mean_squared_error": 1.1528898539836518e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.07674424350261688,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.0222315788269043,
+ "total_groups": 2048,
+ "update_index": 699,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "77705e207c3c73f0240468d1734f0704db1a80f6155a0c3541148edb7719eef1",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0990896075963974,
+ "mean_squared_error": 1.051721119438298e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07472798973321915,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.757023811340332,
+ "total_groups": 2048,
+ "update_index": 700,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "ae89d2228261ddae07798540f6e751d232361d5ab04e79a5d2ed1a2ea3330258",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03643722087144852,
+ "mean_squared_error": 1.4321281014417764e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06173252686858177,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "query_ema32_weighted_aligned_mse_reduction",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.375423789024353,
+ "total_groups": 2048,
+ "update_index": 701,
+ "write_ordinal": 38
+ }
+ ]
+ },
+ "right_rht_query_ema32_weighted_mse_target_fisher_quota": {
+ "aggregate_state_mse": 1.9718826055776807e-06,
+ "aggregate_state_sse": 362.875870017102,
+ "coverage": [
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 1
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 2
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 3
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 4
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 5
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 6
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 7
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 8
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 9
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 10
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 11
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 12
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 13
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 14
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 15
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 16
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 17
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 18
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 19
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 20
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 21
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 22
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 23
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 24
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 25
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 26
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 27
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 28
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 29
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 30
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 31
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 32
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 33
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 34
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 35
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 36
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 37
+ },
+ {
+ "layer_index": 0,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 1,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 2,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 4,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 5,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 6,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 8,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 9,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 10,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 12,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 13,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 14,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 16,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 17,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 18,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 20,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 21,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ },
+ {
+ "layer_index": 22,
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "state_index": 0,
+ "write_ordinal": 38
+ }
+ ],
+ "element_count": 184025088,
+ "per_layer": {
+ "0": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 0.9084624331444502
+ },
+ "1": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 0.387847957899794
+ },
+ "10": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 1.8841030020266771
+ },
+ "12": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 9.761254891753197
+ },
+ "13": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 3.421382211148739
+ },
+ "14": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 4.909543313086033
+ },
+ "16": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 34.4194395840168
+ },
+ "17": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 59.19567459821701
+ },
+ "18": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 107.51928174495697
+ },
+ "2": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 1.5577608831226826
+ },
+ "20": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 57.93436759710312
+ },
+ "21": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 51.411483496427536
+ },
+ "22": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 7.724238686263561
+ },
+ "4": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 9.42694015800953
+ },
+ "5": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 3.4081287793815136
+ },
+ "6": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 2.7870895713567734
+ },
+ "8": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 3.8998722322285175
+ },
+ "9": {
+ "element_count": 10223616,
+ "record_count": 39,
+ "state_sse": 2.3189988769590855
+ }
+ },
+ "per_write": {
+ "0": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 19.047323256731033
+ },
+ "1": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 10.193845025263727
+ },
+ "10": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 9.894322324544191
+ },
+ "11": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 8.677514696493745
+ },
+ "12": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 10.423372459597886
+ },
+ "13": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 10.506116012576967
+ },
+ "14": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 10.832310106605291
+ },
+ "15": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 9.540357120335102
+ },
+ "16": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 7.8289513401687145
+ },
+ "17": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 7.8944773292168975
+ },
+ "18": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 8.95786364004016
+ },
+ "19": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 9.588334559462965
+ },
+ "2": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 9.831728182733059
+ },
+ "20": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 9.717188890092075
+ },
+ "21": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 9.443474318832159
+ },
+ "22": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 10.603593633510172
+ },
+ "23": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 12.075056193396449
+ },
+ "24": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 10.46957935206592
+ },
+ "25": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 8.393204154446721
+ },
+ "26": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 7.876140231266618
+ },
+ "27": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 8.905773519538343
+ },
+ "28": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 8.221454381942749
+ },
+ "29": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 7.870052110403776
+ },
+ "3": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 8.437108766287565
+ },
+ "30": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 7.375025230459869
+ },
+ "31": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 7.8818720960989594
+ },
+ "32": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 6.23437664937228
+ },
+ "33": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 6.38426305539906
+ },
+ "34": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 5.691372982226312
+ },
+ "35": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 4.998879881575704
+ },
+ "36": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 4.821331731975079
+ },
+ "37": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 7.158105274196714
+ },
+ "38": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 10.128220234066248
+ },
+ "4": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 10.53493025782518
+ },
+ "5": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 10.527583074755967
+ },
+ "6": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 11.198451471515
+ },
+ "7": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 11.66535327769816
+ },
+ "8": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 11.930394571274519
+ },
+ "9": {
+ "element_count": 4718592,
+ "record_count": 18,
+ "state_sse": 11.116568623110652
+ }
+ },
+ "record_count": 702,
+ "records": [
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "2ce27031e7a883442d3d4bddfa2f3b214db2e3e0cd9b4e3249a339fe1ce0f1bf",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008460846729576588,
+ "mean_squared_error": 3.5657632224683766e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.01893090270459652,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09347434341907501,
+ "total_groups": 2048,
+ "update_index": 0,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "8ed326cf780448885d58912f63a9d8dfeefc94442b0776a64b3957db00cf139b",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.003092559054493904,
+ "mean_squared_error": 5.6697700756558334e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.020288465544581413,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.014862962067127228,
+ "total_groups": 2048,
+ "update_index": 1,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "abf9279b6c6550abf5d0986a4e974f10c45eda83a5058d9c8413876b02e0a37f",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007353547960519791,
+ "mean_squared_error": 3.2661856153026747e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.03767639771103859,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08562109619379044,
+ "total_groups": 2048,
+ "update_index": 2,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "a7686b0110ec9fee02dcc1f9086cb7da50507aa07f3decc922a2a3c6657b0587",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021294429898262024,
+ "mean_squared_error": 1.969652203115402e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.023057306185364723,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5163325071334839,
+ "total_groups": 2048,
+ "update_index": 3,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "fb9b4032b2f87c1de40808561eb87ce5f60a67faee3e8d159b65d46d7f700c93",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011086341924965382,
+ "mean_squared_error": 7.659890570721473e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.03965051844716072,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20079943537712097,
+ "total_groups": 2048,
+ "update_index": 4,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "eab61efe64ef83422be64bd8a51c4e5968d1abd48828f3c983d837bb4606bb4b",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007396527100354433,
+ "mean_squared_error": 3.9934411688591354e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.061632946133613586,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10468566417694092,
+ "total_groups": 2048,
+ "update_index": 5,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "1bd34567742bb4bb3d517a791f2a10bf33234154ba1e6529c4e52aa8373e6154",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014803720638155937,
+ "mean_squared_error": 6.813864956711768e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.03433046117424965,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17862138152122498,
+ "total_groups": 2048,
+ "update_index": 6,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "1c2b4330bbe043dc8688d3ed415a13ad403bc466eeab40affe44ff741d0906a9",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012419067323207855,
+ "mean_squared_error": 5.886034841751098e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.05756654962897301,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15429887175559998,
+ "total_groups": 2048,
+ "update_index": 7,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "4d948ec57500d803187b2393bfd2f749d07fa94d4610f8d28d5e06ab2e83149d",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.00621375348418951,
+ "mean_squared_error": 2.1711375097765995e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.06109229475259781,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05691506713628769,
+ "total_groups": 2048,
+ "update_index": 8,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "7221bdc64d9f88080129475c0157f87a6ce04872dea982ae87af8fd5f4e61719",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03442149609327316,
+ "mean_squared_error": 1.7382610622007633e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.05703917518258095,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4556747078895569,
+ "total_groups": 2048,
+ "update_index": 9,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "61a013e12ed646c5e521abd1300192c425085eba323ff2e500eba9b81c20f1ee",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.009373288601636887,
+ "mean_squared_error": 4.096511077023024e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.06677361577749252,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10738757997751236,
+ "total_groups": 2048,
+ "update_index": 10,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "1e120d8d46ffd286958cb2c9262cf97437a5c4bcc5e2b0d7f60cf278c7ccc634",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014143936336040497,
+ "mean_squared_error": 6.253644642129075e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.052479226142168045,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16393554210662842,
+ "total_groups": 2048,
+ "update_index": 11,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "f7dcebaca16262bdd21b79c284e3136801fbee1212b37fa7705d56b104e26e0b",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.044831953942775726,
+ "mean_squared_error": 7.3972964855784085e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.08405957370996475,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.9391568899154663,
+ "total_groups": 2048,
+ "update_index": 12,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "c0ff1267901ad18c8447e735afe8e4339437f2ef0587bb7e0a3da72fd7f7966e",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.044996436685323715,
+ "mean_squared_error": 1.0047595424111933e-05,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.08505618572235107,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.6339168548583984,
+ "total_groups": 2048,
+ "update_index": 13,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "c689dbe35ae758866327827014c992a5dc9d94d5d89de32145b3114bec92741e",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12213051319122314,
+ "mean_squared_error": 2.2889675165060908e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.0864930972456932,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 6.000391006469727,
+ "total_groups": 2048,
+ "update_index": 14,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "5beb27a0eedf095d016b9ca38e941b26f638d35e8b521f568ea7f9fca62ec2a1",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08543351292610168,
+ "mean_squared_error": 1.0549569196882658e-05,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.08362056314945221,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.7655062675476074,
+ "total_groups": 2048,
+ "update_index": 15,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "7ce2d9cdf567f901f78d397d8c55c5ce1ebe66db542207b543fe396e77f0a38f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08048098534345627,
+ "mean_squared_error": 1.235070430993801e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.09938934445381165,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.2376630306243896,
+ "total_groups": 2048,
+ "update_index": 16,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "374b0bb936e2e1c98accd83253d9a675fde7510ff57aad0f7b00e8a55d9fb4c1",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021011851727962494,
+ "mean_squared_error": 1.2896730368083809e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.0652889609336853,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3380800485610962,
+ "total_groups": 2048,
+ "update_index": 17,
+ "write_ordinal": 0
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "dce40826c122cc5e03f7c7efd8802f87b857b4f30898a16f6f594f05fa518571",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014157116413116455,
+ "mean_squared_error": 1.024130114046784e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.010073448531329632,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.026846956461668015,
+ "total_groups": 2048,
+ "update_index": 18,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "8de341b52dca13c0527f5fa4ebb9860596ffa910c43939dc64f18a05fecaa5d3",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.003140954300761223,
+ "mean_squared_error": 1.9460127731463217e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.012349613010883331,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.005101355724036694,
+ "total_groups": 2048,
+ "update_index": 19,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "0f8b53b6b3c1a13da75c58682972c38e6ea2434d5b52b877047d41052acb0e7e",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008454283699393272,
+ "mean_squared_error": 1.2393668669119506e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.025202453136444092,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03248925879597664,
+ "total_groups": 2048,
+ "update_index": 20,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "54ef3a69b076eb275aa0b53d111b7efaaa3ed2eac66ad11eda45c0bb0a0a6a43",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0298883318901062,
+ "mean_squared_error": 9.306131119046768e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.01582450419664383,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2439546436071396,
+ "total_groups": 2048,
+ "update_index": 21,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "6a8da0cd3b5fbb4c5343b84055d35a3b98b1b6385eba36180a142a4d5d799fab",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01501607894897461,
+ "mean_squared_error": 3.6817272075495566e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02737155184149742,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0965142697095871,
+ "total_groups": 2048,
+ "update_index": 22,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "9cacbcc857cbeea8a4112d9f5e56c12a761fb32f4cc15553eabc84c11812a9ae",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.009451091289520264,
+ "mean_squared_error": 1.4472088594175148e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04240014776587486,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0379377119243145,
+ "total_groups": 2048,
+ "update_index": 23,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "844138c2e692ace9b16660ceea79b0d91d894af50b0900e2c9ec9dee50855e2b",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024927496910095215,
+ "mean_squared_error": 3.910595012257545e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02615376003086567,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10251390188932419,
+ "total_groups": 2048,
+ "update_index": 24,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "f5c42b7a8ec2fe0946916bf5353d1d9c313ddf4cbcf4a32d25fd192a342f93dc",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026913532987236977,
+ "mean_squared_error": 2.2058232218569174e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03325358033180237,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.057824332267045975,
+ "total_groups": 2048,
+ "update_index": 25,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "bbb11515a6adb308ba700f80df466ae32c6b71c3c886c4c36833658cac838552",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007252562791109085,
+ "mean_squared_error": 9.219317576025787e-08,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04927597567439079,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02416788786649704,
+ "total_groups": 2048,
+ "update_index": 26,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "cc83fd46435cdf1b63cb66a10044fd5d0cb9d70f1c922aecd85e952c3068d6e1",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0347580760717392,
+ "mean_squared_error": 8.218871130338812e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.040960051119327545,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21545277535915375,
+ "total_groups": 2048,
+ "update_index": 27,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "55166e77014330530614a3b7bc46af1ff09d2941b345d4beb9dc6484a195b782",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015981940552592278,
+ "mean_squared_error": 1.892143615123132e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05324744060635567,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04960140958428383,
+ "total_groups": 2048,
+ "update_index": 28,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "820faa02e2b7359b7968ed11ae46707e85633fc144117c24376ba9895540839b",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02054990828037262,
+ "mean_squared_error": 3.346612515997549e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04187731444835663,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08772943913936615,
+ "total_groups": 2048,
+ "update_index": 29,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "8c200533bfcbfc67810de9bf698aea4c3fd44231937d3e4c127275b2c9293077",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06307648122310638,
+ "mean_squared_error": 5.113273346069036e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.06867057085037231,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.3404139280319214,
+ "total_groups": 2048,
+ "update_index": 30,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "432b7c046525290515fcea2abf851a63042ec2c5e9590185c7ad445daf3da611",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06755594909191132,
+ "mean_squared_error": 7.374695996986702e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.07211126387119293,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.933232307434082,
+ "total_groups": 2048,
+ "update_index": 31,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "c689dbe35ae758866327827014c992a5dc9d94d5d89de32145b3114bec92741e",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.13789868354797363,
+ "mean_squared_error": 1.1939369869651273e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.061401933431625366,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.1298341751098633,
+ "total_groups": 2048,
+ "update_index": 32,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "5beb27a0eedf095d016b9ca38e941b26f638d35e8b521f568ea7f9fca62ec2a1",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07101327180862427,
+ "mean_squared_error": 5.263778803055175e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05897625535726547,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.3798680305480957,
+ "total_groups": 2048,
+ "update_index": 33,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "7ce2d9cdf567f901f78d397d8c55c5ce1ebe66db542207b543fe396e77f0a38f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04436288774013519,
+ "mean_squared_error": 4.5850783862988465e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06004994362592697,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2019507884979248,
+ "total_groups": 2048,
+ "update_index": 34,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "498edac919a92d277cc6378390a9395b2180f3599861dee1ba859bf9cf0e0255",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03293054550886154,
+ "mean_squared_error": 8.713220722711412e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.054623231291770935,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22841185331344604,
+ "total_groups": 2048,
+ "update_index": 35,
+ "write_ordinal": 1
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "9fab0b61482e0f0ebdd5b8239e89650f45d9d582c048d8f472ea47309e4204f0",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012752234935760498,
+ "mean_squared_error": 6.681445086087479e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.00810691062361002,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01751500740647316,
+ "total_groups": 2048,
+ "update_index": 36,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "8519c7d631b25f0b8385c26e12cc3b9c9dcc8bce83e2ac215ca9639996ee9070",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.004055827856063843,
+ "mean_squared_error": 4.762064520491549e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.018738502636551857,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.012483466416597366,
+ "total_groups": 2048,
+ "update_index": 37,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "51ec39962777386d260ad7ce2df5c5e0c0fe949932ccb43f743eacab95f50bc9",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013067424297332764,
+ "mean_squared_error": 2.367348201914865e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.031741783022880554,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06205861270427704,
+ "total_groups": 2048,
+ "update_index": 38,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "74f790f2360a0d2d0e1d6e0e79d89b7495fd258b7a8ef72d21d377cb4b971c1a",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025465667247772217,
+ "mean_squared_error": 1.0972339623549487e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.017236020416021347,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2876332998275757,
+ "total_groups": 2048,
+ "update_index": 39,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "c1c79b82e9cfd76b74355eaa3ec3a932afc1bc1eee76d5c43b464e5d8fe912b9",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01941523514688015,
+ "mean_squared_error": 4.409306768593524e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.029155336320400238,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11558733135461807,
+ "total_groups": 2048,
+ "update_index": 40,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "a3855a241a1bf11dc603234c85fb5b3309d69985d4a9aa52a4ecdd4b8bdcda1f",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012770518660545349,
+ "mean_squared_error": 3.022029773092072e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.049593087285757065,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07922069728374481,
+ "total_groups": 2048,
+ "update_index": 41,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "2a32483bdb506ad3136ea9f2634158fd10069cfb97a541c4a97864e2b91b8bdc",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02490686997771263,
+ "mean_squared_error": 4.489877483138116e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.027501210570335388,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11769944429397583,
+ "total_groups": 2048,
+ "update_index": 42,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "e7a0c9262c588a92d8438c739f7243a3b74c22f9e2c42d8e8b22468dc92a0335",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02552376128733158,
+ "mean_squared_error": 2.9330485062928346e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03946418687701225,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07688810676336288,
+ "total_groups": 2048,
+ "update_index": 43,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "f0731cdc4b6883a18675fd3c2f7ea8f5925e578907da3216f7e507ae2f5a1424",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.00695192813873291,
+ "mean_squared_error": 1.5546146414635587e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.05125035345554352,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04075329005718231,
+ "total_groups": 2048,
+ "update_index": 44,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "cc83fd46435cdf1b63cb66a10044fd5d0cb9d70f1c922aecd85e952c3068d6e1",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03864770382642746,
+ "mean_squared_error": 9.207089988194639e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04269159957766533,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.24135833978652954,
+ "total_groups": 2048,
+ "update_index": 45,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "28ab951ff109af19e4922664f243599d1e75f3ca9fd807596d4b1b0c11471570",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013622401282191277,
+ "mean_squared_error": 3.3163786383738625e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.06286624819040298,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08693687617778778,
+ "total_groups": 2048,
+ "update_index": 46,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "ea4aeaed9e99dabeb38aa00679ca1139a5df504835273f04af81f71f87fb1170",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021428076550364494,
+ "mean_squared_error": 4.616133537638234e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04764021560549736,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12100917100906372,
+ "total_groups": 2048,
+ "update_index": 47,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "2431df6a9e09c2c26a0efe209fb2fd9222970a5becabe4d817b72d3d7556e10c",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08271940797567368,
+ "mean_squared_error": 4.560601155390032e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.06274408847093582,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1955342292785645,
+ "total_groups": 2048,
+ "update_index": 48,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "432b7c046525290515fcea2abf851a63042ec2c5e9590185c7ad445daf3da611",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06212536245584488,
+ "mean_squared_error": 6.470780135714449e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06570293754339218,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.6962761878967285,
+ "total_groups": 2048,
+ "update_index": 49,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "c689dbe35ae758866327827014c992a5dc9d94d5d89de32145b3114bec92741e",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11593645066022873,
+ "mean_squared_error": 9.974377462640405e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.055243104696273804,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.6147232055664062,
+ "total_groups": 2048,
+ "update_index": 50,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.14782951772212982,
+ "mean_squared_error": 5.9297076404618565e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06144113838672638,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.554437279701233,
+ "total_groups": 2048,
+ "update_index": 51,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "7ce2d9cdf567f901f78d397d8c55c5ce1ebe66db542207b543fe396e77f0a38f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07488256692886353,
+ "mean_squared_error": 4.957893906976096e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06176002696156502,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2996821403503418,
+ "total_groups": 2048,
+ "update_index": 52,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "28fa26b3ae605b6a55a8e6de98bda9261d84074853f28d926ce6ac2dd73f2b6a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.034527093172073364,
+ "mean_squared_error": 8.084545015663025e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.053571589291095734,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2119314968585968,
+ "total_groups": 2048,
+ "update_index": 53,
+ "write_ordinal": 2
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "fe70937613ca0ff8aa4f06323d2cfe8dec7fd9cba44dad11f2b7a862f7ce499d",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01436816155910492,
+ "mean_squared_error": 5.0742436030759563e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.007038377691060305,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.013301825150847435,
+ "total_groups": 2048,
+ "update_index": 54,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "f78c2cf02d1874ec187c189afd697144b70d297cd8b348b38ed6585df15cb6ec",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0052543506026268005,
+ "mean_squared_error": 5.136104874736702e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.019151268526911736,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01346399076282978,
+ "total_groups": 2048,
+ "update_index": 55,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "f87f7d4e72aaf3b27364d89c050221927c7328f719250a4fe828e8492fcda665",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014420337975025177,
+ "mean_squared_error": 1.7517032802061294e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.026554817333817482,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04591985046863556,
+ "total_groups": 2048,
+ "update_index": 56,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "b6bba78cf6b7fd12af8460245ecd6e5243162513f55a57e2902ce6e8d7206710",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02227550745010376,
+ "mean_squared_error": 8.170691785380768e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.014801600947976112,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2141897827386856,
+ "total_groups": 2048,
+ "update_index": 57,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "ed57b6938a58db92b473e7add046e8086dd77d0f7ee9e4487a66be4716f17dc4",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021311026066541672,
+ "mean_squared_error": 3.9646502614232304e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.027492918074131012,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10393092781305313,
+ "total_groups": 2048,
+ "update_index": 58,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "784e8533271f342d3364cf4224d176a4d8e947c16a0005ba7472d0feccdb8aa7",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012573644518852234,
+ "mean_squared_error": 3.4325091746723047e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.048335835337638855,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08998116850852966,
+ "total_groups": 2048,
+ "update_index": 59,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "d781fa48939f276be123d0fb1c685132eaf0830e08411663fe8d6d1cc70f52ea",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023225920274853706,
+ "mean_squared_error": 4.3930586457463505e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02703080140054226,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11516139656305313,
+ "total_groups": 2048,
+ "update_index": 60,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "9e8e621a74ccc72b59159198db23b891d4e4b4cd380c0ba8b2778f9541d535ae",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016339421272277832,
+ "mean_squared_error": 2.5993278995883884e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.039593495428562164,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06813982129096985,
+ "total_groups": 2048,
+ "update_index": 61,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "7414721ed9cc4c66644bf6628d3c4b2016060ba751e7e26f1adc32dbc1e84352",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011880159378051758,
+ "mean_squared_error": 1.6411370040714246e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04911050572991371,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04302142187952995,
+ "total_groups": 2048,
+ "update_index": 62,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "cc83fd46435cdf1b63cb66a10044fd5d0cb9d70f1c922aecd85e952c3068d6e1",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02565304934978485,
+ "mean_squared_error": 8.259224841822288e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03951963409781456,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2165106236934662,
+ "total_groups": 2048,
+ "update_index": 63,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "00ff60b96d3d7931e947c9f00190f1bcd0b2609c7841f13888ac0ef53c1525b6",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014499396085739136,
+ "mean_squared_error": 3.0226985359149694e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.056297384202480316,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07923822849988937,
+ "total_groups": 2048,
+ "update_index": 64,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "4641a4f035aa99c55ee4272056f0ae7035223e148e21bbb87fe06e1714352111",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020749343559145927,
+ "mean_squared_error": 4.898876113657025e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.046776264905929565,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1284210979938507,
+ "total_groups": 2048,
+ "update_index": 65,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "3275684999af21052cda093967d534248c7885ad1fe77e65ee6b96652d7088e1",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0547642856836319,
+ "mean_squared_error": 3.5062669212493347e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05432264879345894,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.9191468358039856,
+ "total_groups": 2048,
+ "update_index": 66,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "a877dde562306e784a7fc63530755a9ba0f5092e0bbc0c910f534881c5d6671d",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.048551980406045914,
+ "mean_squared_error": 5.3438175200426485e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.05831442400813103,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.40084969997406,
+ "total_groups": 2048,
+ "update_index": 67,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "c689dbe35ae758866327827014c992a5dc9d94d5d89de32145b3114bec92741e",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.15106450021266937,
+ "mean_squared_error": 8.684188287588768e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.051537368446588516,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.27650785446167,
+ "total_groups": 2048,
+ "update_index": 68,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08495789766311646,
+ "mean_squared_error": 5.686915756086819e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.060102786868810654,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.490790843963623,
+ "total_groups": 2048,
+ "update_index": 69,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "7ce2d9cdf567f901f78d397d8c55c5ce1ebe66db542207b543fe396e77f0a38f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05713619664311409,
+ "mean_squared_error": 3.966506938013481e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05468239262700081,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.039795994758606,
+ "total_groups": 2048,
+ "update_index": 70,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "d1eabe8972ab72faeaf3fe9c3606be325bfc77d0a5aa18e0ea5b4fa5660bf7bb",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.035703692585229874,
+ "mean_squared_error": 6.818290785304271e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04979803040623665,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17873740196228027,
+ "total_groups": 2048,
+ "update_index": 71,
+ "write_ordinal": 3
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "15797614d6c5c201c2c51e5105d18d199f019fe0c6ab26b381614b543a1347de",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008910983800888062,
+ "mean_squared_error": 5.404383074392172e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.007258185651153326,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.014167265966534615,
+ "total_groups": 2048,
+ "update_index": 72,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "2d03d91d8fd93614b34fdb9d7ef79ec218769d86926e0f2242171c4614673ff5",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.004819229245185852,
+ "mean_squared_error": 1.3853411751085787e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.01076461374759674,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0036315887700766325,
+ "total_groups": 2048,
+ "update_index": 73,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "c41d95cb2d2c8372a2b82b26f25a10e56f8f9306198618d8c37c3ce9316c4e47",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013164207339286804,
+ "mean_squared_error": 1.2817864103453758e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.02322816476225853,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03360126167535782,
+ "total_groups": 2048,
+ "update_index": 74,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "9ba37879aa1a3954509637a9dd809ef29392381059fa451a124865e1142beb11",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03397071361541748,
+ "mean_squared_error": 7.109256330295466e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.013881419785320759,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18636488914489746,
+ "total_groups": 2048,
+ "update_index": 75,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "64bfa814a8e7ed3f80a809b9c7ba50fe3120747642731b5fd9f8568fd8fa9153",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019931521266698837,
+ "mean_squared_error": 3.18065815463342e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02482190541923046,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08337904512882233,
+ "total_groups": 2048,
+ "update_index": 76,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "03f365dac29f8e0770a553106a2222d6a5b618f04306343af54c5c29bac380e6",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012062232941389084,
+ "mean_squared_error": 2.6126423335881555e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.043085500597953796,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06848885118961334,
+ "total_groups": 2048,
+ "update_index": 77,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "da61dd48c70fd8a30af3e3007fe55be8080359bf39baf88e343f848ccc4b507d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02495979145169258,
+ "mean_squared_error": 3.6441014117372106e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.024513300508260727,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09552793204784393,
+ "total_groups": 2048,
+ "update_index": 78,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "7896776d216cbd290694c35814d410976ed64c52b2f2660eada193a0dab00f8f",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02194051258265972,
+ "mean_squared_error": 2.389160727034323e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04063928499817848,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06263041496276855,
+ "total_groups": 2048,
+ "update_index": 79,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "66a88b0299f5181e83cd34554b432fa701e68511570d98b5fa31c391a2a59e63",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.009649991989135742,
+ "mean_squared_error": 1.7293618270741717e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04888138547539711,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04533418267965317,
+ "total_groups": 2048,
+ "update_index": 80,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "0d7f35c7c48ab59834aa6945600779665e07efc584cf1492a63d920a1bcccfa2",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030338816344738007,
+ "mean_squared_error": 1.0460429393788218e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.043804366141557693,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.27421388030052185,
+ "total_groups": 2048,
+ "update_index": 81,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "7859f4e82f8f85e60a34e968b573e48d06d51f80c9bf689b524e5cf67732b2d2",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017349660396575928,
+ "mean_squared_error": 2.8333107593425666e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05250995233654976,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07427354156970978,
+ "total_groups": 2048,
+ "update_index": 82,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "146049715ae468cdc7ef41cdc0101086ef2e7649ebbbb86e07584bffbaca5b01",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0222538560628891,
+ "mean_squared_error": 4.4966515133637586e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04491297900676727,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11787702143192291,
+ "total_groups": 2048,
+ "update_index": 83,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "3275684999af21052cda093967d534248c7885ad1fe77e65ee6b96652d7088e1",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06194382905960083,
+ "mean_squared_error": 3.173923232679954e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.051380421966314316,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8320249319076538,
+ "total_groups": 2048,
+ "update_index": 84,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "7bda200cc5779fab3fc467e624eed2449bffcee1fd3edf678057c80c4e0996f9",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.050035059452056885,
+ "mean_squared_error": 5.985450115986168e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06065933033823967,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.5690498352050781,
+ "total_groups": 2048,
+ "update_index": 85,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b10782cfcac29e7c04a779a82376542fd16ded4dcfcad4f5c92a318bdb5cff20",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1448644995689392,
+ "mean_squared_error": 1.2542353942990303e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.061019111424684525,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.28790283203125,
+ "total_groups": 2048,
+ "update_index": 86,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12824591994285583,
+ "mean_squared_error": 6.611534445255529e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.0644422397017479,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.7331740856170654,
+ "total_groups": 2048,
+ "update_index": 87,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "7ce2d9cdf567f901f78d397d8c55c5ce1ebe66db542207b543fe396e77f0a38f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12133550643920898,
+ "mean_squared_error": 7.08554307493614e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07115466147661209,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8574326038360596,
+ "total_groups": 2048,
+ "update_index": 88,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "d1eabe8972ab72faeaf3fe9c3606be325bfc77d0a5aa18e0ea5b4fa5660bf7bb",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.037657152861356735,
+ "mean_squared_error": 7.471317076124251e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.05147375911474228,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19585609436035156,
+ "total_groups": 2048,
+ "update_index": 89,
+ "write_ordinal": 4
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "4ea66ee7bc65ff4933d25fd82e944e3f4474679ac94f15906acdfb9480d7c97e",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012402012944221497,
+ "mean_squared_error": 6.896802062783536e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008205507881939411,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.018079552799463272,
+ "total_groups": 2048,
+ "update_index": 90,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "d8d30e37d586731bc5caaf7747eda468877afd17fcf292d679511ed68d6721d0",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.006616406142711639,
+ "mean_squared_error": 2.7485445031061317e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.014440895058214664,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.007205144502222538,
+ "total_groups": 2048,
+ "update_index": 91,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "ce65541cb01636506444bf69b86046e3b698fb472abc98e09c4576c5cf6a1c50",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008371332660317421,
+ "mean_squared_error": 2.086825361402589e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.028860585764050484,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.054704874753952026,
+ "total_groups": 2048,
+ "update_index": 92,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "d839bb4bfd0daa2d0546eb014061197f3e02ea0475771402dd4a142f055e7b45",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029771924018859863,
+ "mean_squared_error": 1.1142208222736372e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.017333747819066048,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.29208630323410034,
+ "total_groups": 2048,
+ "update_index": 93,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "18f6fd7ab3e874e95b86f2b0ec36cf8d40881305ff6f2492e90554ca705014e8",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03488873690366745,
+ "mean_squared_error": 3.538785335877037e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02586786448955536,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.092767134308815,
+ "total_groups": 2048,
+ "update_index": 94,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "da3e9dcc5e5607f89fb62397c51c431bb552f04a99305bd562bafce29b116567",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014633804559707642,
+ "mean_squared_error": 3.3125667187050567e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.047924451529979706,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08683694899082184,
+ "total_groups": 2048,
+ "update_index": 95,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "d4956dba1fef559c029b05fbc46478b84df22eafd6e9b202851ee5aa2ff93a24",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020132005214691162,
+ "mean_squared_error": 4.567230291740998e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.027446694672107697,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11972720175981522,
+ "total_groups": 2048,
+ "update_index": 96,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "b07970eb3a850c540958d6310718ca42d6186ce8d03e075ff9c6cd5e11622493",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015524506568908691,
+ "mean_squared_error": 2.52830147928762e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04335672780871391,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06627790629863739,
+ "total_groups": 2048,
+ "update_index": 97,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "91aeae5a8fddc447d087d94b500b49eeefe2b7cb6e1bba7e9d9a5a37eddf9cbd",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011812359094619751,
+ "mean_squared_error": 2.0534400846372591e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.048029880970716476,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.053829699754714966,
+ "total_groups": 2048,
+ "update_index": 98,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "26770f97ba13d3582b4c7fd1fb9ee947a6ffdf4cb6997915fc8c9ef8831e3cbf",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03250155970454216,
+ "mean_squared_error": 1.1400009043427417e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04604445770382881,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2988443970680237,
+ "total_groups": 2048,
+ "update_index": 99,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "0e2695602da174ba5c778e46167ebfb8f39fec7d28289158535955c0b3a998a6",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022002190351486206,
+ "mean_squared_error": 3.3072950600399054e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05855291709303856,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0866987556219101,
+ "total_groups": 2048,
+ "update_index": 100,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "6a1abfd34bbaf0b2a96e90955a3db0954b1c8d9cf5dd03d4220a7928d69e2f93",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020314015448093414,
+ "mean_squared_error": 5.607402044915943e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04949552193284035,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1469946801662445,
+ "total_groups": 2048,
+ "update_index": 101,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "5a484c410b95b4ba557dd4d6b2527a27bc973b1ae124e35f582a692f94121458",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06377458572387695,
+ "mean_squared_error": 3.1751987989991903e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.050790078938007355,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8323593139648438,
+ "total_groups": 2048,
+ "update_index": 102,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "7bda200cc5779fab3fc467e624eed2449bffcee1fd3edf678057c80c4e0996f9",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05060224235057831,
+ "mean_squared_error": 5.8834302762988955e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.05886734649538994,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.5423059463500977,
+ "total_groups": 2048,
+ "update_index": 103,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b10782cfcac29e7c04a779a82376542fd16ded4dcfcad4f5c92a318bdb5cff20",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09932386875152588,
+ "mean_squared_error": 1.0477206160430796e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05509241297841072,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.7465367317199707,
+ "total_groups": 2048,
+ "update_index": 104,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08618564903736115,
+ "mean_squared_error": 6.7257888076710515e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06396237760782242,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.7631251811981201,
+ "total_groups": 2048,
+ "update_index": 105,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "7ce2d9cdf567f901f78d397d8c55c5ce1ebe66db542207b543fe396e77f0a38f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09425711631774902,
+ "mean_squared_error": 8.090719347819686e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07501540333032608,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.1209335327148438,
+ "total_groups": 2048,
+ "update_index": 106,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "197db31f33f8a6d22f728e4f8813077ffb95bc99762d0c2fb4c6ef80f0b31793",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024627570062875748,
+ "mean_squared_error": 7.563391477560799e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.05234614387154579,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1982697695493698,
+ "total_groups": 2048,
+ "update_index": 107,
+ "write_ordinal": 5
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "b53ba25d4bac1284fa97ef41ed362fa169e74e16ebbba26554bc027233bff2b6",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015051126480102539,
+ "mean_squared_error": 8.079103963609668e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.00878989789634943,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02117888629436493,
+ "total_groups": 2048,
+ "update_index": 108,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "85a3bc24e5515d6b4b9444f814e180c6a628608d4c4a9a6d53d0ad5bcc0905f2",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.004625424742698669,
+ "mean_squared_error": 2.302477142279713e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.01338365487754345,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.006035805679857731,
+ "total_groups": 2048,
+ "update_index": 109,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "1ff160209b39e3ec611681ddbdb02403017c142b4b2908a3d50ff4aab5055b6e",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010997980833053589,
+ "mean_squared_error": 1.421632020992547e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.0250482689589262,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.037267230451107025,
+ "total_groups": 2048,
+ "update_index": 110,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "5b3e36c2b13d0b48d77d511e12660ceca0026fc233934fc25e860a763f16474e",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03629934787750244,
+ "mean_squared_error": 1.1583560990402475e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.01776483654975891,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.30365610122680664,
+ "total_groups": 2048,
+ "update_index": 111,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "8f896c0dd294cd7eb7b31257a1b6927a9f942d9775125ffecf3899bac5f88f61",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029073506593704224,
+ "mean_squared_error": 4.756256544169446e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.031076228246092796,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12468241155147552,
+ "total_groups": 2048,
+ "update_index": 112,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "25dd185f171632e93713b885e6ecd6e87b8c8dd5e790e79c9b467f5f5afb5960",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015001818537712097,
+ "mean_squared_error": 3.252336853165616e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04758165031671524,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08525805920362473,
+ "total_groups": 2048,
+ "update_index": 113,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "ebbc33933d4f0cfe9e8622be05ad2769c22096cd054eac1f9e6d94935a0db5aa",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021349728107452393,
+ "mean_squared_error": 3.9170606669358676e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.025449639186263084,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10268339514732361,
+ "total_groups": 2048,
+ "update_index": 114,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "b8b3ebdf688c30b380526ea91822a3758ae038fed3e4bf21c910878c25f23667",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021558642387390137,
+ "mean_squared_error": 2.0331414418706117e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.039394501596689224,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.053297583013772964,
+ "total_groups": 2048,
+ "update_index": 115,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "cdd6c8439e79b6886514b0238581befcd75056744b8ebc4c7ad4e4c416e669c5",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019966453313827515,
+ "mean_squared_error": 2.164215686661919e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04873548075556755,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.056733615696430206,
+ "total_groups": 2048,
+ "update_index": 116,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "61899382638a5cb77fe020628eb1066a39533877e79695b82b1f69d522148a56",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.032112300395965576,
+ "mean_squared_error": 1.162431544798892e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.047391507774591446,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.30472445487976074,
+ "total_groups": 2048,
+ "update_index": 117,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "b0a61974560e68493c124d7c0db8f2aa39884486b383defd982a6491a29cb276",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01835360750555992,
+ "mean_squared_error": 2.6830122124010813e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05320668965578079,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0703335553407669,
+ "total_groups": 2048,
+ "update_index": 118,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "e58689cb446bc50d5a51cfc678d944cb6e1e61b587375c618a26e28701d61152",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021105950698256493,
+ "mean_squared_error": 5.146273451828165e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04744672775268555,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13490647077560425,
+ "total_groups": 2048,
+ "update_index": 119,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "faed36d69557c62e020e0aee127cd6206e9a4b258185666f00375cb0207591ff",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05072540417313576,
+ "mean_squared_error": 3.602894366849796e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05394618958234787,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.9444771409034729,
+ "total_groups": 2048,
+ "update_index": 120,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "017912c710335b87068ac0e1eebcaa2486940336ac952fe4ccf7ad06278eb17c",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.047888725996017456,
+ "mean_squared_error": 5.673684881912777e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.060665782541036606,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.487322449684143,
+ "total_groups": 2048,
+ "update_index": 121,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b10782cfcac29e7c04a779a82376542fd16ded4dcfcad4f5c92a318bdb5cff20",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09198498725891113,
+ "mean_squared_error": 1.251508729183115e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.060028716921806335,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.280755043029785,
+ "total_groups": 2048,
+ "update_index": 122,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08144062757492065,
+ "mean_squared_error": 7.047188773867674e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06562716513872147,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8473782539367676,
+ "total_groups": 2048,
+ "update_index": 123,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "7ce2d9cdf567f901f78d397d8c55c5ce1ebe66db542207b543fe396e77f0a38f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07393282651901245,
+ "mean_squared_error": 8.11631434771698e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07299536466598511,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.12764310836792,
+ "total_groups": 2048,
+ "update_index": 124,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "23885bb664b42b2d7adf45efb0015160319c19929865244e1ed08dddda34d924",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04413203150033951,
+ "mean_squared_error": 8.015362027435913e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.05105242878198624,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.210117906332016,
+ "total_groups": 2048,
+ "update_index": 125,
+ "write_ordinal": 6
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "0b1f36fdb0666d9dc55bf15f705ea75e690f6bdc8f6486a8881392f2bd3c4e50",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011315017938613892,
+ "mean_squared_error": 8.305017473730913e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008809998631477356,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.021771105006337166,
+ "total_groups": 2048,
+ "update_index": 126,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "680a9d87657d876f20cf3ba1eeffb5ab2983cbd7177404e3f6731642d5ef14e7",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.006077930331230164,
+ "mean_squared_error": 3.637291001723497e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.016257237643003464,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.009534940123558044,
+ "total_groups": 2048,
+ "update_index": 127,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "22075775c8cae40fed44c5045af320eeab1066296f4b3f7894a4b371d4ec07c2",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01434771716594696,
+ "mean_squared_error": 1.4977644013924873e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.026208247989416122,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03926299512386322,
+ "total_groups": 2048,
+ "update_index": 128,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "6f55d7fa7b7a17e060e384a30ded51f189b4ef184e98c36f627062108bb742d3",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.032693058252334595,
+ "mean_squared_error": 1.3411020063358592e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.01905534416437149,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.35156184434890747,
+ "total_groups": 2048,
+ "update_index": 129,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "268aa5d16ca43e24b290c57875e26bd1ecfb3ce6b39d651a6b4c788a7e42ddbb",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023209378123283386,
+ "mean_squared_error": 4.099052830497385e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.029196016490459442,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10745421051979065,
+ "total_groups": 2048,
+ "update_index": 130,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "d53afb1cbc9a57627bf04186fa7d558c14c711c21be4dfca47fed57ae045b6d6",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014970183372497559,
+ "mean_squared_error": 2.9403238954728295e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04640059918165207,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07707882672548294,
+ "total_groups": 2048,
+ "update_index": 131,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "7c68a382e1ea5c7aeaa892c513a839fb406f285b547dbff0a3bba935063b0ee5",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02349086105823517,
+ "mean_squared_error": 4.166150802120683e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02642050012946129,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10921314358711243,
+ "total_groups": 2048,
+ "update_index": 132,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "84bcb07e1c7a2df8af41584e1e18d46de8efaa1db811324dee0b4a1b604db4be",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022622957825660706,
+ "mean_squared_error": 2.3457690190298308e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04294401407241821,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0614929273724556,
+ "total_groups": 2048,
+ "update_index": 133,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "2f23d82aa27bcbf24dabf9abc64dbd5b80dd17071ddeb922b13cf47388f8d85b",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013471722602844238,
+ "mean_squared_error": 1.7880336145026376e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04381385073065758,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.046872228384017944,
+ "total_groups": 2048,
+ "update_index": 134,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "57f6c1ef029bf9574a06371af3dc1aec5d1fa9ac43c46bb68f4fcefa25512e85",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04239358380436897,
+ "mean_squared_error": 1.2114911669414141e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.048829808831214905,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.31758514046669006,
+ "total_groups": 2048,
+ "update_index": 135,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "63e24d4342b5d6d4d5da7b8163d9bd464d6aa91593f174676217420b5177dbf3",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020670413970947266,
+ "mean_squared_error": 2.785114645575959e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05308203399181366,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07301010936498642,
+ "total_groups": 2048,
+ "update_index": 136,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "8152ded37848dfc3eac5449f702820ee627eac68c2f929eae9cc316fc6a8fe12",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017577117308974266,
+ "mean_squared_error": 4.668984274758259e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04499087482690811,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1223946213722229,
+ "total_groups": 2048,
+ "update_index": 137,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "305b4aa5b163e907377c5906f82c0c8c049b64438a0160a01458e27f61e5d0c4",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07107770442962646,
+ "mean_squared_error": 4.338044163887389e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05863223969936371,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1371922492980957,
+ "total_groups": 2048,
+ "update_index": 138,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "ab37aed616c16076cea10adf53c59ffb2751ed6e0d15acc79f64555a97bb80f7",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.044378601014614105,
+ "mean_squared_error": 6.073301847209223e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.0627383291721344,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.5920796394348145,
+ "total_groups": 2048,
+ "update_index": 139,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b10782cfcac29e7c04a779a82376542fd16ded4dcfcad4f5c92a318bdb5cff20",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12411034107208252,
+ "mean_squared_error": 1.3118162314640358e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06149706244468689,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.438847541809082,
+ "total_groups": 2048,
+ "update_index": 140,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06569934636354446,
+ "mean_squared_error": 5.972517101326957e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.060341812670230865,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.565659523010254,
+ "total_groups": 2048,
+ "update_index": 141,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "7ce2d9cdf567f901f78d397d8c55c5ce1ebe66db542207b543fe396e77f0a38f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10140514373779297,
+ "mean_squared_error": 8.544719094061293e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.07357778400182724,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.2399468421936035,
+ "total_groups": 2048,
+ "update_index": 142,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "7ab25a19112cc7f6d8e7b7639274b392992a0f97360d431f05b5c71fcf993a8b",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05066036805510521,
+ "mean_squared_error": 1.351911123492755e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06321123242378235,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.35439538955688477,
+ "total_groups": 2048,
+ "update_index": 143,
+ "write_ordinal": 7
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "b313a20b96e5cc3c533f172cbb747ebe51ed288047d0b5acc3cceac7ca8a5a45",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0075261592864990234,
+ "mean_squared_error": 3.8650931344363926e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.006038503255695105,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.010132109746336937,
+ "total_groups": 2048,
+ "update_index": 144,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "262e2bc61d63c87eeadd27bee3be8dbe284b8ff6b89f3eebe02b37bb19276ab0",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.006448984146118164,
+ "mean_squared_error": 3.824930416840289e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.015848150476813316,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.010026825591921806,
+ "total_groups": 2048,
+ "update_index": 145,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "a4e48293132c4232dec0e4bf5aa7c0d6be340cce0f7f864161576d7c3e605fee",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01540382206439972,
+ "mean_squared_error": 2.2721869186170807e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.02998223900794983,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0595640167593956,
+ "total_groups": 2048,
+ "update_index": 146,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "a8f65d5784d0f77c9e898926fc99703472863daee4d960232aaf461751d62fbb",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027370959520339966,
+ "mean_squared_error": 1.0516932889004238e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.016820762306451797,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2756950855255127,
+ "total_groups": 2048,
+ "update_index": 147,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "2b33fbdb59bed2ec266680d10da1b2418c43bd657c9fd000828a3fae3acc352c",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015797395259141922,
+ "mean_squared_error": 3.21945236692045e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02584831975400448,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08439601212739944,
+ "total_groups": 2048,
+ "update_index": 148,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "58a96fba536a84fa38badf1c54e4fbf0c25333d411d62c4e0ed528468516356f",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012978344224393368,
+ "mean_squared_error": 2.8433035481612023e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.048467669636011124,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07453549653291702,
+ "total_groups": 2048,
+ "update_index": 149,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "5fc838e9a1d09e8c7362823af0fe5ef1eeb75f3a0d99e2e41eaae82672c976b9",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019970335066318512,
+ "mean_squared_error": 4.5829654027329525e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02767523191869259,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12013968825340271,
+ "total_groups": 2048,
+ "update_index": 150,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "20e5fe0cc8ea0380055e6df4908cf8dca2541c37d2783009408024c071f79789",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014309361577033997,
+ "mean_squared_error": 3.6909762002323987e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04586878791451454,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09675672650337219,
+ "total_groups": 2048,
+ "update_index": 151,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "4a04afadea5fb4e5c0293571502860cafa68b49d4585ec3e79629b4e77e6fa2a",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01160798966884613,
+ "mean_squared_error": 2.019913267758966e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04867594689130783,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05295081436634064,
+ "total_groups": 2048,
+ "update_index": 152,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "f1e552bcf8e17bda9caf1924682de4f56efdf896ed61cb1fb90b7f67d482d642",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04225543141365051,
+ "mean_squared_error": 9.65312779044325e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.043109871447086334,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.25305095314979553,
+ "total_groups": 2048,
+ "update_index": 153,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "ac1f6ed08f501d7a90225e357c1eb616feca57ca2797cc0b338305cf1bec5e2f",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016846738755702972,
+ "mean_squared_error": 3.125980470031209e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05325885862112045,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08194570243358612,
+ "total_groups": 2048,
+ "update_index": 154,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "da8526d8a3805bf4315b8e6021b41b6425342a9e94f127368626e81b7e344029",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019958049058914185,
+ "mean_squared_error": 5.381232881518372e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04740448296070099,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1410657912492752,
+ "total_groups": 2048,
+ "update_index": 155,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "4fb468f3ab853c9d379ac4969536f2d03296f54224e64c1a28f3cdf7c415bccc",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05811119079589844,
+ "mean_squared_error": 4.2506339923420455e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05839927867054939,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1142781972885132,
+ "total_groups": 2048,
+ "update_index": 156,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "2005d35e5d3f1a08e1eb8dfe06e098c874750d1b80a3dfbf1a8fa45098da203a",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05582273006439209,
+ "mean_squared_error": 6.971826678636717e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06628623604774475,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8276225328445435,
+ "total_groups": 2048,
+ "update_index": 157,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b10782cfcac29e7c04a779a82376542fd16ded4dcfcad4f5c92a318bdb5cff20",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12610840797424316,
+ "mean_squared_error": 1.3297140867507551e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.060414623469114304,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.4857656955718994,
+ "total_groups": 2048,
+ "update_index": 158,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1090119406580925,
+ "mean_squared_error": 7.79992296884302e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06690643727779388,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.0447030067443848,
+ "total_groups": 2048,
+ "update_index": 159,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "4d00e8f438c3b3705d7e62245e3af16a2a954d4ea49ae1eea60f7a132d282149",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0771460086107254,
+ "mean_squared_error": 7.131729034881573e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.0659603625535965,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8695399761199951,
+ "total_groups": 2048,
+ "update_index": 160,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "4e1ba22e9ef45a3d8b12652c83d5559d3f0073135339ee92530deda711bb650c",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06894421577453613,
+ "mean_squared_error": 1.2520825976025662e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.06099947169423103,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3282259404659271,
+ "total_groups": 2048,
+ "update_index": 161,
+ "write_ordinal": 8
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "52700373d20e620df9a336f17702d736d07883d33499cfac99e39c43ea71917b",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017800770699977875,
+ "mean_squared_error": 9.00022172345416e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.009185459464788437,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.023593541234731674,
+ "total_groups": 2048,
+ "update_index": 162,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "3cee3999a82c11767c3acd9c96a341e59e33351d01d331cc4fec2589884906c9",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.005456022918224335,
+ "mean_squared_error": 2.3458333942016907e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.013239303603768349,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.00614946149289608,
+ "total_groups": 2048,
+ "update_index": 163,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "00dfa88965a35cc6d61f342b75e9c38772d96f0e13c8a372df83135839372727",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010922551155090332,
+ "mean_squared_error": 1.0078213108499767e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.021348698064684868,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02641943097114563,
+ "total_groups": 2048,
+ "update_index": 164,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "0b5b73cd73b2efe11b373c52ab997e125d1b598210e68a4f84388f4209b0f864",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04196131229400635,
+ "mean_squared_error": 8.889763876140933e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.01542740873992443,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23303982615470886,
+ "total_groups": 2048,
+ "update_index": 165,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "f8e0b4d5233446095e5cb158a81a49eefb0e607f86f33e9de5f15a3cb22feaad",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017573028802871704,
+ "mean_squared_error": 4.7244941470125923e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.030018866062164307,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1238497793674469,
+ "total_groups": 2048,
+ "update_index": 166,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "b66a923f88e8ff1048d8702a2775772dfc89221132bae7af797a3e9ad755d1ee",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012540057301521301,
+ "mean_squared_error": 2.528030336179654e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04532226547598839,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06627079844474792,
+ "total_groups": 2048,
+ "update_index": 167,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "217a3604780f3962a0eb37ff1e770c7e10c8649b9081db210a731a0d62c16baf",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029292091727256775,
+ "mean_squared_error": 4.1033058550965507e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.026037735864520073,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10756570100784302,
+ "total_groups": 2048,
+ "update_index": 168,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "34da9a5de1a193a2a18d2174dba5a7aae4db2545f9728d01a76e734ef0a1dece",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023156210780143738,
+ "mean_squared_error": 2.572510879872425e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03864485025405884,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0674368292093277,
+ "total_groups": 2048,
+ "update_index": 169,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "110749db1da391868371eae8947ba1e2f29ded285b91413092a000a7c5c23264",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016170546412467957,
+ "mean_squared_error": 2.2289266610187042e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04895159229636192,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05842997506260872,
+ "total_groups": 2048,
+ "update_index": 170,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "833250ede2515cfe7f83e24067c88709fccdc376170a3372dd7c0b9ae1d73a31",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03413642197847366,
+ "mean_squared_error": 1.2909445104014594e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04840761423110962,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3384133577346802,
+ "total_groups": 2048,
+ "update_index": 171,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "d7b2bdb5ffd722bb7f1182ec1e3a860f0d976775e4a277059a7e2bce27bfae34",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015290975570678711,
+ "mean_squared_error": 3.722520602877921e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05741524696350098,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09758364409208298,
+ "total_groups": 2048,
+ "update_index": 172,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "c8907bf2dc77fb688fe4489d186c19d23b6af7d6a9bf459d87fae6afc0fee4ed",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01796746253967285,
+ "mean_squared_error": 5.413848498392326e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04654630646109581,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1419207900762558,
+ "total_groups": 2048,
+ "update_index": 173,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "8c1c58a93f2594436312b91489fec5c3e32ea3f3b4e24c04eb4f3284c93d7bb4",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07011614739894867,
+ "mean_squared_error": 4.347912181401625e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05786193162202835,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1397790908813477,
+ "total_groups": 2048,
+ "update_index": 174,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "6ad0c50b237aa4271986bd06ea9d065b5849856718d0506737136e151e0cee76",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.059325844049453735,
+ "mean_squared_error": 6.51221489533782e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06356660276651382,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.7071380615234375,
+ "total_groups": 2048,
+ "update_index": 175,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "05968ddb9ebad5c915239aafe67d8d36cff9febbf9a2ecc48ab590f560c4baff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.13305053114891052,
+ "mean_squared_error": 1.4323268260341138e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06309226900339127,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.754758834838867,
+ "total_groups": 2048,
+ "update_index": 176,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.059632956981658936,
+ "mean_squared_error": 5.639532446366502e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05719345062971115,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.4783695936203003,
+ "total_groups": 2048,
+ "update_index": 177,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "4d00e8f438c3b3705d7e62245e3af16a2a954d4ea49ae1eea60f7a132d282149",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07581708580255508,
+ "mean_squared_error": 5.586803126789164e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.058810316026210785,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.4645469188690186,
+ "total_groups": 2048,
+ "update_index": 178,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "4e1ba22e9ef45a3d8b12652c83d5559d3f0073135339ee92530deda711bb650c",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.033433228731155396,
+ "mean_squared_error": 1.0730857411545003e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.05614457651972771,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2813029885292053,
+ "total_groups": 2048,
+ "update_index": 179,
+ "write_ordinal": 9
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "32f4a841638693007986ae92cd7b6d723e4e93c77430a1a0f5efc002d420d3a5",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015836521983146667,
+ "mean_squared_error": 1.3871520820885053e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.011309039779007435,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03636335954070091,
+ "total_groups": 2048,
+ "update_index": 180,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "267a7a35dead3aeff5941f75834d0a1a1c1e6eb2c678e48dae2fcc36074989ba",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007511683274060488,
+ "mean_squared_error": 6.96766448982089e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02021491713821888,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.018265314400196075,
+ "total_groups": 2048,
+ "update_index": 181,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "ae83adcdf20b623090036333434ae16a6c835aa4d9db09f12f3c22a9aa986778",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01175902783870697,
+ "mean_squared_error": 1.9421025854171603e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.027514440938830376,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05091105401515961,
+ "total_groups": 2048,
+ "update_index": 182,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "aad55645f897fc8c015184ad5dc130c6fed57624a6857c7cff9227a5a1cc8c91",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03078216314315796,
+ "mean_squared_error": 1.2143491403548978e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.017898133024573326,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.31833434104919434,
+ "total_groups": 2048,
+ "update_index": 183,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "059a4d80452e5c3dacf695acd3fb09f01d9cf6f0568ff884fee3bb6a37905e71",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022850722074508667,
+ "mean_squared_error": 4.290824335839716e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.028070371598005295,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11248138546943665,
+ "total_groups": 2048,
+ "update_index": 184,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "effda421c455b0b977bcdac42ec024a3a6819adddbd28362d1d72228b0ead37d",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01115521602332592,
+ "mean_squared_error": 2.430139716125268e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.044501740485429764,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06370465457439423,
+ "total_groups": 2048,
+ "update_index": 185,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "74102f8d6b8e3cc733e18fd8199a6341cdf0374eee8ca5210a911ea307a0ec8f",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02220350317656994,
+ "mean_squared_error": 4.615352224845992e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.027424100786447525,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12098868936300278,
+ "total_groups": 2048,
+ "update_index": 186,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "6cd5dc3f1d2bb5d7b3c53c2ea9ada7c1e513e19ad8865abf4e7532fd2d26a508",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020736776292324066,
+ "mean_squared_error": 2.1538613736993284e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.034933701157569885,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.056462183594703674,
+ "total_groups": 2048,
+ "update_index": 187,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "3fc0efcc203201532ca9f96e09764aa1bdbc1df8b973f8f6cdae41f5faabcea5",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012269347906112671,
+ "mean_squared_error": 1.7033022459145286e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04207520931959152,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04465104639530182,
+ "total_groups": 2048,
+ "update_index": 188,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "edf595cb27660393435fe9304f4a26d689e3e011107c56c1855d4fe9f61d51b9",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.033255815505981445,
+ "mean_squared_error": 9.404940897184133e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04136600345373154,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.24654488265514374,
+ "total_groups": 2048,
+ "update_index": 189,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "7200ac0046b97ab4ca66bd9fff258b77c2fb0d63cd1c41d9f15dd80391cd2a69",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017832353711128235,
+ "mean_squared_error": 3.0992467259238765e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.050053905695676804,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08124489337205887,
+ "total_groups": 2048,
+ "update_index": 190,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "1256fc7f3afff1aeffcfccee6295587ff83db55384b0fd6c12e42293e90ccaba",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019997892901301384,
+ "mean_squared_error": 5.038701829107595e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04427380487322807,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13208654522895813,
+ "total_groups": 2048,
+ "update_index": 191,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "93019075c8b5e99a4f989bc4312e0009a416dc031603c768b5dbb3560f649d3f",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1100405752658844,
+ "mean_squared_error": 4.040430667373585e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05480918288230896,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.059174656867981,
+ "total_groups": 2048,
+ "update_index": 192,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "6ad0c50b237aa4271986bd06ea9d065b5849856718d0506737136e151e0cee76",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04132667928934097,
+ "mean_squared_error": 4.8563224481767975e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.05415462329983711,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2730557918548584,
+ "total_groups": 2048,
+ "update_index": 193,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "05968ddb9ebad5c915239aafe67d8d36cff9febbf9a2ecc48ab590f560c4baff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12022697925567627,
+ "mean_squared_error": 1.0793675755849108e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05501203611493111,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.8294973373413086,
+ "total_groups": 2048,
+ "update_index": 194,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10092055797576904,
+ "mean_squared_error": 5.352186235541012e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05542786419391632,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.403043508529663,
+ "total_groups": 2048,
+ "update_index": 195,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "4d00e8f438c3b3705d7e62245e3af16a2a954d4ea49ae1eea60f7a132d282149",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07362985610961914,
+ "mean_squared_error": 7.046949122013757e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06681351363658905,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8473154306411743,
+ "total_groups": 2048,
+ "update_index": 196,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "4e1ba22e9ef45a3d8b12652c83d5559d3f0073135339ee92530deda711bb650c",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02826177328824997,
+ "mean_squared_error": 7.636919008291443e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.047096628695726395,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2001972496509552,
+ "total_groups": 2048,
+ "update_index": 197,
+ "write_ordinal": 10
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "22b2e0f822d6d3efd5b2e9ed834ced82ba19feba4754395b08193ec2eca04fe8",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01607624441385269,
+ "mean_squared_error": 8.903653281322477e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.009115544147789478,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.023340392857789993,
+ "total_groups": 2048,
+ "update_index": 198,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "4e8e66f7cb225cdbf2eb849d938148753c312dcc535a5fa2ca5264fcf45fb0df",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.005147609859704971,
+ "mean_squared_error": 2.981230551313274e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.013846581801772118,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.00781511701643467,
+ "total_groups": 2048,
+ "update_index": 199,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "b5b57d5754de4551047f00f24b468b51dc3827b663e2ab26face3e11d7812d77",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016619015485048294,
+ "mean_squared_error": 1.3454659608669317e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.022967208176851273,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.035270582884550095,
+ "total_groups": 2048,
+ "update_index": 200,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "536ca6b9112075880997de2b97399ff2d4914046f8a2045fb597582c1a0e2c15",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02712237648665905,
+ "mean_squared_error": 9.49435730035475e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.01591760665178299,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.24888888001441956,
+ "total_groups": 2048,
+ "update_index": 201,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "7aa49cb7777836b476521585056bbf4552fae1732acc782a58343a72ec4e9ce5",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01955745741724968,
+ "mean_squared_error": 2.854268643659452e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.023064039647579193,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07482293993234634,
+ "total_groups": 2048,
+ "update_index": 202,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "b67ddb6701bbbefd71b0200ff392277bc5343c89741484b8d22f3527feb30b6a",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011848777532577515,
+ "mean_squared_error": 2.3064657739269023e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04338141903281212,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06046261638402939,
+ "total_groups": 2048,
+ "update_index": 203,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "8e7467b2a28255a51fede87e074c7a8dfd3f8747df918119585e12f3b373bf1c",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02874639630317688,
+ "mean_squared_error": 3.699400110690476e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.024322934448719025,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09697755426168442,
+ "total_groups": 2048,
+ "update_index": 204,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "7d7e3d7208f26335bb29e6356621ebbe3ebee86d2db46525c7c76910efea2178",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019282370805740356,
+ "mean_squared_error": 1.617337233028593e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.030444834381341934,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.042397525161504745,
+ "total_groups": 2048,
+ "update_index": 205,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "6b647f70744e075c6a1bbf0c83f8f1739c5baa9eae0907e541bd035849be8e56",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012713521718978882,
+ "mean_squared_error": 1.517881855761516e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.0391986221075058,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03979036211967468,
+ "total_groups": 2048,
+ "update_index": 206,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "8fd8b45349645d16a56d067a7a04e9afeafff53f52800796a54e66f218f44c17",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0535128191113472,
+ "mean_squared_error": 1.0283706615155097e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04244183748960495,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2695811986923218,
+ "total_groups": 2048,
+ "update_index": 207,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "a60a7a522b2845924d1eaf4c2867957347c5687446fbf138946c333ec9a7e45c",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012812914326786995,
+ "mean_squared_error": 2.1381826798005932e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.041239917278289795,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05605117604136467,
+ "total_groups": 2048,
+ "update_index": 208,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "6ee673d22a58a444c5283ed4aa2ec1aded99bfdee252867a4be6f97c88b2ab60",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02154630422592163,
+ "mean_squared_error": 3.9335122892225627e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.03949247673153877,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10311466455459595,
+ "total_groups": 2048,
+ "update_index": 209,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "1b5f3dfc4c6ca17958fbcfa06a50ea1ced6bed88058c38eb8450eb221df82b83",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.051942676305770874,
+ "mean_squared_error": 2.23346160055371e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.040742456912994385,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5854885578155518,
+ "total_groups": 2048,
+ "update_index": 210,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "17f32b5d6dc6da7109dcc0a16b2aea41859fbb9cdee2509c57ca7940e34fbd67",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05790150165557861,
+ "mean_squared_error": 4.813125542568741e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.05316705256700516,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2617319822311401,
+ "total_groups": 2048,
+ "update_index": 211,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "05968ddb9ebad5c915239aafe67d8d36cff9febbf9a2ecc48ab590f560c4baff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07269668579101562,
+ "mean_squared_error": 1.0670920346456114e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05395781248807907,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.7973177433013916,
+ "total_groups": 2048,
+ "update_index": 212,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.13827776908874512,
+ "mean_squared_error": 5.377259185479488e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.0550018809735775,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.409616231918335,
+ "total_groups": 2048,
+ "update_index": 213,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "4d00e8f438c3b3705d7e62245e3af16a2a954d4ea49ae1eea60f7a132d282149",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08130443096160889,
+ "mean_squared_error": 5.2209225032129325e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.056151241064071655,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.368633508682251,
+ "total_groups": 2048,
+ "update_index": 214,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "992f2d8bcde9154fc46fa0da046c07cd97cec8f464918154540d6bacf1065254",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03488530218601227,
+ "mean_squared_error": 7.48495722291409e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04729767516255379,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19621366262435913,
+ "total_groups": 2048,
+ "update_index": 215,
+ "write_ordinal": 11
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "06dc0aa5a2536de764024ebbb730e383aa91fb639e74a2d063d21f80e8d43b62",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011061828583478928,
+ "mean_squared_error": 6.50733085194588e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.007769184187054634,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01705857738852501,
+ "total_groups": 2048,
+ "update_index": 216,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "a2b8e96fb1386b79f02cd5488ad3d4c4bffa96036c05eef9f652e1216c5532c5",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.003849034197628498,
+ "mean_squared_error": 1.7480363823096923e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.011517281644046307,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.00458237249404192,
+ "total_groups": 2048,
+ "update_index": 217,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "42903a2cd24bf4a101b21f6a1624d657d7ae4ed2971cfc7aa7a6878a1fbdf222",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012856841087341309,
+ "mean_squared_error": 8.1405318042016e-08,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.019672423601150513,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.021339915692806244,
+ "total_groups": 2048,
+ "update_index": 218,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "85e3e3a192deae4adf9eb48a04a2b230eadfb36fe58ddd96f07295fd3ba95b70",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030972301959991455,
+ "mean_squared_error": 9.227186410498689e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.015656590461730957,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.24188515543937683,
+ "total_groups": 2048,
+ "update_index": 219,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "0d9acbfedbe171c50f133deeb01631606a42e7aab094213edb2667100a07d52d",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02147039771080017,
+ "mean_squared_error": 2.792603197576682e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.022951308637857437,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07320641726255417,
+ "total_groups": 2048,
+ "update_index": 220,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "ae3fc1c49fe8414449cb891be9d31a134af0033deaf0a5279ff65162cc274a55",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010923832654953003,
+ "mean_squared_error": 2.921746897754929e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.048094458878040314,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0765918418765068,
+ "total_groups": 2048,
+ "update_index": 221,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "4c4bbc6e49b992f5eefbd3c5a194a4f16682c754566d4c81337fb2060e49e934",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03348743915557861,
+ "mean_squared_error": 4.7551154125358153e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.027171030640602112,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12465249747037888,
+ "total_groups": 2048,
+ "update_index": 222,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "a4b7e529ecc55cacda20f9af283d3394c7328777b41c61302b027bdd1f964f7b",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025718700140714645,
+ "mean_squared_error": 2.6588466539578803e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03960070386528969,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06970006972551346,
+ "total_groups": 2048,
+ "update_index": 223,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "ddfb1b218ed10c855321ed77cdf0c7995af9ba0e93208a10bf632f0b15e291fc",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013200700283050537,
+ "mean_squared_error": 2.1200925459652353e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04673118516802788,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.055576954036951065,
+ "total_groups": 2048,
+ "update_index": 224,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "804aeba5306fef9d8d363dc8a2ea8496717f3addc6cbc258d9b44ea81c3d62f1",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05089026317000389,
+ "mean_squared_error": 1.2145200116719934e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04553765803575516,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.31837913393974304,
+ "total_groups": 2048,
+ "update_index": 225,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "6d707272bf84dfba19020394bc83e16994b43b51086b2bfc7292eeda782f55c2",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02397153712809086,
+ "mean_squared_error": 3.210492138805421e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05302833020687103,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08416112512350082,
+ "total_groups": 2048,
+ "update_index": 226,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "f7f385b731e6426780ed542da8dd49beff870ebdf53d7f2181927fa292835875",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018779203295707703,
+ "mean_squared_error": 5.044207682658453e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04535733908414841,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13223087787628174,
+ "total_groups": 2048,
+ "update_index": 227,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "0a1b6c51008c032ff3d0343b8a84903debf2ee2f87618038bcf4393d3022cf54",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0675392746925354,
+ "mean_squared_error": 3.85150451620575e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.053482796996831894,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0096487998962402,
+ "total_groups": 2048,
+ "update_index": 228,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "1ee6b7fe920b3d4e6a89aa1046d00decbcb061f3110c855061689efb1caa46ce",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06905162334442139,
+ "mean_squared_error": 6.1725222622044384e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.060867149382829666,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.6180896759033203,
+ "total_groups": 2048,
+ "update_index": 229,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "05968ddb9ebad5c915239aafe67d8d36cff9febbf9a2ecc48ab590f560c4baff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10409247875213623,
+ "mean_squared_error": 1.1673668268485926e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05666539445519447,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.0601820945739746,
+ "total_groups": 2048,
+ "update_index": 230,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06285405158996582,
+ "mean_squared_error": 5.677186891261954e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.0566704161465168,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.4882404804229736,
+ "total_groups": 2048,
+ "update_index": 231,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "4d00e8f438c3b3705d7e62245e3af16a2a954d4ea49ae1eea60f7a132d282149",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09740197658538818,
+ "mean_squared_error": 6.851813850516919e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06403280794620514,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.7961618900299072,
+ "total_groups": 2048,
+ "update_index": 232,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "d6b1f678f586e9111e1c48560d028c7aa5aa121219b3ce116869497eecdd18ef",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03276640176773071,
+ "mean_squared_error": 8.838065355121216e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.05035444349050522,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2316845804452896,
+ "total_groups": 2048,
+ "update_index": 233,
+ "write_ordinal": 12
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "4c82ba213dfa69bc713d10346355bd37b4f736ed4729e13d3a592c9f9daa3b58",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011272799223661423,
+ "mean_squared_error": 6.981755973356485e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008189026266336441,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.018302254378795624,
+ "total_groups": 2048,
+ "update_index": 234,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "7881fdde663fb88324d35c47d4b1b9093cd375ea631712885a8f3b64a170ab54",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.005762755870819092,
+ "mean_squared_error": 2.935535725612226e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.013928503729403019,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.007695330772548914,
+ "total_groups": 2048,
+ "update_index": 235,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "3120e1d1120424aa4fa3a2c7ed727bec4d0a9363593603b7c933a4ea1437227b",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010502010583877563,
+ "mean_squared_error": 1.0313276277429395e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.022364623844623566,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.027035634964704514,
+ "total_groups": 2048,
+ "update_index": 236,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "c95326b3c82c4690309f076c26fa2e2a49cb22f89176d5c72e94bca3f0636d64",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030313946306705475,
+ "mean_squared_error": 7.476941163986339e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.014095867052674294,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1960035264492035,
+ "total_groups": 2048,
+ "update_index": 237,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "a4af72c46dbfe74bd80ddeb48af73380c6f0c24a8c0836fbd1bf7f27df095d75",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016744866967201233,
+ "mean_squared_error": 3.02656161466075e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.024262310937047005,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07933949679136276,
+ "total_groups": 2048,
+ "update_index": 238,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "a7c2f10d228bd32b585e6f0bdbcda2bf54adce01ad68c62377dc75d8edb47723",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012314297258853912,
+ "mean_squared_error": 1.6569580907344061e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.03817658871412277,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.043436162173748016,
+ "total_groups": 2048,
+ "update_index": 239,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "cac7976c4efb7c5e6c5e6d651cc0675d380983e83c93108f5f87eb5bf7a73e31",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.031239695847034454,
+ "mean_squared_error": 3.095044291967497e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.021789565682411194,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08113472908735275,
+ "total_groups": 2048,
+ "update_index": 240,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "c7653458dedcef84c1e30d540561d032aeb1167fc917a597d30e106c6d3b47d8",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022761255502700806,
+ "mean_squared_error": 2.0533067868200305e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03325512260198593,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05382620543241501,
+ "total_groups": 2048,
+ "update_index": 241,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "fb9bd5bf2fbd9f0b5492e36ef1d4ac1fd54250715fdbc49f7e1de69bed97cc7c",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014167137444019318,
+ "mean_squared_error": 1.432090641628747e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.03878718242049217,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03754139691591263,
+ "total_groups": 2048,
+ "update_index": 242,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "2dbb3bde79097b269adfcde0f8b9353aa2fb10f64d140efc3189062e2dc72f09",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.043173372745513916,
+ "mean_squared_error": 8.719711104276939e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03837159648537636,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2285819947719574,
+ "total_groups": 2048,
+ "update_index": 243,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "097b89c50b225b2ea36b7973dfa04c3bfa9be4781eaceb2d53448f95fb4b3873",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015545716509222984,
+ "mean_squared_error": 2.660338509485882e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.047757185995578766,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06973917782306671,
+ "total_groups": 2048,
+ "update_index": 244,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "823824f043db03488fc85b399d190b2ab132ae5c355e6564e2a889843afcc5a1",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018787389621138573,
+ "mean_squared_error": 4.661636694436311e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04390021786093712,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12220200896263123,
+ "total_groups": 2048,
+ "update_index": 245,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "102d69f8836453ece6bce2349f9cc3f60df9aff64255cf10ff56cca807ccc9ed",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06787414848804474,
+ "mean_squared_error": 4.097289092896972e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05505792051553726,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0740797519683838,
+ "total_groups": 2048,
+ "update_index": 246,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "72f32a4b4b67d4cda8e89d15727e03a077f11029fda735367cbfb06cfe00a7c7",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06107388809323311,
+ "mean_squared_error": 6.968128218431957e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06593283265829086,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.826653003692627,
+ "total_groups": 2048,
+ "update_index": 247,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "05968ddb9ebad5c915239aafe67d8d36cff9febbf9a2ecc48ab590f560c4baff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08498001843690872,
+ "mean_squared_error": 1.2701923878921662e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05897819623351097,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.32973313331604,
+ "total_groups": 2048,
+ "update_index": 248,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07115662097930908,
+ "mean_squared_error": 6.890263648529071e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06388868391513824,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8062412738800049,
+ "total_groups": 2048,
+ "update_index": 249,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "4d00e8f438c3b3705d7e62245e3af16a2a954d4ea49ae1eea60f7a132d282149",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04700136184692383,
+ "mean_squared_error": 4.721805453300476e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.053423408418893814,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.23779296875,
+ "total_groups": 2048,
+ "update_index": 250,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "d6b1f678f586e9111e1c48560d028c7aa5aa121219b3ce116869497eecdd18ef",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04646164923906326,
+ "mean_squared_error": 1.0176771638725768e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.05508577078580856,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.26677796244621277,
+ "total_groups": 2048,
+ "update_index": 251,
+ "write_ordinal": 13
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "c106e73d6423b3f11a0d447367b783d578ccd11dd3ac63967fb25d6f37027c73",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01189073920249939,
+ "mean_squared_error": 8.278762209101842e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008886001072824001,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.021702278405427933,
+ "total_groups": 2048,
+ "update_index": 252,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "233196d6d42108e08651378d6575824a1403d220d311ff6b17e74c173a9d06f7",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.005063511431217194,
+ "mean_squared_error": 6.934817520232173e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02138158492743969,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.018179208040237427,
+ "total_groups": 2048,
+ "update_index": 253,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "2eddffd4a7a31f19604ef7aebd7770a971d2a31cd91c6b1e0c78671350cf31e5",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01337018609046936,
+ "mean_squared_error": 2.4385326469200663e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.03193747252225876,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06392467021942139,
+ "total_groups": 2048,
+ "update_index": 254,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "14fdcf6eb05cce9691fa609b1464d92cbd501dbe6fcc59836ae277309fe265db",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03770214319229126,
+ "mean_squared_error": 1.227221673616441e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.01805497519671917,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3217087984085083,
+ "total_groups": 2048,
+ "update_index": 255,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "7a957de0591a201a87079d6870fb0c4c9cb5433740692e51866d8314118aab1f",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03152070939540863,
+ "mean_squared_error": 4.1759778923733393e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.027164222672581673,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10947075486183167,
+ "total_groups": 2048,
+ "update_index": 256,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "3c471bd182f73533e3ff6d8da039265a3316d1bc79b287dae00f3cef1a2d1fac",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014160430058836937,
+ "mean_squared_error": 3.951955420689046e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.053484249860048294,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10359814018011093,
+ "total_groups": 2048,
+ "update_index": 257,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "cac7976c4efb7c5e6c5e6d651cc0675d380983e83c93108f5f87eb5bf7a73e31",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.035418033599853516,
+ "mean_squared_error": 4.548020910988271e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.026197491213679314,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11922363936901093,
+ "total_groups": 2048,
+ "update_index": 258,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "568f4b8cafd93ce633fbcd889e588c7f16b00eb909cdd2ea9705f8669b708b4a",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018989145755767822,
+ "mean_squared_error": 2.5239074830096797e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03726760670542717,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06616272032260895,
+ "total_groups": 2048,
+ "update_index": 259,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "f20249639a5175ac07c7b5b26ae444c91f8b0039d04c76deeb13e11a39bca173",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011990368366241455,
+ "mean_squared_error": 2.3252854930433386e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.047368135303258896,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0609559640288353,
+ "total_groups": 2048,
+ "update_index": 260,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "396c6302587dbb579e5e6c973490395fc47750e0194e0386e5c37dff6efd327b",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.039152681827545166,
+ "mean_squared_error": 1.1118497695861151e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04261314496397972,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.29146474599838257,
+ "total_groups": 2048,
+ "update_index": 261,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "d8e8ae49dbec43655ff277af35dac7b0637d8bafaf3a5a4e0e3cc9262d01ad78",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01644033193588257,
+ "mean_squared_error": 4.172774197286344e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05764511972665787,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10938677191734314,
+ "total_groups": 2048,
+ "update_index": 262,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "659c06e5274fa7ccce69c09f15e7f4fc5b790aa318b686ca3a07bb9b941d6f21",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022845502942800522,
+ "mean_squared_error": 4.687309171913512e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.042759969830513,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12287499755620956,
+ "total_groups": 2048,
+ "update_index": 263,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "63ad63322008bb0bb700cf7e63a273485e6169932df3cf0ec49c781ffe2c5aba",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0940123200416565,
+ "mean_squared_error": 4.4634089135797694e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05626676604151726,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.170055866241455,
+ "total_groups": 2048,
+ "update_index": 264,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "72f32a4b4b67d4cda8e89d15727e03a077f11029fda735367cbfb06cfe00a7c7",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.055138587951660156,
+ "mean_squared_error": 7.78107005316997e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06696978211402893,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.0397608280181885,
+ "total_groups": 2048,
+ "update_index": 265,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "05968ddb9ebad5c915239aafe67d8d36cff9febbf9a2ecc48ab590f560c4baff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1537313461303711,
+ "mean_squared_error": 1.0173931514145806e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05222821980714798,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.6670351028442383,
+ "total_groups": 2048,
+ "update_index": 266,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.24009525775909424,
+ "mean_squared_error": 7.1394902079191525e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06384650617837906,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8715745210647583,
+ "total_groups": 2048,
+ "update_index": 267,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "4d00e8f438c3b3705d7e62245e3af16a2a954d4ea49ae1eea60f7a132d282149",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08306169509887695,
+ "mean_squared_error": 5.392519597080536e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05759432539343834,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.41361665725708,
+ "total_groups": 2048,
+ "update_index": 268,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "9254eaf2a6cd1ef4171cd7a12e9508db51696b6810d43bc02ed583f7660ca168",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04917772114276886,
+ "mean_squared_error": 9.979798960557673e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.05468469858169556,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.26161444187164307,
+ "total_groups": 2048,
+ "update_index": 269,
+ "write_ordinal": 14
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "50bf02be5df6d22ee075c48162b850d79bbba76b3c645ff19fb2d20739514227",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01034595724195242,
+ "mean_squared_error": 9.453928839775472e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.009674119763076305,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.024782907217741013,
+ "total_groups": 2048,
+ "update_index": 270,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "d6833197cd37e950bd69bfb749d69157f9886ec7d3655619683d0294867a3ded",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0043496023863554,
+ "mean_squared_error": 3.086606170654704e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.014918845146894455,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.008091352880001068,
+ "total_groups": 2048,
+ "update_index": 271,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "ed4917429951f935cc02383892c6336513fed9102cf59222e6a7b4c2a8c6311f",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013121634721755981,
+ "mean_squared_error": 1.402665787963997e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.0247796680778265,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0367700420320034,
+ "total_groups": 2048,
+ "update_index": 272,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "5cbd7e2e57e2a3804c73b3a16b0b3eee5283febcdd6488d339892029e8fd2094",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04154491424560547,
+ "mean_squared_error": 9.430150385014713e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.01580515317618847,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2472057342529297,
+ "total_groups": 2048,
+ "update_index": 273,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "238895abb5d383e402d94df8581440cab172896dd833b709e4041d01e9499d27",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021154940128326416,
+ "mean_squared_error": 3.508126553697366e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02543427236378193,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09196343272924423,
+ "total_groups": 2048,
+ "update_index": 274,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "a07fc6310ddaf1369e9e27ca9a65b0c4981aa73dc317dacfec9838f82bd8100e",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.009897276759147644,
+ "mean_squared_error": 2.702930714804097e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04563180357217789,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07085570693016052,
+ "total_groups": 2048,
+ "update_index": 275,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "6c63a427460619b2bf11fc131529ea901e058a69dbb6251c10d42a2d26bdfcb3",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02020919695496559,
+ "mean_squared_error": 2.8024470566379023e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.020562682300806046,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07346446812152863,
+ "total_groups": 2048,
+ "update_index": 276,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "d36da1ef9d6618c4410b3f8b4f52d0f929012522fa22fa89ecb384e829fef7cb",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014810338616371155,
+ "mean_squared_error": 1.7111244687839644e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03182638809084892,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.044856101274490356,
+ "total_groups": 2048,
+ "update_index": 277,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "20dbad13c07801c06e8c14309271b6ae2ca451c469213783731fb2052b642846",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013388246297836304,
+ "mean_squared_error": 1.4560799854734796e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.03691532462835312,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.038170263171195984,
+ "total_groups": 2048,
+ "update_index": 278,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "530f99df940a02f77b517b4a93af1d9a0ef925d52c153c25c070fc4690f265f3",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.053405098617076874,
+ "mean_squared_error": 7.53809615616774e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03484896570444107,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1976066678762436,
+ "total_groups": 2048,
+ "update_index": 279,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "816e99e92c7514efeeabd1b5edb9b428a579b3e088c5f6a851d9f7b825112304",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026750922203063965,
+ "mean_squared_error": 3.0449393761955434e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.04782349243760109,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07982125878334045,
+ "total_groups": 2048,
+ "update_index": 280,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "a5351f93f61a7eadef8540f649a21c0ef873efc4abbd9085d0c8cf72a226a924",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02472967840731144,
+ "mean_squared_error": 3.979928351327544e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.03921787813305855,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10433143377304077,
+ "total_groups": 2048,
+ "update_index": 281,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "d87731745ae559a98386791296be501f821ec4f7d729b326e561a0b827bf4bb0",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10345715284347534,
+ "mean_squared_error": 4.4429093577491585e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05512316897511482,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1646820306777954,
+ "total_groups": 2048,
+ "update_index": 282,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "5d69a3f82fb2a04bbd8617286b4fa5b915e3c2fe59c656ac25788ee7cbb9a537",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05868014693260193,
+ "mean_squared_error": 6.019311058480525e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.058932431042194366,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.5779262781143188,
+ "total_groups": 2048,
+ "update_index": 283,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "05968ddb9ebad5c915239aafe67d8d36cff9febbf9a2ecc48ab590f560c4baff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09633247554302216,
+ "mean_squared_error": 1.1026038919226266e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05436277389526367,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.8904099464416504,
+ "total_groups": 2048,
+ "update_index": 284,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05955380201339722,
+ "mean_squared_error": 5.546577995119151e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05622624233365059,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.4540021419525146,
+ "total_groups": 2048,
+ "update_index": 285,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "4d00e8f438c3b3705d7e62245e3af16a2a954d4ea49ae1eea60f7a132d282149",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06535744667053223,
+ "mean_squared_error": 4.6852310333633795e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05385790020227432,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2282052040100098,
+ "total_groups": 2048,
+ "update_index": 286,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "9254eaf2a6cd1ef4171cd7a12e9508db51696b6810d43bc02ed583f7660ca168",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0381956547498703,
+ "mean_squared_error": 7.90451622378896e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04839697480201721,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2072121500968933,
+ "total_groups": 2048,
+ "update_index": 287,
+ "write_ordinal": 15
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "33d5f8994023d7f854b0bd50e2e3879751f348c668a178deedf4afb7d7678d29",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012514054775238037,
+ "mean_squared_error": 6.100570004718975e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.007766422815620899,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01599227823317051,
+ "total_groups": 2048,
+ "update_index": 288,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "acc2e9171de56bebd2f2dfc40957ff57a1981c287ad94dfbd0ea37d03ad5a6e4",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.006821788847446442,
+ "mean_squared_error": 7.00062514624733e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.02097286656498909,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0183517187833786,
+ "total_groups": 2048,
+ "update_index": 289,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "acf02b88931fb66218d8f43e76415445ac6cc0ccfdd65365f0a7bb829689b694",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.00785364955663681,
+ "mean_squared_error": 1.8950420610508445e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.028613537549972534,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04967739060521126,
+ "total_groups": 2048,
+ "update_index": 290,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "5cbd7e2e57e2a3804c73b3a16b0b3eee5283febcdd6488d339892029e8fd2094",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02204248309135437,
+ "mean_squared_error": 7.426485808537109e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.014005397446453571,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19468086957931519,
+ "total_groups": 2048,
+ "update_index": 291,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "c9f5eca957c0991a0ee64f18e0dca7dc83ea79bd003f7b46c40f565b55069f5d",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019869297742843628,
+ "mean_squared_error": 3.2432012631034013e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.024470215663313866,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0850185751914978,
+ "total_groups": 2048,
+ "update_index": 292,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "0c730c7225968977a3291efcfa4a6db44811a7c9b2d022e2d03ff7dd4ae7b930",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012879908084869385,
+ "mean_squared_error": 2.0744511175507796e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04072670638561249,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05438049137592316,
+ "total_groups": 2048,
+ "update_index": 293,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "6c63a427460619b2bf11fc131529ea901e058a69dbb6251c10d42a2d26bdfcb3",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023312777280807495,
+ "mean_squared_error": 2.066824436042225e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.017569134011864662,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0541805624961853,
+ "total_groups": 2048,
+ "update_index": 294,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "f293e5cea790691533d688385f902a1014c99f6f2b2626475528c1d715d7fa1f",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016569869592785835,
+ "mean_squared_error": 1.1436974034495506e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.027188802137970924,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0299813412129879,
+ "total_groups": 2048,
+ "update_index": 295,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "20dbad13c07801c06e8c14309271b6ae2ca451c469213783731fb2052b642846",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.009461134672164917,
+ "mean_squared_error": 6.10033126235976e-08,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.024049147963523865,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.015991652384400368,
+ "total_groups": 2048,
+ "update_index": 296,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "530f99df940a02f77b517b4a93af1d9a0ef925d52c153c25c070fc4690f265f3",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030037134885787964,
+ "mean_squared_error": 4.638886821339838e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.02735063247382641,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12160563468933105,
+ "total_groups": 2048,
+ "update_index": 297,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "79e8fa23c88745ad56dbbda58bf3110c40d96060735bfcc436a9ee0df4293018",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016315750777721405,
+ "mean_squared_error": 1.571762879848393e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.03437881916761398,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04120282083749771,
+ "total_groups": 2048,
+ "update_index": 298,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "659c06e5274fa7ccce69c09f15e7f4fc5b790aa318b686ca3a07bb9b941d6f21",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02593347057700157,
+ "mean_squared_error": 2.5345201493109926e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.031404025852680206,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06644092500209808,
+ "total_groups": 2048,
+ "update_index": 299,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "d87731745ae559a98386791296be501f821ec4f7d729b326e561a0b827bf4bb0",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.054883621633052826,
+ "mean_squared_error": 1.9412048004596727e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.036253128200769424,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5088751912117004,
+ "total_groups": 2048,
+ "update_index": 300,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "73ff2826ef07cf127d97755fe6a54f7433eb94dfecccd5002bf6efe6e2ab2ec6",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06086152791976929,
+ "mean_squared_error": 5.823270839755423e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.057425372302532196,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.5265355110168457,
+ "total_groups": 2048,
+ "update_index": 301,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a4420a955dc1d06f6288cd107066eb1e203c6130b8c544b8f403012b463ad4ff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08996009826660156,
+ "mean_squared_error": 9.611487257643603e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05072338506579399,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.5195937156677246,
+ "total_groups": 2048,
+ "update_index": 302,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09387646615505219,
+ "mean_squared_error": 4.697725671576336e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.0516536608338356,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.231480598449707,
+ "total_groups": 2048,
+ "update_index": 303,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "4d00e8f438c3b3705d7e62245e3af16a2a954d4ea49ae1eea60f7a132d282149",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0730048418045044,
+ "mean_squared_error": 4.23587744080578e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05125950276851654,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1104098558425903,
+ "total_groups": 2048,
+ "update_index": 304,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "c719e92f8a7d810b22adf57da1b2de7383de8dbbae277ccb53bab788e9d7f988",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02841891348361969,
+ "mean_squared_error": 7.040108016553859e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04651118069887161,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18455220758914948,
+ "total_groups": 2048,
+ "update_index": 305,
+ "write_ordinal": 16
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "ac188cb7b16bd7dac9a5640c671d9774ae4ab8e0fafb6b8ac9cf24d8dab4a2c2",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010749906301498413,
+ "mean_squared_error": 6.560083676276918e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008044767193496227,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.017196865752339363,
+ "total_groups": 2048,
+ "update_index": 306,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "7b69853bd750de3fc044b7aa77c21da47128532b2cd1e10a0b7879ebddb4994e",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.00678829662501812,
+ "mean_squared_error": 3.810474780152617e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.016572700813412666,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.009988931007683277,
+ "total_groups": 2048,
+ "update_index": 307,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "20f9b29ddded1a6ca09298e6710dde7c808ff32d6d4f78046b8eda28133d5453",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011354844085872173,
+ "mean_squared_error": 2.0268146272428567e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.02905222959816456,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05313172936439514,
+ "total_groups": 2048,
+ "update_index": 308,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "66473405868be9ac9e15c71d2da7430081a84b046ffd6ed3ab02a3e1f8467712",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027881205081939697,
+ "mean_squared_error": 1.1251149771851487e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.017235947772860527,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.29494214057922363,
+ "total_groups": 2048,
+ "update_index": 309,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "b69d6bc14bda4ce34453e10d7d3b04747b866871747b165a4c794ae712d96bbc",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02595331519842148,
+ "mean_squared_error": 3.715419722993829e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.026188742369413376,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09739749878644943,
+ "total_groups": 2048,
+ "update_index": 310,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "5084fc0aa2c673512fa08aa042f928b954f9312697913c16a5a07dc1f8689693",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012066163122653961,
+ "mean_squared_error": 2.8127601581218187e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.046177081763744354,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0737348198890686,
+ "total_groups": 2048,
+ "update_index": 311,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "6c63a427460619b2bf11fc131529ea901e058a69dbb6251c10d42a2d26bdfcb3",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01926589012145996,
+ "mean_squared_error": 2.2905041419107874e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.01849060319364071,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.060044191777706146,
+ "total_groups": 2048,
+ "update_index": 312,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "f293e5cea790691533d688385f902a1014c99f6f2b2626475528c1d715d7fa1f",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019265085458755493,
+ "mean_squared_error": 1.2783516467607114e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.029355114325881004,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.033511221408843994,
+ "total_groups": 2048,
+ "update_index": 313,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "aa7258cf480d331184992e5553064dc050bc8ca4ee5704d72264417511816f17",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011183582246303558,
+ "mean_squared_error": 1.3983401458972367e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.03647666797041893,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03665664792060852,
+ "total_groups": 2048,
+ "update_index": 314,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "ed6a31bff785af32b1cc06be31d627546c58235308cb3df2ebed15a3c230bf25",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030347496271133423,
+ "mean_squared_error": 7.253122475958662e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03407972306013107,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19013625383377075,
+ "total_groups": 2048,
+ "update_index": 315,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "b1656f462e021193b126ed3df4afd73d89903ee218582bbb3de32b9356a6c660",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014551788568496704,
+ "mean_squared_error": 2.582972342679568e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.0438171923160553,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06771107017993927,
+ "total_groups": 2048,
+ "update_index": 316,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "0a59c5aa67107b4a9b6819459e8ee0e9c1c1f5ddef88e08a4c898de1bc59c2ed",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021913766860961914,
+ "mean_squared_error": 3.172316098698502e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.03536628931760788,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08316036313772202,
+ "total_groups": 2048,
+ "update_index": 317,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "8673c30414cc3c313231e754edf2b0f833737d9c6be94470a6876ec97050e19c",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06473606824874878,
+ "mean_squared_error": 1.585794052516576e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.03273757919669151,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4157063961029053,
+ "total_groups": 2048,
+ "update_index": 318,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "73ff2826ef07cf127d97755fe6a54f7433eb94dfecccd5002bf6efe6e2ab2ec6",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04378974437713623,
+ "mean_squared_error": 5.5226391850737855e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.055168528109788895,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.4477267265319824,
+ "total_groups": 2048,
+ "update_index": 319,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a4420a955dc1d06f6288cd107066eb1e203c6130b8c544b8f403012b463ad4ff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09717941284179688,
+ "mean_squared_error": 1.1009065019607078e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.053712762892246246,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.885960340499878,
+ "total_groups": 2048,
+ "update_index": 320,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05473257601261139,
+ "mean_squared_error": 4.286106559447944e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.049102965742349625,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1235771179199219,
+ "total_groups": 2048,
+ "update_index": 321,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "4d00e8f438c3b3705d7e62245e3af16a2a954d4ea49ae1eea60f7a132d282149",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.043965309858322144,
+ "mean_squared_error": 3.282259058323689e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04504401236772537,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8604245185852051,
+ "total_groups": 2048,
+ "update_index": 322,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "c719e92f8a7d810b22adf57da1b2de7383de8dbbae277ccb53bab788e9d7f988",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04098086059093475,
+ "mean_squared_error": 5.472965085573378e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.040571969002485275,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14347049593925476,
+ "total_groups": 2048,
+ "update_index": 323,
+ "write_ordinal": 17
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "9fdc5dbdb6cc72dcaede77a0cb43d4c2af0bc570ae80a840a912a4986f01dc43",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014901742339134216,
+ "mean_squared_error": 7.387349398868537e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008494118228554726,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.019365493208169937,
+ "total_groups": 2048,
+ "update_index": 324,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "44ff1438a1f349eacbd173e4aa4468f3465f6ff6a08017f49491e8801a51eaad",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.005828430876135826,
+ "mean_squared_error": 3.482684007849457e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.015754571184515953,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.00912964716553688,
+ "total_groups": 2048,
+ "update_index": 325,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "bb95713340c989333b844b0f99168d724f0238ee58fe1a82786a18aef8674d80",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01254984736442566,
+ "mean_squared_error": 2.2060081050767621e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.030232183635234833,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.057829178869724274,
+ "total_groups": 2048,
+ "update_index": 326,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "fde93e69984f66cbb8f411046c6cafea0b1f19292f97fae475b035ac738390b2",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.036534667015075684,
+ "mean_squared_error": 9.005009360407712e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.0154011445119977,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23606091737747192,
+ "total_groups": 2048,
+ "update_index": 327,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "cb8d1106689bccd3f1510b071ecc530ab127cddff6f20d6c537c6efd76df6e4a",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02064722776412964,
+ "mean_squared_error": 3.981538156949682e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02665098011493683,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10437363386154175,
+ "total_groups": 2048,
+ "update_index": 328,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "3c66297ab61cc8b18a6c205a4d7efdc149c8ba1b9b2564d8bf4ce8de5295bd35",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010860906913876534,
+ "mean_squared_error": 3.3887772588059306e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.049525775015354156,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08883476257324219,
+ "total_groups": 2048,
+ "update_index": 329,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "6c63a427460619b2bf11fc131529ea901e058a69dbb6251c10d42a2d26bdfcb3",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03106093406677246,
+ "mean_squared_error": 2.8991030376346316e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02071625366806984,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07599824666976929,
+ "total_groups": 2048,
+ "update_index": 330,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "f15cadc2ecd1e335c64f8f9ecbd6c9934da48f8d19cd1fa272c393d382cee827",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014409542083740234,
+ "mean_squared_error": 1.5649652596039232e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03370857983827591,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.041024625301361084,
+ "total_groups": 2048,
+ "update_index": 331,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "c802837d1ffcf10e0e3c97c47dc2882f679378c725ff8711a70be8daf0a38b39",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013986855745315552,
+ "mean_squared_error": 1.8565832249350933e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.041860125958919525,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04866921529173851,
+ "total_groups": 2048,
+ "update_index": 332,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "ed6a31bff785af32b1cc06be31d627546c58235308cb3df2ebed15a3c230bf25",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.034460604190826416,
+ "mean_squared_error": 8.264846655947622e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03609132394194603,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21665799617767334,
+ "total_groups": 2048,
+ "update_index": 333,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "5bedf6a3525f4a3e630fb146571c8d45f672fa05eb3ae8802ee55c8c8fbc001b",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018607676029205322,
+ "mean_squared_error": 2.859210610495211e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.04611377790570259,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07495249062776566,
+ "total_groups": 2048,
+ "update_index": 334,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "26563faba3a0668ffdf2f631bf4a6273cb7888aa6bf66bb8042911e058a958e7",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019929688423871994,
+ "mean_squared_error": 4.3648171299537353e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04159773141145706,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1144210621714592,
+ "total_groups": 2048,
+ "update_index": 335,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "8673c30414cc3c313231e754edf2b0f833737d9c6be94470a6876ec97050e19c",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09485828876495361,
+ "mean_squared_error": 2.5749100132088643e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.041518472135066986,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6749972105026245,
+ "total_groups": 2048,
+ "update_index": 336,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "689f8dd6e88e44991a92429dc9726de1c7fcb060daa06e602e739bec895bf3d8",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06869193911552429,
+ "mean_squared_error": 5.828939265484223e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.056029051542282104,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.5280214548110962,
+ "total_groups": 2048,
+ "update_index": 337,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a4420a955dc1d06f6288cd107066eb1e203c6130b8c544b8f403012b463ad4ff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08628278225660324,
+ "mean_squared_error": 9.53227026911918e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04985266551375389,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.4988274574279785,
+ "total_groups": 2048,
+ "update_index": 338,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10593916475772858,
+ "mean_squared_error": 5.866496394446585e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05697325989603996,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.5378668308258057,
+ "total_groups": 2048,
+ "update_index": 339,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "4d00e8f438c3b3705d7e62245e3af16a2a954d4ea49ae1eea60f7a132d282149",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08119478821754456,
+ "mean_squared_error": 5.554905328608584e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05857159197330475,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.4561851024627686,
+ "total_groups": 2048,
+ "update_index": 340,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "c719e92f8a7d810b22adf57da1b2de7383de8dbbae277ccb53bab788e9d7f988",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03824782371520996,
+ "mean_squared_error": 6.662304485871573e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04540574550628662,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17464831471443176,
+ "total_groups": 2048,
+ "update_index": 341,
+ "write_ordinal": 18
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "2c08b314e88272cf0a4b38d8bbef28adfa5654039e8ddcd71c228f661fbf2d0c",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011882990598678589,
+ "mean_squared_error": 5.2728637456311844e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.007228686939924955,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.013822495937347412,
+ "total_groups": 2048,
+ "update_index": 342,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "2b14ef586caf46bf4705272855cd50b0089cb9fb65c9c2937cb7870dd8f7e3ac",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.004195937886834145,
+ "mean_squared_error": 1.5836302935667845e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.01112572941929102,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.004151391796767712,
+ "total_groups": 2048,
+ "update_index": 343,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "c5eaf81de095ff959002a13a5c380119a9f08a94e0138bc82c418e72243c3413",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010851725935935974,
+ "mean_squared_error": 1.109049350134228e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.02212539128959179,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.029073063284158707,
+ "total_groups": 2048,
+ "update_index": 344,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "a5885132bc9514877b760085f9a1ce5e5ae516a7d32dffc0735cf52106939a28",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03524298220872879,
+ "mean_squared_error": 8.617558933110558e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.015097476541996002,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22590413689613342,
+ "total_groups": 2048,
+ "update_index": 345,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "6affa1237b3cced877dcd7eb80a2e063ccd6a04919ed58db0a28973c50cf5b3f",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023747622966766357,
+ "mean_squared_error": 1.916885992159223e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.018609993159770966,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.050250016152858734,
+ "total_groups": 2048,
+ "update_index": 346,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "7d534ebb46bebc8602adf293b12dd0e6b8af8cb6aaa28860fdea42a48ac24acc",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015386972576379776,
+ "mean_squared_error": 2.2864068682793004e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04168488085269928,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05993678420782089,
+ "total_groups": 2048,
+ "update_index": 347,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "6c63a427460619b2bf11fc131529ea901e058a69dbb6251c10d42a2d26bdfcb3",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024598538875579834,
+ "mean_squared_error": 3.307583540390624e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.022030681371688843,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08670631796121597,
+ "total_groups": 2048,
+ "update_index": 348,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "b3506fa6ef5d39e5b686e6feb2b96f5d1db74ed19a1005f4a5023f563ed7e07c",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018583524972200394,
+ "mean_squared_error": 1.492330170549394e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.033986110240221024,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03912054002285004,
+ "total_groups": 2048,
+ "update_index": 349,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "28398cbf7c83e3e4850a9079a324c05f411daa598671f6d25bcb157f57f14f3d",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011055350303649902,
+ "mean_squared_error": 1.9603442069637822e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.044787149876356125,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05138924717903137,
+ "total_groups": 2048,
+ "update_index": 350,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "f71d4c526ab1905739febe0c77fbb43cab4b6c0fb8a79779b6087fd48f0a3a98",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03825998306274414,
+ "mean_squared_error": 1.0045243925560499e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03980159014463425,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.26333004236221313,
+ "total_groups": 2048,
+ "update_index": 351,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "76f219c86740d650dd02836c52f0087a956c284c16799516675cdcbb182daae8",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019176222383975983,
+ "mean_squared_error": 3.5087964533886407e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05269581824541092,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09198099374771118,
+ "total_groups": 2048,
+ "update_index": 352,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "e27d088cae5a1a9739a2a730db37e6f4651f623b1e6cb8e079e5ab38353b6fc6",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022191552445292473,
+ "mean_squared_error": 5.338112032404752e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04692726954817772,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.13993540406227112,
+ "total_groups": 2048,
+ "update_index": 353,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "8673c30414cc3c313231e754edf2b0f833737d9c6be94470a6876ec97050e19c",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.047172218561172485,
+ "mean_squared_error": 2.4034102352743503e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.040645819157361984,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6300395727157593,
+ "total_groups": 2048,
+ "update_index": 354,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "bf0a27a8f6d92adaf75efb8dcb4097f927f11b1d1934d399138de0dfca768fef",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.047600433230400085,
+ "mean_squared_error": 6.30116574029671e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06111690402030945,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.6518127918243408,
+ "total_groups": 2048,
+ "update_index": 355,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a4420a955dc1d06f6288cd107066eb1e203c6130b8c544b8f403012b463ad4ff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08638934791088104,
+ "mean_squared_error": 1.0063023182738107e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.0512085035443306,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.6379611492156982,
+ "total_groups": 2048,
+ "update_index": 356,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.16723237931728363,
+ "mean_squared_error": 7.251906026795041e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.0632891058921814,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.9010436534881592,
+ "total_groups": 2048,
+ "update_index": 357,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "fa4a5d9adfc1abcf19e1efb58b9117939d5e077e75189cce9fe38a2e9c32018b",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08455392718315125,
+ "mean_squared_error": 5.7413535614614375e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.058452069759368896,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.505061388015747,
+ "total_groups": 2048,
+ "update_index": 358,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "7bf9effc305b6f5021706487a10b00bfe7466502be00de34f321e526ec7ff673",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030154794454574585,
+ "mean_squared_error": 7.889387916293344e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04753248766064644,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20681557059288025,
+ "total_groups": 2048,
+ "update_index": 359,
+ "write_ordinal": 19
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "04dd47d72dea0353c72d6cb021bd8cb808cdd6e42b635699739dd48f5909011c",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01529453694820404,
+ "mean_squared_error": 7.108945965228486e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008299300447106361,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.018635675311088562,
+ "total_groups": 2048,
+ "update_index": 360,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "83bc3aa2051ea460885a2f509f780f6a2f1a87ee3bfe2d0228fafe5c46a72169",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.005712322890758514,
+ "mean_squared_error": 2.9390971434395396e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.014481808990240097,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.007704666815698147,
+ "total_groups": 2048,
+ "update_index": 361,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "46201374775575b733f8cda7d2c48cd3791f4dd8bdd448f8622a80864b5cc425",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011044010519981384,
+ "mean_squared_error": 1.0422901652873406e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.02180233597755432,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.027323011308908463,
+ "total_groups": 2048,
+ "update_index": 362,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "7b7f8b5999d4c6a3a0e378c731ec497c3beaf6ca83bc620d01372240355a7b02",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.032624244689941406,
+ "mean_squared_error": 1.1822178294096375e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.017723582684993744,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.30991131067276,
+ "total_groups": 2048,
+ "update_index": 363,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "0e528d019f566f16355f58a45a30a273c533a7603d35ce8d9e4dee0daf6966f2",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029143452644348145,
+ "mean_squared_error": 1.8563963521955884e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.0186002179980278,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04866431653499603,
+ "total_groups": 2048,
+ "update_index": 364,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "ae3449a94d369c749903e8d8c7344e9f9213deb9b9d1cf6778034eeaed080070",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01413201168179512,
+ "mean_squared_error": 3.1371342856800766e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04868972301483154,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0822380930185318,
+ "total_groups": 2048,
+ "update_index": 365,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "902b8f9f9b081456fb7364b90d5e3ba62cc6b4a2a2787558eebeffa7576d1e53",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02175120636820793,
+ "mean_squared_error": 4.3527469983928313e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02545386739075184,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11410465091466904,
+ "total_groups": 2048,
+ "update_index": 366,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "af018bad648ba00f2fb2501ca4b28bbb10107c84416e139c0eb53924cf4ed1e1",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02208578586578369,
+ "mean_squared_error": 1.872580241979449e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.037944938987493515,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04908856749534607,
+ "total_groups": 2048,
+ "update_index": 367,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "d015af706925045881fd9bfc3c34686c0722ef4137ec34ba252dc078b21eb9a4",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015696614980697632,
+ "mean_squared_error": 2.4308030788233737e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.05141601711511612,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06372204422950745,
+ "total_groups": 2048,
+ "update_index": 368,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "b45b7f275e55952ac14116c2baa7481173ca05aa5ef6543cbf9e15bbdc18ca78",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03855818510055542,
+ "mean_squared_error": 1.027671373776684e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03999519720673561,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.26939788460731506,
+ "total_groups": 2048,
+ "update_index": 369,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "154ac283291ec8a5386f5f1013b09ac5aa2fe04480c61b391389b6487c1f2c9c",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018688665702939034,
+ "mean_squared_error": 3.935657844067464e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05341488495469093,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10317090898752213,
+ "total_groups": 2048,
+ "update_index": 370,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "5c149fdf15877d55779eee4c3d908ae06da97904690e10a706b95017f915a92c",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03107675164937973,
+ "mean_squared_error": 6.642844141424575e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.05042038485407829,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1741381734609604,
+ "total_groups": 2048,
+ "update_index": 371,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "eb12e9d8aad7babf13d92ba92e34ed9ba4ca67728ffce1befeca97a94ba91177",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07888796925544739,
+ "mean_squared_error": 4.318877472542226e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.054400742053985596,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1321678161621094,
+ "total_groups": 2048,
+ "update_index": 372,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "d495b83fbf1b8a16fadf888a794b6dd35cc891ab41db46d4042035e11dac5aab",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06282031536102295,
+ "mean_squared_error": 6.957514415262267e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06448439508676529,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8238706588745117,
+ "total_groups": 2048,
+ "update_index": 373,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a4420a955dc1d06f6288cd107066eb1e203c6130b8c544b8f403012b463ad4ff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07898950576782227,
+ "mean_squared_error": 9.215240424964577e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04894717037677765,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.415719985961914,
+ "total_groups": 2048,
+ "update_index": 374,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "b28dcbc540b79b795d7166b36dd6b920e052999294c8a560a77a56d7a7e2f224",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06618630886077881,
+ "mean_squared_error": 4.793940661329543e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.051399264484643936,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2567027807235718,
+ "total_groups": 2048,
+ "update_index": 375,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "87d07c64adc4b75b7b6b075d0df54cb9e7084a55707f2f40040c5b91276f45ab",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08928246796131134,
+ "mean_squared_error": 6.243682946660556e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.059883005917072296,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.6367440223693848,
+ "total_groups": 2048,
+ "update_index": 376,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "15c78381d35862410149bed3e40ca87db12c744286dc161556b5de08b71d14c7",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06298311054706573,
+ "mean_squared_error": 7.014630227786256e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04387540742754936,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18388432264328003,
+ "total_groups": 2048,
+ "update_index": 377,
+ "write_ordinal": 20
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "9a31b218c5985602e16de4240c3c477a5c8331ff3adaf00ef3f3996e278dd75f",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012665748596191406,
+ "mean_squared_error": 1.2688167316809995e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.010830633342266083,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.033261269330978394,
+ "total_groups": 2048,
+ "update_index": 378,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "d0e49a679c840db149713e956485fe8f5153e2eb482c623e07bf29a04e489f24",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.009198158979415894,
+ "mean_squared_error": 4.19305195009656e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.015748878940939903,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.010991834104061127,
+ "total_groups": 2048,
+ "update_index": 379,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "effa43e163c8b67f700121ce8d71b32c17dba856df8bf24f22188b916b99540e",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011313535273075104,
+ "mean_squared_error": 1.227550399107713e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.02303473651409149,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03217949718236923,
+ "total_groups": 2048,
+ "update_index": 380,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "f013556eb46f7e3b66186d8668bf92ca9247307525854adfc74d3cc737c1f30b",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029736459255218506,
+ "mean_squared_error": 1.1209574495296692e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.017305929213762283,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2938522696495056,
+ "total_groups": 2048,
+ "update_index": 381,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "88af3f0c4647e47898607f1e3d8b4afdab747837d5afbe9f071c76793ddb4d12",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024774011224508286,
+ "mean_squared_error": 2.3033916818349098e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.020617779344320297,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06038203090429306,
+ "total_groups": 2048,
+ "update_index": 382,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "44f85810d94133fb8ec9d2d9372ed71efd16b64c1e369b5a3796faac1417ef33",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01456354558467865,
+ "mean_squared_error": 2.0888097651550197e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04063183441758156,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05475689470767975,
+ "total_groups": 2048,
+ "update_index": 383,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "4d1916e51c366fd838f864e3089630b7c1c841fe6c83bbdc5ac399ed54c7d9c9",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01902151107788086,
+ "mean_squared_error": 2.8718068278976716e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02068198099732399,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07528269290924072,
+ "total_groups": 2048,
+ "update_index": 384,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "f013bd1ca03ccd80296dd9c5822190b6a92954ae24497061acbec055d26f2109",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01950426772236824,
+ "mean_squared_error": 3.0584493515561917e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.0429261177778244,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08017541468143463,
+ "total_groups": 2048,
+ "update_index": 385,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "1a5a15819fbfb17441a37baa6aea6a72f10e7f2d2236151e5670b9bf3b6aa075",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013873577117919922,
+ "mean_squared_error": 2.034112895898943e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04497242718935013,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05332304909825325,
+ "total_groups": 2048,
+ "update_index": 386,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "124cf20c1874e77d106d7060dcba6b2a47285ee11666c311291936c0299c907d",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0725443959236145,
+ "mean_squared_error": 9.646731768953032e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03868033364415169,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.25288328528404236,
+ "total_groups": 2048,
+ "update_index": 387,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "77f20951b9bc26f40a85573f4ce927e2430a52c60fcef72a5728815b5a62ccc6",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023846236988902092,
+ "mean_squared_error": 2.9008566571064875e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.045045286417007446,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07604421675205231,
+ "total_groups": 2048,
+ "update_index": 388,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "0a617f381ec0aeff57b86ff539994ae57072c8ae67e429dde82a1e2df63cedf1",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02737101912498474,
+ "mean_squared_error": 5.424996629699308e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04516444355249405,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14221303164958954,
+ "total_groups": 2048,
+ "update_index": 389,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "f306deb68d6ea348c6aeea983b1035e5c5c8e3eb91d30400b1d76572102a0ba0",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07353782653808594,
+ "mean_squared_error": 4.475253263080958e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.055236976593732834,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1731607913970947,
+ "total_groups": 2048,
+ "update_index": 390,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "8c24ef12475d8daa262bbe134ce20bac86d2ada979b76c0546783fb71aa16a22",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05073380470275879,
+ "mean_squared_error": 5.676289219991304e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.05803116410970688,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.4880051612854004,
+ "total_groups": 2048,
+ "update_index": 391,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a4420a955dc1d06f6288cd107066eb1e203c6130b8c544b8f403012b463ad4ff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08057218790054321,
+ "mean_squared_error": 9.248818059859332e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04880938678979874,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.4245221614837646,
+ "total_groups": 2048,
+ "update_index": 392,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "560d748c0bac2fe1fbcb95e5b2297d7b6d69866229137b51bfa4bb55c7ecd279",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07623337209224701,
+ "mean_squared_error": 6.441782716137823e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.059063974767923355,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.6886746883392334,
+ "total_groups": 2048,
+ "update_index": 393,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "87d07c64adc4b75b7b6b075d0df54cb9e7084a55707f2f40040c5b91276f45ab",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.058019690215587616,
+ "mean_squared_error": 4.678019649873022e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.051482152193784714,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2263147830963135,
+ "total_groups": 2048,
+ "update_index": 394,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "64b738567bb2cb0ac35cc7b20681fb7ba49564d0bc6490de7c42f3739930cd86",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03717580437660217,
+ "mean_squared_error": 1.0583925131868455e-06,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.05305236950516701,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2774512469768524,
+ "total_groups": 2048,
+ "update_index": 395,
+ "write_ordinal": 21
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "7fae18d18f0539971ed4e240ec476f0ceeea19886c473bb5e118f510b1ea0b45",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012232005596160889,
+ "mean_squared_error": 7.222526221539738e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008194413036108017,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01893341913819313,
+ "total_groups": 2048,
+ "update_index": 396,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "f97c8bccf28086a2dea10e5e4f831ef35f404bd039b55aab414efc451f18609b",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.006214626133441925,
+ "mean_squared_error": 3.8637427479670805e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.015607000328600407,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.010128569789230824,
+ "total_groups": 2048,
+ "update_index": 397,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "4136ccf0c36f0f8f3cf56d5815dd18c797b77cde480f76779804ad0f439c4df6",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012157069519162178,
+ "mean_squared_error": 1.266153049073182e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.023776661604642868,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03319144248962402,
+ "total_groups": 2048,
+ "update_index": 398,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "554fe2f2d8af7e1922e3df77dcd1ef8d00b4639efe4a7c3ab04844bbd0c96f3f",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03910965472459793,
+ "mean_squared_error": 8.9316648654858e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.015441694296896458,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.23413823544979095,
+ "total_groups": 2048,
+ "update_index": 399,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "e924e4f86bfea2a01aba476130fe7680bf22ca1d07e98205dec9b373a0cb0a8f",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022447720170021057,
+ "mean_squared_error": 3.1624739449398476e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02386447601020336,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08290235698223114,
+ "total_groups": 2048,
+ "update_index": 400,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "4d8df3b533745420d029a9a954bf26e9ea8c5f2b870518aba072e2e74bf6167e",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011860519647598267,
+ "mean_squared_error": 1.8678085211831785e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04034247621893883,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.048963479697704315,
+ "total_groups": 2048,
+ "update_index": 401,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "4433de2a12bb4aed1b5b83253b179f81fc358e4741d6c46f7d6998781c4db297",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02419164776802063,
+ "mean_squared_error": 2.991388043938059e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.021204398944973946,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07841744273900986,
+ "total_groups": 2048,
+ "update_index": 402,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "ba644abaf23860280f2b6aa379478ae7578367543e85d1a42e8935e3d7f410ba",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02124592661857605,
+ "mean_squared_error": 2.568364152466529e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03917378932237625,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06732812523841858,
+ "total_groups": 2048,
+ "update_index": 403,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "a7fdb0f6cb5e6eee24c6c9b1f9c8b7b1b2cb22506d8e8a32f211e746eb546110",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010029306635260582,
+ "mean_squared_error": 1.8816592728398973e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04357535392045975,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.049326568841934204,
+ "total_groups": 2048,
+ "update_index": 404,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "124cf20c1874e77d106d7060dcba6b2a47285ee11666c311291936c0299c907d",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05611699819564819,
+ "mean_squared_error": 1.066245886249817e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.040007334202528,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.279509961605072,
+ "total_groups": 2048,
+ "update_index": 405,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "8bdc40d7cce64c511df7e255c7b3b41990afc6602a36ed697756be60a87d8cd8",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015478968620300293,
+ "mean_squared_error": 3.337044063300709e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.04877045005559921,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08747860789299011,
+ "total_groups": 2048,
+ "update_index": 406,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "df57e12e440b062edd7cf8a5555b64b81695615cb280aed343c6b3a4129e108a",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029894918203353882,
+ "mean_squared_error": 4.799929342880205e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04285784438252449,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12582726776599884,
+ "total_groups": 2048,
+ "update_index": 407,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "f306deb68d6ea348c6aeea983b1035e5c5c8e3eb91d30400b1d76572102a0ba0",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07130765914916992,
+ "mean_squared_error": 3.0997262001619674e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.04585070535540581,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8125746250152588,
+ "total_groups": 2048,
+ "update_index": 408,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "eccb4f8faf85525076daa442c9d30fe34db431eaccc876b9ed8c6bd99b5da94c",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07804164290428162,
+ "mean_squared_error": 6.325059075606987e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06212671101093292,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.658076286315918,
+ "total_groups": 2048,
+ "update_index": 409,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "99f9c381565ae51e073c98aba517fead010374f40b754ab76382edfcd2fed8c6",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09020054340362549,
+ "mean_squared_error": 1.352920662611723e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.058375678956508636,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.546600341796875,
+ "total_groups": 2048,
+ "update_index": 410,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "560d748c0bac2fe1fbcb95e5b2297d7b6d69866229137b51bfa4bb55c7ecd279",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08142328262329102,
+ "mean_squared_error": 6.740491699019913e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06042760983109474,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.766979455947876,
+ "total_groups": 2048,
+ "update_index": 411,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "87d07c64adc4b75b7b6b075d0df54cb9e7084a55707f2f40040c5b91276f45ab",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0783294290304184,
+ "mean_squared_error": 5.652375875797588e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.057280994951725006,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.481736421585083,
+ "total_groups": 2048,
+ "update_index": 412,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "ca6ea722b78daf2ab038715ee332396fb0edbbff6daf070a2207db3bb791cf5b",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05011221766471863,
+ "mean_squared_error": 8.448830612906022e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.0481158085167408,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22148102521896362,
+ "total_groups": 2048,
+ "update_index": 413,
+ "write_ordinal": 22
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "4f147aa57c29947eedbf12938d0f3c178653fea99c20d92545f9583566ab5821",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010584831237792969,
+ "mean_squared_error": 7.0801391416353e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008065584115684032,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01856015995144844,
+ "total_groups": 2048,
+ "update_index": 414,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "63a42454a943b03538cbceaa4708b589de860bf4d3fd7c24721e22256df2e136",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008280683308839798,
+ "mean_squared_error": 5.692772475640595e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.019404515624046326,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.014923261478543282,
+ "total_groups": 2048,
+ "update_index": 415,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "952c45ab6c3f032e0632fae281498f19a610b980787d464c891e8662f5eb6f89",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01184157282114029,
+ "mean_squared_error": 2.0866744421255135e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.02835240215063095,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05470091849565506,
+ "total_groups": 2048,
+ "update_index": 416,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "6066b11e1f028f318f0a73e939d678c9d85626d3313eed9679a145acbd7be446",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04884064197540283,
+ "mean_squared_error": 1.0051165872937418e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.016375914216041565,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.26348528265953064,
+ "total_groups": 2048,
+ "update_index": 417,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "f97212c927340fb2cb43ea8c69756ceca086f195ff058010aeb8c67c69739867",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023304328322410583,
+ "mean_squared_error": 4.348456741354312e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.026958998292684555,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11399218440055847,
+ "total_groups": 2048,
+ "update_index": 418,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "46de80694732c4954bc2d0e03848e94656b08f82b31ffc027562a71aa3110341",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011653607711195946,
+ "mean_squared_error": 3.1823176982470613e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04894145950675011,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08342254906892776,
+ "total_groups": 2048,
+ "update_index": 419,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "1f998486f21aeb5d2e4c0aeb7ec6b8603b3d41bfab478963c40a7f4fcc2c8360",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.031042933464050293,
+ "mean_squared_error": 3.864775521833508e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02408178150653839,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10131277143955231,
+ "total_groups": 2048,
+ "update_index": 420,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "ad37ddd02020732cf65a5601dc2f7b9d90f8c2507d001694edeaaf4cf4248379",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02284538745880127,
+ "mean_squared_error": 2.9381607191680814e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04339839890599251,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07702212035655975,
+ "total_groups": 2048,
+ "update_index": 421,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "70f2a1f093b1473632baaa20f9394142002f7d7bd0acfdbb40ac375537275ad1",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.009993956424295902,
+ "mean_squared_error": 1.9046862576033163e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04612555354833603,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.049930207431316376,
+ "total_groups": 2048,
+ "update_index": 422,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "d0beaac55a985f8f5d2ba3272f8255afbaae3dbea0c4055fcaf5237a820fe358",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.039754487574100494,
+ "mean_squared_error": 1.1652127795969136e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04154588282108307,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3054535388946533,
+ "total_groups": 2048,
+ "update_index": 423,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "af7eb5d06eee292218c8f28b3ba377b654a6bb4ae60f85729e944e36f4522249",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020489590242505074,
+ "mean_squared_error": 4.388980414660182e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.056082043796777725,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11505448818206787,
+ "total_groups": 2048,
+ "update_index": 424,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "0e5f98d67f56fa8ebc1f67d516d648aab786300f9eeede0d85d552daf02251c9",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03469008207321167,
+ "mean_squared_error": 4.812224574379798e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04288367182016373,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12614957988262177,
+ "total_groups": 2048,
+ "update_index": 425,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "ea2bf1c17a1f124ab070c1db16a661f470347114c740b33ae22ce88cf87d96c2",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07208596169948578,
+ "mean_squared_error": 4.508905476541258e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.055433209985494614,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1819825172424316,
+ "total_groups": 2048,
+ "update_index": 426,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "55ccdfe1aca6135452e7f1527f82f99e3f6076792841fdef88310d713e52d99b",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06054741144180298,
+ "mean_squared_error": 7.3904948294512e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06491763889789581,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.9373738765716553,
+ "total_groups": 2048,
+ "update_index": 427,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "a4420a955dc1d06f6288cd107066eb1e203c6130b8c544b8f403012b463ad4ff",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11373090744018555,
+ "mean_squared_error": 1.4228580766939558e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.0590612068772316,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.7299370765686035,
+ "total_groups": 2048,
+ "update_index": 428,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "560d748c0bac2fe1fbcb95e5b2297d7b6d69866229137b51bfa4bb55c7ecd279",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09156995266675949,
+ "mean_squared_error": 6.816211680416018e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06049133464694023,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.7868289947509766,
+ "total_groups": 2048,
+ "update_index": 429,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "87d07c64adc4b75b7b6b075d0df54cb9e7084a55707f2f40040c5b91276f45ab",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.14466550946235657,
+ "mean_squared_error": 7.257512152136769e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06477571278810501,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.9025132656097412,
+ "total_groups": 2048,
+ "update_index": 430,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "ca6ea722b78daf2ab038715ee332396fb0edbbff6daf070a2207db3bb791cf5b",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05298520624637604,
+ "mean_squared_error": 8.10292817732261e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04854271188378334,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21241340041160583,
+ "total_groups": 2048,
+ "update_index": 431,
+ "write_ordinal": 23
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "9be39977dbfc1ed98c0d14625dd866299a52485c0f19ec70ff397bd5f2fa0528",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014080557972192764,
+ "mean_squared_error": 8.930516059990623e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.009007093496620655,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02341081202030182,
+ "total_groups": 2048,
+ "update_index": 432,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "a4fd96c5312ebe4c47c675774f3f380a8465b3c92ca202714cd6563a64d70cac",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.006196741014719009,
+ "mean_squared_error": 4.810478770878035e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.017705878242850304,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.012610381469130516,
+ "total_groups": 2048,
+ "update_index": 433,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "0e83f4e5bf7797ddb7fce1ddf18f97df08b97b9a537c6989e0b96b9d4a0e68f4",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011558493599295616,
+ "mean_squared_error": 1.955616824034223e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.027228374034166336,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05126532167196274,
+ "total_groups": 2048,
+ "update_index": 434,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "c2c3abea6cd13a71d933b48f44aa901fcd535fed5da9f4080a0997d24ad2fecd",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03546619415283203,
+ "mean_squared_error": 7.4769980074052e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.014059473760426044,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19600501656532288,
+ "total_groups": 2048,
+ "update_index": 435,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "0052d7a90f0dd4c5dc4e76b0397d668ead61d32ee928d7895e54c7ae845d4ea8",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022901833057403564,
+ "mean_squared_error": 3.0703193942827056e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.022818852216005325,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08048658072948456,
+ "total_groups": 2048,
+ "update_index": 436,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "619c1f8f43ef0a8f584ac1016bbb8c7a01470517233978cf733ace2d3954bbef",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01623663306236267,
+ "mean_squared_error": 2.622890065140382e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.043972454965114594,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06875748932361603,
+ "total_groups": 2048,
+ "update_index": 437,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "1f998486f21aeb5d2e4c0aeb7ec6b8603b3d41bfab478963c40a7f4fcc2c8360",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017717093229293823,
+ "mean_squared_error": 2.955207492050249e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.021028444170951843,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07746899127960205,
+ "total_groups": 2048,
+ "update_index": 438,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "77d3030a6216e34a05a182726609a487bd5f37efe9d8f1c88194dcf524a9d4ba",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013754010200500488,
+ "mean_squared_error": 1.3997723158354347e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.030451301485300064,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03669419139623642,
+ "total_groups": 2048,
+ "update_index": 439,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "3230f65b98e3add09e604b76b58ee846fabaefb786bc912e928b1ef121ee1427",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015443503856658936,
+ "mean_squared_error": 1.6174641359611996e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.042569540441036224,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04240085184574127,
+ "total_groups": 2048,
+ "update_index": 440,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "c46189169a9be302e2303136eb08a3104c3192dc00fb780fc900f31984e79dbd",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.043044622987508774,
+ "mean_squared_error": 1.0751957688626135e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03985072299838066,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.28185611963272095,
+ "total_groups": 2048,
+ "update_index": 441,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "de1784116c5b33732ca7c2fa3b28a2ad26cb66ccd570f4ddf34f804435913ee5",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014103084802627563,
+ "mean_squared_error": 2.974065296257322e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.046066105365753174,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07796333730220795,
+ "total_groups": 2048,
+ "update_index": 442,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "713e577aabbf189f9d88ba4178bb47e9629ba70a03e31f4f0dfe620ff0e64e0f",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03573690354824066,
+ "mean_squared_error": 4.2591537408043223e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04060419648885727,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11165115982294083,
+ "total_groups": 2048,
+ "update_index": 443,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "1b800b762f7001501627d7de9a8310748284c9282b73146e92b5868caa9c7e3c",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06637616455554962,
+ "mean_squared_error": 3.3062315196730196e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.04742053151130676,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8667087554931641,
+ "total_groups": 2048,
+ "update_index": 444,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "8d545f01c08b963c43f9c3dd362f75dd33c6c3c362a90c23a0c7b84d01692bc7",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08191084861755371,
+ "mean_squared_error": 7.34476725483546e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.06332274526357651,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.925386667251587,
+ "total_groups": 2048,
+ "update_index": 445,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0699932873249054,
+ "mean_squared_error": 1.1562040526769124e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.052769508212804794,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 3.0309195518493652,
+ "total_groups": 2048,
+ "update_index": 446,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "560d748c0bac2fe1fbcb95e5b2297d7b6d69866229137b51bfa4bb55c7ecd279",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06642413139343262,
+ "mean_squared_error": 5.709465312975226e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05521301552653313,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.4967020750045776,
+ "total_groups": 2048,
+ "update_index": 447,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "87d07c64adc4b75b7b6b075d0df54cb9e7084a55707f2f40040c5b91276f45ab",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.062315184623003006,
+ "mean_squared_error": 7.001319318078458e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.06349312514066696,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.8353538513183594,
+ "total_groups": 2048,
+ "update_index": 448,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "ca6ea722b78daf2ab038715ee332396fb0edbbff6daf070a2207db3bb791cf5b",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.028200142085552216,
+ "mean_squared_error": 9.686973498901352e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.05333754047751427,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2539381980895996,
+ "total_groups": 2048,
+ "update_index": 449,
+ "write_ordinal": 24
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "df13023c6136578ae233c9a4546215a504852fa2bd6af6ed6578efb1379acdd5",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012811131775379181,
+ "mean_squared_error": 1.1133617761061032e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.010117798112332821,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.029186110943555832,
+ "total_groups": 2048,
+ "update_index": 450,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "ad3422680cf355b98af6ace06625993c0ac694629b78a1b3d8c93581a65267bf",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007069900631904602,
+ "mean_squared_error": 5.527643764935419e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.019029784947633743,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.014490386471152306,
+ "total_groups": 2048,
+ "update_index": 451,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "ff714126a290079227e4d3dd6e93d6c492fda3a91d3d46dd7b7dc5449e3c5ce9",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012225247919559479,
+ "mean_squared_error": 2.470536344389984e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.030306978151202202,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0647636279463768,
+ "total_groups": 2048,
+ "update_index": 452,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "4e4146f62787d35e59615b639bb5df0158bfc62d0b62ab1408bdba903836e175",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03870002180337906,
+ "mean_squared_error": 1.1864549378515221e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.017703495919704437,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3110220432281494,
+ "total_groups": 2048,
+ "update_index": 453,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "aaa06344d5f5c192daa3526f0cee9fb2e285407e07f151f9ff9fad538aeb91a6",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029550302773714066,
+ "mean_squared_error": 2.335230249173037e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02008272521197796,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06121665984392166,
+ "total_groups": 2048,
+ "update_index": 454,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "d2391363574d80e69707ef9ad8d90293602cfe90dfc2f6b966b493b1ec657836",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016471117734909058,
+ "mean_squared_error": 2.7750866138376296e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04468619450926781,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07274723052978516,
+ "total_groups": 2048,
+ "update_index": 455,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "409213e3f902854bd635242c3e637114a3ee7556452be5a9bca983f05a22b344",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030586520209908485,
+ "mean_squared_error": 3.6168501083011506e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.023212317377328873,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09481355547904968,
+ "total_groups": 2048,
+ "update_index": 456,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "4d49f2773c4eaec32d49fbf9a90ab03156ce3781a92d580555751682e70a4fce",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019482433795928955,
+ "mean_squared_error": 1.7780939742806368e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03463497385382652,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.046611666679382324,
+ "total_groups": 2048,
+ "update_index": 457,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "b8981671824efa2f50645daffbee786391992c6a73fc2d83685231fc72a77224",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012485221028327942,
+ "mean_squared_error": 2.0351427565401536e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.047203220427036285,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.053350046277046204,
+ "total_groups": 2048,
+ "update_index": 458,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "5e0cfdb9d7408619535398d8315bbe22573edeb70b17a0c2acc486b8dd773047",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03787991404533386,
+ "mean_squared_error": 1.2413461263349745e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04277915135025978,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.32541143894195557,
+ "total_groups": 2048,
+ "update_index": 459,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "5cff21a16dc999a9c5b01d1a67c615508b9d87649c38b67fda3e3493310ef280",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016339197754859924,
+ "mean_squared_error": 4.5787766111970996e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.054913874715566635,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12002988159656525,
+ "total_groups": 2048,
+ "update_index": 460,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "cb133af1d01d704fe40c5cb0294a04fe0530101a426263b8b5ac37d748f4a216",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02438437193632126,
+ "mean_squared_error": 5.493083108376595e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04580852389335632,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14399787783622742,
+ "total_groups": 2048,
+ "update_index": 461,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "940686be5eb4945d55bce5b608702a0521bfb910d391b387a3d9c1921dcd414e",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06898665428161621,
+ "mean_squared_error": 1.8959179897137801e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.03572603687644005,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4970035254955292,
+ "total_groups": 2048,
+ "update_index": 462,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "0ea8cec1ffcdc5c0a320fd559b20e28fd8f9265f66ad2e3c187da442c2245712",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07602179050445557,
+ "mean_squared_error": 6.198744358698605e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.0569276362657547,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.624963641166687,
+ "total_groups": 2048,
+ "update_index": 463,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0798945426940918,
+ "mean_squared_error": 8.417907338298392e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.044966042041778564,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.2067039012908936,
+ "total_groups": 2048,
+ "update_index": 464,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "560d748c0bac2fe1fbcb95e5b2297d7b6d69866229137b51bfa4bb55c7ecd279",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07320398837327957,
+ "mean_squared_error": 5.245644842943875e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05289846286177635,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.3751143217086792,
+ "total_groups": 2048,
+ "update_index": 465,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "87d07c64adc4b75b7b6b075d0df54cb9e7084a55707f2f40040c5b91276f45ab",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.055640220642089844,
+ "mean_squared_error": 4.353928943601204e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.049845755100250244,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.141356348991394,
+ "total_groups": 2048,
+ "update_index": 466,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "ca6ea722b78daf2ab038715ee332396fb0edbbff6daf070a2207db3bb791cf5b",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.028974294662475586,
+ "mean_squared_error": 8.026958084883518e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04772654175758362,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21042189002037048,
+ "total_groups": 2048,
+ "update_index": 467,
+ "write_ordinal": 25
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "cf1c6dbadd470e5d4de1476e4b93c963b3daf4192368ff41eb2197911884eba6",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0152587890625,
+ "mean_squared_error": 1.0519696047595062e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.010038960725069046,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0275767520070076,
+ "total_groups": 2048,
+ "update_index": 468,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "2af3e7c2b45f636d5bdcb0b55e55429509ecf873411b1394b9f4657457a4d7ab",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.005806498229503632,
+ "mean_squared_error": 3.8014938752439775e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.015786604955792427,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.009965388104319572,
+ "total_groups": 2048,
+ "update_index": 469,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "428d007249de00b1922bb67c2a2d1a709a77d74ef12a0edfa1a855fcfbe9ed36",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011129975318908691,
+ "mean_squared_error": 1.5161683108999569e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.024053165689110756,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03974544256925583,
+ "total_groups": 2048,
+ "update_index": 470,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "eb2701018dc106f549b056900c8421f1725f71f6480ad27158a613254ccfa1a2",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.031166687607765198,
+ "mean_squared_error": 7.681445026719302e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.014237532392144203,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20136447250843048,
+ "total_groups": 2048,
+ "update_index": 471,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "aaa06344d5f5c192daa3526f0cee9fb2e285407e07f151f9ff9fad538aeb91a6",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023986130952835083,
+ "mean_squared_error": 1.9129198847167572e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.018224135041236877,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05014604702591896,
+ "total_groups": 2048,
+ "update_index": 472,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "ada315428d18320524f69f160951ed5872b1d0944eb076ae5f2d9c65aa8bb5ba",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010808110237121582,
+ "mean_squared_error": 2.2229136220630608e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.03983084112405777,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0582723468542099,
+ "total_groups": 2048,
+ "update_index": 473,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "aae8bbd76de8fe8e7ed49614ef43668e1be226a715ace1f1636b63cbd88f593e",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02835443615913391,
+ "mean_squared_error": 3.418347205297323e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.022470418363809586,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08960992097854614,
+ "total_groups": 2048,
+ "update_index": 474,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "4d49f2773c4eaec32d49fbf9a90ab03156ce3781a92d580555751682e70a4fce",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01632877066731453,
+ "mean_squared_error": 1.485471443629649e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.032272517681121826,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03894074261188507,
+ "total_groups": 2048,
+ "update_index": 475,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "f1e16a34790665e1fd04f20a9a64ff87af01a8736757ffd23b920ff4351a117b",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013292104005813599,
+ "mean_squared_error": 1.5942717368488957e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.041393525898456573,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04179287701845169,
+ "total_groups": 2048,
+ "update_index": 476,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "5e0cfdb9d7408619535398d8315bbe22573edeb70b17a0c2acc486b8dd773047",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03731055557727814,
+ "mean_squared_error": 7.107485089363763e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03218141570687294,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18631845712661743,
+ "total_groups": 2048,
+ "update_index": 477,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "5f00e98a566d6b94236ecbd4955e5470d7d053f9f6874a7d7154aba541c298f7",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015580981969833374,
+ "mean_squared_error": 3.3563890156074194e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.04636656865477562,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08798572421073914,
+ "total_groups": 2048,
+ "update_index": 478,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "15b2a821a3962dec41c7f7f600bfa83fd723324949658b5222b9c308e7808e43",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02419203519821167,
+ "mean_squared_error": 4.640823476620426e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04258468374609947,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1216564029455185,
+ "total_groups": 2048,
+ "update_index": 479,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "f5d43388336a3e5cf8738569a1113c1b3b518c5935ce39a0005a47f802e2f65c",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07257384061813354,
+ "mean_squared_error": 1.386693384120008e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.030428651720285416,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.36351335048675537,
+ "total_groups": 2048,
+ "update_index": 480,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "0ea8cec1ffcdc5c0a320fd559b20e28fd8f9265f66ad2e3c187da442c2245712",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0404089018702507,
+ "mean_squared_error": 4.557111424219329e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.04928606376051903,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1946194171905518,
+ "total_groups": 2048,
+ "update_index": 481,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10489535331726074,
+ "mean_squared_error": 1.0069214113173075e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.049062471836805344,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.6395840644836426,
+ "total_groups": 2048,
+ "update_index": 482,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "560d748c0bac2fe1fbcb95e5b2297d7b6d69866229137b51bfa4bb55c7ecd279",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0725434273481369,
+ "mean_squared_error": 4.917224487144267e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05098462477326393,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2890208959579468,
+ "total_groups": 2048,
+ "update_index": 483,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "87d07c64adc4b75b7b6b075d0df54cb9e7084a55707f2f40040c5b91276f45ab",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08102673292160034,
+ "mean_squared_error": 4.638186510419473e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.05111563205718994,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2158727645874023,
+ "total_groups": 2048,
+ "update_index": 484,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "ca6ea722b78daf2ab038715ee332396fb0edbbff6daf070a2207db3bb791cf5b",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02841944992542267,
+ "mean_squared_error": 8.398253044106241e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04814392700791359,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22015516459941864,
+ "total_groups": 2048,
+ "update_index": 485,
+ "write_ordinal": 26
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "433da266b968ac782b8f5aa74745b6b195a31041ebdf6fc0f7e229714c0994b5",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015471965074539185,
+ "mean_squared_error": 1.2162324480868847e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.010688912123441696,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03188280388712883,
+ "total_groups": 2048,
+ "update_index": 486,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "f963f5bf56c5253925d5364973df11150114f6a48c7c2a1b46188ec8393b4bed",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007001817226409912,
+ "mean_squared_error": 5.910331069003405e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.019124045968055725,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.015493578277528286,
+ "total_groups": 2048,
+ "update_index": 487,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "9f2dc86cebfe29959f5400ede0873ec0d3b72a5151f52caabb5d72862310ef16",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012163964100182056,
+ "mean_squared_error": 2.1941393413271726e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.028479870408773422,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05751804634928703,
+ "total_groups": 2048,
+ "update_index": 488,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "eab249ba9ec83a42b095eb3a813d095a0800e4eb1cf9e3b9fe17f0b349b650ff",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03672690689563751,
+ "mean_squared_error": 1.1827924026874825e-06,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.0176678653806448,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3100619316101074,
+ "total_groups": 2048,
+ "update_index": 489,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "863d3a3b8746bfb2cf1bbbb02686918f0af77118cd6a5a9b46af1869d74a9b5c",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029827475547790527,
+ "mean_squared_error": 4.541201690244634e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02781713381409645,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11904487758874893,
+ "total_groups": 2048,
+ "update_index": 490,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "51b0a2119b8dc8d39f7fa372e9f427505efa8c4e8e9962ce73fa5baa29cf7db1",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017396599054336548,
+ "mean_squared_error": 3.56207408458431e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.048058539628982544,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09337763488292694,
+ "total_groups": 2048,
+ "update_index": 491,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "514a6e7cfdf47a01a1b8377883dffcb6fcdbdc2f628616a99985760bbab42d25",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025136739015579224,
+ "mean_squared_error": 4.4522988673634245e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02558191493153572,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11671434342861176,
+ "total_groups": 2048,
+ "update_index": 492,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "1f90e04694b6c71acb632b70e9c07bb654dd9ebc1f77db725b5aa1f7c491c2b1",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022367000579833984,
+ "mean_squared_error": 2.2780068320571445e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.039708591997623444,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05971658229827881,
+ "total_groups": 2048,
+ "update_index": 493,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "e0acd1552f0b487d6603b051d07320a60dc3a9c1c288e9f1ea6c53313adabb07",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010997399687767029,
+ "mean_squared_error": 2.0636761632886191e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04676415026187897,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05409803241491318,
+ "total_groups": 2048,
+ "update_index": 494,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "5e0cfdb9d7408619535398d8315bbe22573edeb70b17a0c2acc486b8dd773047",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.036748796701431274,
+ "mean_squared_error": 7.781940780660079e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03376526013016701,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20399890840053558,
+ "total_groups": 2048,
+ "update_index": 495,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "59979ccc800d78c42275605ce650363551f50856d692064a5fe12f18c75cea3e",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.020262062549591064,
+ "mean_squared_error": 3.5091807149001397e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.04752841964364052,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09199106693267822,
+ "total_groups": 2048,
+ "update_index": 496,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "db497abe0fbecf1f4634a8f5d5ab9d3d0e25e0cef7ff4a1225993a4f05cffbc0",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.032126426696777344,
+ "mean_squared_error": 4.3352559941922664e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04140933230519295,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11364613473415375,
+ "total_groups": 2048,
+ "update_index": 497,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "956c9fa84eb1d085886b1ef0f6f647cc7dc647c2388b7876109afb45608a86b1",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06867742538452148,
+ "mean_squared_error": 1.931617134687258e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.03566594794392586,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5063618421554565,
+ "total_groups": 2048,
+ "update_index": 498,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "900740af6fe185b811805bf21f5ab431c57abb68dfb6f46e4fb2674dc9d73be0",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06968563795089722,
+ "mean_squared_error": 6.1945752349856775e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.057000353932380676,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.6238707304000854,
+ "total_groups": 2048,
+ "update_index": 499,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09373354911804199,
+ "mean_squared_error": 9.90343323792331e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.048483267426490784,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.596125602722168,
+ "total_groups": 2048,
+ "update_index": 500,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "560d748c0bac2fe1fbcb95e5b2297d7b6d69866229137b51bfa4bb55c7ecd279",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.12971842288970947,
+ "mean_squared_error": 5.839088771608658e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05484558269381523,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.53068208694458,
+ "total_groups": 2048,
+ "update_index": 501,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0654829740524292,
+ "mean_squared_error": 4.4824737415183336e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04989413544535637,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.175053596496582,
+ "total_groups": 2048,
+ "update_index": 502,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "dc65e29232367ceee6534edb87edd6f2d802d1e6a1a9f760b7b3a28db5c20b78",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03003014624118805,
+ "mean_squared_error": 7.863453674872289e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04680192470550537,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.20613572001457214,
+ "total_groups": 2048,
+ "update_index": 503,
+ "write_ordinal": 27
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "09c17f704d8ef668faf17619e10c06a3e1e9ea64d7dbed74a415a6dd8f1ab1c6",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012832656502723694,
+ "mean_squared_error": 7.591701489673142e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008445763029158115,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01990118995308876,
+ "total_groups": 2048,
+ "update_index": 504,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "fc9114fd6a965d529eacb8251b8966951b6c0ed16c092c2acd36badcab057882",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.005972838960587978,
+ "mean_squared_error": 1.6203372865675192e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.011241937056183815,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0042476169764995575,
+ "total_groups": 2048,
+ "update_index": 505,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "e7b73f2ca1f8c731c5f8929dfb80f8535f220de3acc3243c075ff896a1e3a4e7",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010123755782842636,
+ "mean_squared_error": 8.406428264606802e-08,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.018610144034028053,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.022036947309970856,
+ "total_groups": 2048,
+ "update_index": 506,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "680001dac9ca19238b4fbef45d23a059fb2a5b4b8514d8595c6cfb8754a105cc",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02389455772936344,
+ "mean_squared_error": 8.142371825670125e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.014766721054911613,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.21344739198684692,
+ "total_groups": 2048,
+ "update_index": 507,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "6a6b7301d65f1c395335bb2912cf203fbbe28420b958abb5c324b64c8a9fa57d",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025960922241210938,
+ "mean_squared_error": 2.8734172019539983e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02246846817433834,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0753249078989029,
+ "total_groups": 2048,
+ "update_index": 508,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "106274c82fa4009e4b5d5fc43d8871354d0eb5be026cc9d5e4569ed3c21f7e0f",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015203624963760376,
+ "mean_squared_error": 2.966454815123143e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.044442903250455856,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07776383310556412,
+ "total_groups": 2048,
+ "update_index": 509,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "b6eb27f86162f9bc3ef0eba4a6bc918c61896678d8cbce2030a5e9492598eeb8",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04076841473579407,
+ "mean_squared_error": 4.868697942583822e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.026695260778069496,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12762999534606934,
+ "total_groups": 2048,
+ "update_index": 510,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "b9c2d8f4baf8b9e9d69b91dc6c493cb5073a695323a92df1358d509fb4d1391d",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014605369418859482,
+ "mean_squared_error": 2.0618637108782423e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.039079390466213226,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.054050520062446594,
+ "total_groups": 2048,
+ "update_index": 511,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "981a291cb1561246f976fc7551ef61c014d17aa0a10cfc6cd9e90854f62c78d7",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013913959264755249,
+ "mean_squared_error": 2.2760519868825213e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04877735674381256,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.059665337204933167,
+ "total_groups": 2048,
+ "update_index": 512,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "5e0cfdb9d7408619535398d8315bbe22573edeb70b17a0c2acc486b8dd773047",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.031927287578582764,
+ "mean_squared_error": 7.957374918987625e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03411789983510971,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2085978090763092,
+ "total_groups": 2048,
+ "update_index": 513,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "857502fc7edc6c2e881c982eaa4711c5ad98ecb013cfe427dfbdbcab9802d0f6",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017246097326278687,
+ "mean_squared_error": 4.2289775592507794e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05264871567487717,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11086010932922363,
+ "total_groups": 2048,
+ "update_index": 514,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "d41b21193f5f5c4c689735d3904a7920abc76ec4dff518331f8c8531059cc135",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030847586691379547,
+ "mean_squared_error": 6.050308343219513e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04990376904606819,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1586052030324936,
+ "total_groups": 2048,
+ "update_index": 515,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "2fa40c2fafb69085a867e34e16da1a69dc1fe271f7d5ee0771b98a6b8c69e72a",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05789625644683838,
+ "mean_squared_error": 1.6034937289077789e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.03266773745417595,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4203462600708008,
+ "total_groups": 2048,
+ "update_index": 516,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "fc4b071b2b2d8381170d2bc44c08d49dd06b8e519c4eb78b7bcf3c50810f732e",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07713639736175537,
+ "mean_squared_error": 5.025161044613924e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.053328417241573334,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.3173158168792725,
+ "total_groups": 2048,
+ "update_index": 517,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11007225513458252,
+ "mean_squared_error": 9.832088835537434e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04849647730588913,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.577423095703125,
+ "total_groups": 2048,
+ "update_index": 518,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "560d748c0bac2fe1fbcb95e5b2297d7b6d69866229137b51bfa4bb55c7ecd279",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10014092922210693,
+ "mean_squared_error": 5.647993930324446e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.05398714169859886,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.4805877208709717,
+ "total_groups": 2048,
+ "update_index": 519,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.056108713150024414,
+ "mean_squared_error": 4.2192887121927924e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04778866097331047,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1060612201690674,
+ "total_groups": 2048,
+ "update_index": 520,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "87313756ae8724a56e13ccaee82c30fab061957e96ca82c0a97ee9c157b076e7",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.043479062616825104,
+ "mean_squared_error": 7.155967978178523e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04314533621072769,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.18758940696716309,
+ "total_groups": 2048,
+ "update_index": 521,
+ "write_ordinal": 28
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "40f9e289ff70087ad7b46067ecb325f90e0d401ba35f19927e3f652e9ee37011",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012374281883239746,
+ "mean_squared_error": 6.917277062257199e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.007956541143357754,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01813322678208351,
+ "total_groups": 2048,
+ "update_index": 522,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "e82221e1d0cc6435ff8e2571d8c6182bb8b1077dfcafa280249baad13b452a53",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0051231905817985535,
+ "mean_squared_error": 3.09621626115586e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.014753432013094425,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.008116545155644417,
+ "total_groups": 2048,
+ "update_index": 523,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "7c8a991f643ee05729235d244878126ed0fd2d60cfd7094aa9b2ace7bd47a540",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014490559697151184,
+ "mean_squared_error": 8.848675037143039e-08,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.01931902766227722,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.023196270689368248,
+ "total_groups": 2048,
+ "update_index": 524,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "680001dac9ca19238b4fbef45d23a059fb2a5b4b8514d8595c6cfb8754a105cc",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029319941997528076,
+ "mean_squared_error": 9.603874104868737e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.015998475253582,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.251759797334671,
+ "total_groups": 2048,
+ "update_index": 525,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "cdfd52d5828f1320b405cd48e9ab1609db6563ca7be2b6c86040d5fa7a87a6e4",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017679542303085327,
+ "mean_squared_error": 2.3744317445562046e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.020670708268880844,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06224430352449417,
+ "total_groups": 2048,
+ "update_index": 526,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "fab6a6e422b8b993881dc62109291689e3ae011d9d69f6f35f5b58f62de3d4bf",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016216415911912918,
+ "mean_squared_error": 3.232174776712782e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04782791808247566,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08472952246665955,
+ "total_groups": 2048,
+ "update_index": 527,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "c6aa6a55795cc3c4cf1b72763faf6c29123ff340746b7281956a0940ffd9fc3d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.035579994320869446,
+ "mean_squared_error": 5.610422135760018e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.028549501672387123,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14707385003566742,
+ "total_groups": 2048,
+ "update_index": 528,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "2b618a12c68abe5bb8f4e09f093d4ba6806a6e3c9b0747848fae4646f39de9aa",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023211926221847534,
+ "mean_squared_error": 3.192797635165334e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04767438769340515,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08369727432727814,
+ "total_groups": 2048,
+ "update_index": 529,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "70d24b32347e1e0bacf5a48a0d47735af2f04869cb6bb8ae0da94470d13a28c4",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013164758682250977,
+ "mean_squared_error": 2.6774014827424253e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.05263468623161316,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07018647342920303,
+ "total_groups": 2048,
+ "update_index": 530,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "5e0cfdb9d7408619535398d8315bbe22573edeb70b17a0c2acc486b8dd773047",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0339394249022007,
+ "mean_squared_error": 1.1173239045092487e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.04029867425560951,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2928997576236725,
+ "total_groups": 2048,
+ "update_index": 531,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "a7b92f674ab55c71bf88d6fc015c85d18d3b0c666e499d057bdd73a95599dc53",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026119381189346313,
+ "mean_squared_error": 5.835638603457483e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.06137790158390999,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15297776460647583,
+ "total_groups": 2048,
+ "update_index": 532,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "e0e3ffa116b72dbcccb066225fed0c5bd1fced4ab6d8db34a991bd1f58d2801a",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027193671092391014,
+ "mean_squared_error": 6.039642812538659e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04965953901410103,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15832561254501343,
+ "total_groups": 2048,
+ "update_index": 533,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "a4a26c63dad3e446a3fe7f2f9b81b6d011fab8931dc7dc6ecc366ae8018fea34",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08044702559709549,
+ "mean_squared_error": 4.103993887838442e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.051867879927158356,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0758373737335205,
+ "total_groups": 2048,
+ "update_index": 534,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "ca8ffcf2308c970a5f24f628f7b2f4c35602610784ccc62e823c220c644bbcda",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05889008194208145,
+ "mean_squared_error": 5.119542947795708e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.053643107414245605,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.342057466506958,
+ "total_groups": 2048,
+ "update_index": 535,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09250142425298691,
+ "mean_squared_error": 8.294062354252674e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.0446154810488224,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.174238681793213,
+ "total_groups": 2048,
+ "update_index": 536,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "560d748c0bac2fe1fbcb95e5b2297d7b6d69866229137b51bfa4bb55c7ecd279",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07121109962463379,
+ "mean_squared_error": 3.8112216316221748e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.04430675506591797,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.9990888833999634,
+ "total_groups": 2048,
+ "update_index": 537,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.056604623794555664,
+ "mean_squared_error": 3.0886521926731803e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04054994881153107,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8096716403961182,
+ "total_groups": 2048,
+ "update_index": 538,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "d88ec02d081e3959c92fcb04a954cf53fadc2529ea346ee0b6bf3fee5ce9458f",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03770463168621063,
+ "mean_squared_error": 4.4180933400639333e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.03364165872335434,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11581766605377197,
+ "total_groups": 2048,
+ "update_index": 539,
+ "write_ordinal": 29
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "28ea14f156382ca3500c46b58ac94abbad90f9a21e0d56e70ff511f8bfb03177",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013628631830215454,
+ "mean_squared_error": 1.1735323113271079e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.010251655243337154,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.030763445422053337,
+ "total_groups": 2048,
+ "update_index": 540,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "8369e16adec08a9fbb2b9e5baea7b11b58a1282d539d528c9db0f9effabc0b74",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.008478701114654541,
+ "mean_squared_error": 5.063862928977869e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.0172018650919199,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.013274612836539745,
+ "total_groups": 2048,
+ "update_index": 541,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "87a26647e45e88cb1b12e212ea64d697515b3fa34fbe978910fef5511cce689b",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012422725558280945,
+ "mean_squared_error": 1.0132362859849309e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.020706485956907272,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.026561381295323372,
+ "total_groups": 2048,
+ "update_index": 542,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "680001dac9ca19238b4fbef45d23a059fb2a5b4b8514d8595c6cfb8754a105cc",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.031352996826171875,
+ "mean_squared_error": 5.755556458097999e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.012349276803433895,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15087845921516418,
+ "total_groups": 2048,
+ "update_index": 543,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "2f87018920c15031559d63a75580200a34d43d602a140d4b35ff54d35e350ab0",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02259927988052368,
+ "mean_squared_error": 1.852413618053106e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.01804286427795887,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04855991154909134,
+ "total_groups": 2048,
+ "update_index": 544,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "9ad10d1b073e153e6b4ac6ba27cf095a4b119ed491cdfa80a2f789cd056cb869",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017039895057678223,
+ "mean_squared_error": 2.665286160663527e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04437238350510597,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06986887753009796,
+ "total_groups": 2048,
+ "update_index": 545,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "c6aa6a55795cc3c4cf1b72763faf6c29123ff340746b7281956a0940ffd9fc3d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026659250259399414,
+ "mean_squared_error": 4.2524777654762147e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.024905646219849586,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11147615313529968,
+ "total_groups": 2048,
+ "update_index": 546,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "39005c67ef8b7c0d1100c71fb9226e0e082e330368487f6222ccdef501b7946d",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019169479608535767,
+ "mean_squared_error": 4.218799176669563e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.049396928399801254,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1105932891368866,
+ "total_groups": 2048,
+ "update_index": 547,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "e02cb1ce16df640ed4be2cbb602675253d4c86f8db61943f18d0bab71d0abe9b",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015686511993408203,
+ "mean_squared_error": 2.2791994069848442e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04747511073946953,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0597478449344635,
+ "total_groups": 2048,
+ "update_index": 548,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "f3da726fe40fe4ccc7783775ffe4868b5190f75ef04050faa6c178baa2c3254c",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.041192054748535156,
+ "mean_squared_error": 9.55750920184073e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03738909214735031,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.25054436922073364,
+ "total_groups": 2048,
+ "update_index": 549,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "205678062bb410859c6f58266273587b40ee59a9c81a325504c5bc3624b223a9",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022756248712539673,
+ "mean_squared_error": 4.5592167907670955e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05360667034983635,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11951713263988495,
+ "total_groups": 2048,
+ "update_index": 550,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "ab50d5a0caff543f42425cf13ec7304710f09d35508439f189bf0cf9cfc13f4c",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021595725789666176,
+ "mean_squared_error": 5.755904339821427e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04735814034938812,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.15088757872581482,
+ "total_groups": 2048,
+ "update_index": 551,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "e841d01fb7455fe9c8694bd5ab66519cbdae26d4d5891f99b46ec6fbe144156d",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07946205139160156,
+ "mean_squared_error": 3.942086550523527e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.04996894672513008,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0333943367004395,
+ "total_groups": 2048,
+ "update_index": 552,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "ca8ffcf2308c970a5f24f628f7b2f4c35602610784ccc62e823c220c644bbcda",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06458872556686401,
+ "mean_squared_error": 4.199362592771649e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.04782542213797569,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1008377075195312,
+ "total_groups": 2048,
+ "update_index": 553,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07341587543487549,
+ "mean_squared_error": 7.794693374307826e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04314568266272545,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.043332099914551,
+ "total_groups": 2048,
+ "update_index": 554,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "560d748c0bac2fe1fbcb95e5b2297d7b6d69866229137b51bfa4bb55c7ecd279",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05994701385498047,
+ "mean_squared_error": 4.824657480639871e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.049555350095033646,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2647550106048584,
+ "total_groups": 2048,
+ "update_index": 555,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07107221335172653,
+ "mean_squared_error": 2.546722043916816e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.03639603406190872,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6676079034805298,
+ "total_groups": 2048,
+ "update_index": 556,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "d88ec02d081e3959c92fcb04a954cf53fadc2529ea346ee0b6bf3fee5ce9458f",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.030130356550216675,
+ "mean_squared_error": 4.6701475753252453e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.03443857282400131,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12242511659860611,
+ "total_groups": 2048,
+ "update_index": 557,
+ "write_ordinal": 30
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "7993c6abb70d7c369091ac453108b1e3297e26f7e259cf0ab23be1d213eb89a1",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014719143509864807,
+ "mean_squared_error": 7.025282400263677e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.007954246364533901,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.018416356295347214,
+ "total_groups": 2048,
+ "update_index": 558,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "4a06b1a72742bc1654ec4bf75970d6c26d1e282322ee585b47d20ff7e3d54a16",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0059062037616968155,
+ "mean_squared_error": 3.134694637196844e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.014397763647139072,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.008217413909733295,
+ "total_groups": 2048,
+ "update_index": 559,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "79537cbd7b849883d52a5aac45c3a41ebd5c58181df997366a8776d6b23e4d10",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012298375368118286,
+ "mean_squared_error": 1.5898544347692223e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.024913234636187553,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0416770800948143,
+ "total_groups": 2048,
+ "update_index": 560,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "680001dac9ca19238b4fbef45d23a059fb2a5b4b8514d8595c6cfb8754a105cc",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06842041015625,
+ "mean_squared_error": 6.165515742395655e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.012782052159309387,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16162529587745667,
+ "total_groups": 2048,
+ "update_index": 561,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "4b2a1be97d698e379301398ee6a7073a5bc295ed4e69e36c4b3172987b100224",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018618576228618622,
+ "mean_squared_error": 2.9131922474334715e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.022425545379519463,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07636758685112,
+ "total_groups": 2048,
+ "update_index": 562,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "d050540c38fe916afe64aa0b294f36705aecaaf8a1fd45dc7aa396afefec419b",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012975450605154037,
+ "mean_squared_error": 2.543590937875706e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04378405213356018,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06667871028184891,
+ "total_groups": 2048,
+ "update_index": 563,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "c6aa6a55795cc3c4cf1b72763faf6c29123ff340746b7281956a0940ffd9fc3d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02331295609474182,
+ "mean_squared_error": 3.7133440855541267e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.023229075595736504,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0973430871963501,
+ "total_groups": 2048,
+ "update_index": 564,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "39005c67ef8b7c0d1100c71fb9226e0e082e330368487f6222ccdef501b7946d",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017388656735420227,
+ "mean_squared_error": 1.7746472735780117e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.032519955188035965,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04652131348848343,
+ "total_groups": 2048,
+ "update_index": 565,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "fb493e9ff002ac722a4cb7c0940bb70e97087180265e8bfdb640b7be61c70c1c",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016777120530605316,
+ "mean_squared_error": 1.556823008286301e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.03921763598918915,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04081118106842041,
+ "total_groups": 2048,
+ "update_index": 566,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "2fcc258490d4b39d92db54060939018f484e3f362632b1705e8673f406ed0950",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03856203705072403,
+ "mean_squared_error": 6.576316309292451e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03085743449628353,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17239418625831604,
+ "total_groups": 2048,
+ "update_index": 567,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "fba1e27718fad82ed4520663f04043217e8a18e7c3ad636273b13383f7ca67b7",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017664223909378052,
+ "mean_squared_error": 2.1599143451567215e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.0375184491276741,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05662085860967636,
+ "total_groups": 2048,
+ "update_index": 568,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "6ff04fcef15e0b21e1388d1644dcfc0518d5eb974cadbe742975fbd81d1865b9",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.025948956608772278,
+ "mean_squared_error": 3.5068595138909586e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.03685583174228668,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09193021804094315,
+ "total_groups": 2048,
+ "update_index": 569,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "2e2c5bdc302b1d8ad4d0456160a99a7babe1def24fe5d88785d70967c165f84c",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08603417873382568,
+ "mean_squared_error": 2.069150241368334e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.03598489612340927,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5424153208732605,
+ "total_groups": 2048,
+ "update_index": 570,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "ca8ffcf2308c970a5f24f628f7b2f4c35602610784ccc62e823c220c644bbcda",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06000208854675293,
+ "mean_squared_error": 4.575347702484578e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.04944741353392601,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.1993999481201172,
+ "total_groups": 2048,
+ "update_index": 571,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1185922622680664,
+ "mean_squared_error": 8.807562153378967e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.04565517231822014,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.308849573135376,
+ "total_groups": 2048,
+ "update_index": 572,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.16676448285579681,
+ "mean_squared_error": 8.106478162517305e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06341006606817245,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.1250646114349365,
+ "total_groups": 2048,
+ "update_index": 573,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04168565571308136,
+ "mean_squared_error": 2.7153037081006914e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.03753548860549927,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7118005752563477,
+ "total_groups": 2048,
+ "update_index": 574,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03833208233118057,
+ "mean_squared_error": 4.415084049469442e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.03419068828225136,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11573877930641174,
+ "total_groups": 2048,
+ "update_index": 575,
+ "write_ordinal": 31
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "77690015821bdeb42fb5c4f5e76579fe7d7908b021f07ae9fcb7d15dccc73ddb",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010232971981167793,
+ "mean_squared_error": 8.570791720785564e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008748792111873627,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02246781624853611,
+ "total_groups": 2048,
+ "update_index": 576,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "38d711e1e7ffc00b8068869a6d271e3eb5d0f9f0ce7576e8b4c2e1857ec5a3bf",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007168239448219538,
+ "mean_squared_error": 2.284581412936859e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.012795205228030682,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0059888930991292,
+ "total_groups": 2048,
+ "update_index": 577,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "a0096648d1794490a5ef7e8d3db78b93ccf98dcb2b3b9e4060b5effa0d48544c",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010248436592519283,
+ "mean_squared_error": 6.31031156217432e-08,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.016366586089134216,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01654210314154625,
+ "total_groups": 2048,
+ "update_index": 578,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "680001dac9ca19238b4fbef45d23a059fb2a5b4b8514d8595c6cfb8754a105cc",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0362401008605957,
+ "mean_squared_error": 4.4994052927904704e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.010902965441346169,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11794921010732651,
+ "total_groups": 2048,
+ "update_index": 579,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "a6cc3e09877ef4af5557579500573b9a26882e0745aa29a5e11949a44bf43971",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03189963102340698,
+ "mean_squared_error": 3.3575639690752723e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.023430796340107918,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08801652491092682,
+ "total_groups": 2048,
+ "update_index": 580,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "1ea19bf743315a7237d9a06f76b37d889ab06d4742dbd682a8e2440ea2be83fc",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014492318034172058,
+ "mean_squared_error": 2.7501152999320766e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04442508518695831,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07209262251853943,
+ "total_groups": 2048,
+ "update_index": 581,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "c6aa6a55795cc3c4cf1b72763faf6c29123ff340746b7281956a0940ffd9fc3d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.033319536596536636,
+ "mean_squared_error": 3.7825193999196927e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.023338261991739273,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09915647655725479,
+ "total_groups": 2048,
+ "update_index": 582,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "ba2da9a09e2dc134024bc7d4b7fca06b914b45eba4e6a9a512e90f5bbb33a924",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021804124116897583,
+ "mean_squared_error": 1.982385668952702e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.0352029874920845,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05196705088019371,
+ "total_groups": 2048,
+ "update_index": 583,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "0350a2680a644fdf64b31efb5cc932b1ce22bb506557ecadc906db327157fdef",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01264684647321701,
+ "mean_squared_error": 1.8611267194046377e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04323206841945648,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.048788320273160934,
+ "total_groups": 2048,
+ "update_index": 584,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "f3da726fe40fe4ccc7783775ffe4868b5190f75ef04050faa6c178baa2c3254c",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.036387890577316284,
+ "mean_squared_error": 7.600870048918296e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03316735848784447,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19925224781036377,
+ "total_groups": 2048,
+ "update_index": 585,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "042ac68d256cb1a029ad29d0a3e365f855cc9405c335354df1a735dd8aaf4d73",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012958131730556488,
+ "mean_squared_error": 3.490766289360181e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.04775511100888252,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09150834381580353,
+ "total_groups": 2048,
+ "update_index": 586,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "f81a2616b74f1ccdb4a29e51ad9d2546c0681c818e9e22e7534fb7487dce5636",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02429036796092987,
+ "mean_squared_error": 5.595805987468339e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04639605060219765,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14669069647789001,
+ "total_groups": 2048,
+ "update_index": 587,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "2c3b0c1520024212cdfe1f2428e59dca44b0ead08e59280195e2a35984dd8887",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06815455108880997,
+ "mean_squared_error": 3.396591864657239e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.04603608697652817,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8903961777687073,
+ "total_groups": 2048,
+ "update_index": 588,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "ca8ffcf2308c970a5f24f628f7b2f4c35602610784ccc62e823c220c644bbcda",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.047861963510513306,
+ "mean_squared_error": 3.74919363821391e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.044653039425611496,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.9828286170959473,
+ "total_groups": 2048,
+ "update_index": 589,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07182484865188599,
+ "mean_squared_error": 7.476224254787667e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.042273737490177155,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.959847331047058,
+ "total_groups": 2048,
+ "update_index": 590,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.045880019664764404,
+ "mean_squared_error": 2.989839913425385e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.03879465162754059,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7837685942649841,
+ "total_groups": 2048,
+ "update_index": 591,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06650352478027344,
+ "mean_squared_error": 2.0330844563432038e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.032627470791339874,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5329608917236328,
+ "total_groups": 2048,
+ "update_index": 592,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04430942237377167,
+ "mean_squared_error": 4.7361271526824567e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.03517575189471245,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12415473163127899,
+ "total_groups": 2048,
+ "update_index": 593,
+ "write_ordinal": 32
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "fa00db550bfd76054399e48c6dfca4f0515e9480b95fbfd20a0b67728c6867f7",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015270307660102844,
+ "mean_squared_error": 6.852709333315943e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.007789850700646639,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.017963966354727745,
+ "total_groups": 2048,
+ "update_index": 594,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "780c1e2e88704bd07cd404bb64aa7dae811480f9e53f3e2fd483ee50ddbe2947",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007157959043979645,
+ "mean_squared_error": 5.025357552312926e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.017852718010544777,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.013173673301935196,
+ "total_groups": 2048,
+ "update_index": 595,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "11f9a88e41effdb54828163b1d5b7018478e95bee7089403a9f082693931e190",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015200614929199219,
+ "mean_squared_error": 1.672742087066581e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.024500859901309013,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04384993016719818,
+ "total_groups": 2048,
+ "update_index": 596,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "35ccdfa8943dcb0e0a288303e22249979d7eb23dfc1fe27ca71121cdc9674dfc",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02947932481765747,
+ "mean_squared_error": 8.566206588511704e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.01500661764293909,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22455796599388123,
+ "total_groups": 2048,
+ "update_index": 597,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "c1900c9f0aa869ff71583263c2e20ebeac64e2e066dcd0c7fc0ef99904f35edd",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022473763674497604,
+ "mean_squared_error": 3.702760409396433e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.024757524952292442,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09706564247608185,
+ "total_groups": 2048,
+ "update_index": 598,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "cc1cfee276048f471786707bcd2dceea2d214160aafc4f272f2c7911ee90a3f8",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011930644512176514,
+ "mean_squared_error": 2.806872885230405e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04468535631895065,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07358048856258392,
+ "total_groups": 2048,
+ "update_index": 599,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "437509ac8205abf2e411ae34bcd97369d014a5ba09486c1af45aa2cbc9c697a7",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02708502486348152,
+ "mean_squared_error": 3.65286553005717e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.023015500977635384,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09575767815113068,
+ "total_groups": 2048,
+ "update_index": 600,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "4149b8b0f5435b582eab2397c58b005739d78caebdf9b08652b0a4bd79ea79fc",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01785452663898468,
+ "mean_squared_error": 2.5172897721859044e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04067981615662575,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06598924100399017,
+ "total_groups": 2048,
+ "update_index": 601,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "a7aaa24810ad8b753530561532b387ead13aad75ad23a3403cfc4fa0a2800299",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013031184673309326,
+ "mean_squared_error": 2.210349236975162e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.04747660830616951,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05794297903776169,
+ "total_groups": 2048,
+ "update_index": 602,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "f3da726fe40fe4ccc7783775ffe4868b5190f75ef04050faa6c178baa2c3254c",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.037082135677337646,
+ "mean_squared_error": 9.62224589784455e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03730032593011856,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2522414028644562,
+ "total_groups": 2048,
+ "update_index": 603,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "926e142e47783f2e182881a35161af4bc40a1bd7ab68f4bf3adecd469670b420",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018446778878569603,
+ "mean_squared_error": 4.1135893980026594e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05203112214803696,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10783527791500092,
+ "total_groups": 2048,
+ "update_index": 604,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "c50c4ae8b8c07612c6bc142f2f778ebeefd31522e6d9899d38096f9dfa8682f8",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029944056645035744,
+ "mean_squared_error": 4.416031629261852e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04123758152127266,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11576361954212189,
+ "total_groups": 2048,
+ "update_index": 605,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "83b4c827b11ebab84097565fae2fedca9bcc3de0a4ab9fc11c273fdf4ce32d7a",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.055410027503967285,
+ "mean_squared_error": 2.1131677385710645e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.03594963997602463,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5539542436599731,
+ "total_groups": 2048,
+ "update_index": 606,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "ca8ffcf2308c970a5f24f628f7b2f4c35602610784ccc62e823c220c644bbcda",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0604124516248703,
+ "mean_squared_error": 5.1534848353185225e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.05151979997754097,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.3509551286697388,
+ "total_groups": 2048,
+ "update_index": 607,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0907829999923706,
+ "mean_squared_error": 6.3897141444613226e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.038777343928813934,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.675025224685669,
+ "total_groups": 2048,
+ "update_index": 608,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.09736013412475586,
+ "mean_squared_error": 3.3929923120012973e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.04110829532146454,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8894525766372681,
+ "total_groups": 2048,
+ "update_index": 609,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0479467511177063,
+ "mean_squared_error": 2.5671351977507584e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.03685000538825989,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6729590892791748,
+ "total_groups": 2048,
+ "update_index": 610,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019411761313676834,
+ "mean_squared_error": 2.9066058004900697e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.027769785374403,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07619492709636688,
+ "total_groups": 2048,
+ "update_index": 611,
+ "write_ordinal": 33
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "9d6162dfb6978f71c8c839784e99f241da5ae63eb4661d113e34dcf6b8e20766",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013483405113220215,
+ "mean_squared_error": 7.864980489102891e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008400064893066883,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.020617574453353882,
+ "total_groups": 2048,
+ "update_index": 612,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "755d5b6a7829caa525cf1f226772b33d739aaf4d8393cf0b930adb90b58b72cd",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.004106242675334215,
+ "mean_squared_error": 2.2718186443171362e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.012140381149947643,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0059554362669587135,
+ "total_groups": 2048,
+ "update_index": 613,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "bc211d6acce946d6905f7f9020c56b35b8f62231d29d3720974d6c39ff0089b5",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013608813285827637,
+ "mean_squared_error": 8.87768720758686e-08,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.017871949821710587,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.023272324353456497,
+ "total_groups": 2048,
+ "update_index": 614,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "35ccdfa8943dcb0e0a288303e22249979d7eb23dfc1fe27ca71121cdc9674dfc",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02686411142349243,
+ "mean_squared_error": 3.7988164081070863e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.010017415508627892,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0995836928486824,
+ "total_groups": 2048,
+ "update_index": 615,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "8a91916fe2d2c5c9e039c7da6a85a036085d0140e5ac7da38330e08b710f8184",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0258806049823761,
+ "mean_squared_error": 2.42472168565655e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.020112760365009308,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06356262415647507,
+ "total_groups": 2048,
+ "update_index": 616,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "e484b50cce055bb274e7f8d548a8c85542216cc68f7c4eff1345c35c83f4a929",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.010177016258239746,
+ "mean_squared_error": 2.2598607074542088e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.040563326328992844,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05924089252948761,
+ "total_groups": 2048,
+ "update_index": 617,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "3c62db24cceed6b6f61d5fe623b9621819eae6d8238e0d30b087ce5d883f386d",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023844361305236816,
+ "mean_squared_error": 3.163084727475507e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.02142729051411152,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08291836827993393,
+ "total_groups": 2048,
+ "update_index": 618,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "4149b8b0f5435b582eab2397c58b005739d78caebdf9b08652b0a4bd79ea79fc",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024804651737213135,
+ "mean_squared_error": 1.1437631286526084e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.027825897559523582,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02998306415975094,
+ "total_groups": 2048,
+ "update_index": 619,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "aa1882cf01bce19d55147a682d6c5f974ef02e9fbdb40fa70a7f89eb66482f08",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01170242577791214,
+ "mean_squared_error": 1.5294635602458584e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.039253994822502136,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04009396955370903,
+ "total_groups": 2048,
+ "update_index": 620,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "7c6a6662493cedbb5e0697587ae984fb0748bfee7af66e9dbbdeb0963084ac09",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03700953722000122,
+ "mean_squared_error": 9.537785672364407e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03695124387741089,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2500273287296295,
+ "total_groups": 2048,
+ "update_index": 621,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "d15c4d7abd907bd0e4f96a881cf4067e502f10ec384f7e98f3722d3a52158101",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014426097273826599,
+ "mean_squared_error": 2.9465644502124633e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.044618621468544006,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0772424191236496,
+ "total_groups": 2048,
+ "update_index": 622,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "c50c4ae8b8c07612c6bc142f2f778ebeefd31522e6d9899d38096f9dfa8682f8",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02659471333026886,
+ "mean_squared_error": 3.7183275480856537e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.0383245088160038,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09747372567653656,
+ "total_groups": 2048,
+ "update_index": 623,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "ca26ae306d5ddc236c30c4b4efb299b8bb2c3f1c48eb5785db11b0cb5e6a82e1",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07834702730178833,
+ "mean_squared_error": 1.4769696008443134e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.030096661299467087,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3871787190437317,
+ "total_groups": 2048,
+ "update_index": 624,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "169cb3159b6bf31577349ae22338f4a722edd09b07da3b0a29a2fcd2625b4aed",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05611344426870346,
+ "mean_squared_error": 4.625993824447505e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.04869094491004944,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.2126765251159668,
+ "total_groups": 2048,
+ "update_index": 625,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05951148271560669,
+ "mean_squared_error": 6.508037586172577e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.03923443332314491,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.706043004989624,
+ "total_groups": 2048,
+ "update_index": 626,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07730013132095337,
+ "mean_squared_error": 3.020672693310189e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.03909961134195328,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7918512225151062,
+ "total_groups": 2048,
+ "update_index": 627,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04516727477312088,
+ "mean_squared_error": 2.3499505914514884e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.035370104014873505,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.616025447845459,
+ "total_groups": 2048,
+ "update_index": 628,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0297621488571167,
+ "mean_squared_error": 4.868570044891385e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.03557082265615463,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12762664258480072,
+ "total_groups": 2048,
+ "update_index": 629,
+ "write_ordinal": 34
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "eff208beca2010740aaecec85274929921219145abf6c06e5869cdaaca1e7bc6",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01556812971830368,
+ "mean_squared_error": 1.0671505634718415e-07,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.009778903797268867,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.02797471173107624,
+ "total_groups": 2048,
+ "update_index": 630,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "c8c334199fc9bd08fdce39b9eb0ff2defef3bd1abe500403d597ddd380c241a0",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0060800109058618546,
+ "mean_squared_error": 6.794146401034595e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.01948021538555622,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01781044714152813,
+ "total_groups": 2048,
+ "update_index": 631,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "cc19cc248d383b34e91062a47bc61803e7c0e9c542d38d810f014e4df62eed31",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.011445470154285431,
+ "mean_squared_error": 1.8414107216813136e-07,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.025142032653093338,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04827147722244263,
+ "total_groups": 2048,
+ "update_index": 632,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "4436433158eece024ea03b79c93881cb0092b66523e12522a1e8e28d98eb3177",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021362870931625366,
+ "mean_squared_error": 6.512310051220993e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.013105612248182297,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1707163006067276,
+ "total_groups": 2048,
+ "update_index": 633,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "c4404fd28f166ba15fa5f9514e86feb430c8fd6c8a44490434fc09bc6fba952d",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029576271772384644,
+ "mean_squared_error": 3.3312633718196594e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.023485423997044563,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08732707053422928,
+ "total_groups": 2048,
+ "update_index": 634,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "cb600d9071742d02b417b1a1232bb6a1e93d0a0e254d5d6d2a4d5b06bbe730cd",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01427838671952486,
+ "mean_squared_error": 3.6013642557009007e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.048907503485679626,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09440760314464569,
+ "total_groups": 2048,
+ "update_index": 635,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "56a41b860bc6d545b8a56051159aebb4ba6f8a06ea29cd200b72da8b26d3ad98",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.021510951220989227,
+ "mean_squared_error": 3.8240551702983794e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.023554610088467598,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10024531185626984,
+ "total_groups": 2048,
+ "update_index": 636,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "568cb69a810e6422f46c553953da6d4bb6b0928ff3bffdefc15061d2b5a4d282",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.015489578247070312,
+ "mean_squared_error": 1.1208552308517028e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.02710401825606823,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.029382547363638878,
+ "total_groups": 2048,
+ "update_index": 637,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "aa1882cf01bce19d55147a682d6c5f974ef02e9fbdb40fa70a7f89eb66482f08",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01380927860736847,
+ "mean_squared_error": 1.0316018972389429e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.03233933821320534,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.027042824774980545,
+ "total_groups": 2048,
+ "update_index": 638,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "e922c0b6c923f995561b18579599d074857b7ca6a3e1cab7cca1117c98657776",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0272180438041687,
+ "mean_squared_error": 7.473776122424169e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.032587893307209015,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.19592055678367615,
+ "total_groups": 2048,
+ "update_index": 639,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "1ae4a377a2492a1b4c4a427b12cb977850f0fea340b27f13d4be3fb2b58c5d0a",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018620237708091736,
+ "mean_squared_error": 3.758016760002647e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.04901628568768501,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09851415455341339,
+ "total_groups": 2048,
+ "update_index": 640,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "5cf4fdf87960361ad52687856ab1409544e39f5c8a91b13665d45ab8ea7fbdf9",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03919707238674164,
+ "mean_squared_error": 4.1016409113581176e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.03946658968925476,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10752205550670624,
+ "total_groups": 2048,
+ "update_index": 641,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "ca26ae306d5ddc236c30c4b4efb299b8bb2c3f1c48eb5785db11b0cb5e6a82e1",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.06998938322067261,
+ "mean_squared_error": 2.112074753313209e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.035799454897642136,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5536677241325378,
+ "total_groups": 2048,
+ "update_index": 642,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "169cb3159b6bf31577349ae22338f4a722edd09b07da3b0a29a2fcd2625b4aed",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.051318541169166565,
+ "mean_squared_error": 3.1966833375918213e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.04015339910984039,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8379913568496704,
+ "total_groups": 2048,
+ "update_index": 643,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05894821882247925,
+ "mean_squared_error": 5.180991138331592e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.03494526073336601,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.3581657409667969,
+ "total_groups": 2048,
+ "update_index": 644,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07147890329360962,
+ "mean_squared_error": 2.6073946628457634e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.03624957427382469,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.6835128664970398,
+ "total_groups": 2048,
+ "update_index": 645,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05332419276237488,
+ "mean_squared_error": 1.8166405197916902e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.031128456816077232,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.4762214124202728,
+ "total_groups": 2048,
+ "update_index": 646,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.027741100639104843,
+ "mean_squared_error": 3.2114303394337185e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.02882375195622444,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08418571949005127,
+ "total_groups": 2048,
+ "update_index": 647,
+ "write_ordinal": 35
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "e2646d7cd22fb4c01ac79ba76bd2d20ae92dbd4abc6cea475518a96eb4e4359c",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016299128532409668,
+ "mean_squared_error": 9.783104815141996e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.009290614165365696,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.025645822286605835,
+ "total_groups": 2048,
+ "update_index": 648,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "3edf501f2ea46c10483ea1a9410e3ed54fd57d732b57ef32c40fda205672c8a8",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.007621981203556061,
+ "mean_squared_error": 3.749973842559484e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.01465115137398243,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.009830331429839134,
+ "total_groups": 2048,
+ "update_index": 649,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "478710e831723d79c09259d1cc5afc10721b83c0ccf25fb2b8eac7d814489280",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.012500470504164696,
+ "mean_squared_error": 8.026832887253477e-08,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.016472849994897842,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.021041860803961754,
+ "total_groups": 2048,
+ "update_index": 650,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "54143ac97dac3ff5fd29276e15903ad8d5882ec662d45c435433e08fb4975bb5",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02708670310676098,
+ "mean_squared_error": 3.844519369522459e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.010088070295751095,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10078176856040955,
+ "total_groups": 2048,
+ "update_index": 651,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "eed8c757910ae9c2f67b298e641ace9ee49d58694ba77313458b56d41640279e",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.026754945516586304,
+ "mean_squared_error": 2.3670305893119803e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.02006908319890499,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.062050286680459976,
+ "total_groups": 2048,
+ "update_index": 652,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "6045c28edaf89a463ab66591b9769f9cb41cccdbbfa2fb31df5e77b0268458fe",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017002731561660767,
+ "mean_squared_error": 1.7158640730485786e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.034446973353624344,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04498034715652466,
+ "total_groups": 2048,
+ "update_index": 653,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "56a41b860bc6d545b8a56051159aebb4ba6f8a06ea29cd200b72da8b26d3ad98",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023708105087280273,
+ "mean_squared_error": 2.2000283195211523e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.017932189628481865,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.057672422379255295,
+ "total_groups": 2048,
+ "update_index": 654,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "568cb69a810e6422f46c553953da6d4bb6b0928ff3bffdefc15061d2b5a4d282",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013307636603713036,
+ "mean_squared_error": 5.666039726293093e-08,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.019612865522503853,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.014853183180093765,
+ "total_groups": 2048,
+ "update_index": 655,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "55b2a61fce12db20c81a460979278aa5a83b3cea2d605ea2501cffed9b5b92f8",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.013925721868872643,
+ "mean_squared_error": 1.4153869187794044e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.038145046681165695,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.03710351884365082,
+ "total_groups": 2048,
+ "update_index": 656,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "e922c0b6c923f995561b18579599d074857b7ca6a3e1cab7cca1117c98657776",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.039735302329063416,
+ "mean_squared_error": 4.862000650973641e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.02652599662542343,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.12745442986488342,
+ "total_groups": 2048,
+ "update_index": 657,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "a19545305b9fa152e1c0dc9e6dfe6f83086c7a6eec6bbe1b7f15aae5d8fe6e9e",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022793950513005257,
+ "mean_squared_error": 2.7620760079116735e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.04257868602871895,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.07240616530179977,
+ "total_groups": 2048,
+ "update_index": 658,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "fbcc8b013d9f11ec46a8a35eed6ece9a7d7528cbf56a2bfe1d1adf249fac4323",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03096550703048706,
+ "mean_squared_error": 3.933923835575115e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.03887832537293434,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.10312545299530029,
+ "total_groups": 2048,
+ "update_index": 659,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "ca26ae306d5ddc236c30c4b4efb299b8bb2c3f1c48eb5785db11b0cb5e6a82e1",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05199265480041504,
+ "mean_squared_error": 1.359825546387583e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.028674494475126266,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.35647010803222656,
+ "total_groups": 2048,
+ "update_index": 660,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "169cb3159b6bf31577349ae22338f4a722edd09b07da3b0a29a2fcd2625b4aed",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05395008623600006,
+ "mean_squared_error": 3.052207148357411e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.03913110867142677,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.8001177906990051,
+ "total_groups": 2048,
+ "update_index": 661,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.1007104143500328,
+ "mean_squared_error": 6.9607049226760864e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.040341343730688095,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.82470703125,
+ "total_groups": 2048,
+ "update_index": 662,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08603763580322266,
+ "mean_squared_error": 2.673693415999878e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.03671761602163315,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.7008926868438721,
+ "total_groups": 2048,
+ "update_index": 663,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03901410102844238,
+ "mean_squared_error": 1.5221019111777423e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.028473030775785446,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.3990098834037781,
+ "total_groups": 2048,
+ "update_index": 664,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02051715925335884,
+ "mean_squared_error": 2.410455408607959e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.025153644382953644,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06318864226341248,
+ "total_groups": 2048,
+ "update_index": 665,
+ "write_ordinal": 36
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "9e48a8d0a4cbf830e4aa5128a8fc4671bd3bff9310fda59b18cf19efc2d469a1",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01446060836315155,
+ "mean_squared_error": 6.968640064997089e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.00784069113433361,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01826787181198597,
+ "total_groups": 2048,
+ "update_index": 666,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "6fd96d967d53e80227c3dbb0216604d379ef88112d76a74b47854fd76523d22f",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.004079919308423996,
+ "mean_squared_error": 1.4668094294734146e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.010327265597879887,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.003845152910798788,
+ "total_groups": 2048,
+ "update_index": 667,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "3c416be9d4cbbe25de3b12b9e0def46f87bed17e5bc0e2ffd68fd00d3c758c5f",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.004785675555467606,
+ "mean_squared_error": 3.6044788487288315e-08,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.012625281699001789,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.009448925033211708,
+ "total_groups": 2048,
+ "update_index": 668,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "8a6e1b03d945c03922e1479c3834416122219f0ab67d26a97b7f38b44716da13",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.029388204216957092,
+ "mean_squared_error": 6.139044899100554e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.012754128314554691,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16093137860298157,
+ "total_groups": 2048,
+ "update_index": 669,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "a98ca84a51118f2f7073ff86f9ad9dd9bddf5a03a1e02d6160c75e6154c5a60c",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.019687488675117493,
+ "mean_squared_error": 1.9547253771179385e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.018677590414881706,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.051241952925920486,
+ "total_groups": 2048,
+ "update_index": 670,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "e5bb4b3748b71edf1ac243c3a47becce0dcf6ce262cda7250760f811e0e0321d",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014208197593688965,
+ "mean_squared_error": 2.2258691956267285e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04059078171849251,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05834982544183731,
+ "total_groups": 2048,
+ "update_index": 671,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "7230bca5a1c347c66c2a19dc921f8e8964619f962c8e6f7fbd7f36bbf3d73803",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023156315088272095,
+ "mean_squared_error": 3.1872488648332364e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.021542146801948547,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0835518166422844,
+ "total_groups": 2048,
+ "update_index": 672,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "408210d926251e949c6c4707aa12907b642cb572dc74344a86835dd5c52cc165",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.017566561698913574,
+ "mean_squared_error": 1.758876635449269e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.03514227643609047,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.04610789567232132,
+ "total_groups": 2048,
+ "update_index": 673,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "6ec0ad5746f21e7a1879fa3e478bed9488e052393c9d653d33aea954f761a31f",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01735672354698181,
+ "mean_squared_error": 2.3227681822390878e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.049614619463682175,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06088997423648834,
+ "total_groups": 2048,
+ "update_index": 674,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "e922c0b6c923f995561b18579599d074857b7ca6a3e1cab7cca1117c98657776",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.02602779120206833,
+ "mean_squared_error": 6.594602268705785e-07,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.031040605157613754,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17287354171276093,
+ "total_groups": 2048,
+ "update_index": 675,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "4ae2e704171bbd1fa51b5ae93977c0806bfaafb2a60a39c79d0e37f4328d72af",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.023948639631271362,
+ "mean_squared_error": 4.404808464641974e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.056308090686798096,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.11546941101551056,
+ "total_groups": 2048,
+ "update_index": 676,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "82937aeaadd17013735ace0b321a24c66417421c611a0d07a4bf3641ff5a8dcf",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024459026753902435,
+ "mean_squared_error": 6.156428753456566e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.049663107842206955,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.16138708591461182,
+ "total_groups": 2048,
+ "update_index": 677,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "4e7f93accfac966f6f8c5d1e709bef7db14f6f4322e4fbb8b464c4f1389701cb",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0895605981349945,
+ "mean_squared_error": 3.995970473624766e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.04945894703269005,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0475196838378906,
+ "total_groups": 2048,
+ "update_index": 678,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "03d5622245bf0138509a581458c589ee2a7b36b6cde13427e9136e0d47c4ed84",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.07799562811851501,
+ "mean_squared_error": 4.103193987248233e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.04694100841879845,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.0756276845932007,
+ "total_groups": 2048,
+ "update_index": 679,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.10099971294403076,
+ "mean_squared_error": 8.462313417112455e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.044812265783548355,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.2183446884155273,
+ "total_groups": 2048,
+ "update_index": 680,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.0728456974029541,
+ "mean_squared_error": 4.397221346152946e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.04758710786700249,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.152705192565918,
+ "total_groups": 2048,
+ "update_index": 681,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04850488901138306,
+ "mean_squared_error": 2.2058311515138485e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.034465242177248,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.5782454013824463,
+ "total_groups": 2048,
+ "update_index": 682,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08189260959625244,
+ "mean_squared_error": 5.46637693332741e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.03756795451045036,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.14329779148101807,
+ "total_groups": 2048,
+ "update_index": 683,
+ "write_ordinal": 37
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 355,
+ "high_precision_mask_sha256": "cf81b22ae9e80a24b04b57b00f4669f28211d6cbfe3f16e1d40d20fbe9476c79",
+ "layer_index": 0,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01432296633720398,
+ "mean_squared_error": 7.200604557056067e-08,
+ "payload_bytes": 153792,
+ "relative_l2_error": 0.008100160397589207,
+ "resident_bytes": 158144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.018875952810049057,
+ "total_groups": 2048,
+ "update_index": 684,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 380,
+ "high_precision_mask_sha256": "44e20213102175f4c8e5459fd185033e3c6a72cacecedc0666f4f6cbab8b73b2",
+ "layer_index": 1,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.00473494827747345,
+ "mean_squared_error": 2.4161693090718472e-08,
+ "payload_bytes": 155392,
+ "relative_l2_error": 0.012794352136552334,
+ "resident_bytes": 159744,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.006333842873573303,
+ "total_groups": 2048,
+ "update_index": 685,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 269,
+ "high_precision_mask_sha256": "21cf7e14311c962df5d3b54eab81133d5f24347919c41c3eb3bf7dadf3e9e125",
+ "layer_index": 2,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.009004637598991394,
+ "mean_squared_error": 7.363657061887352e-08,
+ "payload_bytes": 148288,
+ "relative_l2_error": 0.018318653106689453,
+ "resident_bytes": 152640,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.01930338516831398,
+ "total_groups": 2048,
+ "update_index": 686,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 179,
+ "high_precision_mask_sha256": "584e3f426767dabdeab85d5775802124bcb7a6f72bd00807b16b44128cfc2432",
+ "layer_index": 4,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.038403868675231934,
+ "mean_squared_error": 8.573133527534083e-07,
+ "payload_bytes": 142528,
+ "relative_l2_error": 0.0150547930970788,
+ "resident_bytes": 146880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.22473955154418945,
+ "total_groups": 2048,
+ "update_index": 687,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 185,
+ "high_precision_mask_sha256": "09e1cf843bf8c1f0060aa40a4b8b14d0f3ef00bdadfb0df532924710670c32a3",
+ "layer_index": 5,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.022924810647964478,
+ "mean_squared_error": 2.588203642517328e-07,
+ "payload_bytes": 142912,
+ "relative_l2_error": 0.022410111501812935,
+ "resident_bytes": 147264,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06784820556640625,
+ "total_groups": 2048,
+ "update_index": 688,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 105,
+ "high_precision_mask_sha256": "be455147b033cddb67fb763636f7d818f8e3749360ebe654ac2dbd31b80c627a",
+ "layer_index": 6,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.014961853623390198,
+ "mean_squared_error": 2.1755572277015744e-07,
+ "payload_bytes": 137792,
+ "relative_l2_error": 0.04357234388589859,
+ "resident_bytes": 142144,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.05703092738986015,
+ "total_groups": 2048,
+ "update_index": 689,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 80,
+ "high_precision_mask_sha256": "b448abd533d4409a4a44a80437fe61892287c06aeb39277ab17327d22025391b",
+ "layer_index": 8,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.03096337616443634,
+ "mean_squared_error": 3.322548707274109e-07,
+ "payload_bytes": 136192,
+ "relative_l2_error": 0.022380022332072258,
+ "resident_bytes": 140544,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.0870986208319664,
+ "total_groups": 2048,
+ "update_index": 690,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 43,
+ "high_precision_mask_sha256": "fd8c4487df177dc9ec36f979dc08f211fb71516ba348d28e93716b805c392e74",
+ "layer_index": 9,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.01549703162163496,
+ "mean_squared_error": 3.364182816767425e-07,
+ "payload_bytes": 133824,
+ "relative_l2_error": 0.04239717870950699,
+ "resident_bytes": 138176,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.08819003403186798,
+ "total_groups": 2048,
+ "update_index": 691,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 84,
+ "high_precision_mask_sha256": "b3dd656903ddb9bc8ae6974e7c8770d803680a1e34891007333673219cc2e8cc",
+ "layer_index": 10,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.016654670238494873,
+ "mean_squared_error": 2.498091475899855e-07,
+ "payload_bytes": 136448,
+ "relative_l2_error": 0.056185878813266754,
+ "resident_bytes": 140800,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.06548596918582916,
+ "total_groups": 2048,
+ "update_index": 692,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 30,
+ "high_precision_mask_sha256": "f8da5c91ac9f10c885bbca41ae84051d39289958290d026b64f9f75835d4cfc8",
+ "layer_index": 12,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.04590494930744171,
+ "mean_squared_error": 1.0471438827153179e-06,
+ "payload_bytes": 132992,
+ "relative_l2_error": 0.03987922519445419,
+ "resident_bytes": 137344,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.2745024859905243,
+ "total_groups": 2048,
+ "update_index": 693,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 62,
+ "high_precision_mask_sha256": "5ec71fe1ae591701405ca113db261395e08404d0f4fd4f498fe38abdc056d982",
+ "layer_index": 13,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.018651068210601807,
+ "mean_squared_error": 3.641172838797502e-07,
+ "payload_bytes": 135040,
+ "relative_l2_error": 0.05397860333323479,
+ "resident_bytes": 139392,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.09545116126537323,
+ "total_groups": 2048,
+ "update_index": 694,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 54,
+ "high_precision_mask_sha256": "924a532c721208ae801a4b8a372c6be7f8acef09951296de78955e3436862ad8",
+ "layer_index": 14,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.024733807891607285,
+ "mean_squared_error": 5.016308932681568e-07,
+ "payload_bytes": 134528,
+ "relative_l2_error": 0.04762416332960129,
+ "resident_bytes": 138880,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.1314995288848877,
+ "total_groups": 2048,
+ "update_index": 695,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 45,
+ "high_precision_mask_sha256": "99c82b2d6e242f3c1f3de8c64018f6f81d7230fbb159c4a138206a726ccb2a4c",
+ "layer_index": 16,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.08548194169998169,
+ "mean_squared_error": 5.102827344671823e-06,
+ "payload_bytes": 133952,
+ "relative_l2_error": 0.05517316982150078,
+ "resident_bytes": 138304,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.3376755714416504,
+ "total_groups": 2048,
+ "update_index": 696,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 27,
+ "high_precision_mask_sha256": "95a7dfd775d82e5517e419cc821d282667bbfeba8606939bdd45edd84be5e378",
+ "layer_index": 17,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05830353498458862,
+ "mean_squared_error": 5.945558768871706e-06,
+ "payload_bytes": 132800,
+ "relative_l2_error": 0.05753263831138611,
+ "resident_bytes": 137152,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 1.5585925579071045,
+ "total_groups": 2048,
+ "update_index": 697,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "0af71ac1d3159049c72f81ef37e53d6a2118f8ff5a62a0697c7132ee2563a7e5",
+ "layer_index": 18,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.11515474319458008,
+ "mean_squared_error": 1.1255842764512636e-05,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.052093613892793655,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.9506516456604004,
+ "total_groups": 2048,
+ "update_index": 698,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 9,
+ "high_precision_mask_sha256": "278a2e729107f042a4869e6863c26cd4ce552c260b449a19a500d6404526e989",
+ "layer_index": 20,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.14495182037353516,
+ "mean_squared_error": 7.714403182035312e-06,
+ "payload_bytes": 131648,
+ "relative_l2_error": 0.06229829415678978,
+ "resident_bytes": 136000,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 2.022284507751465,
+ "total_groups": 2048,
+ "update_index": 699,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 7,
+ "high_precision_mask_sha256": "b3e59669d55d423314ecf32c8f4baf91300b95df624afcf4d129766bb8f7781f",
+ "layer_index": 21,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05233936756849289,
+ "mean_squared_error": 3.597387376430561e-06,
+ "payload_bytes": 131520,
+ "relative_l2_error": 0.043881386518478394,
+ "resident_bytes": 135872,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.9430335164070129,
+ "total_groups": 2048,
+ "update_index": 700,
+ "write_ordinal": 38
+ },
+ {
+ "baseline_bytes": 1048576,
+ "element_count": 262144,
+ "group_size": 128,
+ "high_bits": 8,
+ "high_precision_groups": 55,
+ "high_precision_mask_sha256": "618c56a2b44b8fefe28b6d7090f4ccb635c06e69c5bf138c69c8e87cb529f19a",
+ "layer_index": 22,
+ "low_bits": 4,
+ "mask_bytes": 256,
+ "max_absolute_error": 0.05620628595352173,
+ "mean_squared_error": 6.852064871054608e-07,
+ "payload_bytes": 134592,
+ "relative_l2_error": 0.04216687008738518,
+ "resident_bytes": 138944,
+ "rounding": "nearest",
+ "scale_bits": 16,
+ "scale_bytes": 4096,
+ "selection_method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "shape": [
+ 1,
+ 16,
+ 128,
+ 128
+ ],
+ "source_dtype": "torch.float32",
+ "state_index": 0,
+ "state_sse": 0.17962276935577393,
+ "total_groups": 2048,
+ "update_index": 701,
+ "write_ordinal": 38
+ }
+ ]
+ }
+ },
+ "storage": {
+ "candidates": {
+ "query_ema32_weighted_mse_target_fisher_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "physical_reduction_realized_including_selector": true,
+ "resident_bytes": 2564096,
+ "resident_bytes_including_selector": 2711552,
+ "resident_compression_ratio": 7.361022364217252,
+ "resident_compression_ratio_including_selector": 6.960725075528701,
+ "scale_bytes": 73728,
+ "selector_auxiliary_bytes": 147456
+ },
+ "right_rht_query_ema32_weighted_mse_target_fisher_quota": {
+ "full_precision_equivalent_bytes": 18874368,
+ "high_precision_groups": 1976,
+ "largest_materialized_state_bytes": 1048576,
+ "mask_bytes": 4608,
+ "payload_bytes": 2485760,
+ "physical_reduction_realized": true,
+ "physical_reduction_realized_including_selector": true,
+ "resident_bytes": 2564096,
+ "resident_bytes_including_selector": 2711552,
+ "resident_compression_ratio": 7.361022364217252,
+ "resident_compression_ratio_including_selector": 6.960725075528701,
+ "scale_bytes": 73728,
+ "selector_auxiliary_bytes": 147456
+ }
+ },
+ "fp32_reference_recurrent_state_bytes": 18874368
+ },
+ "unit_evidence": {
+ "device": "cpu",
+ "dtype": "torch.float32",
+ "expected_sign_schedule_sha256": "2d5137b5ebeb325f100b34190618783b9e47bd2ce9b27b6cdf3cdc94459dabc3",
+ "inverse_relative_l2": 1.1467717797586374e-07,
+ "inverse_relative_l2_threshold": 3e-07,
+ "physical_pack_matches_transformed_qdq": true,
+ "physical_pack_max_abs_difference": 0.0,
+ "physical_pack_storage_bytes": 1645,
+ "seed": 2339,
+ "sign_schedule_sha256": "2d5137b5ebeb325f100b34190618783b9e47bd2ce9b27b6cdf3cdc94459dabc3"
+ }
+ },
+ "schema_version": 1
+}
diff --git a/research/CLAIM_BOUNDARY.md b/research/CLAIM_BOUNDARY.md
index c853a22..7856b1b 100644
--- a/research/CLAIM_BOUNDARY.md
+++ b/research/CLAIM_BOUNDARY.md
@@ -90,12 +90,14 @@ engineering hypothesis, but the failed development result does not establish
it as a contribution.
Experiment 009 freezes RHT-CQER-32, a deterministic right-side randomized
-Hadamard codec composed with CQER-32. Its Stage-A screen uses only already-open
-task 666; no quality result exists yet. The codec preserves the packed-state
-byte count but regenerates SHA-256-derived signs and materializes FP32 transform
-workspaces in the current Python path. Even a positive quality result would not
-establish novelty or speed because randomized Hadamard and rotation quantizers
-are prior art and the implementation has no fused kernel benchmark.
+Hadamard codec composed with CQER-32. Its one-task Stage-A screen passed every
+frozen gate, reducing state SSE by `59.97%` and aligned excess NLL by `58.59%`
+at equal packed-state and selector bytes. That result authorizes a new
+development run; it does not establish generalization or confirmation. The
+codec regenerates SHA-256-derived signs and materializes FP32 transform
+workspaces in the current Python path. The result does not establish novelty or
+speed because randomized Hadamard and rotation quantizers are prior art and the
+implementation has no fused-kernel benchmark.
## Claims prohibited without new evidence
diff --git a/research/EXPERIMENT_009_STAGE_A_RESULT.md b/research/EXPERIMENT_009_STAGE_A_RESULT.md
new file mode 100644
index 0000000..ea3f808
--- /dev/null
+++ b/research/EXPERIMENT_009_STAGE_A_RESULT.md
@@ -0,0 +1,91 @@
+# Experiment 009 Stage-A result: RHT-CQER advances
+
+> **Status: all frozen Stage-A gates passed on the one-task falsification
+> screen.**
+>
+> RHT-CQER-32 reduced closed-loop recurrent-state SSE by `59.97%`, aligned
+> excess NLL by `58.59%`, and aligned mean KL by `31.19%` relative to CQER-32
+> at the exact same packed-state and selector byte counts. Top-1 agreement was
+> unchanged. This authorizes the separately frozen 32-task development stage;
+> it is not confirmation, a speed result, or a breakthrough claim.
+
+Date recorded: 2026-07-26
+
+## Authenticated artifact
+
+The method, task identity, sign schedule, implementation, byte contract, and
+nine-condition gate were committed before model quality was observed.
+
+| Field | Value |
+| --- | --- |
+| Artifact | `evidence/experiment009-rht-cqer-stage-a-666-5be8d48.json` |
+| Artifact kind | `recurquant_rht_cqer32_stage_a_screen` |
+| Clean implementation commit | `5be8d48369d94081e55aa389c25f63c303c7b0dd` |
+| File SHA-256 | `98a432843dc438f2d5fde34f8704f154ebc3ee12c93ba7c469369acfedfb15b5` |
+| Canonical evidence SHA-256 | `9e03a1e8cefb5801406a47a2e5e365686afb0a05e10e099a989cee616b505ed1` |
+| Created at | `2026-07-26T03:34:27.699967+00:00` |
+| Model | `Qwen/Qwen3.5-0.8B-Base` at `dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68` |
+| Device and dtype | CUDA, bfloat16 |
+| Task identity | MBPP task `666`, row SHA-256 `b4f5989005c921c3ab94ab52c8115e79f99a22390bc1d6e6235d36fd02687fb9` |
+| Token identity | 69 prompt, 39 code, 38 aligned scored tokens |
+| Evidence verification | valid, with no verifier errors |
+
+The repository and all hashed source files were clean and stable from the
+start of model loading through the atomic artifact write. Dataset identity was
+authenticated before model weights were loaded. Ranked MBPP window `[8, 16)`
+was not loaded, tokenized, or evaluated.
+
+## Frozen screen result
+
+| Metric | CQER-32 | RHT-CQER-32 | Change |
+| --- | ---: | ---: | ---: |
+| Closed-loop state SSE | `906.603876` | `362.875870` | **59.97% lower** |
+| Aligned excess NLL | `0.329244` | `0.136350` | **58.59% lower** |
+| Aligned mean KL | `0.224385` | `0.154389` | **31.19% lower** |
+| Aligned CVaR95 KL | `1.276270` | `1.022663` | 19.87% lower |
+| Aligned maximum KL | `1.563906` | `1.397917` | 10.61% lower |
+| Aligned top-1 agreement | `0.868421` | `0.868421` | unchanged |
+
+The full-code secondary metrics showed the same direction:
+
+| Metric | CQER-32 | RHT-CQER-32 |
+| --- | ---: | ---: |
+| Excess NLL | `0.320802` | `0.132853` |
+| Mean KL | `0.218631` | `0.150430` |
+| Top-1 agreement | `0.871795` | `0.871795` |
+
+## Exact physical contract
+
+Both methods used:
+
+| Component | Bytes |
+| --- | ---: |
+| Q4/Q8 payloads | 2,485,760 |
+| FP16 scales | 73,728 |
+| precision masks | 4,608 |
+| **packed recurrent state** | **2,564,096** |
+| FP32 query-energy selector | 147,456 |
+| **resident bytes including selector** | **2,711,552** |
+
+Every layer retained its frozen target-Fisher quota, totaling 1,976 Q8 rows.
+All 39 recurrent-state writes and 107 observed query tokens completed the
+stage/consume handshake exactly once. All logits and reported metrics were
+finite.
+
+Independent numeric evidence measured a right-RHT inverse relative L2 of
+`1.1468e-7`, below the frozen `3e-7` threshold. Physical transformed packing
+matched the independent transform-quantize-dequantize reconstruction exactly.
+The sign schedule hash matched the preregistered value.
+
+## Decision and limitation
+
+Every frozen Stage-A check passed. Experiment 009 may now resolve and commit
+the new ranked MBPP `[32, 64)` development identities before any Stage-B model
+quality is observed.
+
+This result contains one deliberately exposed task. It shows that the codec
+survived a cheap falsification test; it does not estimate generalization,
+statistical uncertainty, long-context behavior, another model size, peak
+memory, latency, or fused-kernel performance. Randomized Hadamard and rotation
+quantization are established prior art. No novelty, state-of-the-art,
+deployment, or breakthrough claim follows from Stage A.
diff --git a/research/STATUS.md b/research/STATUS.md
index 029505d..540f5dc 100644
--- a/research/STATUS.md
+++ b/research/STATUS.md
@@ -46,11 +46,16 @@ protected.
Experiment 009 now freezes RHT-CQER-32. Stage A is a one-task falsification
screen on already-open task 666. It composes CQER-32 with a deterministic
orthonormal right-side Hadamard codec while preserving the exact Q4/Q8 packed
-state and selector byte counts. Only a complete Stage-A pass may authorize
-identity resolution for the still-unopened `[32, 64)` development window.
+state and selector byte counts. Stage A passed all nine frozen checks:
+closed-loop state SSE fell `59.97%`, aligned excess NLL fell `58.59%`, and
+aligned mean KL fell `31.19%` relative to CQER-32 while top-1 agreement and
+bytes were unchanged. The authenticated result is in
+[`EXPERIMENT_009_STAGE_A_RESULT.md`](EXPERIMENT_009_STAGE_A_RESULT.md).
+This pass authorizes identity resolution for the still-unopened `[32, 64)`
+development window.
The protocol is in
[`EXPERIMENT_009_RHT_CQER_PROTOCOL.md`](EXPERIMENT_009_RHT_CQER_PROTOCOL.md).
-No Experiment 009 quality result exists yet, and `[8, 16)` remains protected.
+No Stage-B quality result exists yet, and `[8, 16)` remains protected.
In parallel, the repository now contains a correctness-first physical Q4/Q6/Q8
packer and an exact dynamic-programming allocator. Its corrected two-bit
@@ -65,7 +70,8 @@ rotation quantizers. CQER-32 cannot be described as the first query-aware
mixed-precision method, and RHT-CQER-32 cannot be described as the first
rotation-based quantizer.
-No v0.3 improvement over CQER-32, novelty, speed, or breakthrough claim is
+Stage A supports only a one-task development signal over CQER-32. No
+generalized v0.3 improvement, novelty, speed, or breakthrough claim is
supported.
## v0.2 confirmed release
From 2a60b4a819e2cc30078f5a59e113ddeea19fae65 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Sun, 26 Jul 2026 11:47:07 +0800
Subject: [PATCH 17/22] research: clarify Experiment 009 stream access
---
...XPERIMENT_009_DATA_ACCESS_CLARIFICATION.md | 82 +++++++++++++++++++
research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md | 10 ++-
research/EXPERIMENT_009_STAGE_A_RESULT.md | 9 +-
research/STATUS.md | 3 +
4 files changed, 101 insertions(+), 3 deletions(-)
create mode 100644 research/EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md
diff --git a/research/EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md b/research/EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md
new file mode 100644
index 0000000..1ec0707
--- /dev/null
+++ b/research/EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md
@@ -0,0 +1,82 @@
+# Experiment 009 data-access clarification
+
+> **Status: recorded after Stage A and before any Stage-B identity resolution,
+> tokenizer load, model load, forward pass, or quality metric.**
+>
+> This clarification narrows ambiguous transport wording. It does not change
+> the method, ranked windows, task count, metrics, thresholds, or advancement
+> rule.
+
+Recorded: 2026-07-26
+
+## Why this is necessary
+
+The pinned MBPP source is exposed through Hugging Face streaming, not a
+server-side keyed API. The transport can deserialize a complete source record
+before RecurQuant's loader receives its mapping. RecurQuant can control which
+fields its code inspects and which rows enter application state, but it cannot
+truthfully prove that the dataset transport never deserialized a non-target
+record.
+
+The Stage-A artifact contains the legacy field:
+
+```text
+protected_window_8_16_loaded_tokenized_or_evaluated = false
+```
+
+Its word `loaded` is too broad if read as transport-level deserialization. The
+authenticated artifact remains immutable. For Experiment 009, that field is
+interpreted only as the enforceable application-level boundary below.
+
+## Enforceable protected-window boundary
+
+Ranked MBPP window `[8, 16)` must never be:
+
+- selected as a target row;
+- retained as a row mapping in RecurQuant application state;
+- canonicalized or content-hashed;
+- formatted into a prompt/code example;
+- tokenized;
+- passed to a model;
+- evaluated; or
+- included in a quality or diagnostic artifact.
+
+For non-target streaming records, RecurQuant may inspect only `task_id` and
+must discard the record immediately. Dataset transport may already have
+deserialized other fields; those fields must not be read by RecurQuant code.
+Task IDs alone may be used to compute the frozen rank ordering.
+
+This is the practical boundary required by a public streaming source:
+protected task content and tokens remain unseen by the experiment, while
+source traversal is acknowledged rather than hidden.
+
+## Stage-B identity algorithm
+
+The `[32, 64)` identity step must use two content-separated passes:
+
+1. Stream the pinned training split and inspect only `task_id`.
+2. Rank task IDs with the frozen `rq-v0.2` SHA-256 key and retain only the 32
+ target IDs at ranks `[32, 64)`.
+3. Stream again through the task-ID loader. Inspect only `task_id` for
+ non-target records and canonicalize only the 32 target rows.
+4. Verify their exact rank order, canonical row hashes, and content manifest.
+5. Load the pinned tokenizer and tokenize only those 32 target rows.
+6. Write and authenticate the identity artifact without loading model weights
+ or computing logits, losses, state errors, or any other quality metric.
+
+The implementation must have a fail-closed test mapping that raises if any
+non-target field is read. It must also assert that selected, canonicalized,
+formatted, tokenized, and evaluated task-ID sets are disjoint from ranked
+window `[8, 16)`.
+
+## Claim correction
+
+The precise Stage-A statement is:
+
+> Task `666` was the only row selected, retained, canonicalized, formatted,
+> tokenized, passed to the model, or evaluated. RecurQuant code inspected only
+> `task_id` on non-target stream records. The dataset transport may have
+> deserialized complete non-target records.
+
+No protected prompt, code, row hash, token sequence, logit, loss, or state
+metric was retained or reported by Stage A.
diff --git a/research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md b/research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md
index 6001fc1..61f65b5 100644
--- a/research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md
+++ b/research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md
@@ -6,7 +6,9 @@
> This protocol defines a cheap falsification screen on one already-open task
> and, only if that screen passes, a separately authenticated 32-task
> development run. Ranked MBPP window `[8, 16)` remains protected and must not
-> be loaded, tokenized, or evaluated by either stage.
+> be selected, retained, canonicalized, formatted, tokenized, passed to the
+> model, or evaluated by either stage. Public-stream traversal is defined in
+> [`EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md`](EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md).
Protocol frozen: 2026-07-26
@@ -144,6 +146,12 @@ row hashes, content manifest, prompt/code token counts, and tokenizer manifest
must be committed in an identity amendment before model weights are loaded or
any quality metric is observed.
+Identity resolution must first rank an ID-only stream, then canonicalize and
+tokenize only the 32 selected target rows. Non-target source records may be
+inspected only for `task_id` and must be discarded immediately. Dataset
+transport may deserialize complete records; this transport fact is not treated
+as experiment-level content access.
+
The Stage B methods are frozen to:
1. static target-directional Fisher Q4/Q8;
diff --git a/research/EXPERIMENT_009_STAGE_A_RESULT.md b/research/EXPERIMENT_009_STAGE_A_RESULT.md
index ea3f808..5b4d899 100644
--- a/research/EXPERIMENT_009_STAGE_A_RESULT.md
+++ b/research/EXPERIMENT_009_STAGE_A_RESULT.md
@@ -32,8 +32,13 @@ nine-condition gate were committed before model quality was observed.
The repository and all hashed source files were clean and stable from the
start of model loading through the atomic artifact write. Dataset identity was
-authenticated before model weights were loaded. Ranked MBPP window `[8, 16)`
-was not loaded, tokenized, or evaluated.
+authenticated before model weights were loaded. Task `666` was the only row
+selected, retained, canonicalized, formatted, tokenized, passed to the model,
+or evaluated. RecurQuant code inspected only `task_id` on non-target streaming
+records. The dataset transport may have deserialized complete records; see the
+[data-access clarification](EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md).
+Ranked MBPP window `[8, 16)` remained outside application-level content and
+quality access.
## Frozen screen result
diff --git a/research/STATUS.md b/research/STATUS.md
index 540f5dc..efc92fd 100644
--- a/research/STATUS.md
+++ b/research/STATUS.md
@@ -55,6 +55,9 @@ This pass authorizes identity resolution for the still-unopened `[32, 64)`
development window.
The protocol is in
[`EXPERIMENT_009_RHT_CQER_PROTOCOL.md`](EXPERIMENT_009_RHT_CQER_PROTOCOL.md).
+The public-stream application-level access boundary is fixed in
+[`EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md`](EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md)
+before Stage-B identity resolution.
No Stage-B quality result exists yet, and `[8, 16)` remains protected.
In parallel, the repository now contains a correctness-first physical Q4/Q6/Q8
From cdc603b6b8462e42e98495c5ec0610faa9473721 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Sun, 26 Jul 2026 13:10:57 +0800
Subject: [PATCH 18/22] research: freeze authenticated RHT-CQER Stage B
---
research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md | 43 +-
research/EXPERIMENT_009_STAGE_A_AUDIT.md | 78 +
research/EXPERIMENT_009_STAGE_A_RESULT.md | 17 +-
scripts/evaluate_rht_cqer_stage_b.py | 4129 +++++++++++++++++
scripts/resolve_rht_cqer_stage_b_identity.py | 2148 +++++++++
scripts/screen_rht_cqer.py | 179 +-
tests/test_evaluate_rht_cqer_stage_b.py | 1618 +++++++
.../test_resolve_rht_cqer_stage_b_identity.py | 807 ++++
tests/test_rht_independent_reference.py | 156 +
tests/test_screen_rht_cqer.py | 137 +-
10 files changed, 9265 insertions(+), 47 deletions(-)
create mode 100644 research/EXPERIMENT_009_STAGE_A_AUDIT.md
create mode 100644 scripts/evaluate_rht_cqer_stage_b.py
create mode 100644 scripts/resolve_rht_cqer_stage_b_identity.py
create mode 100644 tests/test_evaluate_rht_cqer_stage_b.py
create mode 100644 tests/test_resolve_rht_cqer_stage_b_identity.py
create mode 100644 tests/test_rht_independent_reference.py
diff --git a/research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md b/research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md
index 61f65b5..7ae8d10 100644
--- a/research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md
+++ b/research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md
@@ -124,7 +124,8 @@ Stage A passes only if every condition holds:
totals equal `2,711,552` bytes;
4. every layer has its exact frozen quota, all observations are consumed once,
and all logits and metrics are finite;
-5. independent unit evidence gives right-RHT inverse relative L2 below
+5. deterministic production-code self-consistency gives right-RHT inverse
+ relative L2 below
`3e-7` and exact physical-pack versus transformed-QDQ reconstruction;
6. closed-loop aggregate per-write state SSE is at least 50% lower than
CQER-32;
@@ -152,6 +153,13 @@ inspected only for `task_id` and must be discarded immediately. Dataset
transport may deserialize complete records; this transport fact is not treated
as experiment-level content access.
+Before either identity pass, the resolver must authenticate the exact Stage-A
+artifact and match its Python `3.11.15`, datasets `4.8.5`, NumPy `2.4.6`,
+safetensors `0.8.0`, PyTorch `2.11.0+cu128`, Transformers `5.14.1`, CUDA
+availability, CUDA `12.8` runtime, and `cuda` device type. The identity records
+that structured runtime contract. The evaluator must match it again before
+reloading any target row or tokenizer and before opening model weights.
+
The Stage B methods are frozen to:
1. static target-directional Fisher Q4/Q8;
@@ -164,6 +172,25 @@ recurrent state. Also report mean KL, task-macro CVaR95 KL, maximum KL, top-1
agreement, full-code secondary metrics, task/token counts, and 10,000 paired
task bootstraps with seed 2339.
+Task-macro metrics are the unweighted mean of the 32 per-task summaries. The
+paired bootstrap operates on the 32 aligned excess-NLL differences
+`CQER-32 - RHT-CQER-32`: it resamples paired tasks with replacement using
+NumPy `default_rng(2339)` and reports the equal-tailed, two-sided 95%
+percentile interval from 10,000 resamples. Advancement requires its lower
+endpoint to be strictly greater than zero. A task is an RHT win only when its
+excess NLL is strictly lower; exact equality is recorded as a tie and is not a
+win. The relative excess-NLL gate is valid only when CQER-32's macro excess
+NLL is positive; a zero or negative baseline fails closed instead of producing
+a relative claim.
+
+The state-error advancement metric is local codec reconstruction SSE:
+materialized packed state minus that candidate trajectory's own pre-pack
+source state. It is summed over every recurrent layer, write, and task before
+the relative reduction is computed. This is a write-micro aggregate, so tasks
+with more code-token writes contribute more state elements. Candidate state
+versus the matched FP32 trajectory is recorded separately as a secondary
+diagnostic and is not an advancement gate.
+
Stage B advances only if all integrity conditions from Stage A hold and:
1. RHT-CQER-32 lowers macro excess NLL by at least 20% versus CQER-32;
@@ -196,9 +223,11 @@ with causal row allocation for a pinned Gated DeltaNet recurrent cache under
an exact byte contract. It would not establish that rotations, Hadamard
quantization, query-aware precision, or recurrent-state quantization are new.
-Before release-level or paper-level claims, the candidate still requires an
-independent numeric verifier, another model size, natural-text and long-context
-tasks, closest-method comparisons, optimized packed kernels, end-to-end
-latency and peak-memory measurements, and independent reproduction. Ranked
-window `[8, 16)` stays closed until those prerequisites are separately frozen
-and passed.
+The repository now includes a separately implemented dense NumPy check of the
+sign derivation, Hadamard transform, FP16-scale quantizer, and decode. Before
+release-level or paper-level claims, the candidate still requires external
+reproduction of that verifier, another model size, natural-text and
+long-context tasks, closest-method comparisons, optimized packed kernels,
+end-to-end latency and peak-memory measurements, and independent reproduction
+of the quality result. Ranked window `[8, 16)` stays closed until those
+prerequisites are separately frozen and passed.
diff --git a/research/EXPERIMENT_009_STAGE_A_AUDIT.md b/research/EXPERIMENT_009_STAGE_A_AUDIT.md
new file mode 100644
index 0000000..e7c5c15
--- /dev/null
+++ b/research/EXPERIMENT_009_STAGE_A_AUDIT.md
@@ -0,0 +1,78 @@
+# Experiment 009 Stage-A post-result audit
+
+> **Status: the authenticated Stage-A result is unchanged; its verifier and
+> Stage-B handoff were hardened before any Stage-B identity, tokenizer, model,
+> or quality access.**
+
+Recorded: 2026-07-26
+
+## Immutable result
+
+The Stage-A artifact remains byte-for-byte unchanged:
+
+```text
+evidence/experiment009-rht-cqer-stage-a-666-5be8d48.json
+file SHA-256:
+98a432843dc438f2d5fde34f8704f154ebc3ee12c93ba7c469369acfedfb15b5
+canonical evidence SHA-256:
+9e03a1e8cefb5801406a47a2e5e365686afb0a05e10e099a989cee616b505ed1
+```
+
+The audit did not change the method, sign seed, task, thresholds, metrics,
+model, tokenizer, selector artifacts, row quotas, or recorded measurements.
+It rechecked the existing evidence and strengthened what future code must
+recompute before accepting it.
+
+## Findings and corrections
+
+The first verifier trusted several internally recorded summaries more than it
+should have. The hardened verifier now independently recomputes and
+cross-checks:
+
+- candidate-minus-reference excess NLL and the shared reference baseline;
+- KL ordering, probability bounds, NLL non-negativity, and finiteness;
+- aggregate, per-write, and per-layer state SSE, MSE, element counts, layer
+ order, write order, and exact recurrent-state shape;
+- FP32 recurrent source-state provenance;
+- per-layer Q8 quotas, selected-row counts, exact selection method, and every
+ stage/consume handshake;
+- final physical precision-mask hashes against selector diagnostics; and
+- exact packed-state and selector-aware byte accounting.
+
+Mutation tests now demonstrate that coherent changes to these fields are
+rejected instead of being accepted through a self-consistent wrapper hash.
+The historical artifact still passes the hardened verifier.
+
+The original phrase “independent numeric evidence” was also too strong for a
+production implementation checking itself. That check is now described as
+deterministic production-code self-consistency. A separate dense NumPy
+implementation independently derives the SHA-256 sign schedule, constructs
+the Hadamard transform, applies the FP16-scale Q4/Q8 quantizer, decodes the
+state, and compares its outputs with the production implementation.
+
+## Data-access clarification
+
+The public Hugging Face streaming transport may deserialize complete source
+records before yielding them. The enforceable boundary is therefore
+application-level: RecurQuant reads only `task_id` on non-target rows and does
+not retain, canonicalize, format, tokenize, model, evaluate, or report their
+content. Ranked MBPP window `[8, 16)` remained outside every protected
+application content set.
+
+The immutable Stage-A artifact predates this wording and contains a legacy
+field using the broader word `loaded`. Its exact interpretation is fixed in
+[`EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md`](EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md);
+the artifact was not silently rewritten.
+
+## Runtime precision
+
+The model weights and forward passes used CUDA bfloat16. The recurrent
+source/reference state used for quantization and state-error measurement was
+FP32. Both facts are now stated separately in the result and checked by the
+handoff.
+
+## Decision boundary
+
+The one-task Stage-A pass remains a falsification-screen result. It authorizes
+only the separately frozen Stage-B development run. It is not confirmation,
+novelty, speed, deployment, state-of-the-art, or breakthrough evidence.
diff --git a/research/EXPERIMENT_009_STAGE_A_RESULT.md b/research/EXPERIMENT_009_STAGE_A_RESULT.md
index 5b4d899..0a280d3 100644
--- a/research/EXPERIMENT_009_STAGE_A_RESULT.md
+++ b/research/EXPERIMENT_009_STAGE_A_RESULT.md
@@ -11,6 +11,10 @@
Date recorded: 2026-07-26
+The immutable artifact and its strengthened post-result verification are
+documented separately in the
+[Stage-A audit](EXPERIMENT_009_STAGE_A_AUDIT.md).
+
## Authenticated artifact
The method, task identity, sign schedule, implementation, byte contract, and
@@ -25,7 +29,8 @@ nine-condition gate were committed before model quality was observed.
| Canonical evidence SHA-256 | `9e03a1e8cefb5801406a47a2e5e365686afb0a05e10e099a989cee616b505ed1` |
| Created at | `2026-07-26T03:34:27.699967+00:00` |
| Model | `Qwen/Qwen3.5-0.8B-Base` at `dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68` |
-| Device and dtype | CUDA, bfloat16 |
+| Model runtime device and weight dtype | CUDA, bfloat16 |
+| Recurrent cache source/reference dtype | FP32 |
| Task identity | MBPP task `666`, row SHA-256 `b4f5989005c921c3ab94ab52c8115e79f99a22390bc1d6e6235d36fd02687fb9` |
| Token identity | 69 prompt, 39 code, 38 aligned scored tokens |
| Evidence verification | valid, with no verifier errors |
@@ -77,10 +82,12 @@ All 39 recurrent-state writes and 107 observed query tokens completed the
stage/consume handshake exactly once. All logits and reported metrics were
finite.
-Independent numeric evidence measured a right-RHT inverse relative L2 of
-`1.1468e-7`, below the frozen `3e-7` threshold. Physical transformed packing
-matched the independent transform-quantize-dequantize reconstruction exactly.
-The sign schedule hash matched the preregistered value.
+Deterministic production-code self-consistency measured a right-RHT inverse
+relative L2 of `1.1468e-7`, below the frozen `3e-7` threshold. Physical
+transformed packing matched the production transform-quantize-dequantize
+reconstruction exactly. The sign schedule hash matched the preregistered
+value. This is wiring evidence, not an independently implemented numerical
+verifier.
## Decision and limitation
diff --git a/scripts/evaluate_rht_cqer_stage_b.py b/scripts/evaluate_rht_cqer_stage_b.py
new file mode 100644
index 0000000..1c96196
--- /dev/null
+++ b/scripts/evaluate_rht_cqer_stage_b.py
@@ -0,0 +1,4129 @@
+#!/usr/bin/env python3
+"""Evaluate the frozen Experiment 009 Stage-B development window.
+
+This evaluator accepts only a separately committed Stage-B identity artifact.
+It has no task, rank-window, seed, bootstrap-count, method, or threshold flags.
+The protected ranked MBPP window [8, 16) is never resolved by this script.
+"""
+
+from __future__ import annotations
+
+import argparse
+import hashlib
+import importlib
+import importlib.metadata
+import json
+import math
+import os
+import platform
+import string
+import subprocess
+import sys
+import tempfile
+from collections.abc import Mapping, Sequence
+from datetime import UTC, datetime
+from pathlib import Path, PurePosixPath
+from statistics import fmean
+from typing import Any
+
+import numpy as np
+import torch
+from transformers import AutoTokenizer, DynamicCache, Qwen3_5ForCausalLM
+
+from recurquant.cache import iter_recurrent_states
+from recurquant.evaluation import paired_bootstrap_mean_improvement
+from recurquant.evidence import canonical_json_bytes, verify_evidence_artifact
+from recurquant.mixed_quantization import quantize_pack_mixed
+from recurquant.public_data import mbpp_manifest_content_sha256
+from recurquant.quantization import QuantizationSpec
+from recurquant.query_energy import Qwen35QueryEnergyObserver
+from recurquant.qwen35 import (
+ create_qwen35_adaptive_exact_budget_cache,
+ create_qwen35_exact_budget_cache,
+ create_qwen35_query_ema_exact_budget_cache,
+ create_qwen35_right_rht_query_ema_exact_budget_cache,
+)
+from recurquant.rht import right_rht_encode, right_rht_signs
+from recurquant.row_policy import ExactBudgetRowPlan, RowLocation
+
+pilot = importlib.import_module(
+ "scripts.pilot_evaluate_hrr" if __package__ else "pilot_evaluate_hrr"
+)
+screen = importlib.import_module(
+ "scripts.screen_rht_cqer" if __package__ else "screen_rht_cqer"
+)
+identity_resolver = importlib.import_module(
+ "scripts.resolve_rht_cqer_stage_b_identity"
+ if __package__
+ else "resolve_rht_cqer_stage_b_identity"
+)
+
+SEED = 2339
+BOOTSTRAP_SAMPLES = 10_000
+STAGE_B_OFFSET = 32
+STAGE_B_LIMIT = 32
+STAGE_B_STOP = 64
+PROTECTED_WINDOW = (8, 16)
+
+ARTIFACT_KIND = "recurquant_rht_cqer32_stage_b_development"
+IDENTITY_ARTIFACT_KIND = "recurquant_rht_cqer32_stage_b_identity"
+STAGE_A_ARTIFACT_KIND = "recurquant_rht_cqer32_stage_a_screen"
+RESULT_CLAIM_BOUNDARY = (
+ "This is the frozen 32-task Experiment 009 development result for a "
+ "known right-RHT codec composed with CQER-32 on one pinned model and "
+ "MBPP window. It is not confirmation, novelty, speed, state-of-the-art, "
+ "deployment, or breakthrough evidence."
+)
+PRIMARY_STATE_ERROR_METRIC = (
+ "closed-loop local codec reconstruction SSE: materialized packed "
+ "state minus that candidate trajectory's own pre-pack source"
+)
+REFERENCE_ALIGNED_STATE_ERROR_METRIC = (
+ "materialized candidate state minus matched FP32 recurrent state "
+ "after each write; secondary and not an advancement gate"
+)
+PROTECTED_EVALUATION_FIELD = (
+ "protected_window_8_16_content_selected_retained_canonicalized_"
+ "formatted_tokenized_passed_to_model_or_evaluated"
+)
+DATA_ACCESS_TRANSPORT_LIMITATION = (
+ "The Hugging Face streaming transport may deserialize complete source "
+ "records before yielding mappings. These counters describe fields read "
+ "and rows retained by RecurQuant application code."
+)
+STAGE_A_PATH_PRIVACY_LIMITATION = (
+ "the immutable Stage-A artifact predates the shareability rule and "
+ "contains local absolute paths internally; they are not copied here"
+)
+
+STATIC_METHOD = "target_directional_fisher_difference_int4"
+ADAPTIVE_METHOD = "adaptive_mse_target_directional_fisher_quota"
+CQER_METHOD = "query_ema32_weighted_mse_target_fisher_quota"
+RHT_METHOD = "right_rht_query_ema32_weighted_mse_target_fisher_quota"
+METHODS = (STATIC_METHOD, ADAPTIVE_METHOD, CQER_METHOD, RHT_METHOD)
+QUERY_METHODS = (CQER_METHOD, RHT_METHOD)
+TARGET_FISHER_SCORE = STATIC_METHOD
+
+FROZEN_LAYER_QUOTAS = dict(pilot.CQER_FROZEN_LAYER_QUOTAS)
+FROZEN_LINEAR_LAYERS = tuple(FROZEN_LAYER_QUOTAS)
+TARGET_PROMOTED_ROWS = 1_976
+TARGET_PAYLOAD_BYTES = 2_485_760
+TARGET_SCALE_BYTES = 73_728
+TARGET_MASK_BYTES = 4_608
+TARGET_PACKED_STATE_BYTES = 2_564_096
+TARGET_SELECTOR_BYTES = 147_456
+TARGET_TOTAL_BYTES = 2_711_552
+EXPECTED_SIGN_SCHEDULE_SHA256 = screen.EXPECTED_SIGN_SCHEDULE_SHA256
+MAX_RHT_INVERSE_RELATIVE_L2 = 3e-7
+PRODUCTION_SELF_CHECK_STORAGE_BYTES = 1_645
+INDEPENDENT_ENCODE_MAX_ABS_THRESHOLD = 2e-6
+INDEPENDENT_PACK_MAX_ABS_THRESHOLD = 6e-6
+INDEPENDENT_REFERENCE_DESCRIPTION = (
+ "independent dense NumPy Hadamard, SHA-256 sign derivation, "
+ "FP16-scale absmax quantizer, and decode"
+)
+
+MIN_DELTA_NLL_REDUCTION = 0.20
+MIN_TASK_WINS = 20
+MAX_TOP1_DISADVANTAGE = 0.005
+MAX_TASK_NLL_DISADVANTAGE = 0.25
+MIN_STATE_SSE_REDUCTION = 0.50
+
+METRIC_FIELDS = (
+ "mean_kl",
+ "cvar95_kl",
+ "max_kl",
+ "top1_agreement",
+ "reference_nll",
+ "candidate_nll",
+ "delta_nll",
+)
+
+SOURCE_FILES = identity_resolver.STAGE_B_SOURCE_FILES
+RESULT_EVIDENCE_FIELDS = {
+ "schema_version",
+ "artifact_kind",
+ "diagnostic_only",
+ "claim_boundary",
+ "created_at_utc",
+ "protocol",
+ "prerequisite_artifacts",
+ "model",
+ "dataset",
+ "metric_contract",
+ "methods",
+ "storage",
+ "aggregates",
+ "aggregates_full_code_secondary",
+ "per_task",
+ "per_task_full_code_secondary",
+ "per_task_token_primitives",
+ "per_task_full_code_token_primitives",
+ "paired_bootstrap_cqer_minus_rht_aligned_delta_nll",
+ "selector_diagnostics",
+ "state_error",
+ "unit_evidence",
+ "integrity_inputs",
+ "stage_b_integrity",
+ "stage_b_gate",
+ "runtime_environment",
+ "environment",
+ "repository",
+ "source_files",
+ "command_template",
+}
+RESULT_IMPORTED_MODULE_PATHS = {
+ "pilot_evaluate_hrr": "scripts/pilot_evaluate_hrr.py",
+ "screen_rht_cqer": "scripts/screen_rht_cqer.py",
+ "stage_b_identity_resolver": "scripts/resolve_rht_cqer_stage_b_identity.py",
+ "recurquant_cache": "src/recurquant/cache.py",
+ "recurquant_evaluation": "src/recurquant/evaluation.py",
+ "recurquant_packed_cache": "src/recurquant/packed_cache.py",
+ "recurquant_qwen35": "src/recurquant/qwen35.py",
+ "recurquant_rht": "src/recurquant/rht.py",
+}
+
+
+def parse_args(argv: Sequence[str] | None = None) -> argparse.Namespace:
+ parser = argparse.ArgumentParser(
+ description=(
+ "Run the frozen Experiment 009 RHT-CQER 32-task development evaluation."
+ )
+ )
+ parser.add_argument("--stage-a-artifact", type=Path, required=True)
+ parser.add_argument("--identity-artifact", type=Path, required=True)
+ parser.add_argument("--output", type=Path, required=True)
+ parser.add_argument("--device", choices=("auto", "cpu", "cuda"), default="auto")
+ parser.add_argument("--local-files-only", action="store_true")
+ return parser.parse_args(argv)
+
+
+def _strict_int(value: object, *, context: str) -> int:
+ if isinstance(value, bool) or not isinstance(value, int):
+ raise ValueError(f"{context} must be an integer")
+ return value
+
+
+def _finite_float(value: object, *, context: str) -> float:
+ if isinstance(value, bool) or not isinstance(value, (int, float)):
+ raise ValueError(f"{context} must be numeric")
+ rendered = float(value)
+ if not math.isfinite(rendered):
+ raise ValueError(f"{context} must be finite")
+ return rendered
+
+
+def _mapping(value: object, *, context: str) -> Mapping[str, Any]:
+ if not isinstance(value, Mapping):
+ raise ValueError(f"{context} must be an object")
+ return value
+
+
+def _sha256_bytes(value: bytes) -> str:
+ return hashlib.sha256(value).hexdigest()
+
+
+def _gate_check(function: Any) -> dict[str, Any]:
+ try:
+ result = function()
+ except (KeyError, TypeError, ValueError) as error:
+ return {"passed": False, "error": str(error)}
+ if not isinstance(result, Mapping):
+ return {"passed": bool(result)}
+ normalized = dict(result)
+ normalized["passed"] = normalized.get("passed") is True
+ return normalized
+
+
+def _load_evidence_artifact(
+ path: Path,
+ *,
+ expected_kind: str,
+) -> tuple[dict[str, Any], str]:
+ payload = path.read_bytes()
+ verification = verify_evidence_artifact(path)
+ if verification.get("valid") is not True:
+ raise ValueError(
+ f"{expected_kind} artifact failed evidence verification: "
+ + "; ".join(str(error) for error in verification.get("errors", []))
+ )
+ try:
+ artifact = json.loads(payload.decode("utf-8"))
+ except (UnicodeDecodeError, json.JSONDecodeError) as error:
+ raise ValueError(f"{expected_kind} artifact must be strict UTF-8 JSON") from error
+ if not isinstance(artifact, dict) or artifact.get("artifact_kind") != expected_kind:
+ raise ValueError(f"unexpected artifact kind; expected {expected_kind}")
+ evidence = artifact.get("evidence")
+ if not isinstance(evidence, dict):
+ raise ValueError(f"{expected_kind} evidence must be an object")
+ expected = artifact.get("canonical_evidence_sha256")
+ actual = _sha256_bytes(canonical_json_bytes(evidence))
+ if expected != actual:
+ raise ValueError(f"{expected_kind} canonical evidence hash does not match")
+ return evidence, _sha256_bytes(payload)
+
+
+def _git(*arguments: str, repository_root: Path) -> subprocess.CompletedProcess[str]:
+ return subprocess.run(
+ ["git", *arguments],
+ cwd=repository_root,
+ check=False,
+ capture_output=True,
+ text=True,
+ )
+
+
+def authenticate_committed_file(path: Path, repository_root: Path) -> dict[str, str]:
+ """Require a file's current bytes to be identical to the current Git tree."""
+
+ root = repository_root.resolve()
+ resolved = path.resolve()
+ try:
+ relative = resolved.relative_to(root).as_posix()
+ except ValueError as error:
+ raise ValueError("authenticated prerequisite must be inside the repository") from error
+ tracked = _git("ls-files", "--error-unmatch", "--", relative, repository_root=root)
+ if tracked.returncode != 0:
+ raise ValueError(f"authenticated prerequisite is not tracked by Git: {relative}")
+ committed = subprocess.run(
+ ["git", "show", f"HEAD:{relative}"],
+ cwd=root,
+ check=True,
+ capture_output=True,
+ ).stdout
+ current = resolved.read_bytes()
+ if current != committed:
+ raise ValueError(f"authenticated prerequisite differs from HEAD: {relative}")
+ return {
+ "path": relative,
+ "sha256": _sha256_bytes(current),
+ "git_blob_sha256": _sha256_bytes(committed),
+ }
+
+
+def authenticate_imported_module_paths(
+ repository_root: Path,
+ *,
+ modules: Mapping[str, Any] | None = None,
+) -> dict[str, str]:
+ """Require evaluator imports to resolve to the authenticated repository tree."""
+
+ identity_resolver.validate_all_imported_repository_modules_frozen(
+ repository_root,
+ modules=modules,
+ )
+ expected = {
+ "pilot_evaluate_hrr": (
+ pilot,
+ "scripts/pilot_evaluate_hrr.py",
+ ),
+ "screen_rht_cqer": (
+ screen,
+ "scripts/screen_rht_cqer.py",
+ ),
+ "stage_b_identity_resolver": (
+ identity_resolver,
+ "scripts/resolve_rht_cqer_stage_b_identity.py",
+ ),
+ "recurquant_cache": (
+ importlib.import_module("recurquant.cache"),
+ "src/recurquant/cache.py",
+ ),
+ "recurquant_evaluation": (
+ importlib.import_module("recurquant.evaluation"),
+ "src/recurquant/evaluation.py",
+ ),
+ "recurquant_packed_cache": (
+ importlib.import_module("recurquant.packed_cache"),
+ "src/recurquant/packed_cache.py",
+ ),
+ "recurquant_qwen35": (
+ importlib.import_module("recurquant.qwen35"),
+ "src/recurquant/qwen35.py",
+ ),
+ "recurquant_rht": (
+ importlib.import_module("recurquant.rht"),
+ "src/recurquant/rht.py",
+ ),
+ }
+ root = repository_root.resolve()
+ authenticated: dict[str, str] = {}
+ for name, (module, relative) in expected.items():
+ raw_path = getattr(module, "__file__", None)
+ if not isinstance(raw_path, str):
+ raise ValueError(f"{name} does not expose an import path")
+ actual = Path(raw_path).resolve()
+ wanted = (root / relative).resolve()
+ if actual != wanted:
+ raise ValueError(
+ f"{name} resolved outside the authenticated repository: {actual}"
+ )
+ authenticated[name] = actual.relative_to(root).as_posix()
+ return authenticated
+
+
+def _require_ancestor(commit: object, *, repository_root: Path, context: str) -> str:
+ if not isinstance(commit, str) or len(commit) != 40:
+ raise ValueError(f"{context} must record a 40-character commit")
+ result = _git(
+ "merge-base",
+ "--is-ancestor",
+ commit,
+ "HEAD",
+ repository_root=repository_root,
+ )
+ if result.returncode != 0:
+ raise ValueError(f"{context} commit is not an ancestor of the evaluator commit")
+ return commit
+
+
+def authenticate_stage_a_prerequisite(
+ path: Path,
+ *,
+ repository_root: Path,
+) -> tuple[dict[str, Any], dict[str, str]]:
+ """Recompute and authenticate the committed Stage-A advancement result."""
+
+ tracked = authenticate_committed_file(path, repository_root)
+ evidence, file_sha256 = _load_evidence_artifact(
+ path,
+ expected_kind=STAGE_A_ARTIFACT_KIND,
+ )
+ if tracked["sha256"] != file_sha256:
+ raise ValueError("Stage-A tracked-file hash does not match the artifact hash")
+ if evidence.get("screening_only") is not True:
+ raise ValueError("Stage-A prerequisite must be the frozen screening artifact")
+ protocol = _mapping(evidence.get("protocol"), context="Stage-A protocol")
+ if (
+ protocol.get("method") != RHT_METHOD
+ or protocol.get("protected_ranked_window") != list(PROTECTED_WINDOW)
+ or protocol.get("protected_window_accessed") is not False
+ ):
+ raise ValueError("Stage-A protocol contract drifted")
+ repository = _mapping(evidence.get("repository"), context="Stage-A repository")
+ stage_a_commit = _require_ancestor(
+ repository.get("commit"),
+ repository_root=repository_root,
+ context="Stage-A repository",
+ )
+ start = _mapping(repository.get("start"), context="Stage-A repository start")
+ end = _mapping(repository.get("end"), context="Stage-A repository end")
+ dataset = _mapping(evidence.get("dataset"), context="Stage-A dataset")
+ integrity = {
+ "repository_clean_at_start": start.get("worktree_clean") is True,
+ "repository_clean_at_end": end.get("worktree_clean") is True,
+ "repository_commit_stable": (
+ start.get("commit") == end.get("commit") == stage_a_commit
+ ),
+ "source_hashes_stable": (
+ _mapping(
+ evidence.get("source_files"),
+ context="Stage-A source files",
+ ).get("stable")
+ is True
+ ),
+ "identity_authenticated_before_model_weights": (
+ dataset.get("identity_authenticated_before_model_weights") is True
+ ),
+ "protected_window_8_16_accessed": (
+ dataset.get("protected_window_8_16_loaded_tokenized_or_evaluated")
+ is not False
+ ),
+ }
+ recomputed = screen.evaluate_stage_a_gate(
+ aligned_metrics=_mapping(
+ evidence.get("metrics_aligned"),
+ context="Stage-A aligned metrics",
+ ),
+ full_code_metrics=_mapping(
+ evidence.get("metrics_full_code_secondary"),
+ context="Stage-A full-code metrics",
+ ),
+ storage=_mapping(
+ _mapping(evidence.get("storage"), context="Stage-A storage").get(
+ "candidates"
+ ),
+ context="Stage-A candidate storage",
+ ),
+ selector_diagnostics=_mapping(
+ evidence.get("selector_diagnostics"),
+ context="Stage-A selector diagnostics",
+ ),
+ state_errors=_mapping(
+ evidence.get("state_error"),
+ context="Stage-A state error",
+ ),
+ unit_evidence=_mapping(
+ evidence.get("unit_evidence"),
+ context="Stage-A unit evidence",
+ ),
+ integrity=integrity,
+ )
+ if recomputed.get("passed") is not True:
+ raise ValueError("Stage-A advancement gate does not pass when recomputed")
+ recorded_gate = _mapping(evidence.get("stage_a_gate"), context="recorded Stage-A gate")
+ recorded_checks = _mapping(
+ recorded_gate.get("checks"),
+ context="recorded Stage-A checks",
+ )
+ if recorded_gate.get("passed") is not True or any(
+ _mapping(check, context="recorded Stage-A check").get("passed") is not True
+ for check in recorded_checks.values()
+ ):
+ raise ValueError("recorded Stage-A gate did not pass every frozen check")
+ return evidence, {
+ **tracked,
+ "artifact_sha256": file_sha256,
+ "canonical_evidence_sha256": _sha256_bytes(canonical_json_bytes(evidence)),
+ "implementation_commit": stage_a_commit,
+ "gate_recomputed_and_passed": "true",
+ }
+
+
+def _identity_task_records(
+ identity: Mapping[str, Any],
+) -> tuple[dict[str, Any], ...]:
+ dataset = _mapping(identity.get("dataset"), context="Stage-B identity dataset")
+ tasks = dataset.get("tasks")
+ if (
+ isinstance(tasks, (str, bytes))
+ or not isinstance(tasks, Sequence)
+ or len(tasks) != STAGE_B_LIMIT
+ ):
+ raise ValueError("Stage-B identity must contain exactly 32 task records")
+ normalized: list[dict[str, Any]] = []
+ seen: set[int] = set()
+ expected_fields = {
+ "rank",
+ "task_id",
+ "row_sha256",
+ "prompt_tokens",
+ "code_tokens",
+ "aligned_scored_tokens",
+ "full_code_scored_tokens",
+ "prompt_text_sha256",
+ "code_text_sha256",
+ "prompt_token_ids_sha256",
+ "code_token_ids_sha256",
+ }
+ for offset, raw in enumerate(tasks):
+ record = dict(_mapping(raw, context=f"Stage-B identity task {offset}"))
+ if set(record) != expected_fields:
+ raise ValueError(f"Stage-B identity task {offset} fields drifted")
+ rank = _strict_int(record.get("rank"), context=f"identity task {offset} rank")
+ task_id = _strict_int(
+ record.get("task_id"),
+ context=f"identity task {offset} task_id",
+ )
+ if rank != STAGE_B_OFFSET + offset:
+ raise ValueError("Stage-B identity ranks must be the ordered window [32, 64)")
+ if task_id in seen:
+ raise ValueError("Stage-B identity task IDs must be unique")
+ seen.add(task_id)
+ for field in (
+ "row_sha256",
+ "prompt_text_sha256",
+ "code_text_sha256",
+ "prompt_token_ids_sha256",
+ "code_token_ids_sha256",
+ ):
+ value = record.get(field)
+ if (
+ not isinstance(value, str)
+ or len(value) != 64
+ or any(character not in "0123456789abcdef" for character in value)
+ ):
+ raise ValueError(f"identity task {task_id} {field} is not a SHA-256")
+ prompt_tokens = _strict_int(
+ record.get("prompt_tokens"),
+ context=f"identity task {task_id} prompt_tokens",
+ )
+ code_tokens = _strict_int(
+ record.get("code_tokens"),
+ context=f"identity task {task_id} code_tokens",
+ )
+ aligned = _strict_int(
+ record.get("aligned_scored_tokens"),
+ context=f"identity task {task_id} aligned_scored_tokens",
+ )
+ full = _strict_int(
+ record.get("full_code_scored_tokens"),
+ context=f"identity task {task_id} full_code_scored_tokens",
+ )
+ if prompt_tokens < 1 or code_tokens < 2:
+ raise ValueError(f"identity task {task_id} has invalid token counts")
+ if aligned != code_tokens - 1 or full != code_tokens:
+ raise ValueError(f"identity task {task_id} aligned/full token contract drifted")
+ normalized.append(record)
+ ordered_ids = dataset.get("ordered_task_ids")
+ if ordered_ids != [record["task_id"] for record in normalized]:
+ raise ValueError("Stage-B ordered task IDs differ from its task records")
+ if dataset.get("selection_window") != {
+ "offset": STAGE_B_OFFSET,
+ "limit": STAGE_B_LIMIT,
+ "stop_exclusive": STAGE_B_STOP,
+ }:
+ raise ValueError("Stage-B identity selection window must equal [32, 64)")
+ if dataset.get("protected_window") != {
+ "offset": PROTECTED_WINDOW[0],
+ "stop_exclusive": PROTECTED_WINDOW[1],
+ "content_retained_canonicalized_or_tokenized": False,
+ }:
+ raise ValueError("Stage-B identity protected window must equal [8, 16)")
+ return tuple(normalized)
+
+
+def authenticate_stage_b_identity(
+ path: Path,
+ *,
+ repository_root: Path,
+) -> tuple[dict[str, Any], dict[str, str], tuple[dict[str, Any], ...]]:
+ """Authenticate the committed identity amendment without opening model weights."""
+
+ tracked = authenticate_committed_file(path, repository_root)
+ identity, file_sha256 = identity_resolver.load_stage_b_identity_artifact(path)
+ identity_resolver.validate_stage_b_identity_evidence(identity)
+ if identity.get("artifact_kind") != IDENTITY_ARTIFACT_KIND:
+ raise ValueError("Stage-B identity evidence kind drifted")
+ if tracked["sha256"] != file_sha256:
+ raise ValueError("Stage-B identity tracked-file hash does not match its artifact")
+ model = _mapping(identity.get("model_contract"), context="identity model contract")
+ if (
+ model.get("id") != identity_resolver.MODEL_ID
+ or model.get("revision") != identity_resolver.MODEL_REVISION
+ or model.get("weights_loaded") is not False
+ ):
+ raise ValueError("Stage-B identity model/no-weights contract drifted")
+ tokenizer = _mapping(
+ identity.get("tokenizer_contract"),
+ context="identity tokenizer contract",
+ )
+ if (
+ tokenizer.get("source_id") != model["id"]
+ or tokenizer.get("revision") != model["revision"]
+ or tokenizer.get("trust_remote_code") is not False
+ or tokenizer.get("prompt_add_special_tokens") is not True
+ or tokenizer.get("code_add_special_tokens") is not False
+ ):
+ raise ValueError("Stage-B identity tokenizer contract drifted")
+ tasks = _identity_task_records(identity)
+ dataset = _mapping(identity.get("dataset"), context="identity dataset")
+ manifest = _mapping(dataset.get("manifest"), context="identity content manifest")
+ if (
+ mbpp_manifest_content_sha256(manifest)
+ != dataset.get("content_manifest_sha256")
+ ):
+ raise ValueError("Stage-B identity content-manifest hash does not match")
+ integrity = _mapping(identity.get("integrity"), context="identity integrity")
+ required_true = (
+ "stage_a_authenticated_before_dataset_access",
+ "repository_clean_at_start",
+ "repository_clean_at_end",
+ "repository_commit_stable",
+ "source_hashes_stable",
+ "task_id_only_ranking_pass",
+ "only_stage_b_content_retained_canonicalized_and_tokenized",
+ )
+ if any(integrity.get(field) is not True for field in required_true):
+ raise ValueError("Stage-B identity integrity prerequisites did not all pass")
+ if (
+ integrity.get(
+ "protected_window_8_16_content_retained_canonicalized_or_tokenized"
+ )
+ is not False
+ or integrity.get("model_weights_loaded") is not False
+ or integrity.get("model_forward_pass_run") is not False
+ or integrity.get("logits_or_quality_metrics_observed") is not False
+ ):
+ raise ValueError("Stage-B identity consumed forbidden data, weights, or metrics")
+ repository = _mapping(identity.get("repository"), context="identity repository")
+ identity_commit = _require_ancestor(
+ repository.get("commit"),
+ repository_root=repository_root,
+ context="Stage-B identity repository",
+ )
+ return identity, {
+ **tracked,
+ "artifact_sha256": file_sha256,
+ "canonical_evidence_sha256": _sha256_bytes(canonical_json_bytes(identity)),
+ "resolver_commit": identity_commit,
+ }, tasks
+
+
+def authenticate_identity_source_freeze(
+ identity: Mapping[str, Any],
+ *,
+ current_source_hashes: Mapping[str, str],
+) -> dict[str, Any]:
+ """Require the identity amendment to freeze the exact Stage-B runtime bytes."""
+
+ source_files = _mapping(
+ identity.get("source_files"),
+ context="identity frozen source files",
+ )
+ expected_paths = list(SOURCE_FILES)
+ if source_files.get("paths") != expected_paths:
+ raise ValueError("identity did not freeze the exact Stage-B source path set")
+ start = _mapping(
+ source_files.get("sha256_start"),
+ context="identity source hashes start",
+ )
+ end = _mapping(
+ source_files.get("sha256_end"),
+ context="identity source hashes end",
+ )
+ current = dict(current_source_hashes)
+ if (
+ source_files.get("stable") is not True
+ or dict(start) != dict(end)
+ or dict(start) != current
+ or set(start) != set(expected_paths)
+ ):
+ raise ValueError(
+ "current Stage-B evaluator/method/test bytes differ from the identity freeze"
+ )
+ return {
+ "passed": True,
+ "path_count": len(expected_paths),
+ "paths": expected_paths,
+ "sha256": current,
+ }
+
+
+def authenticate_stage_b_runtime_environment(
+ stage_a: Mapping[str, Any],
+ identity: Mapping[str, Any],
+ *,
+ local_files_only: bool,
+) -> dict[str, Any]:
+ """Match the live runtime to Stage A and the committed identity before data."""
+
+ authenticated = identity_resolver.authenticate_runtime_environment(
+ stage_a,
+ local_files_only=local_files_only,
+ )
+ expected = _mapping(
+ identity.get("environment"),
+ context="Stage-B identity runtime environment",
+ )
+ if authenticated != dict(expected):
+ raise ValueError(
+ "authenticated runtime environment differs from the Stage-B identity"
+ )
+ return dict(authenticated)
+
+
+def plan_from_identity(
+ identity: Mapping[str, Any],
+ *,
+ stage_a: Mapping[str, Any],
+) -> tuple[ExactBudgetRowPlan, dict[str, Any]]:
+ """Reconstruct the sole Stage-B row plan from committed identity bytes."""
+
+ raw_plan = dict(_mapping(identity.get("row_plan"), context="identity row plan"))
+ recorded_hash = raw_plan.pop("canonical_plan_sha256", None)
+ if recorded_hash != _sha256_bytes(canonical_json_bytes(raw_plan)):
+ raise ValueError("identity row-plan canonical hash does not match")
+ required_fields = {
+ "schema",
+ "method",
+ "selector_binding",
+ "model",
+ "quantization",
+ "accounting",
+ "score_shapes",
+ "layer_quotas",
+ "high_precision_rows",
+ }
+ if set(raw_plan) != required_fields:
+ raise ValueError("identity row-plan fields do not match the frozen schema")
+ if (
+ raw_plan["schema"] != "recurquant.experiment009-stage-b-row-plan.v1"
+ or raw_plan["method"] != TARGET_FISHER_SCORE
+ ):
+ raise ValueError("identity row-plan schema or method drifted")
+
+ stage_a_selectors = _mapping(
+ stage_a.get("selector_artifacts"),
+ context="Stage-A selector binding",
+ )
+ expected_selector_binding = {
+ "selector_file_sha256": stage_a_selectors["selector_file_sha256"],
+ "selector_canonical_evidence_sha256": stage_a_selectors[
+ "selector_canonical_evidence_sha256"
+ ],
+ "loss_selector_file_sha256": stage_a_selectors[
+ "loss_selector_file_sha256"
+ ],
+ "loss_selector_canonical_evidence_sha256": stage_a_selectors[
+ "loss_selector_canonical_evidence_sha256"
+ ],
+ }
+ if dict(_mapping(raw_plan["selector_binding"], context="row-plan selectors")) != (
+ expected_selector_binding
+ ):
+ raise ValueError("identity row plan is not bound to the exact Stage-A selectors")
+ model = _mapping(raw_plan["model"], context="row-plan model")
+ identity_model = _mapping(identity.get("model_contract"), context="identity model")
+ if dict(model) != {
+ "id": identity_model["id"],
+ "revision": identity_model["revision"],
+ }:
+ raise ValueError("identity row-plan model contract drifted")
+ quantization = _mapping(raw_plan["quantization"], context="row-plan quantization")
+ if dict(quantization) != {
+ "low_bits": 4,
+ "high_bits": 8,
+ "group_size": 128,
+ "scale_bits": 16,
+ }:
+ raise ValueError("identity row-plan quantization contract drifted")
+ accounting = _mapping(raw_plan["accounting"], context="row-plan accounting")
+ expected_accounting = {
+ "total_groups": 36_864,
+ "mask_bytes": TARGET_MASK_BYTES,
+ "promotion_increment_bytes": 64,
+ "target_resident_bytes": TARGET_PACKED_STATE_BYTES,
+ "resident_bytes": TARGET_PACKED_STATE_BYTES,
+ "promoted_group_count": TARGET_PROMOTED_ROWS,
+ }
+ if dict(accounting) != expected_accounting:
+ raise ValueError("identity row-plan byte accounting drifted")
+ expected_shapes = [
+ {"layer_index": layer, "heads": 16, "rows": 128}
+ for layer in FROZEN_LINEAR_LAYERS
+ ]
+ if raw_plan["score_shapes"] != expected_shapes:
+ raise ValueError("identity row-plan geometry drifted")
+ expected_quotas = {
+ str(layer): quota for layer, quota in FROZEN_LAYER_QUOTAS.items()
+ }
+ if raw_plan["layer_quotas"] != expected_quotas:
+ raise ValueError("identity row-plan layer quotas drifted")
+
+ raw_locations = raw_plan["high_precision_rows"]
+ if (
+ isinstance(raw_locations, (str, bytes))
+ or not isinstance(raw_locations, Sequence)
+ or len(raw_locations) != TARGET_PROMOTED_ROWS
+ ):
+ raise ValueError("identity row plan must contain exactly 1,976 promoted rows")
+ locations: list[RowLocation] = []
+ seen: set[tuple[int, int, int]] = set()
+ counts = {layer: 0 for layer in FROZEN_LINEAR_LAYERS}
+ for index, raw_location in enumerate(raw_locations):
+ location = _mapping(raw_location, context=f"row-plan location {index}")
+ if set(location) != {"layer_index", "head_index", "row_index"}:
+ raise ValueError(f"row-plan location {index} fields drifted")
+ layer = _strict_int(location["layer_index"], context="plan layer")
+ head = _strict_int(location["head_index"], context="plan head")
+ row = _strict_int(location["row_index"], context="plan row")
+ key = (layer, head, row)
+ if layer not in counts or not 0 <= head < 16 or not 0 <= row < 128:
+ raise ValueError(f"row-plan location {index} is outside frozen geometry")
+ if key in seen:
+ raise ValueError(f"row-plan location {index} is duplicated")
+ seen.add(key)
+ counts[layer] += 1
+ locations.append(RowLocation(layer, head, row))
+ if counts != FROZEN_LAYER_QUOTAS:
+ raise ValueError("identity promoted rows do not realize the frozen quotas")
+
+ plan = ExactBudgetRowPlan(
+ low_bits=4,
+ high_bits=8,
+ group_size=128,
+ scale_bits=16,
+ total_groups=36_864,
+ mask_bytes=TARGET_MASK_BYTES,
+ promotion_increment_bytes=64,
+ target_resident_bytes=TARGET_PACKED_STATE_BYTES,
+ resident_bytes=TARGET_PACKED_STATE_BYTES,
+ high_precision_rows=tuple(locations),
+ score_shapes=tuple((layer, 16, 128) for layer in FROZEN_LINEAR_LAYERS),
+ )
+ if (
+ plan.promoted_group_count != TARGET_PROMOTED_ROWS
+ or {
+ layer: len(plan.groups_for_layer(layer))
+ for layer in FROZEN_LINEAR_LAYERS
+ }
+ != FROZEN_LAYER_QUOTAS
+ ):
+ raise ValueError("reconstructed identity row plan failed its exact quota contract")
+ return plan, {
+ "passed": True,
+ "canonical_plan_sha256": recorded_hash,
+ "method": TARGET_FISHER_SCORE,
+ "promoted_group_count": TARGET_PROMOTED_ROWS,
+ "resident_bytes": TARGET_PACKED_STATE_BYTES,
+ "selector_binding": expected_selector_binding,
+ }
+
+
+def _normalize_metric_rows(
+ per_task: Mapping[str, Sequence[Mapping[str, Any]]],
+ *,
+ task_records: Sequence[Mapping[str, Any]],
+ token_field: str,
+ context: str,
+) -> dict[str, list[dict[str, float | int | bool]]]:
+ if set(per_task) != set(METHODS):
+ raise ValueError(f"{context} metrics must contain exactly the four frozen methods")
+ expected_ids = [int(record["task_id"]) for record in task_records]
+ normalized: dict[str, list[dict[str, float | int | bool]]] = {}
+ for method in METHODS:
+ rows = per_task[method]
+ if len(rows) != STAGE_B_LIMIT:
+ raise ValueError(f"{context} {method} must contain exactly 32 task rows")
+ method_rows: list[dict[str, float | int | bool]] = []
+ for index, (row, identity) in enumerate(zip(rows, task_records, strict=True)):
+ task_id = _strict_int(
+ row.get("task_id"),
+ context=f"{context} {method} row {index} task_id",
+ )
+ if task_id != expected_ids[index]:
+ raise ValueError(f"{context} {method} task order drifted")
+ token_count = _strict_int(
+ row.get("token_count"),
+ context=f"{context} {method} task {task_id} token_count",
+ )
+ if token_count != int(identity[token_field]):
+ raise ValueError(f"{context} {method} task {task_id} token count drifted")
+ if row.get("all_logits_finite") is not True:
+ raise ValueError(f"{context} {method} task {task_id} logits are not finite")
+ values = {
+ field: _finite_float(
+ row.get(field),
+ context=f"{context} {method} task {task_id} {field}",
+ )
+ for field in METRIC_FIELDS
+ }
+ if (
+ values["mean_kl"] < 0
+ or values["cvar95_kl"] < values["mean_kl"]
+ or values["max_kl"] < values["cvar95_kl"]
+ ):
+ raise ValueError(
+ f"{context} {method} task {task_id} KL metrics are invalid or unordered"
+ )
+ if not 0 <= values["top1_agreement"] <= 1:
+ raise ValueError(
+ f"{context} {method} task {task_id} top-1 agreement is outside [0, 1]"
+ )
+ if values["reference_nll"] < 0 or values["candidate_nll"] < 0:
+ raise ValueError(
+ f"{context} {method} task {task_id} NLL metrics must be non-negative"
+ )
+ arithmetic_delta = values["candidate_nll"] - values["reference_nll"]
+ if not math.isclose(
+ values["delta_nll"],
+ arithmetic_delta,
+ rel_tol=1e-7,
+ abs_tol=2e-6,
+ ):
+ raise ValueError(
+ f"{context} {method} task {task_id} delta_nll is not candidate-reference"
+ )
+ method_rows.append(
+ {
+ "task_id": task_id,
+ "token_count": token_count,
+ "all_logits_finite": True,
+ **values,
+ }
+ )
+ normalized[method] = method_rows
+ for task_index, task_id in enumerate(expected_ids):
+ reference_values = [
+ float(normalized[method][task_index]["reference_nll"])
+ for method in METHODS
+ ]
+ if any(
+ not math.isclose(
+ value,
+ reference_values[0],
+ rel_tol=0,
+ abs_tol=1e-7,
+ )
+ for value in reference_values[1:]
+ ):
+ raise ValueError(
+ f"{context} task {task_id} methods do not share one reference NLL"
+ )
+ return normalized
+
+
+def _expected_aggregates(
+ normalized: Mapping[str, Sequence[Mapping[str, float | int | bool]]],
+) -> dict[str, dict[str, float | int]]:
+ return {
+ method: {
+ "task_count": len(rows),
+ "macro_delta_nll": fmean(float(row["delta_nll"]) for row in rows),
+ "macro_mean_kl": fmean(float(row["mean_kl"]) for row in rows),
+ "macro_cvar95_kl": fmean(float(row["cvar95_kl"]) for row in rows),
+ "maximum_kl": max(float(row["max_kl"]) for row in rows),
+ "macro_top1_agreement": fmean(
+ float(row["top1_agreement"]) for row in rows
+ ),
+ "token_count": sum(int(row["token_count"]) for row in rows),
+ }
+ for method, rows in normalized.items()
+ }
+
+
+def _accumulator_trace(accumulator: Any) -> dict[str, Any]:
+ """Retain compact per-token primitives so every task summary is reproducible."""
+
+ fields = {
+ "kl": torch.cat(accumulator.kl).to(torch.float32),
+ "reference_nll": torch.cat(accumulator.reference_nll).to(torch.float32),
+ "candidate_nll": torch.cat(accumulator.candidate_nll).to(torch.float32),
+ "top1_agreement": torch.cat(accumulator.top1_agreement).to(torch.bool),
+ "outputs_finite": torch.stack(accumulator.outputs_finite).to(torch.bool),
+ }
+ token_count = int(fields["kl"].numel())
+ if token_count <= 0 or any(int(values.numel()) != token_count for values in fields.values()):
+ raise RuntimeError("token primitive accumulators have inconsistent lengths")
+ payload = {
+ "token_count": token_count,
+ **{
+ name: (
+ values.tolist()
+ if name not in {"top1_agreement", "outputs_finite"}
+ else [bool(value) for value in values.tolist()]
+ )
+ for name, values in fields.items()
+ },
+ }
+ return {
+ **payload,
+ "canonical_primitives_sha256": _sha256_bytes(canonical_json_bytes(payload)),
+ }
+
+
+def _summary_from_trace(trace: Mapping[str, Any]) -> dict[str, float | int | bool]:
+ token_count = _strict_int(trace.get("token_count"), context="trace token_count")
+ if token_count <= 0:
+ raise ValueError("trace token_count must be positive")
+ numeric: dict[str, torch.Tensor] = {}
+ for field in ("kl", "reference_nll", "candidate_nll"):
+ raw = trace.get(field)
+ if isinstance(raw, (str, bytes)) or not isinstance(raw, Sequence):
+ raise ValueError(f"trace {field} must be an array")
+ values = torch.tensor(
+ [
+ _finite_float(value, context=f"trace {field} value")
+ for value in raw
+ ],
+ dtype=torch.float32,
+ )
+ if int(values.numel()) != token_count:
+ raise ValueError(f"trace {field} length differs from token_count")
+ numeric[field] = values
+ boolean: dict[str, torch.Tensor] = {}
+ for field in ("top1_agreement", "outputs_finite"):
+ raw = trace.get(field)
+ if (
+ isinstance(raw, (str, bytes))
+ or not isinstance(raw, Sequence)
+ or len(raw) != token_count
+ or any(not isinstance(value, bool) for value in raw)
+ ):
+ raise ValueError(f"trace {field} must be a token-aligned boolean array")
+ boolean[field] = torch.tensor(raw, dtype=torch.bool)
+ payload = {
+ "token_count": token_count,
+ **{
+ field: list(trace[field])
+ for field in (
+ "kl",
+ "reference_nll",
+ "candidate_nll",
+ "top1_agreement",
+ "outputs_finite",
+ )
+ },
+ }
+ if trace.get("canonical_primitives_sha256") != _sha256_bytes(
+ canonical_json_bytes(payload)
+ ):
+ raise ValueError("trace canonical primitive hash does not match")
+
+ kl = numeric["kl"]
+ reference = numeric["reference_nll"]
+ candidate = numeric["candidate_nll"]
+ tail_count = max(1, math.ceil(token_count * 0.05))
+ reference_mean = reference.mean()
+ candidate_mean = candidate.mean()
+ return {
+ "token_count": token_count,
+ "mean_kl": float(kl.mean().item()),
+ "cvar95_kl": float(torch.topk(kl, k=tail_count).values.mean().item()),
+ "max_kl": float(kl.max().item()),
+ "top1_agreement": float(
+ boolean["top1_agreement"].to(torch.float32).mean().item()
+ ),
+ "reference_nll": float(reference_mean.item()),
+ "candidate_nll": float(candidate_mean.item()),
+ "delta_nll": float((candidate_mean - reference_mean).item()),
+ "all_logits_finite": bool(boolean["outputs_finite"].all().item()),
+ }
+
+
+def audit_metric_traces(
+ traces: Mapping[str, Sequence[Mapping[str, Any]]],
+ summaries: Mapping[str, Sequence[Mapping[str, Any]]],
+ *,
+ task_records: Sequence[Mapping[str, Any]],
+ token_field: str,
+ context: str,
+) -> dict[str, Any]:
+ """Recompute every task metric from stored token primitives and hashes."""
+
+ if set(traces) != set(METHODS):
+ raise ValueError(f"{context} traces must contain the four frozen methods")
+ for method in METHODS:
+ if len(traces[method]) != STAGE_B_LIMIT:
+ raise ValueError(f"{context} {method} must contain exactly 32 traces")
+ for task_index, identity in enumerate(task_records):
+ task_id = int(identity["task_id"])
+ expected_tokens = int(identity[token_field])
+ reference_trace: Sequence[Any] | None = None
+ for method in METHODS:
+ trace = traces[method][task_index]
+ if int(trace.get("task_id", -1)) != task_id:
+ raise ValueError(f"{context} {method} trace task order drifted")
+ recomputed = _summary_from_trace(trace)
+ if recomputed["token_count"] != expected_tokens:
+ raise ValueError(f"{context} {method} task {task_id} trace count drifted")
+ expected_summary = {
+ key: value
+ for key, value in summaries[method][task_index].items()
+ if key != "task_id"
+ }
+ if recomputed != expected_summary:
+ raise ValueError(
+ f"{context} {method} task {task_id} summary differs from token primitives"
+ )
+ method_reference = trace.get("reference_nll")
+ if reference_trace is None:
+ reference_trace = method_reference
+ elif method_reference != reference_trace:
+ raise ValueError(
+ f"{context} task {task_id} methods do not share reference primitives"
+ )
+ return {
+ "passed": True,
+ "task_count": STAGE_B_LIMIT,
+ "methods": list(METHODS),
+ "token_primitive_hashes_verified": True,
+ "summaries_recomputed": True,
+ }
+
+
+def _audit_aggregate_match(
+ aggregates: Mapping[str, Mapping[str, Any]],
+ expected: Mapping[str, Mapping[str, Any]],
+ *,
+ context: str,
+) -> dict[str, Any]:
+ if set(aggregates) != set(METHODS):
+ raise ValueError(f"{context} aggregates must contain the four frozen methods")
+ for method in METHODS:
+ if dict(aggregates[method]) != dict(expected[method]):
+ raise ValueError(f"{context} {method} aggregate differs from task-macro recomputation")
+ return {
+ "passed": True,
+ "methods": list(METHODS),
+ "task_count_per_method": STAGE_B_LIMIT,
+ }
+
+
+def audit_storage(storage: Mapping[str, Mapping[str, Any]]) -> dict[str, Any]:
+ if set(storage) != set(METHODS):
+ raise ValueError("storage must contain exactly the four frozen methods")
+ common = {
+ "payload_bytes": TARGET_PAYLOAD_BYTES,
+ "scale_bytes": TARGET_SCALE_BYTES,
+ "mask_bytes": TARGET_MASK_BYTES,
+ "resident_bytes": TARGET_PACKED_STATE_BYTES,
+ "high_precision_groups": TARGET_PROMOTED_ROWS,
+ }
+ for method in METHODS:
+ for field, expected in common.items():
+ if _strict_int(
+ storage[method].get(field),
+ context=f"{method} storage {field}",
+ ) != expected:
+ raise ValueError(f"{method} storage {field} drifted")
+ for method in QUERY_METHODS:
+ if (
+ _strict_int(
+ storage[method].get("selector_auxiliary_bytes"),
+ context=f"{method} selector auxiliary bytes",
+ )
+ != TARGET_SELECTOR_BYTES
+ or _strict_int(
+ storage[method].get("resident_bytes_including_selector"),
+ context=f"{method} selector-aware resident bytes",
+ )
+ != TARGET_TOTAL_BYTES
+ ):
+ raise ValueError(f"{method} selector-aware storage drifted")
+ return {
+ "passed": True,
+ **common,
+ "query_selector_auxiliary_bytes": TARGET_SELECTOR_BYTES,
+ "query_resident_bytes_including_selector": TARGET_TOTAL_BYTES,
+ }
+
+
+def audit_task_selector_diagnostics(
+ diagnostics: Mapping[str, Sequence[Mapping[str, Any]]],
+ *,
+ task_records: Sequence[Mapping[str, Any]],
+) -> dict[str, Any]:
+ if set(diagnostics) != set(QUERY_METHODS):
+ raise ValueError("selector diagnostics must contain exactly CQER and RHT-CQER")
+ methods: dict[str, list[dict[str, Any]]] = {}
+ expected_selection = {
+ CQER_METHOD: "query_ema32_weighted_aligned_mse_reduction",
+ RHT_METHOD: RHT_METHOD,
+ }
+ for method in QUERY_METHODS:
+ task_diagnostics = diagnostics[method]
+ if len(task_diagnostics) != STAGE_B_LIMIT:
+ raise ValueError(f"{method} must report diagnostics for exactly 32 tasks")
+ audited_tasks: list[dict[str, Any]] = []
+ for identity, task_record in zip(
+ task_records,
+ task_diagnostics,
+ strict=True,
+ ):
+ task_id = _strict_int(task_record.get("task_id"), context="diagnostic task_id")
+ if task_id != int(identity["task_id"]):
+ raise ValueError(f"{method} diagnostic task order drifted")
+ layers = task_record.get("layers")
+ if isinstance(layers, (str, bytes)) or not isinstance(layers, Sequence):
+ raise ValueError(f"{method} task {task_id} layers must be an array")
+ if len(layers) != len(FROZEN_LINEAR_LAYERS):
+ raise ValueError(f"{method} task {task_id} did not report every layer")
+ by_layer: dict[int, Mapping[str, Any]] = {}
+ for raw_layer in layers:
+ layer_record = _mapping(
+ raw_layer,
+ context=f"{method} task {task_id} layer",
+ )
+ layer = _strict_int(
+ layer_record.get("layer_index"),
+ context=f"{method} task {task_id} layer_index",
+ )
+ if layer in by_layer:
+ raise ValueError(f"{method} task {task_id} repeats layer {layer}")
+ by_layer[layer] = layer_record
+ if set(by_layer) != set(FROZEN_LINEAR_LAYERS):
+ raise ValueError(f"{method} task {task_id} layer identity drifted")
+
+ expected_writes = int(identity["code_tokens"])
+ expected_query_tokens = (
+ int(identity["prompt_tokens"])
+ + int(identity["aligned_scored_tokens"])
+ )
+ for layer in FROZEN_LINEAR_LAYERS:
+ record = by_layer[layer]
+ quota = _strict_int(
+ record.get("quota"),
+ context=f"{method} task {task_id} layer {layer} quota",
+ )
+ selected = _strict_int(
+ record.get("current_selected_count"),
+ context=f"{method} task {task_id} layer {layer} selection count",
+ )
+ updates = _strict_int(
+ record.get("state_updates"),
+ context=f"{method} task {task_id} layer {layer} updates",
+ )
+ staged = _strict_int(
+ record.get("observations_staged"),
+ context=f"{method} task {task_id} layer {layer} staged",
+ )
+ committed = _strict_int(
+ record.get("observations_committed"),
+ context=f"{method} task {task_id} layer {layer} committed",
+ )
+ tokens = _strict_int(
+ record.get("tokens_observed"),
+ context=f"{method} task {task_id} layer {layer} tokens",
+ )
+ if quota != FROZEN_LAYER_QUOTAS[layer] or selected != quota:
+ raise ValueError(f"{method} task {task_id} layer {layer} quota drifted")
+ if (updates, staged, committed) != (
+ expected_writes,
+ expected_writes,
+ expected_writes,
+ ):
+ raise ValueError(
+ f"{method} task {task_id} layer {layer} handshake drifted"
+ )
+ if tokens != expected_query_tokens:
+ raise ValueError(
+ f"{method} task {task_id} layer {layer} query-token count drifted"
+ )
+ if (
+ record.get("pending_observation") is not False
+ or record.get("confirmation_two") is not False
+ or record.get("selection_method") != expected_selection[method]
+ ):
+ raise ValueError(
+ f"{method} task {task_id} layer {layer} method/handshake drifted"
+ )
+ mask = record.get("current_mask_sha256")
+ if (
+ not isinstance(mask, str)
+ or len(mask) != 64
+ or any(character not in "0123456789abcdef" for character in mask)
+ ):
+ raise ValueError(
+ f"{method} task {task_id} layer {layer} mask hash is invalid"
+ )
+ if method == RHT_METHOD and (
+ record.get("state_codec") != "right_rht_sha256_signs_v1"
+ or record.get("state_codec_seed") != SEED
+ or record.get("state_codec_axis") != "value"
+ or record.get("state_codec_normalization") != "orthonormal"
+ or record.get("state_codec_persistent_tensor_bytes") != 0
+ ):
+ raise ValueError(
+ f"{method} task {task_id} layer {layer} codec contract drifted"
+ )
+ audited_tasks.append(
+ {
+ "task_id": task_id,
+ "state_writes": expected_writes,
+ "query_tokens": expected_query_tokens,
+ "layers": len(FROZEN_LINEAR_LAYERS),
+ }
+ )
+ methods[method] = audited_tasks
+ return {
+ "passed": True,
+ "quota_sum": sum(FROZEN_LAYER_QUOTAS.values()),
+ "task_count": STAGE_B_LIMIT,
+ "methods": methods,
+ }
+
+
+def validate_task_state_error_coverage(
+ state_errors: Mapping[str, Mapping[str, Any]],
+ *,
+ expected_writes: int,
+) -> dict[str, Any]:
+ if set(state_errors) != set(QUERY_METHODS):
+ raise ValueError("state-error evidence must contain exactly CQER and RHT-CQER")
+ if state_errors[CQER_METHOD].get("coverage") != state_errors[RHT_METHOD].get(
+ "coverage"
+ ):
+ raise ValueError("CQER and RHT-CQER state-error coverage differs")
+ expected_records = len(FROZEN_LINEAR_LAYERS) * expected_writes
+ for method in QUERY_METHODS:
+ record = state_errors[method]
+ if int(record.get("record_count", -1)) != expected_records:
+ raise ValueError(f"{method} state-error record count drifted")
+ per_layer = record.get("per_layer")
+ per_write = record.get("per_write")
+ if not isinstance(per_layer, Mapping) or set(per_layer) != {
+ str(layer) for layer in FROZEN_LINEAR_LAYERS
+ }:
+ raise ValueError(f"{method} state-error layers drifted")
+ if not isinstance(per_write, Mapping) or set(per_write) != {
+ str(write) for write in range(expected_writes)
+ }:
+ raise ValueError(f"{method} state-error writes drifted")
+ if any(
+ int(per_layer[str(layer)].get("record_count", -1)) != expected_writes
+ for layer in FROZEN_LINEAR_LAYERS
+ ):
+ raise ValueError(f"{method} did not record every layer on every write")
+ if any(
+ int(per_write[str(write)].get("record_count", -1))
+ != len(FROZEN_LINEAR_LAYERS)
+ for write in range(expected_writes)
+ ):
+ raise ValueError(f"{method} did not record every layer within each write")
+ return {
+ "passed": True,
+ "state_writes": expected_writes,
+ "records_per_method": expected_records,
+ }
+
+
+def recompute_local_codec_state_error_summary(
+ summary: Mapping[str, Any],
+ *,
+ method: str,
+ expected_writes: int,
+ final_mask_hashes: Mapping[int, str],
+) -> dict[str, Any]:
+ """Recompute local pre-pack-to-materialized QDQ SSE from every raw record."""
+
+ raw_records = summary.get("records")
+ if (
+ isinstance(raw_records, (str, bytes))
+ or not isinstance(raw_records, Sequence)
+ or len(raw_records) != len(FROZEN_LINEAR_LAYERS) * expected_writes
+ ):
+ raise ValueError(f"{method} raw local-codec records have the wrong length")
+ expected_selection = (
+ "query_ema32_weighted_aligned_mse_reduction"
+ if method == CQER_METHOD
+ else RHT_METHOD
+ )
+ normalized: list[dict[str, Any]] = []
+ per_layer: dict[int, dict[str, float | int]] = {
+ layer: {"record_count": 0, "element_count": 0, "state_sse": 0.0}
+ for layer in FROZEN_LINEAR_LAYERS
+ }
+ per_write: dict[int, dict[str, float | int]] = {
+ write: {"record_count": 0, "element_count": 0, "state_sse": 0.0}
+ for write in range(expected_writes)
+ }
+ expected_shape = (1, 16, 128, 128)
+ element_count = math.prod(expected_shape)
+ for update_index, raw_record in enumerate(raw_records):
+ record = dict(_mapping(raw_record, context=f"{method} raw state-error record"))
+ write = update_index // len(FROZEN_LINEAR_LAYERS)
+ layer = FROZEN_LINEAR_LAYERS[update_index % len(FROZEN_LINEAR_LAYERS)]
+ if (
+ _strict_int(record.get("update_index"), context="state update_index")
+ != update_index
+ or _strict_int(record.get("write_ordinal"), context="state write_ordinal")
+ != write
+ or _strict_int(record.get("layer_index"), context="state layer_index")
+ != layer
+ or _strict_int(record.get("state_index"), context="state state_index") != 0
+ ):
+ raise ValueError(f"{method} raw state-error write/layer order drifted")
+ shape = record.get("shape")
+ if list(shape) != list(expected_shape):
+ raise ValueError(f"{method} layer {layer} recurrent-state geometry drifted")
+ quota = FROZEN_LAYER_QUOTAS[layer]
+ expected_payload = 2_048 * 64 + quota * 64
+ expected_scale = 2_048 * 2
+ expected_mask = 2_048 // 8
+ expected_resident = expected_payload + expected_scale + expected_mask
+ integer_contract = {
+ "element_count": element_count,
+ "low_bits": 4,
+ "high_bits": 8,
+ "group_size": 128,
+ "scale_bits": 16,
+ "total_groups": 2_048,
+ "high_precision_groups": quota,
+ "baseline_bytes": element_count * 4,
+ "payload_bytes": expected_payload,
+ "scale_bytes": expected_scale,
+ "mask_bytes": expected_mask,
+ "resident_bytes": expected_resident,
+ }
+ for field, expected in integer_contract.items():
+ if _strict_int(
+ record.get(field),
+ context=f"{method} layer {layer} {field}",
+ ) != expected:
+ raise ValueError(f"{method} layer {layer} state-error {field} drifted")
+ if (
+ record.get("rounding") != "nearest"
+ or record.get("source_dtype") != "torch.float32"
+ or record.get("selection_method") != expected_selection
+ ):
+ raise ValueError(f"{method} layer {layer} state-error codec contract drifted")
+ mask_hash = record.get("high_precision_mask_sha256")
+ if (
+ not isinstance(mask_hash, str)
+ or len(mask_hash) != 64
+ or any(character not in "0123456789abcdef" for character in mask_hash)
+ ):
+ raise ValueError(f"{method} layer {layer} state-error mask hash is invalid")
+ mse = _finite_float(record.get("mean_squared_error"), context="state MSE")
+ maximum = _finite_float(record.get("max_absolute_error"), context="state max error")
+ relative_l2 = _finite_float(record.get("relative_l2_error"), context="state relative L2")
+ recorded_sse = _finite_float(record.get("state_sse"), context="state SSE")
+ if min(mse, maximum, relative_l2, recorded_sse) < 0:
+ raise ValueError(f"{method} raw state-error magnitudes must be non-negative")
+ recomputed_sse = mse * element_count
+ if recorded_sse != recomputed_sse:
+ raise ValueError(f"{method} raw state-error SSE is not MSE times elements")
+ normalized.append(record)
+ for totals in (per_layer[layer], per_write[write]):
+ totals["record_count"] = int(totals["record_count"]) + 1
+ totals["element_count"] = int(totals["element_count"]) + element_count
+ totals["state_sse"] = float(totals["state_sse"]) + recomputed_sse
+
+ for layer in FROZEN_LINEAR_LAYERS:
+ final_record = normalized[
+ (expected_writes - 1) * len(FROZEN_LINEAR_LAYERS)
+ + FROZEN_LINEAR_LAYERS.index(layer)
+ ]
+ if final_record["high_precision_mask_sha256"] != final_mask_hashes.get(layer):
+ raise ValueError(
+ f"{method} layer {layer} final raw-record mask does not match diagnostics"
+ )
+ coverage = [
+ {
+ "write_ordinal": int(record["write_ordinal"]),
+ "layer_index": int(record["layer_index"]),
+ "state_index": int(record["state_index"]),
+ "shape": list(record["shape"]),
+ }
+ for record in normalized
+ ]
+ total_elements = len(normalized) * element_count
+ total_sse = math.fsum(float(record["state_sse"]) for record in normalized)
+ recomputed = {
+ "record_count": len(normalized),
+ "element_count": total_elements,
+ "aggregate_state_sse": total_sse,
+ "aggregate_state_mse": total_sse / total_elements,
+ "coverage": coverage,
+ "per_layer": {
+ str(layer): {
+ "record_count": int(values["record_count"]),
+ "element_count": int(values["element_count"]),
+ "state_sse": float(values["state_sse"]),
+ }
+ for layer, values in per_layer.items()
+ },
+ "per_write": {
+ str(write): {
+ "record_count": int(values["record_count"]),
+ "element_count": int(values["element_count"]),
+ "state_sse": float(values["state_sse"]),
+ }
+ for write, values in per_write.items()
+ },
+ "records": normalized,
+ }
+ if dict(summary) != recomputed:
+ raise ValueError(f"{method} state-error aggregates differ from raw recomputation")
+ return recomputed
+
+
+def audit_state_errors(
+ per_task_state_errors: Mapping[str, Sequence[Mapping[str, Any]]],
+ *,
+ task_records: Sequence[Mapping[str, Any]],
+ selector_diagnostics: Mapping[str, Sequence[Mapping[str, Any]]],
+) -> dict[str, Any]:
+ if set(per_task_state_errors) != set(QUERY_METHODS):
+ raise ValueError("per-task state errors must contain CQER and RHT-CQER")
+ audits: list[dict[str, Any]] = []
+ for index, identity in enumerate(task_records):
+ task_id = int(identity["task_id"])
+ task_pair: dict[str, Mapping[str, Any]] = {}
+ for method in QUERY_METHODS:
+ records = per_task_state_errors[method]
+ if len(records) != STAGE_B_LIMIT:
+ raise ValueError(f"{method} must contain state errors for exactly 32 tasks")
+ task_record = records[index]
+ if int(task_record.get("task_id", -1)) != task_id:
+ raise ValueError(f"{method} state-error task order drifted")
+ summary = _mapping(
+ task_record.get("state_error"),
+ context=f"{method} task {task_id} state error",
+ )
+ diagnostics = selector_diagnostics[method][index]
+ layers = diagnostics.get("layers")
+ if not isinstance(layers, Sequence):
+ raise ValueError(f"{method} task {task_id} diagnostics are missing")
+ final_masks = {
+ int(layer["layer_index"]): str(layer["current_mask_sha256"])
+ for layer in layers
+ }
+ task_pair[method] = recompute_local_codec_state_error_summary(
+ summary,
+ method=method,
+ expected_writes=int(identity["code_tokens"]),
+ final_mask_hashes=final_masks,
+ )
+ coverage = validate_task_state_error_coverage(
+ task_pair,
+ expected_writes=int(identity["code_tokens"]),
+ )
+ audits.append({"task_id": task_id, **coverage})
+ return {"passed": True, "task_count": STAGE_B_LIMIT, "tasks": audits}
+
+
+def aggregate_state_errors(
+ per_task_state_errors: Mapping[str, Sequence[Mapping[str, Any]]],
+) -> dict[str, dict[str, float | int]]:
+ aggregates: dict[str, dict[str, float | int]] = {}
+ for method in QUERY_METHODS:
+ records = per_task_state_errors[method]
+ element_count = sum(
+ int(_mapping(record["state_error"], context="state error").get("element_count", -1))
+ for record in records
+ )
+ state_sse = math.fsum(
+ _finite_float(
+ _mapping(record["state_error"], context="state error").get(
+ "aggregate_state_sse"
+ ),
+ context=f"{method} aggregate state SSE",
+ )
+ for record in records
+ )
+ record_count = sum(
+ int(_mapping(record["state_error"], context="state error").get("record_count", -1))
+ for record in records
+ )
+ if element_count <= 0 or record_count <= 0 or state_sse < 0:
+ raise ValueError(f"{method} aggregate state-error evidence is invalid")
+ aggregates[method] = {
+ "task_count": len(records),
+ "record_count": record_count,
+ "element_count": element_count,
+ "aggregate_state_sse": state_sse,
+ "aggregate_state_mse": state_sse / element_count,
+ }
+ return aggregates
+
+
+def audit_reference_aligned_state_errors(
+ per_task_records: Mapping[str, Sequence[Mapping[str, Any]]],
+ *,
+ task_records: Sequence[Mapping[str, Any]],
+) -> dict[str, Any]:
+ """Authenticate the FP64 candidate-versus-matched-FP32 secondary diagnostic."""
+
+ if set(per_task_records) != set(QUERY_METHODS):
+ raise ValueError("reference-aligned state errors must contain CQER and RHT-CQER")
+ expected_shape = [1, 16, 128, 128]
+ expected_elements = math.prod(expected_shape)
+ for method in QUERY_METHODS:
+ if len(per_task_records[method]) != STAGE_B_LIMIT:
+ raise ValueError(f"{method} reference-aligned evidence must contain 32 tasks")
+ for identity, task_wrapper in zip(
+ task_records,
+ per_task_records[method],
+ strict=True,
+ ):
+ task_id = int(identity["task_id"])
+ if int(task_wrapper.get("task_id", -1)) != task_id:
+ raise ValueError(f"{method} reference-aligned task order drifted")
+ summary = _mapping(
+ task_wrapper.get("state_error"),
+ context=f"{method} task {task_id} reference-aligned summary",
+ )
+ writes = summary.get("writes")
+ expected_writes = int(identity["code_tokens"])
+ if (
+ summary.get("metric")
+ != "candidate_materialized_state_minus_matched_fp32_state"
+ or not isinstance(writes, Sequence)
+ or len(writes) != expected_writes
+ ):
+ raise ValueError(f"{method} task {task_id} reference-aligned contract drifted")
+ total_elements = 0
+ total_sse_values: list[float] = []
+ for write_ordinal, write in enumerate(writes):
+ record = _mapping(
+ write,
+ context=f"{method} task {task_id} reference-aligned write",
+ )
+ layers = record.get("layers")
+ if (
+ int(record.get("write_ordinal", -1)) != write_ordinal
+ or not isinstance(layers, Sequence)
+ or len(layers) != len(FROZEN_LINEAR_LAYERS)
+ ):
+ raise ValueError(
+ f"{method} task {task_id} reference-aligned write coverage drifted"
+ )
+ write_sse_values: list[float] = []
+ for expected_layer, layer_record in zip(
+ FROZEN_LINEAR_LAYERS,
+ layers,
+ strict=True,
+ ):
+ layer = _mapping(
+ layer_record,
+ context=f"{method} reference-aligned layer",
+ )
+ if (
+ int(layer.get("layer_index", -1)) != expected_layer
+ or int(layer.get("state_index", -1)) != 0
+ or layer.get("shape") != expected_shape
+ or int(layer.get("element_count", -1)) != expected_elements
+ ):
+ raise ValueError(
+ f"{method} task {task_id} reference-aligned geometry drifted"
+ )
+ sse = _finite_float(layer.get("state_sse"), context="reference SSE")
+ mse = _finite_float(layer.get("state_mse"), context="reference MSE")
+ relative = _finite_float(
+ layer.get("relative_l2_error"),
+ context="reference relative L2",
+ )
+ maximum = _finite_float(
+ layer.get("max_absolute_error"),
+ context="reference maximum error",
+ )
+ if min(sse, mse, relative, maximum) < 0 or mse != sse / expected_elements:
+ raise ValueError(
+ f"{method} task {task_id} reference-aligned metrics drifted"
+ )
+ write_sse_values.append(sse)
+ write_sse = math.fsum(write_sse_values)
+ write_elements = len(FROZEN_LINEAR_LAYERS) * expected_elements
+ if (
+ int(record.get("record_count", -1)) != len(FROZEN_LINEAR_LAYERS)
+ or int(record.get("element_count", -1)) != write_elements
+ or _finite_float(
+ record.get("state_sse"),
+ context="reference write SSE",
+ )
+ != write_sse
+ ):
+ raise ValueError(
+ f"{method} task {task_id} reference-aligned write totals drifted"
+ )
+ total_elements += write_elements
+ total_sse_values.append(write_sse)
+ total_sse = math.fsum(total_sse_values)
+ if (
+ int(summary.get("write_count", -1)) != expected_writes
+ or int(summary.get("record_count", -1))
+ != expected_writes * len(FROZEN_LINEAR_LAYERS)
+ or int(summary.get("element_count", -1)) != total_elements
+ or _finite_float(
+ summary.get("aggregate_state_sse"),
+ context="reference aggregate SSE",
+ )
+ != total_sse
+ or _finite_float(
+ summary.get("aggregate_state_mse"),
+ context="reference aggregate MSE",
+ )
+ != total_sse / total_elements
+ ):
+ raise ValueError(
+ f"{method} task {task_id} reference-aligned aggregate drifted"
+ )
+ return {
+ "passed": True,
+ "task_count": STAGE_B_LIMIT,
+ "methods": list(QUERY_METHODS),
+ "accumulation_dtype": "torch.float64",
+ "advancement_gate_metric": False,
+ }
+
+
+def _dense_reference_signs(layer: int, heads: int, width: int) -> np.ndarray:
+ signs = np.empty((1, heads, 1, width), dtype=np.float32)
+ domain = b"recurquant.right-rht.signs.v1\0"
+ for head in range(heads):
+ values: list[float] = []
+ counter = 0
+ while len(values) < width:
+ message = b"".join(
+ (
+ domain,
+ SEED.to_bytes(8, "little"),
+ layer.to_bytes(8, "little"),
+ head.to_bytes(8, "little"),
+ width.to_bytes(8, "little"),
+ counter.to_bytes(8, "little"),
+ )
+ )
+ for byte in hashlib.sha256(message).digest():
+ for bit in range(8):
+ values.append(1.0 if byte & (1 << bit) else -1.0)
+ if len(values) == width:
+ break
+ if len(values) == width:
+ break
+ counter += 1
+ signs[0, head, 0] = np.asarray(values, dtype=np.float32)
+ return signs
+
+
+def _dense_hadamard(width: int) -> np.ndarray:
+ matrix = np.ones((1, 1), dtype=np.float32)
+ while matrix.shape[0] < width:
+ matrix = np.block([[matrix, matrix], [matrix, -matrix]])
+ if matrix.shape != (width, width):
+ raise ValueError("dense Hadamard reference requires a power-of-two width")
+ return matrix
+
+
+def _dense_reference_encode(state: np.ndarray, *, layer: int) -> np.ndarray:
+ width = state.shape[-1]
+ signed = state.astype(np.float32) * _dense_reference_signs(
+ layer,
+ state.shape[1],
+ width,
+ )
+ return np.matmul(signed, _dense_hadamard(width)) / math.sqrt(width)
+
+
+def _dense_reference_decode(encoded: np.ndarray, *, layer: int) -> np.ndarray:
+ width = encoded.shape[-1]
+ decoded = np.matmul(encoded.astype(np.float32), _dense_hadamard(width))
+ decoded /= math.sqrt(width)
+ return decoded * _dense_reference_signs(layer, encoded.shape[1], width)
+
+
+def _dense_reference_mixed_qdq(
+ state: np.ndarray,
+ mask: np.ndarray,
+ *,
+ layer: int,
+) -> np.ndarray:
+ encoded = _dense_reference_encode(state, layer=layer)
+ groups = encoded.reshape(-1, 128)
+ qmax = np.where(mask.reshape(-1), 127.0, 7.0).reshape(-1, 1)
+ ideal_scales = np.max(np.abs(groups), axis=1, keepdims=True) / qmax
+ ideal_scales = np.where(ideal_scales > 1e-8, ideal_scales, 1.0)
+ scales = np.clip(
+ ideal_scales,
+ 2.0**-24,
+ np.finfo(np.float16).max,
+ ).astype(np.float16).astype(np.float32)
+ codes = np.rint(groups / scales)
+ codes = np.maximum(np.minimum(codes, qmax), -qmax)
+ quantized = (codes * scales).reshape(encoded.shape)
+ return _dense_reference_decode(quantized, layer=layer)
+
+
+def compute_independent_dense_rht_evidence() -> dict[str, Any]:
+ """Compare production RHT/packing with dense NumPy reference implementations."""
+
+ encode_state = torch.randn(
+ (1, 2, 3, 128),
+ generator=torch.Generator().manual_seed(811),
+ dtype=torch.float32,
+ )
+ reference_signs = _dense_reference_signs(7, 2, 128)
+ production_signs = right_rht_signs(
+ layer_index=7,
+ expected_heads=2,
+ width=128,
+ device="cpu",
+ ).numpy()
+ reference_encoded = _dense_reference_encode(encode_state.numpy(), layer=7)
+ production_encoded = right_rht_encode(
+ encode_state,
+ layer_index=7,
+ expected_heads=2,
+ ).numpy()
+ encode_max_abs = float(np.max(np.abs(production_encoded - reference_encoded)))
+
+ pack_state = torch.randn(
+ (1, 2, 4, 128),
+ generator=torch.Generator().manual_seed(823),
+ dtype=torch.float32,
+ )
+ mask = torch.tensor(
+ [[False, True, False, True], [True, False, False, True]],
+ dtype=torch.bool,
+ )
+ packed = quantize_pack_mixed(
+ pack_state,
+ mask,
+ low_spec=QuantizationSpec(bits=4, group_size=128, flatten_last_dims=2),
+ high_spec=QuantizationSpec(bits=8, group_size=128, flatten_last_dims=2),
+ right_rht_layer_index=9,
+ right_rht_expected_heads=2,
+ )
+ reference_packed = _dense_reference_mixed_qdq(
+ pack_state.numpy(),
+ mask.numpy(),
+ layer=9,
+ )
+ pack_max_abs = float(
+ np.max(np.abs(packed.dequantize().numpy() - reference_packed))
+ )
+ return {
+ "reference": INDEPENDENT_REFERENCE_DESCRIPTION,
+ "signs_exact": bool(np.array_equal(production_signs, reference_signs)),
+ "encode_max_abs_difference": encode_max_abs,
+ "encode_max_abs_threshold": INDEPENDENT_ENCODE_MAX_ABS_THRESHOLD,
+ "physical_pack_max_abs_difference": pack_max_abs,
+ "physical_pack_max_abs_threshold": INDEPENDENT_PACK_MAX_ABS_THRESHOLD,
+ "passed": (
+ np.array_equal(production_signs, reference_signs)
+ and encode_max_abs <= INDEPENDENT_ENCODE_MAX_ABS_THRESHOLD
+ and pack_max_abs <= INDEPENDENT_PACK_MAX_ABS_THRESHOLD
+ ),
+ }
+
+
+def validate_unit_evidence_schema(
+ unit_evidence: Mapping[str, Any],
+) -> dict[str, Any]:
+ """Validate exact production schemas and recompute every derived unit flag."""
+
+ _require_exact_fields(
+ unit_evidence,
+ {"production_self_check", "independent_dense_reference"},
+ context="Stage-B unit evidence",
+ )
+ production = _mapping(
+ unit_evidence.get("production_self_check"),
+ context="production RHT self-check",
+ )
+ _require_exact_fields(
+ production,
+ {
+ "inverse_relative_l2",
+ "inverse_relative_l2_threshold",
+ "physical_pack_matches_transformed_qdq",
+ "physical_pack_max_abs_difference",
+ "physical_pack_storage_bytes",
+ "sign_schedule_sha256",
+ "expected_sign_schedule_sha256",
+ "seed",
+ "device",
+ "dtype",
+ },
+ context="production RHT self-check",
+ )
+ independent = _mapping(
+ unit_evidence.get("independent_dense_reference"),
+ context="independent dense RHT reference",
+ )
+ _require_exact_fields(
+ independent,
+ {
+ "reference",
+ "signs_exact",
+ "encode_max_abs_difference",
+ "encode_max_abs_threshold",
+ "physical_pack_max_abs_difference",
+ "physical_pack_max_abs_threshold",
+ "passed",
+ },
+ context="independent dense RHT reference",
+ )
+
+ inverse = _finite_float(
+ production.get("inverse_relative_l2"),
+ context="right-RHT inverse relative L2",
+ )
+ pack_difference = _finite_float(
+ production.get("physical_pack_max_abs_difference"),
+ context="right-RHT physical-pack maximum difference",
+ )
+ if inverse < 0 or pack_difference < 0:
+ raise ValueError("production RHT self-check errors must be non-negative")
+ if (
+ production.get("inverse_relative_l2_threshold")
+ != MAX_RHT_INVERSE_RELATIVE_L2
+ or production.get("physical_pack_storage_bytes")
+ != PRODUCTION_SELF_CHECK_STORAGE_BYTES
+ or production.get("expected_sign_schedule_sha256")
+ != EXPECTED_SIGN_SCHEDULE_SHA256
+ or production.get("seed") != SEED
+ or production.get("device") != "cpu"
+ or production.get("dtype") != "torch.float32"
+ ):
+ raise ValueError("production RHT self-check frozen contract drifted")
+ _require_sha256(
+ production.get("sign_schedule_sha256"),
+ context="production RHT sign schedule",
+ )
+ _require_sha256(
+ production.get("expected_sign_schedule_sha256"),
+ context="expected RHT sign schedule",
+ )
+ production_passed = (
+ inverse < MAX_RHT_INVERSE_RELATIVE_L2
+ and production.get("physical_pack_matches_transformed_qdq") is True
+ and pack_difference == 0.0
+ and production.get("sign_schedule_sha256") == EXPECTED_SIGN_SCHEDULE_SHA256
+ )
+
+ signs_exact = independent.get("signs_exact")
+ recorded_passed = independent.get("passed")
+ if not isinstance(signs_exact, bool) or not isinstance(recorded_passed, bool):
+ raise ValueError("independent dense RHT boolean fields drifted")
+ encode_difference = _finite_float(
+ independent.get("encode_max_abs_difference"),
+ context="independent encode maximum difference",
+ )
+ independent_pack_difference = _finite_float(
+ independent.get("physical_pack_max_abs_difference"),
+ context="independent pack maximum difference",
+ )
+ if (
+ encode_difference < 0
+ or independent_pack_difference < 0
+ or independent.get("reference") != INDEPENDENT_REFERENCE_DESCRIPTION
+ or independent.get("encode_max_abs_threshold")
+ != INDEPENDENT_ENCODE_MAX_ABS_THRESHOLD
+ or independent.get("physical_pack_max_abs_threshold")
+ != INDEPENDENT_PACK_MAX_ABS_THRESHOLD
+ ):
+ raise ValueError("independent dense RHT reference contract drifted")
+ independent_passed = (
+ signs_exact
+ and encode_difference <= INDEPENDENT_ENCODE_MAX_ABS_THRESHOLD
+ and independent_pack_difference <= INDEPENDENT_PACK_MAX_ABS_THRESHOLD
+ )
+ if recorded_passed is not independent_passed:
+ raise ValueError(
+ "independent dense RHT passed flag contradicts its component conditions"
+ )
+ return {
+ "production_passed": production_passed,
+ "independent_passed": independent_passed,
+ "inverse_relative_l2": inverse,
+ "encode_max_abs_difference": encode_difference,
+ "physical_pack_max_abs_difference": independent_pack_difference,
+ }
+
+
+def audit_unit_evidence(unit_evidence: Mapping[str, Any]) -> dict[str, Any]:
+ audit = validate_unit_evidence_schema(unit_evidence)
+ if audit["production_passed"] is not True:
+ raise ValueError("right-RHT production self-check did not pass")
+ if audit["independent_passed"] is not True:
+ raise ValueError("independent dense RHT reference did not pass")
+ return {
+ "passed": True,
+ "inverse_relative_l2": audit["inverse_relative_l2"],
+ "maximum_inverse_relative_l2": MAX_RHT_INVERSE_RELATIVE_L2,
+ "physical_pack_matches_transformed_qdq": True,
+ "sign_schedule_sha256": EXPECTED_SIGN_SCHEDULE_SHA256,
+ "independent_dense_reference_passed": True,
+ "independent_encode_max_abs_difference": audit[
+ "encode_max_abs_difference"
+ ],
+ "independent_pack_max_abs_difference": audit[
+ "physical_pack_max_abs_difference"
+ ],
+ }
+
+
+def evaluate_stage_b_integrity(
+ *,
+ per_task: Mapping[str, Sequence[Mapping[str, Any]]],
+ per_task_full_code: Mapping[str, Sequence[Mapping[str, Any]]],
+ per_task_token_traces: Mapping[str, Sequence[Mapping[str, Any]]],
+ per_task_full_code_token_traces: Mapping[
+ str,
+ Sequence[Mapping[str, Any]],
+ ],
+ aggregates: Mapping[str, Mapping[str, Any]],
+ aggregates_full_code: Mapping[str, Mapping[str, Any]],
+ storage: Mapping[str, Mapping[str, Any]],
+ selector_diagnostics: Mapping[str, Sequence[Mapping[str, Any]]],
+ per_task_state_errors: Mapping[str, Sequence[Mapping[str, Any]]],
+ per_task_reference_aligned_state_errors: Mapping[
+ str,
+ Sequence[Mapping[str, Any]],
+ ],
+ task_records: Sequence[Mapping[str, Any]],
+ unit_evidence: Mapping[str, Any],
+ integrity: Mapping[str, Any],
+) -> dict[str, Any]:
+ """Machine-check all Stage-A integrity conditions on the 32-task run."""
+
+ normalized_aligned: dict[str, list[dict[str, float | int | bool]]] | None = None
+ normalized_full: dict[str, list[dict[str, float | int | bool]]] | None = None
+
+ def provenance_check() -> dict[str, Any]:
+ required_true = (
+ "repository_clean_at_start",
+ "repository_clean_at_end",
+ "repository_commit_stable",
+ "source_hashes_stable",
+ "stage_a_artifact_committed_authenticated_and_passed",
+ "identity_artifact_committed_and_authenticated",
+ "identity_authenticated_before_model_weights",
+ "identity_row_plan_authenticated",
+ "identity_source_freeze_matches_current_bytes",
+ "imported_modules_resolved_to_authenticated_repository",
+ "runtime_environment_authenticated_before_dataset_access",
+ )
+ if any(integrity.get(field) is not True for field in required_true):
+ raise ValueError("Stage-B provenance prerequisites did not all pass")
+ if (
+ integrity.get(
+ "protected_window_8_16_content_selected_retained_canonicalized_"
+ "formatted_tokenized_passed_to_model_or_evaluated"
+ )
+ is not False
+ ):
+ raise ValueError(
+ "protected ranked window [8, 16) entered an application content set"
+ )
+ return {
+ "passed": True,
+ **{field: True for field in required_true},
+ (
+ "protected_window_8_16_content_selected_retained_canonicalized_"
+ "formatted_tokenized_passed_to_model_or_evaluated"
+ ): False,
+ }
+
+ def metric_check() -> dict[str, Any]:
+ nonlocal normalized_aligned, normalized_full
+ normalized_aligned = _normalize_metric_rows(
+ per_task,
+ task_records=task_records,
+ token_field="aligned_scored_tokens",
+ context="aligned",
+ )
+ normalized_full = _normalize_metric_rows(
+ per_task_full_code,
+ task_records=task_records,
+ token_field="full_code_scored_tokens",
+ context="full-code",
+ )
+ expected_aligned = _expected_aggregates(normalized_aligned)
+ expected_full = _expected_aggregates(normalized_full)
+ _audit_aggregate_match(aggregates, expected_aligned, context="aligned")
+ _audit_aggregate_match(
+ aggregates_full_code,
+ expected_full,
+ context="full-code",
+ )
+ aligned_trace_audit = audit_metric_traces(
+ per_task_token_traces,
+ per_task,
+ task_records=task_records,
+ token_field="aligned_scored_tokens",
+ context="aligned",
+ )
+ full_trace_audit = audit_metric_traces(
+ per_task_full_code_token_traces,
+ per_task_full_code,
+ task_records=task_records,
+ token_field="full_code_scored_tokens",
+ context="full-code",
+ )
+ return {
+ "passed": True,
+ "task_count": STAGE_B_LIMIT,
+ "methods": list(METHODS),
+ "all_logits_and_metrics_finite": True,
+ "task_macro_aggregates_recomputed": True,
+ "aligned_token_trace_audit": aligned_trace_audit,
+ "full_code_token_trace_audit": full_trace_audit,
+ }
+
+ checks = {
+ "committed_clean_stable_provenance": _gate_check(provenance_check),
+ "finite_exact_task_macro_metrics": _gate_check(metric_check),
+ "exact_physical_storage": _gate_check(lambda: audit_storage(storage)),
+ "exact_quotas_and_query_handshakes": _gate_check(
+ lambda: audit_task_selector_diagnostics(
+ selector_diagnostics,
+ task_records=task_records,
+ )
+ ),
+ "complete_matched_state_error_coverage": _gate_check(
+ lambda: audit_state_errors(
+ per_task_state_errors,
+ task_records=task_records,
+ selector_diagnostics=selector_diagnostics,
+ )
+ ),
+ "authenticated_reference_aligned_state_secondary": _gate_check(
+ lambda: audit_reference_aligned_state_errors(
+ per_task_reference_aligned_state_errors,
+ task_records=task_records,
+ )
+ ),
+ "deterministic_rht_codec_self_check": _gate_check(
+ lambda: audit_unit_evidence(unit_evidence)
+ ),
+ }
+ return {
+ "schema": "recurquant.experiment009-stage-b-integrity.v1",
+ "passed": all(check.get("passed") is True for check in checks.values()),
+ "checks": checks,
+ }
+
+
+def _validate_bootstrap(
+ bootstrap: Mapping[str, Any],
+ *,
+ cqer_values: Sequence[float],
+ rht_values: Sequence[float],
+) -> dict[str, Any]:
+ recomputed = paired_bootstrap_mean_improvement(
+ list(cqer_values),
+ list(rht_values),
+ samples=BOOTSTRAP_SAMPLES,
+ seed=SEED,
+ )
+ if dict(bootstrap) != recomputed:
+ raise ValueError("paired bootstrap differs from the frozen recomputation")
+ if (
+ bootstrap.get("paired_examples") != STAGE_B_LIMIT
+ or bootstrap.get("bootstrap_samples") != BOOTSTRAP_SAMPLES
+ or bootstrap.get("seed") != SEED
+ or bootstrap.get("confidence") != 0.95
+ ):
+ raise ValueError("paired bootstrap contract drifted")
+ interval = bootstrap.get("confidence_interval")
+ if not isinstance(interval, list) or len(interval) != 2:
+ raise ValueError("paired bootstrap confidence interval is invalid")
+ lower = _finite_float(interval[0], context="paired bootstrap lower bound")
+ upper = _finite_float(interval[1], context="paired bootstrap upper bound")
+ return {
+ "passed": lower > 0,
+ "lower": lower,
+ "upper": upper,
+ "confidence": 0.95,
+ "bootstrap_samples": BOOTSTRAP_SAMPLES,
+ "seed": SEED,
+ }
+
+
+def evaluate_stage_b_gate(
+ *,
+ aggregates: Mapping[str, Mapping[str, Any]],
+ per_task: Mapping[str, Sequence[Mapping[str, Any]]],
+ paired_bootstrap: Mapping[str, Any],
+ aggregate_state_error: Mapping[str, Mapping[str, Any]],
+ per_task_state_errors: Mapping[str, Sequence[Mapping[str, Any]]],
+ selector_diagnostics: Mapping[str, Sequence[Mapping[str, Any]]],
+ task_records: Sequence[Mapping[str, Any]],
+ integrity_gate: Mapping[str, Any],
+) -> dict[str, Any]:
+ """Recompute and evaluate exactly the eight frozen Stage-B checks."""
+
+ if set(aggregates) != set(METHODS) or set(per_task) != set(METHODS):
+ raise ValueError("Stage-B gate requires exactly the four frozen methods")
+ if len(per_task[CQER_METHOD]) != STAGE_B_LIMIT or len(per_task[RHT_METHOD]) != STAGE_B_LIMIT:
+ raise ValueError("Stage-B gate requires exactly 32 paired task rows")
+
+ normalized = _normalize_metric_rows(
+ per_task,
+ task_records=task_records,
+ token_field="aligned_scored_tokens",
+ context="Stage-B advancement",
+ )
+ expected_aggregates = _expected_aggregates(normalized)
+ _audit_aggregate_match(
+ aggregates,
+ expected_aggregates,
+ context="Stage-B advancement",
+ )
+ audit_state_errors(
+ per_task_state_errors,
+ task_records=task_records,
+ selector_diagnostics=selector_diagnostics,
+ )
+ expected_state_error = aggregate_state_errors(per_task_state_errors)
+ if {
+ method: dict(_mapping(record, context=f"{method} state aggregate"))
+ for method, record in aggregate_state_error.items()
+ } != expected_state_error:
+ raise ValueError(
+ "recorded aggregate state error differs from raw state-error recomputation"
+ )
+
+ cqer = _mapping(aggregates[CQER_METHOD], context="CQER aggregate")
+ rht = _mapping(aggregates[RHT_METHOD], context="RHT aggregate")
+ cqer_values = [
+ _finite_float(row.get("delta_nll"), context="CQER task delta NLL")
+ for row in per_task[CQER_METHOD]
+ ]
+ rht_values = [
+ _finite_float(row.get("delta_nll"), context="RHT task delta NLL")
+ for row in per_task[RHT_METHOD]
+ ]
+
+ def nll_reduction_check() -> dict[str, Any]:
+ baseline = _finite_float(cqer.get("macro_delta_nll"), context="CQER macro excess NLL")
+ candidate = _finite_float(rht.get("macro_delta_nll"), context="RHT macro excess NLL")
+ if baseline <= 0:
+ raise ValueError("CQER macro excess NLL must be positive for the relative gate")
+ reduction = (baseline - candidate) / baseline
+ return {
+ "passed": reduction >= MIN_DELTA_NLL_REDUCTION,
+ "cqer_macro_delta_nll": baseline,
+ "rht_macro_delta_nll": candidate,
+ "relative_reduction": reduction,
+ "minimum_relative_reduction": MIN_DELTA_NLL_REDUCTION,
+ }
+
+ def win_check() -> dict[str, Any]:
+ wins = sum(
+ candidate < baseline
+ for baseline, candidate in zip(cqer_values, rht_values, strict=True)
+ )
+ ties = sum(
+ candidate == baseline
+ for baseline, candidate in zip(cqer_values, rht_values, strict=True)
+ )
+ return {
+ "passed": wins >= MIN_TASK_WINS,
+ "rht_wins": wins,
+ "ties": ties,
+ "task_count": STAGE_B_LIMIT,
+ "minimum_wins": MIN_TASK_WINS,
+ }
+
+ def bootstrap_check() -> dict[str, Any]:
+ cqer_macro = _finite_float(
+ cqer.get("macro_delta_nll"),
+ context="CQER macro excess NLL for paired bootstrap",
+ )
+ if cqer_macro <= 0:
+ raise ValueError(
+ "CQER macro excess NLL must be positive for the paired advancement gate"
+ )
+ return _validate_bootstrap(
+ paired_bootstrap,
+ cqer_values=cqer_values,
+ rht_values=rht_values,
+ )
+
+ def mean_kl_check() -> dict[str, Any]:
+ baseline = _finite_float(cqer.get("macro_mean_kl"), context="CQER macro mean KL")
+ candidate = _finite_float(rht.get("macro_mean_kl"), context="RHT macro mean KL")
+ return {
+ "passed": candidate < baseline,
+ "cqer_macro_mean_kl": baseline,
+ "rht_macro_mean_kl": candidate,
+ }
+
+ def cvar_check() -> dict[str, Any]:
+ baseline = _finite_float(cqer.get("macro_cvar95_kl"), context="CQER macro CVaR95 KL")
+ candidate = _finite_float(rht.get("macro_cvar95_kl"), context="RHT macro CVaR95 KL")
+ return {
+ "passed": candidate <= baseline,
+ "cqer_macro_cvar95_kl": baseline,
+ "rht_macro_cvar95_kl": candidate,
+ }
+
+ def top1_check() -> dict[str, Any]:
+ baseline = _finite_float(
+ cqer.get("macro_top1_agreement"),
+ context="CQER macro top-1 agreement",
+ )
+ candidate = _finite_float(
+ rht.get("macro_top1_agreement"),
+ context="RHT macro top-1 agreement",
+ )
+ disadvantage = baseline - candidate
+ return {
+ "passed": disadvantage <= MAX_TOP1_DISADVANTAGE,
+ "cqer_macro_top1_agreement": baseline,
+ "rht_macro_top1_agreement": candidate,
+ "observed_disadvantage": disadvantage,
+ "maximum_disadvantage": MAX_TOP1_DISADVANTAGE,
+ }
+
+ def tail_task_check() -> dict[str, Any]:
+ disadvantages = [
+ {
+ "task_id": int(cqer_row["task_id"]),
+ "rht_minus_cqer_delta_nll": candidate - baseline,
+ }
+ for cqer_row, baseline, candidate in zip(
+ per_task[CQER_METHOD],
+ cqer_values,
+ rht_values,
+ strict=True,
+ )
+ ]
+ worst = max(disadvantages, key=lambda record: record["rht_minus_cqer_delta_nll"])
+ return {
+ "passed": worst["rht_minus_cqer_delta_nll"] <= MAX_TASK_NLL_DISADVANTAGE,
+ "worst_task_id": worst["task_id"],
+ "maximum_observed_disadvantage": worst["rht_minus_cqer_delta_nll"],
+ "maximum_allowed_disadvantage": MAX_TASK_NLL_DISADVANTAGE,
+ "per_task": disadvantages,
+ }
+
+ def state_sse_check() -> dict[str, Any]:
+ if set(aggregate_state_error) != set(QUERY_METHODS):
+ raise ValueError("aggregate state error must contain CQER and RHT-CQER")
+ baseline = _finite_float(
+ aggregate_state_error[CQER_METHOD].get("aggregate_state_sse"),
+ context="CQER aggregate state SSE",
+ )
+ candidate = _finite_float(
+ aggregate_state_error[RHT_METHOD].get("aggregate_state_sse"),
+ context="RHT aggregate state SSE",
+ )
+ if baseline <= 0 or candidate < 0:
+ raise ValueError("state SSE baseline must be positive and candidate non-negative")
+ reduction = (baseline - candidate) / baseline
+ return {
+ "passed": reduction >= MIN_STATE_SSE_REDUCTION,
+ "cqer_state_sse": baseline,
+ "rht_state_sse": candidate,
+ "relative_reduction": reduction,
+ "minimum_relative_reduction": MIN_STATE_SSE_REDUCTION,
+ }
+
+ advancement_checks = {
+ "macro_excess_nll_relative_reduction": _gate_check(nll_reduction_check),
+ "paired_95pct_lower_bound_above_zero": _gate_check(bootstrap_check),
+ "at_least_20_task_level_excess_nll_wins": _gate_check(win_check),
+ "lower_macro_mean_kl": _gate_check(mean_kl_check),
+ "macro_cvar95_kl_not_higher": _gate_check(cvar_check),
+ "macro_top1_disadvantage_at_most_0_005": _gate_check(top1_check),
+ "maximum_task_excess_nll_disadvantage_at_most_0_25": _gate_check(
+ tail_task_check
+ ),
+ "aggregate_state_sse_relative_reduction": _gate_check(state_sse_check),
+ }
+ if len(advancement_checks) != 8:
+ raise AssertionError("Experiment 009 Stage-B must have exactly eight advancement checks")
+ integrity_passed = integrity_gate.get("passed") is True
+ return {
+ "schema": "recurquant.experiment009-stage-b-gate.v1",
+ "applicable": True,
+ "passed": (
+ integrity_passed
+ and all(check.get("passed") is True for check in advancement_checks.values())
+ ),
+ "integrity_passed": integrity_passed,
+ "advancement_checks": advancement_checks,
+ "thresholds": {
+ "minimum_macro_excess_nll_relative_reduction": MIN_DELTA_NLL_REDUCTION,
+ "paired_confidence": 0.95,
+ "paired_lower_bound_strictly_positive": True,
+ "minimum_task_wins": MIN_TASK_WINS,
+ "macro_mean_kl_strictly_lower": True,
+ "macro_cvar95_kl_not_higher": True,
+ "maximum_macro_top1_disadvantage": MAX_TOP1_DISADVANTAGE,
+ "maximum_per_task_excess_nll_disadvantage": MAX_TASK_NLL_DISADVANTAGE,
+ "minimum_aggregate_state_sse_relative_reduction": MIN_STATE_SSE_REDUCTION,
+ "bootstrap_samples": BOOTSTRAP_SAMPLES,
+ "seed": SEED,
+ },
+ }
+
+
+def _require_exact_fields(
+ value: Mapping[str, Any],
+ expected: set[str],
+ *,
+ context: str,
+) -> None:
+ if set(value) != expected:
+ raise ValueError(f"{context} fields drifted")
+
+
+def _require_sha256(value: object, *, context: str) -> str:
+ if (
+ not isinstance(value, str)
+ or len(value) != 64
+ or value != value.lower()
+ or any(character not in string.hexdigits for character in value)
+ ):
+ raise ValueError(f"{context} must be a lowercase SHA-256")
+ return value
+
+
+def _require_git_sha(value: object, *, context: str) -> str:
+ if (
+ not isinstance(value, str)
+ or len(value) != 40
+ or value != value.lower()
+ or any(character not in string.hexdigits for character in value)
+ ):
+ raise ValueError(f"{context} must be a full lowercase Git SHA")
+ return value
+
+
+def _require_safe_repository_path(value: object, *, context: str) -> str:
+ if not isinstance(value, str) or not value or "\\" in value:
+ raise ValueError(f"{context} must be a non-empty POSIX repository path")
+ path = PurePosixPath(value)
+ if (
+ path.is_absolute()
+ or str(path) != value
+ or any(part in {"", ".", ".."} for part in path.parts)
+ or (path.parts and ":" in path.parts[0])
+ ):
+ raise ValueError(f"{context} must be a normalized repository-relative path")
+ return value
+
+
+def _validate_result_protocol(evidence: Mapping[str, Any]) -> None:
+ protocol = _mapping(evidence.get("protocol"), context="Stage-B result protocol")
+ expected = {
+ "name": "Experiment 009 Stage B",
+ "ranked_window": [STAGE_B_OFFSET, STAGE_B_STOP],
+ "protected_ranked_window": list(PROTECTED_WINDOW),
+ "protected_window_application_content_intersection": False,
+ "methods_locked": True,
+ "thresholds_locked": True,
+ "bootstrap_samples": BOOTSTRAP_SAMPLES,
+ "bootstrap_seed": SEED,
+ }
+ if dict(protocol) != expected:
+ raise ValueError("Stage-B result protocol contract drifted")
+
+ metric_contract = _mapping(
+ evidence.get("metric_contract"),
+ context="Stage-B result metric contract",
+ )
+ if dict(metric_contract) != {
+ "primary": "task-macro aligned excess next-token NLL versus FP32 state",
+ "aligned_excludes": "prompt-to-first-code-token prediction",
+ "secondary": "task-macro full-code metrics",
+ "paired_bootstrap_samples": BOOTSTRAP_SAMPLES,
+ "paired_bootstrap_seed": SEED,
+ }:
+ raise ValueError("Stage-B result metric contract drifted")
+
+
+def _validate_result_prerequisites(
+ evidence: Mapping[str, Any],
+) -> dict[str, str]:
+ prerequisites = _mapping(
+ evidence.get("prerequisite_artifacts"),
+ context="Stage-B result prerequisites",
+ )
+ _require_exact_fields(
+ prerequisites,
+ {
+ "stage_a",
+ "stage_b_identity",
+ "committed_row_plan",
+ "identity_source_freeze",
+ },
+ context="Stage-B result prerequisites",
+ )
+
+ stage_a = _mapping(prerequisites["stage_a"], context="Stage-A prerequisite")
+ _require_exact_fields(
+ stage_a,
+ {
+ "path",
+ "sha256",
+ "git_blob_sha256",
+ "artifact_sha256",
+ "canonical_evidence_sha256",
+ "implementation_commit",
+ "gate_recomputed_and_passed",
+ "artifact_kind",
+ "historical_path_privacy_limitation",
+ },
+ context="Stage-A prerequisite",
+ )
+ if (
+ _require_safe_repository_path(
+ stage_a.get("path"),
+ context="Stage-A prerequisite path",
+ )
+ != identity_resolver.STAGE_A_ARTIFACT_RELATIVE_PATH
+ or stage_a.get("artifact_kind") != STAGE_A_ARTIFACT_KIND
+ or stage_a.get("sha256") != identity_resolver.STAGE_A_FILE_SHA256
+ or stage_a.get("git_blob_sha256") != identity_resolver.STAGE_A_FILE_SHA256
+ or stage_a.get("artifact_sha256") != identity_resolver.STAGE_A_FILE_SHA256
+ or stage_a.get("canonical_evidence_sha256")
+ != identity_resolver.STAGE_A_CANONICAL_EVIDENCE_SHA256
+ or stage_a.get("implementation_commit")
+ != identity_resolver.STAGE_A_IMPLEMENTATION_COMMIT
+ or stage_a.get("gate_recomputed_and_passed") != "true"
+ or stage_a.get("historical_path_privacy_limitation")
+ != STAGE_A_PATH_PRIVACY_LIMITATION
+ ):
+ raise ValueError("Stage-A prerequisite contract drifted")
+
+ identity = _mapping(
+ prerequisites["stage_b_identity"],
+ context="Stage-B identity prerequisite",
+ )
+ _require_exact_fields(
+ identity,
+ {
+ "path",
+ "sha256",
+ "git_blob_sha256",
+ "artifact_sha256",
+ "canonical_evidence_sha256",
+ "resolver_commit",
+ "artifact_kind",
+ },
+ context="Stage-B identity prerequisite",
+ )
+ identity_path = _require_safe_repository_path(
+ identity.get("path"),
+ context="Stage-B identity prerequisite path",
+ )
+ identity_file_sha = _require_sha256(
+ identity.get("sha256"),
+ context="Stage-B identity file",
+ )
+ if (
+ not identity_path.endswith(".json")
+ or identity.get("artifact_kind") != IDENTITY_ARTIFACT_KIND
+ or identity.get("git_blob_sha256") != identity_file_sha
+ or identity.get("artifact_sha256") != identity_file_sha
+ ):
+ raise ValueError("Stage-B identity prerequisite contract drifted")
+ _require_sha256(
+ identity.get("canonical_evidence_sha256"),
+ context="Stage-B identity canonical evidence",
+ )
+ _require_git_sha(
+ identity.get("resolver_commit"),
+ context="Stage-B identity resolver commit",
+ )
+
+ row_plan = _mapping(
+ prerequisites["committed_row_plan"],
+ context="Stage-B committed row-plan authentication",
+ )
+ _require_exact_fields(
+ row_plan,
+ {
+ "passed",
+ "canonical_plan_sha256",
+ "method",
+ "promoted_group_count",
+ "resident_bytes",
+ "selector_binding",
+ },
+ context="Stage-B committed row-plan authentication",
+ )
+ selectors = _mapping(
+ row_plan.get("selector_binding"),
+ context="Stage-B row-plan selector binding",
+ )
+ expected_selectors = {
+ "selector_file_sha256": identity_resolver.SELECTOR_FILE_SHA256,
+ "selector_canonical_evidence_sha256": (
+ identity_resolver.SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ "loss_selector_file_sha256": identity_resolver.LOSS_SELECTOR_FILE_SHA256,
+ "loss_selector_canonical_evidence_sha256": (
+ identity_resolver.LOSS_SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ }
+ if (
+ row_plan.get("passed") is not True
+ or row_plan.get("method") != TARGET_FISHER_SCORE
+ or row_plan.get("promoted_group_count") != TARGET_PROMOTED_ROWS
+ or row_plan.get("resident_bytes") != TARGET_PACKED_STATE_BYTES
+ or dict(selectors) != expected_selectors
+ ):
+ raise ValueError("Stage-B committed row-plan contract drifted")
+ _require_sha256(
+ row_plan.get("canonical_plan_sha256"),
+ context="Stage-B committed row plan",
+ )
+
+ source_freeze = _mapping(
+ prerequisites["identity_source_freeze"],
+ context="Stage-B identity source freeze",
+ )
+ _require_exact_fields(
+ source_freeze,
+ {"passed", "path_count", "paths", "sha256"},
+ context="Stage-B identity source freeze",
+ )
+ paths = list(SOURCE_FILES)
+ hashes = _mapping(
+ source_freeze.get("sha256"),
+ context="Stage-B identity source-freeze hashes",
+ )
+ if (
+ source_freeze.get("passed") is not True
+ or source_freeze.get("path_count") != len(paths)
+ or source_freeze.get("paths") != paths
+ or set(hashes) != set(paths)
+ ):
+ raise ValueError("Stage-B identity source-freeze contract drifted")
+ for path in paths:
+ _require_safe_repository_path(path, context="Stage-B frozen source path")
+ _require_sha256(
+ hashes[path],
+ context=f"Stage-B frozen source {path}",
+ )
+ return dict(hashes)
+
+
+def _validate_identity_data_access(
+ value: object,
+ *,
+ ordered_ids: list[int],
+ source_rows: int,
+) -> dict[str, Any]:
+ access = _mapping(value, context="Stage-B identity data access")
+ _require_exact_fields(
+ access,
+ {
+ "transport_limitation",
+ "ranking_pass",
+ "target_load_pass",
+ "application_task_id_sets",
+ "protected_window_intersection",
+ },
+ context="Stage-B identity data access",
+ )
+ if access.get("transport_limitation") != DATA_ACCESS_TRANSPORT_LIMITATION:
+ raise ValueError("Stage-B identity transport limitation drifted")
+ ranking = _mapping(
+ access.get("ranking_pass"),
+ context="Stage-B identity ranking access",
+ )
+ if dict(ranking) != {
+ "transport_records_yielded": source_rows,
+ "task_id_fields_inspected": source_rows,
+ "non_task_id_fields_read_by_recurquant": 0,
+ "row_mappings_retained": 0,
+ }:
+ raise ValueError("Stage-B identity ranking access drifted")
+ target = _mapping(
+ access.get("target_load_pass"),
+ context="Stage-B identity target-load access",
+ )
+ target_yielded = _strict_int(
+ target.get("transport_records_yielded"),
+ context="Stage-B identity target-load records",
+ )
+ if target_yielded < STAGE_B_LIMIT or dict(target) != {
+ "transport_records_yielded": target_yielded,
+ "task_id_fields_inspected": target_yielded,
+ "non_target_content_fields_read_by_recurquant": 0,
+ "target_rows_retained_and_canonicalized": STAGE_B_LIMIT,
+ }:
+ raise ValueError("Stage-B identity target-load access drifted")
+ application_keys = {
+ "selected",
+ "retained",
+ "canonicalized",
+ "formatted",
+ "tokenized",
+ "passed_to_model",
+ "evaluated",
+ }
+ expected_sets = {
+ "selected": ordered_ids,
+ "retained": ordered_ids,
+ "canonicalized": ordered_ids,
+ "formatted": ordered_ids,
+ "tokenized": ordered_ids,
+ "passed_to_model": [],
+ "evaluated": [],
+ }
+ application_sets = _mapping(
+ access.get("application_task_id_sets"),
+ context="Stage-B identity application task sets",
+ )
+ if set(application_sets) != application_keys or dict(application_sets) != expected_sets:
+ raise ValueError("Stage-B identity application task sets drifted")
+ protected = _mapping(
+ access.get("protected_window_intersection"),
+ context="Stage-B identity protected-window intersection",
+ )
+ if set(protected) != application_keys or any(
+ item is not False for item in protected.values()
+ ):
+ raise ValueError("protected ranked window entered the identity access sets")
+ return dict(access)
+
+
+def _validate_result_identity_dataset(
+ identity_dataset: Mapping[str, Any],
+) -> tuple[tuple[dict[str, Any], ...], dict[str, Any]]:
+ expected_fields = {
+ "id",
+ "config",
+ "revision",
+ "phase",
+ "source_split",
+ "selection_namespace",
+ "formatter_version",
+ "selection_mode",
+ "selection_window",
+ "protected_window",
+ "ordered_task_ids",
+ "manifest",
+ "content_manifest_sha256",
+ "token_manifest_sha256",
+ "ordered_identity_sha256",
+ "tasks",
+ "totals",
+ "data_access",
+ }
+ _require_exact_fields(
+ identity_dataset,
+ expected_fields,
+ context="Stage-B result identity dataset",
+ )
+ expected_contract = {
+ "id": identity_resolver.MBPP_DATASET_ID,
+ "config": identity_resolver.MBPP_CONFIG,
+ "revision": identity_resolver.MBPP_REVISION,
+ "phase": "calibration",
+ "source_split": identity_resolver.mbpp_source_split("calibration"),
+ "selection_namespace": identity_resolver.MBPP_SELECTION_NAMESPACE,
+ "formatter_version": identity_resolver.MBPP_FORMATTER_VERSION,
+ "selection_mode": "task_id_ranking_then_exact_task_id_stream",
+ }
+ if any(identity_dataset.get(key) != value for key, value in expected_contract.items()):
+ raise ValueError("Stage-B result identity dataset contract drifted")
+ task_records = _identity_task_records({"dataset": identity_dataset})
+ ordered_ids = [int(record["task_id"]) for record in task_records]
+
+ manifest = _mapping(
+ identity_dataset.get("manifest"),
+ context="Stage-B result identity content manifest",
+ )
+ manifest_fields = {
+ "schema",
+ "dataset_id",
+ "config",
+ "revision",
+ "phase",
+ "source_split",
+ "selection_namespace",
+ "formatter_version",
+ "row_count",
+ "rows",
+ }
+ _require_exact_fields(
+ manifest,
+ manifest_fields,
+ context="Stage-B result identity content manifest",
+ )
+ expected_manifest_contract = {
+ "schema": identity_resolver.MBPP_MANIFEST_SCHEMA,
+ "dataset_id": identity_resolver.MBPP_DATASET_ID,
+ "config": identity_resolver.MBPP_CONFIG,
+ "revision": identity_resolver.MBPP_REVISION,
+ "phase": "calibration",
+ "source_split": identity_resolver.mbpp_source_split("calibration"),
+ "selection_namespace": identity_resolver.MBPP_SELECTION_NAMESPACE,
+ "formatter_version": identity_resolver.MBPP_FORMATTER_VERSION,
+ "row_count": STAGE_B_LIMIT,
+ }
+ if any(manifest.get(key) != value for key, value in expected_manifest_contract.items()):
+ raise ValueError("Stage-B result identity manifest contract drifted")
+ rows = manifest.get("rows")
+ if not isinstance(rows, list) or len(rows) != STAGE_B_LIMIT:
+ raise ValueError("Stage-B result identity manifest rows drifted")
+ expected_rows = [
+ {"task_id": int(record["task_id"]), "sha256": str(record["row_sha256"])}
+ for record in task_records
+ ]
+ if rows != expected_rows:
+ raise ValueError("Stage-B result identity manifest rows do not match tasks")
+ content_hash = _require_sha256(
+ identity_dataset.get("content_manifest_sha256"),
+ context="Stage-B result identity content manifest",
+ )
+ if mbpp_manifest_content_sha256(manifest) != content_hash:
+ raise ValueError("Stage-B result identity content-manifest hash drifted")
+ token_hash = _require_sha256(
+ identity_dataset.get("token_manifest_sha256"),
+ context="Stage-B result identity token manifest",
+ )
+ if identity_resolver.token_manifest_sha256(task_records) != token_hash:
+ raise ValueError("Stage-B result identity token-manifest hash drifted")
+ ordered_hash = _require_sha256(
+ identity_dataset.get("ordered_identity_sha256"),
+ context="Stage-B result ordered identity",
+ )
+ if (
+ identity_resolver.ordered_identity_sha256(
+ content_manifest_sha256=content_hash,
+ task_records=task_records,
+ )
+ != ordered_hash
+ ):
+ raise ValueError("Stage-B result ordered-identity hash drifted")
+
+ totals = _mapping(
+ identity_dataset.get("totals"),
+ context="Stage-B result identity totals",
+ )
+ source_rows = _strict_int(
+ totals.get("source_train_rows_seen_by_task_id_only"),
+ context="Stage-B result identity source row count",
+ )
+ if source_rows < identity_resolver.MBPP_CALIBRATION_SIZE or dict(totals) != {
+ "source_train_rows_seen_by_task_id_only": source_rows,
+ "retained_rows": STAGE_B_LIMIT,
+ "prompt_tokens": sum(int(record["prompt_tokens"]) for record in task_records),
+ "code_tokens": sum(int(record["code_tokens"]) for record in task_records),
+ "aligned_scored_tokens": sum(
+ int(record["aligned_scored_tokens"]) for record in task_records
+ ),
+ "full_code_scored_tokens": sum(
+ int(record["full_code_scored_tokens"]) for record in task_records
+ ),
+ }:
+ raise ValueError("Stage-B result identity totals drifted")
+ access = _validate_identity_data_access(
+ identity_dataset.get("data_access"),
+ ordered_ids=ordered_ids,
+ source_rows=source_rows,
+ )
+ return task_records, access
+
+
+def _validate_result_dataset(
+ evidence: Mapping[str, Any],
+) -> tuple[dict[str, Any], ...]:
+ dataset = _mapping(evidence.get("dataset"), context="Stage-B result dataset")
+ protected_field = PROTECTED_EVALUATION_FIELD
+ _require_exact_fields(
+ dataset,
+ {
+ "phase",
+ "selection_mode",
+ "identity",
+ "identity_validation",
+ "data_access",
+ "identity_authenticated_before_model_weights",
+ protected_field,
+ },
+ context="Stage-B result dataset",
+ )
+ if (
+ dataset.get("phase") != "calibration"
+ or dataset.get("selection_mode")
+ != "committed_exact_task_ids_from_ranked_window_32_64"
+ or dataset.get("identity_authenticated_before_model_weights") is not True
+ or dataset.get(protected_field) is not False
+ ):
+ raise ValueError("Stage-B result dataset contract drifted")
+ identity_dataset = _mapping(
+ dataset.get("identity"),
+ context="Stage-B result identity dataset",
+ )
+ task_records, identity_access = _validate_result_identity_dataset(identity_dataset)
+ ordered_ids = [int(record["task_id"]) for record in task_records]
+
+ identity_validation = _mapping(
+ dataset.get("identity_validation"),
+ context="Stage-B result runtime identity validation",
+ )
+ expected_validation = {
+ "passed": True,
+ "authenticated_before_model_weights": True,
+ "ordered_task_ids": ordered_ids,
+ "content_manifest_sha256": identity_dataset["content_manifest_sha256"],
+ "token_manifest_sha256": identity_dataset["token_manifest_sha256"],
+ "ordered_identity_sha256": identity_dataset["ordered_identity_sha256"],
+ }
+ if dict(identity_validation) != expected_validation:
+ raise ValueError("Stage-B result runtime identity validation drifted")
+
+ access = _mapping(
+ dataset.get("data_access"),
+ context="Stage-B result evaluation data access",
+ )
+ _require_exact_fields(
+ access,
+ {
+ "transport_limitation",
+ "identity_resolution",
+ "evaluator_target_load",
+ "evaluator_application_task_id_sets",
+ "protected_window_intersection",
+ "non_target_source_records",
+ },
+ context="Stage-B result evaluation data access",
+ )
+ if (
+ access.get("transport_limitation") != DATA_ACCESS_TRANSPORT_LIMITATION
+ or access.get("identity_resolution") != identity_access
+ ):
+ raise ValueError("Stage-B result evaluation data-access binding drifted")
+ target = _mapping(
+ access.get("evaluator_target_load"),
+ context="Stage-B result evaluator target load",
+ )
+ target_yielded = _strict_int(
+ target.get("transport_records_yielded"),
+ context="Stage-B result evaluator target-load records",
+ )
+ if target_yielded < STAGE_B_LIMIT or dict(target) != {
+ "transport_records_yielded": target_yielded,
+ "task_id_fields_inspected": target_yielded,
+ "non_target_content_fields_read_by_recurquant": 0,
+ "target_rows_retained_and_canonicalized": STAGE_B_LIMIT,
+ }:
+ raise ValueError("Stage-B result evaluator target-load access drifted")
+ application_keys = {
+ "selected",
+ "retained",
+ "canonicalized",
+ "formatted",
+ "tokenized",
+ "passed_to_model",
+ "evaluated",
+ }
+ expected_sets = {key: ordered_ids for key in application_keys}
+ application_sets = _mapping(
+ access.get("evaluator_application_task_id_sets"),
+ context="Stage-B result evaluator application task sets",
+ )
+ if set(application_sets) != application_keys or dict(application_sets) != expected_sets:
+ raise ValueError("Stage-B result evaluator application task sets drifted")
+ protected = _mapping(
+ access.get("protected_window_intersection"),
+ context="Stage-B result protected-window intersection",
+ )
+ if set(protected) != application_keys or any(
+ item is not False for item in protected.values()
+ ):
+ raise ValueError("protected ranked window entered evaluator application sets")
+ if access.get("non_target_source_records") != {
+ "recurquant_fields_inspected": ["task_id"],
+ "content_retained_canonicalized_formatted_tokenized_or_evaluated": False,
+ }:
+ raise ValueError("Stage-B result non-target access contract drifted")
+ return task_records
+
+
+def _validate_result_runtime_and_model(evidence: Mapping[str, Any]) -> None:
+ runtime = _mapping(
+ evidence.get("runtime_environment"),
+ context="Stage-B result authenticated runtime",
+ )
+ local_files_only = runtime.get("local_files_only")
+ if not isinstance(local_files_only, bool):
+ raise ValueError("Stage-B result local_files_only must be boolean")
+ python_version = ".".join(
+ str(component) for component in identity_resolver.STAGE_A_PYTHON_VERSION
+ )
+ expected_runtime = {
+ "schema": identity_resolver.RUNTIME_ENVIRONMENT_SCHEMA,
+ "stage_a_binding": {
+ "artifact_kind": STAGE_A_ARTIFACT_KIND,
+ "file_sha256": identity_resolver.STAGE_A_FILE_SHA256,
+ "canonical_evidence_sha256": (
+ identity_resolver.STAGE_A_CANONICAL_EVIDENCE_SHA256
+ ),
+ },
+ "python": {
+ "major": identity_resolver.STAGE_A_PYTHON_VERSION[0],
+ "minor": identity_resolver.STAGE_A_PYTHON_VERSION[1],
+ "micro": identity_resolver.STAGE_A_PYTHON_VERSION[2],
+ "version": python_version,
+ },
+ "packages": dict(identity_resolver.STAGE_A_PACKAGE_VERSIONS),
+ "cuda": dict(identity_resolver.STAGE_A_CUDA_CONTRACT),
+ "runtime_matches_stage_a": True,
+ "local_files_only": local_files_only,
+ }
+ if dict(runtime) != expected_runtime:
+ raise ValueError("Stage-B result authenticated runtime contract drifted")
+
+ model = _mapping(evidence.get("model"), context="Stage-B result model")
+ if dict(model) != {
+ "id": identity_resolver.MODEL_ID,
+ "revision": identity_resolver.MODEL_REVISION,
+ "dtype": "torch.bfloat16",
+ "device": "cuda",
+ }:
+ raise ValueError("Stage-B result model contract drifted")
+
+ environment = _mapping(
+ evidence.get("environment"),
+ context="Stage-B result observed environment",
+ )
+ _require_exact_fields(
+ environment,
+ {
+ "python",
+ "platform",
+ "packages",
+ "cuda_available",
+ "cuda_runtime",
+ "gpu",
+ },
+ context="Stage-B result observed environment",
+ )
+ observed_python = environment.get("python")
+ observed_platform = environment.get("platform")
+ if (
+ not isinstance(observed_python, str)
+ or observed_python.split(maxsplit=1)[0] != python_version
+ or not isinstance(observed_platform, str)
+ or not observed_platform
+ or environment.get("packages") != expected_runtime["packages"]
+ or environment.get("cuda_available") is not True
+ or environment.get("cuda_runtime")
+ != expected_runtime["cuda"]["runtime_version"]
+ or not isinstance(environment.get("gpu"), str)
+ or not environment.get("gpu")
+ ):
+ raise ValueError("Stage-B result observed environment drifted")
+
+
+def _validate_result_repository_and_sources(
+ evidence: Mapping[str, Any],
+ *,
+ frozen_source_hashes: Mapping[str, str],
+) -> None:
+ repository = _mapping(
+ evidence.get("repository"),
+ context="Stage-B result repository",
+ )
+ _require_exact_fields(
+ repository,
+ {"commit", "start", "end", "stable_commit"},
+ context="Stage-B result repository",
+ )
+ commit = _require_git_sha(
+ repository.get("commit"),
+ context="Stage-B result repository commit",
+ )
+ for name in ("start", "end"):
+ snapshot = _mapping(
+ repository.get(name),
+ context=f"Stage-B result repository {name}",
+ )
+ if dict(snapshot) != {
+ "commit": commit,
+ "worktree_clean": True,
+ "status": [],
+ }:
+ raise ValueError("Stage-B result repository was not clean and stable")
+ if repository.get("stable_commit") is not True:
+ raise ValueError("Stage-B result repository commit was not stable")
+
+ sources = _mapping(
+ evidence.get("source_files"),
+ context="Stage-B result source files",
+ )
+ _require_exact_fields(
+ sources,
+ {
+ "paths",
+ "sha256_start",
+ "sha256_end",
+ "stable",
+ "imported_module_paths",
+ },
+ context="Stage-B result source files",
+ )
+ paths = list(SOURCE_FILES)
+ start = _mapping(
+ sources.get("sha256_start"),
+ context="Stage-B result source hashes start",
+ )
+ end = _mapping(
+ sources.get("sha256_end"),
+ context="Stage-B result source hashes end",
+ )
+ imported = _mapping(
+ sources.get("imported_module_paths"),
+ context="Stage-B result imported module paths",
+ )
+ if (
+ sources.get("paths") != paths
+ or sources.get("stable") is not True
+ or dict(start) != dict(end)
+ or dict(start) != dict(frozen_source_hashes)
+ or set(start) != set(paths)
+ or dict(imported) != RESULT_IMPORTED_MODULE_PATHS
+ ):
+ raise ValueError("Stage-B result source-file authentication drifted")
+ for path in paths:
+ _require_safe_repository_path(path, context="Stage-B result source path")
+ _require_sha256(start[path], context=f"Stage-B result source {path}")
+ for name, path in imported.items():
+ _require_safe_repository_path(
+ path,
+ context=f"Stage-B result imported module {name}",
+ )
+ if path not in SOURCE_FILES:
+ raise ValueError("Stage-B result imported module is outside source freeze")
+
+
+def _validate_result_command(evidence: Mapping[str, Any]) -> None:
+ command = evidence.get("command_template")
+ if not isinstance(command, list):
+ raise ValueError("Stage-B result command template must be an array")
+ expected_prefix = [
+ "python",
+ "scripts/evaluate_rht_cqer_stage_b.py",
+ "--stage-a-artifact",
+ "",
+ "--identity-artifact",
+ "",
+ "--output",
+ "",
+ "--device",
+ ]
+ if (
+ command[: len(expected_prefix)] != expected_prefix
+ or len(command) not in {len(expected_prefix) + 1, len(expected_prefix) + 2}
+ or command[len(expected_prefix)] not in {"auto", "cuda"}
+ ):
+ raise ValueError("Stage-B result command template drifted")
+ suffix = command[len(expected_prefix) + 1 :]
+ runtime = _mapping(
+ evidence.get("runtime_environment"),
+ context="Stage-B result authenticated runtime",
+ )
+ expected_suffix = ["--local-files-only"] if runtime["local_files_only"] else []
+ if suffix != expected_suffix:
+ raise ValueError("Stage-B result command/runtime binding drifted")
+
+
+def validate_stage_b_result_evidence(
+ evidence: Mapping[str, Any],
+) -> dict[str, Any]:
+ """Recompute every semantic Stage-B result section from one evidence object."""
+
+ _require_exact_fields(
+ evidence,
+ RESULT_EVIDENCE_FIELDS,
+ context="Stage-B result evidence",
+ )
+ if (
+ evidence.get("schema_version") != 1
+ or evidence.get("artifact_kind") != ARTIFACT_KIND
+ or evidence.get("diagnostic_only") is not True
+ or evidence.get("claim_boundary") != RESULT_CLAIM_BOUNDARY
+ or evidence.get("methods") != list(METHODS)
+ ):
+ raise ValueError("Stage-B result schema or claim boundary drifted")
+ created_at = evidence.get("created_at_utc")
+ if not isinstance(created_at, str):
+ raise ValueError("Stage-B result creation time must be ISO-8601")
+ try:
+ parsed_created_at = datetime.fromisoformat(created_at)
+ except ValueError as error:
+ raise ValueError("Stage-B result creation time is not valid ISO-8601") from error
+ if (
+ parsed_created_at.tzinfo is None
+ or parsed_created_at.utcoffset() is None
+ or parsed_created_at.utcoffset().total_seconds() != 0
+ ):
+ raise ValueError("Stage-B result creation time must be UTC")
+
+ _validate_result_protocol(evidence)
+ frozen_source_hashes = _validate_result_prerequisites(evidence)
+ task_records = _validate_result_dataset(evidence)
+ _validate_result_runtime_and_model(evidence)
+ _validate_result_repository_and_sources(
+ evidence,
+ frozen_source_hashes=frozen_source_hashes,
+ )
+ _validate_result_command(evidence)
+
+ per_task = _mapping(
+ evidence.get("per_task"),
+ context="Stage-B result aligned per-task metrics",
+ )
+ per_task_full_code = _mapping(
+ evidence.get("per_task_full_code_secondary"),
+ context="Stage-B result full-code per-task metrics",
+ )
+ per_task_token_traces = _mapping(
+ evidence.get("per_task_token_primitives"),
+ context="Stage-B result aligned token primitives",
+ )
+ per_task_full_code_token_traces = _mapping(
+ evidence.get("per_task_full_code_token_primitives"),
+ context="Stage-B result full-code token primitives",
+ )
+ aggregates = _mapping(
+ evidence.get("aggregates"),
+ context="Stage-B result aligned aggregates",
+ )
+ aggregates_full_code = _mapping(
+ evidence.get("aggregates_full_code_secondary"),
+ context="Stage-B result full-code aggregates",
+ )
+ storage_section = _mapping(
+ evidence.get("storage"),
+ context="Stage-B result storage",
+ )
+ _require_exact_fields(
+ storage_section,
+ {"fp32_reference_recurrent_state_bytes", "candidates"},
+ context="Stage-B result storage",
+ )
+ if (
+ _strict_int(
+ storage_section.get("fp32_reference_recurrent_state_bytes"),
+ context="Stage-B FP32 recurrent-state bytes",
+ )
+ <= 0
+ ):
+ raise ValueError("Stage-B FP32 recurrent-state bytes must be positive")
+ storage = _mapping(
+ storage_section.get("candidates"),
+ context="Stage-B result candidate storage",
+ )
+ selector_diagnostics = _mapping(
+ evidence.get("selector_diagnostics"),
+ context="Stage-B result selector diagnostics",
+ )
+ state_error = _mapping(
+ evidence.get("state_error"),
+ context="Stage-B result state error",
+ )
+ _require_exact_fields(
+ state_error,
+ {
+ "primary_gate_metric",
+ "aggregates",
+ "per_task",
+ "reference_aligned_secondary",
+ },
+ context="Stage-B result state error",
+ )
+ if state_error.get("primary_gate_metric") != PRIMARY_STATE_ERROR_METRIC:
+ raise ValueError("Stage-B primary state-error metric label drifted")
+ aggregate_state_error = _mapping(
+ state_error.get("aggregates"),
+ context="Stage-B result state-error aggregates",
+ )
+ per_task_state_errors = _mapping(
+ state_error.get("per_task"),
+ context="Stage-B result per-task state errors",
+ )
+ reference_aligned = _mapping(
+ state_error.get("reference_aligned_secondary"),
+ context="Stage-B result reference-aligned state error",
+ )
+ _require_exact_fields(
+ reference_aligned,
+ {"metric", "per_task"},
+ context="Stage-B result reference-aligned state error",
+ )
+ if (
+ reference_aligned.get("metric")
+ != REFERENCE_ALIGNED_STATE_ERROR_METRIC
+ ):
+ raise ValueError("Stage-B reference-aligned state-error metric label drifted")
+ per_task_reference_aligned = _mapping(
+ reference_aligned.get("per_task"),
+ context="Stage-B result per-task reference-aligned state error",
+ )
+ unit_evidence = _mapping(
+ evidence.get("unit_evidence"),
+ context="Stage-B result unit evidence",
+ )
+ validate_unit_evidence_schema(unit_evidence)
+ integrity_inputs = _mapping(
+ evidence.get("integrity_inputs"),
+ context="Stage-B result integrity inputs",
+ )
+ expected_integrity_input_fields = {
+ "repository_clean_at_start",
+ "repository_clean_at_end",
+ "repository_commit_stable",
+ "source_hashes_stable",
+ "stage_a_artifact_committed_authenticated_and_passed",
+ "identity_artifact_committed_and_authenticated",
+ "identity_authenticated_before_model_weights",
+ "identity_row_plan_authenticated",
+ "identity_source_freeze_matches_current_bytes",
+ "imported_modules_resolved_to_authenticated_repository",
+ "runtime_environment_authenticated_before_dataset_access",
+ PROTECTED_EVALUATION_FIELD,
+ }
+ if set(integrity_inputs) != expected_integrity_input_fields:
+ raise ValueError("Stage-B result integrity-input fields drifted")
+
+ recomputed_integrity = evaluate_stage_b_integrity(
+ per_task=per_task,
+ per_task_full_code=per_task_full_code,
+ per_task_token_traces=per_task_token_traces,
+ per_task_full_code_token_traces=per_task_full_code_token_traces,
+ aggregates=aggregates,
+ aggregates_full_code=aggregates_full_code,
+ storage=storage,
+ selector_diagnostics=selector_diagnostics,
+ per_task_state_errors=per_task_state_errors,
+ per_task_reference_aligned_state_errors=per_task_reference_aligned,
+ task_records=task_records,
+ unit_evidence=unit_evidence,
+ integrity=integrity_inputs,
+ )
+ recorded_integrity = _mapping(
+ evidence.get("stage_b_integrity"),
+ context="recorded Stage-B integrity",
+ )
+ if dict(recorded_integrity) != recomputed_integrity:
+ raise ValueError("recorded Stage-B integrity differs from recomputation")
+
+ bootstrap = _mapping(
+ evidence.get("paired_bootstrap_cqer_minus_rht_aligned_delta_nll"),
+ context="Stage-B result paired bootstrap",
+ )
+ recomputed_gate = evaluate_stage_b_gate(
+ aggregates=aggregates,
+ per_task=per_task,
+ paired_bootstrap=bootstrap,
+ aggregate_state_error=aggregate_state_error,
+ per_task_state_errors=per_task_state_errors,
+ selector_diagnostics=selector_diagnostics,
+ task_records=task_records,
+ integrity_gate=recomputed_integrity,
+ )
+ recorded_gate = _mapping(
+ evidence.get("stage_b_gate"),
+ context="recorded Stage-B gate",
+ )
+ if dict(recorded_gate) != recomputed_gate:
+ raise ValueError("recorded Stage-B gate differs from recomputation")
+ if len(recomputed_gate.get("advancement_checks", {})) != 8:
+ raise ValueError("Stage-B result does not contain exactly eight advancement gates")
+ return {
+ "passed": True,
+ "integrity_passed": recomputed_integrity.get("passed") is True,
+ "advancement_passed": recomputed_gate.get("passed") is True,
+ "task_count": STAGE_B_LIMIT,
+ "bootstrap_samples": BOOTSTRAP_SAMPLES,
+ "bootstrap_seed": SEED,
+ "advancement_check_count": 8,
+ }
+
+
+def load_and_validate_stage_b_result_artifact(
+ path: str | Path,
+) -> tuple[dict[str, Any], dict[str, Any]]:
+ """Load a canonical Stage-B artifact and re-run its complete semantic audit."""
+
+ artifact_path = Path(path)
+ raw = artifact_path.read_bytes()
+ verification = verify_evidence_artifact(artifact_path)
+ if verification.get("valid") is not True:
+ raise ValueError(
+ "Stage-B result artifact failed canonical verification: "
+ + "; ".join(str(error) for error in verification.get("errors", []))
+ )
+ try:
+ document = json.loads(raw.decode("utf-8"))
+ except (UnicodeDecodeError, json.JSONDecodeError) as error:
+ raise ValueError("Stage-B result artifact must be strict UTF-8 JSON") from error
+ if (
+ not isinstance(document, dict)
+ or set(document)
+ != {
+ "schema_version",
+ "artifact_kind",
+ "canonical_evidence_sha256",
+ "evidence",
+ }
+ or document.get("schema_version") != 1
+ or document.get("artifact_kind") != ARTIFACT_KIND
+ or not isinstance(document.get("evidence"), dict)
+ ):
+ raise ValueError("Stage-B result artifact wrapper schema drifted")
+ if raw != canonical_json_bytes(document):
+ raise ValueError("Stage-B result artifact is not canonically serialized")
+ evidence = dict(document["evidence"])
+ semantic = validate_stage_b_result_evidence(evidence)
+ return evidence, {
+ **semantic,
+ "artifact_sha256": _sha256_bytes(raw),
+ "canonical_evidence_sha256": document["canonical_evidence_sha256"],
+ "canonical_round_trip": True,
+ }
+
+
+def _record_reference_aligned_state_error(
+ reference_cache: object,
+ candidates: Mapping[str, object],
+ *,
+ write_ordinal: int,
+ records: dict[str, list[dict[str, Any]]],
+) -> None:
+ """Record candidate-state divergence from the matched FP32 cache trajectory."""
+
+ reference = {
+ (state.layer_index, state.state_index): state.tensor.detach()
+ for state in iter_recurrent_states(reference_cache)
+ }
+ expected_keys = {(layer, 0) for layer in FROZEN_LINEAR_LAYERS}
+ if set(reference) != expected_keys:
+ raise RuntimeError("FP32 recurrent-state geometry drifted")
+ for method, cache in candidates.items():
+ candidate = {
+ (state.layer_index, state.state_index): state.tensor.detach()
+ for state in iter_recurrent_states(cache)
+ }
+ if set(candidate) != expected_keys:
+ raise RuntimeError(f"{method} recurrent-state geometry differs from FP32")
+ layer_records: list[dict[str, Any]] = []
+ for layer in FROZEN_LINEAR_LAYERS:
+ key = (layer, 0)
+ reference_tensor = reference[key].to(torch.float64)
+ candidate_tensor = candidate[key].to(
+ device=reference_tensor.device,
+ dtype=torch.float64,
+ )
+ if candidate_tensor.shape != reference_tensor.shape:
+ raise RuntimeError(f"{method} layer {layer} recurrent-state shape drifted")
+ error = candidate_tensor - reference_tensor
+ state_sse = float(error.square().sum().item())
+ element_count = error.numel()
+ relative_l2 = torch.linalg.vector_norm(error) / torch.linalg.vector_norm(
+ reference_tensor
+ ).clamp_min(1e-12)
+ layer_records.append(
+ {
+ "layer_index": layer,
+ "state_index": 0,
+ "shape": list(error.shape),
+ "element_count": element_count,
+ "state_sse": state_sse,
+ "state_mse": state_sse / element_count,
+ "relative_l2_error": float(relative_l2.item()),
+ "max_absolute_error": float(error.abs().max().item()),
+ }
+ )
+ records[method].append(
+ {
+ "write_ordinal": write_ordinal,
+ "record_count": len(layer_records),
+ "element_count": sum(
+ int(record["element_count"]) for record in layer_records
+ ),
+ "state_sse": math.fsum(
+ float(record["state_sse"]) for record in layer_records
+ ),
+ "layers": layer_records,
+ }
+ )
+
+
+def _aggregate_reference_aligned_state_error(
+ records: Mapping[str, Sequence[Mapping[str, Any]]],
+) -> dict[str, dict[str, Any]]:
+ result: dict[str, dict[str, Any]] = {}
+ for method in QUERY_METHODS:
+ writes = records[method]
+ total_elements = sum(int(record["element_count"]) for record in writes)
+ total_sse = math.fsum(float(record["state_sse"]) for record in writes)
+ result[method] = {
+ "metric": "candidate_materialized_state_minus_matched_fp32_state",
+ "write_count": len(writes),
+ "record_count": sum(int(record["record_count"]) for record in writes),
+ "element_count": total_elements,
+ "aggregate_state_sse": total_sse,
+ "aggregate_state_mse": total_sse / total_elements,
+ "writes": list(writes),
+ }
+ return result
+
+
+def evaluate_task(
+ model: Qwen3_5ForCausalLM,
+ *,
+ prompt_ids: torch.Tensor,
+ code_ids: torch.Tensor,
+ plan: ExactBudgetRowPlan,
+) -> dict[str, Any]:
+ """Evaluate FP32 reference and all four frozen methods in one teacher-forced loop."""
+
+ reference_cache = DynamicCache(config=model.config)
+ static = create_qwen35_exact_budget_cache(model, plan=plan)
+ adaptive = create_qwen35_adaptive_exact_budget_cache(model, plan=plan)
+ cqer = create_qwen35_query_ema_exact_budget_cache(
+ model,
+ plan=plan,
+ record_evidence=True,
+ )
+ rht = create_qwen35_right_rht_query_ema_exact_budget_cache(
+ model,
+ plan=plan,
+ record_evidence=True,
+ )
+ caches = {
+ STATIC_METHOD: static,
+ ADAPTIVE_METHOD: adaptive,
+ CQER_METHOD: cqer,
+ RHT_METHOD: rht,
+ }
+ aligned = {name: pilot._TokenAccumulator.empty() for name in METHODS} # noqa: SLF001
+ full = {name: pilot._TokenAccumulator.empty() for name in METHODS} # noqa: SLF001
+ observer = Qwen35QueryEnergyObserver(model, caches=[cqer, rht])
+ reference_aligned_records = {method: [] for method in QUERY_METHODS}
+
+ with observer:
+ reference_output = model(
+ prompt_ids,
+ past_key_values=reference_cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ candidate_outputs = {
+ name: model(
+ prompt_ids,
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ for name, cache in caches.items()
+ }
+ _record_reference_aligned_state_error(
+ reference_cache,
+ {CQER_METHOD: cqer, RHT_METHOD: rht},
+ write_ordinal=0,
+ records=reference_aligned_records,
+ )
+ pilot._append_metrics( # noqa: SLF001
+ full,
+ reference_output.logits,
+ {name: output.logits for name, output in candidate_outputs.items()},
+ code_ids[:, :1],
+ )
+
+ for token_index in range(code_ids.shape[1] - 1):
+ input_token = code_ids[:, token_index : token_index + 1]
+ target_token = code_ids[:, token_index + 1 : token_index + 2]
+ reference_output = model(
+ input_token,
+ past_key_values=reference_cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ candidate_outputs = {
+ name: model(
+ input_token,
+ past_key_values=cache,
+ use_cache=True,
+ logits_to_keep=1,
+ )
+ for name, cache in caches.items()
+ }
+ _record_reference_aligned_state_error(
+ reference_cache,
+ {CQER_METHOD: cqer, RHT_METHOD: rht},
+ write_ordinal=token_index + 1,
+ records=reference_aligned_records,
+ )
+ logits = {name: output.logits for name, output in candidate_outputs.items()}
+ pilot._append_metrics( # noqa: SLF001
+ aligned,
+ reference_output.logits,
+ logits,
+ target_token,
+ )
+ pilot._append_metrics( # noqa: SLF001
+ full,
+ reference_output.logits,
+ logits,
+ target_token,
+ )
+
+ reference_bytes = sum(
+ state.tensor.numel() * state.tensor.element_size()
+ for state in iter_recurrent_states(reference_cache)
+ )
+ return {
+ "aligned_metrics": {name: values.summary() for name, values in aligned.items()},
+ "full_code_metrics": {name: values.summary() for name, values in full.items()},
+ "aligned_token_traces": {
+ name: _accumulator_trace(values) for name, values in aligned.items()
+ },
+ "full_code_token_traces": {
+ name: _accumulator_trace(values) for name, values in full.items()
+ },
+ "storage": {name: cache.storage_summary() for name, cache in caches.items()},
+ "selector_diagnostics": {
+ CQER_METHOD: cqer.query_ema_diagnostics(),
+ RHT_METHOD: rht.query_ema_diagnostics(),
+ },
+ "state_errors": {
+ CQER_METHOD: screen.aggregate_state_error_evidence(cqer.update_evidence),
+ RHT_METHOD: screen.aggregate_state_error_evidence(rht.update_evidence),
+ },
+ "reference_aligned_state_errors": _aggregate_reference_aligned_state_error(
+ reference_aligned_records
+ ),
+ "reference_recurrent_state_bytes": reference_bytes,
+ }
+
+
+def _package_versions() -> dict[str, str | None]:
+ versions: dict[str, str | None] = {}
+ for name in ("datasets", "numpy", "safetensors", "torch", "transformers"):
+ try:
+ versions[name] = importlib.metadata.version(name)
+ except importlib.metadata.PackageNotFoundError:
+ versions[name] = None
+ return versions
+
+
+def _atomic_write(path: Path, payload: bytes) -> None:
+ path.parent.mkdir(parents=True, exist_ok=True)
+ descriptor, temporary_name = tempfile.mkstemp(
+ prefix=f".{path.name}.",
+ suffix=".tmp",
+ dir=path.parent,
+ )
+ temporary = Path(temporary_name)
+ try:
+ with os.fdopen(descriptor, "wb") as handle:
+ handle.write(payload)
+ handle.flush()
+ os.fsync(handle.fileno())
+ os.replace(temporary, path)
+ finally:
+ if temporary.exists():
+ temporary.unlink()
+
+
+def _evaluation_data_access_record(
+ identity: Mapping[str, Any],
+ runtime_identity: Any,
+) -> dict[str, Any]:
+ """Record transport limits and exact application-level Stage-B content sets."""
+
+ selected = [int(task_id) for task_id in runtime_identity.ordered_task_ids]
+ if selected != list(identity["dataset"]["ordered_task_ids"]):
+ raise ValueError("runtime selected task IDs differ from the committed identity")
+ if runtime_identity.access_audit is None:
+ raise ValueError("runtime identity lacks task-ID stream access instrumentation")
+ runtime_before_weights = runtime_identity.access_audit.as_dict(
+ selected_task_ids=selected
+ )
+ protected = runtime_before_weights["protected_window_intersection"]
+ if any(value is not False for value in protected.values()):
+ raise ValueError("protected ranked window intersects a runtime application set")
+ return {
+ "transport_limitation": runtime_before_weights["transport_limitation"],
+ "identity_resolution": identity["dataset"]["data_access"],
+ "evaluator_target_load": runtime_before_weights["target_load_pass"],
+ "evaluator_application_task_id_sets": {
+ "selected": selected,
+ "retained": selected,
+ "canonicalized": selected,
+ "formatted": selected,
+ "tokenized": selected,
+ "passed_to_model": selected,
+ "evaluated": selected,
+ },
+ "protected_window_intersection": {
+ "selected": False,
+ "retained": False,
+ "canonicalized": False,
+ "formatted": False,
+ "tokenized": False,
+ "passed_to_model": False,
+ "evaluated": False,
+ },
+ "non_target_source_records": {
+ "recurquant_fields_inspected": ["task_id"],
+ "content_retained_canonicalized_formatted_tokenized_or_evaluated": False,
+ },
+ }
+
+
+def main(argv: Sequence[str] | None = None) -> int:
+ args = parse_args(argv)
+ repository_root = Path(__file__).resolve().parents[1]
+ repository_start = pilot.git_state()
+ pilot.validate_cora_development_repository_start(repository_start)
+ pilot.validate_heldout_output_path(args.output, repository_root)
+ source_hashes_start = pilot.source_file_hashes(repository_root, SOURCE_FILES)
+ imported_module_paths = authenticate_imported_module_paths(repository_root)
+
+ # Every prerequisite is authenticated before any dataset or tokenizer access.
+ stage_a, stage_a_hashes = authenticate_stage_a_prerequisite(
+ args.stage_a_artifact,
+ repository_root=repository_root,
+ )
+ identity, identity_hashes, task_records = authenticate_stage_b_identity(
+ args.identity_artifact,
+ repository_root=repository_root,
+ )
+ identity_source_freeze = authenticate_identity_source_freeze(
+ identity,
+ current_source_hashes=source_hashes_start,
+ )
+ plan, row_plan_authentication = plan_from_identity(identity, stage_a=stage_a)
+ authorization = _mapping(
+ identity.get("authorization"),
+ context="Stage-B identity authorization",
+ )
+ if (
+ authorization.get("stage_a_file_sha256")
+ != stage_a_hashes["artifact_sha256"]
+ or authorization.get("stage_a_canonical_evidence_sha256")
+ != stage_a_hashes["canonical_evidence_sha256"]
+ or authorization.get("stage_a_gate_passed") is not True
+ ):
+ raise ValueError("Stage-B identity does not authorize the authenticated Stage-A pass")
+ runtime_environment = authenticate_stage_b_runtime_environment(
+ stage_a,
+ identity,
+ local_files_only=bool(args.local_files_only),
+ )
+ # Exact committed IDs are the only application-level content selector.
+ authenticated_rows = identity_resolver.load_authenticated_stage_b_rows(identity)
+ task_ids = authenticated_rows.ordered_task_ids
+ if task_ids != tuple(int(record["task_id"]) for record in task_records):
+ raise RuntimeError("Stage-B task-ID loader returned an unauthorized identity")
+
+ device = pilot.select_device(args.device)
+ dtype = torch.bfloat16 if device.type == "cuda" else torch.float32
+ stage_a_model = _mapping(stage_a.get("model"), context="Stage-A model")
+ if stage_a_model.get("dtype") != str(dtype):
+ raise ValueError(
+ f"Stage-B dtype {dtype} differs from Stage-A dtype {stage_a_model.get('dtype')}"
+ )
+ model_id = str(identity["model_contract"]["id"])
+ revision = str(identity["model_contract"]["revision"])
+ tokenizer = AutoTokenizer.from_pretrained(
+ model_id,
+ revision=revision,
+ local_files_only=args.local_files_only,
+ trust_remote_code=False,
+ )
+ runtime_identity = identity_resolver.authenticate_stage_b_runtime_identity(
+ identity,
+ authenticated_rows,
+ tokenizer,
+ )
+ if runtime_identity.ordered_task_ids != task_ids:
+ raise RuntimeError("runtime token identity changed the committed task order")
+ encoded_tasks = tuple(
+ (
+ task.row,
+ torch.tensor([task.prompt_token_ids], dtype=torch.int64),
+ torch.tensor([task.code_token_ids], dtype=torch.int64),
+ )
+ for task in runtime_identity.tasks
+ )
+ identity_validation = {
+ "passed": True,
+ "authenticated_before_model_weights": True,
+ "ordered_task_ids": list(runtime_identity.ordered_task_ids),
+ "content_manifest_sha256": runtime_identity.content_manifest_sha256,
+ "token_manifest_sha256": runtime_identity.token_manifest_sha256,
+ "ordered_identity_sha256": runtime_identity.ordered_identity_sha256,
+ }
+ data_access = _evaluation_data_access_record(identity, runtime_identity)
+
+ # Identity, text, tokenizer output, and all hashes now match before weights.
+ unit_evidence = {
+ "production_self_check": screen.compute_unit_evidence(),
+ "independent_dense_reference": compute_independent_dense_rht_evidence(),
+ }
+ model = Qwen3_5ForCausalLM.from_pretrained(
+ model_id,
+ revision=revision,
+ dtype=dtype,
+ attn_implementation="eager",
+ low_cpu_mem_usage=True,
+ use_safetensors=True,
+ local_files_only=args.local_files_only,
+ ).to(device)
+ model.eval()
+
+ per_task = {method: [] for method in METHODS}
+ per_task_full_code = {method: [] for method in METHODS}
+ per_task_token_traces = {method: [] for method in METHODS}
+ per_task_full_code_token_traces = {method: [] for method in METHODS}
+ selector_diagnostics = {method: [] for method in QUERY_METHODS}
+ per_task_state_errors = {method: [] for method in QUERY_METHODS}
+ per_task_reference_aligned_state_errors = {
+ method: [] for method in QUERY_METHODS
+ }
+ storage_anchor: dict[str, dict[str, Any]] | None = None
+ reference_state_bytes: int | None = None
+
+ with torch.inference_mode():
+ for task_number, ((_row, prompt_cpu, code_cpu), identity_task) in enumerate(
+ zip(encoded_tasks, task_records, strict=True),
+ start=1,
+ ):
+ torch.manual_seed(SEED)
+ result = evaluate_task(
+ model,
+ prompt_ids=prompt_cpu.to(device),
+ code_ids=code_cpu.to(device),
+ plan=plan,
+ )
+ storage = result["storage"]
+ task_reference_bytes = int(result["reference_recurrent_state_bytes"])
+ if storage_anchor is None:
+ storage_anchor = storage
+ reference_state_bytes = task_reference_bytes
+ elif storage != storage_anchor or task_reference_bytes != reference_state_bytes:
+ raise RuntimeError("resident state storage changed between Stage-B tasks")
+ task_id = int(identity_task["task_id"])
+ for method in METHODS:
+ per_task[method].append(
+ {"task_id": task_id, **result["aligned_metrics"][method]}
+ )
+ per_task_full_code[method].append(
+ {"task_id": task_id, **result["full_code_metrics"][method]}
+ )
+ per_task_token_traces[method].append(
+ {"task_id": task_id, **result["aligned_token_traces"][method]}
+ )
+ per_task_full_code_token_traces[method].append(
+ {
+ "task_id": task_id,
+ **result["full_code_token_traces"][method],
+ }
+ )
+ for method in QUERY_METHODS:
+ selector_diagnostics[method].append(
+ {
+ "task_id": task_id,
+ "layers": result["selector_diagnostics"][method],
+ }
+ )
+ per_task_state_errors[method].append(
+ {
+ "task_id": task_id,
+ "state_error": result["state_errors"][method],
+ }
+ )
+ per_task_reference_aligned_state_errors[method].append(
+ {
+ "task_id": task_id,
+ "state_error": result["reference_aligned_state_errors"][
+ method
+ ],
+ }
+ )
+ print(
+ f"[{task_number}/{STAGE_B_LIMIT}] task={task_id} "
+ f"code_tokens={code_cpu.shape[1]}",
+ flush=True,
+ )
+
+ assert storage_anchor is not None
+ assert reference_state_bytes is not None
+ aggregates = pilot.aggregate_task_rows(per_task)
+ aggregates_full_code = pilot.aggregate_task_rows(per_task_full_code)
+ cqer_values = [float(row["delta_nll"]) for row in per_task[CQER_METHOD]]
+ rht_values = [float(row["delta_nll"]) for row in per_task[RHT_METHOD]]
+ bootstrap = paired_bootstrap_mean_improvement(
+ cqer_values,
+ rht_values,
+ samples=BOOTSTRAP_SAMPLES,
+ seed=SEED,
+ )
+ state_error_aggregates = aggregate_state_errors(per_task_state_errors)
+
+ repository_end = pilot.git_state()
+ source_hashes_end = pilot.source_file_hashes(repository_root, SOURCE_FILES)
+ pilot.validate_cora_development_repository_end(
+ start_repository=repository_start,
+ end_repository=repository_end,
+ start_source_hashes=source_hashes_start,
+ end_source_hashes=source_hashes_end,
+ )
+ integrity = {
+ "repository_clean_at_start": repository_start["worktree_clean"] is True,
+ "repository_clean_at_end": repository_end["worktree_clean"] is True,
+ "repository_commit_stable": repository_start["commit"] == repository_end["commit"],
+ "source_hashes_stable": source_hashes_start == source_hashes_end,
+ "stage_a_artifact_committed_authenticated_and_passed": True,
+ "identity_artifact_committed_and_authenticated": True,
+ "identity_authenticated_before_model_weights": (
+ identity_validation.get("passed") is True
+ ),
+ "identity_row_plan_authenticated": row_plan_authentication["passed"] is True,
+ "identity_source_freeze_matches_current_bytes": (
+ identity_source_freeze["passed"] is True
+ ),
+ "imported_modules_resolved_to_authenticated_repository": True,
+ "runtime_environment_authenticated_before_dataset_access": True,
+ (
+ "protected_window_8_16_content_selected_retained_canonicalized_"
+ "formatted_tokenized_passed_to_model_or_evaluated"
+ ): False,
+ }
+ integrity_gate = evaluate_stage_b_integrity(
+ per_task=per_task,
+ per_task_full_code=per_task_full_code,
+ per_task_token_traces=per_task_token_traces,
+ per_task_full_code_token_traces=per_task_full_code_token_traces,
+ aggregates=aggregates,
+ aggregates_full_code=aggregates_full_code,
+ storage=storage_anchor,
+ selector_diagnostics=selector_diagnostics,
+ per_task_state_errors=per_task_state_errors,
+ per_task_reference_aligned_state_errors=(
+ per_task_reference_aligned_state_errors
+ ),
+ task_records=task_records,
+ unit_evidence=unit_evidence,
+ integrity=integrity,
+ )
+ gate = evaluate_stage_b_gate(
+ aggregates=aggregates,
+ per_task=per_task,
+ paired_bootstrap=bootstrap,
+ aggregate_state_error=state_error_aggregates,
+ per_task_state_errors=per_task_state_errors,
+ selector_diagnostics=selector_diagnostics,
+ task_records=task_records,
+ integrity_gate=integrity_gate,
+ )
+
+ evidence: dict[str, Any] = {
+ "schema_version": 1,
+ "artifact_kind": ARTIFACT_KIND,
+ "diagnostic_only": True,
+ "claim_boundary": RESULT_CLAIM_BOUNDARY,
+ "created_at_utc": datetime.now(UTC).isoformat(),
+ "protocol": {
+ "name": "Experiment 009 Stage B",
+ "ranked_window": [STAGE_B_OFFSET, STAGE_B_STOP],
+ "protected_ranked_window": list(PROTECTED_WINDOW),
+ "protected_window_application_content_intersection": False,
+ "methods_locked": True,
+ "thresholds_locked": True,
+ "bootstrap_samples": BOOTSTRAP_SAMPLES,
+ "bootstrap_seed": SEED,
+ },
+ "prerequisite_artifacts": {
+ "stage_a": {
+ **stage_a_hashes,
+ "artifact_kind": stage_a["artifact_kind"],
+ "historical_path_privacy_limitation": STAGE_A_PATH_PRIVACY_LIMITATION,
+ },
+ "stage_b_identity": {
+ **identity_hashes,
+ "artifact_kind": IDENTITY_ARTIFACT_KIND,
+ },
+ "committed_row_plan": row_plan_authentication,
+ "identity_source_freeze": identity_source_freeze,
+ },
+ "model": {
+ "id": model_id,
+ "revision": revision,
+ "dtype": str(dtype),
+ "device": str(device),
+ },
+ "dataset": {
+ "phase": "calibration",
+ "selection_mode": "committed_exact_task_ids_from_ranked_window_32_64",
+ "identity": identity["dataset"],
+ "identity_validation": identity_validation,
+ "data_access": data_access,
+ "identity_authenticated_before_model_weights": True,
+ (
+ "protected_window_8_16_content_selected_retained_canonicalized_"
+ "formatted_tokenized_passed_to_model_or_evaluated"
+ ): False,
+ },
+ "metric_contract": {
+ "primary": "task-macro aligned excess next-token NLL versus FP32 state",
+ "aligned_excludes": "prompt-to-first-code-token prediction",
+ "secondary": "task-macro full-code metrics",
+ "paired_bootstrap_samples": BOOTSTRAP_SAMPLES,
+ "paired_bootstrap_seed": SEED,
+ },
+ "methods": list(METHODS),
+ "storage": {
+ "fp32_reference_recurrent_state_bytes": reference_state_bytes,
+ "candidates": storage_anchor,
+ },
+ "aggregates": aggregates,
+ "aggregates_full_code_secondary": aggregates_full_code,
+ "per_task": per_task,
+ "per_task_full_code_secondary": per_task_full_code,
+ "per_task_token_primitives": per_task_token_traces,
+ "per_task_full_code_token_primitives": per_task_full_code_token_traces,
+ "paired_bootstrap_cqer_minus_rht_aligned_delta_nll": bootstrap,
+ "selector_diagnostics": selector_diagnostics,
+ "state_error": {
+ "primary_gate_metric": PRIMARY_STATE_ERROR_METRIC,
+ "aggregates": state_error_aggregates,
+ "per_task": per_task_state_errors,
+ "reference_aligned_secondary": {
+ "metric": REFERENCE_ALIGNED_STATE_ERROR_METRIC,
+ "per_task": per_task_reference_aligned_state_errors,
+ },
+ },
+ "unit_evidence": unit_evidence,
+ "integrity_inputs": integrity,
+ "stage_b_integrity": integrity_gate,
+ "stage_b_gate": gate,
+ "runtime_environment": runtime_environment,
+ "environment": {
+ "python": sys.version,
+ "platform": platform.platform(),
+ "packages": _package_versions(),
+ "cuda_available": torch.cuda.is_available(),
+ "cuda_runtime": torch.version.cuda,
+ "gpu": torch.cuda.get_device_name(device) if device.type == "cuda" else None,
+ },
+ "repository": {
+ "commit": repository_end["commit"],
+ "start": repository_start,
+ "end": repository_end,
+ "stable_commit": repository_start["commit"] == repository_end["commit"],
+ },
+ "source_files": {
+ "paths": list(SOURCE_FILES),
+ "sha256_start": source_hashes_start,
+ "sha256_end": source_hashes_end,
+ "stable": source_hashes_start == source_hashes_end,
+ "imported_module_paths": imported_module_paths,
+ },
+ "command_template": [
+ "python",
+ "scripts/evaluate_rht_cqer_stage_b.py",
+ "--stage-a-artifact",
+ "",
+ "--identity-artifact",
+ "",
+ "--output",
+ "",
+ "--device",
+ args.device,
+ *(["--local-files-only"] if args.local_files_only else []),
+ ],
+ }
+ artifact = {
+ "schema_version": 1,
+ "artifact_kind": ARTIFACT_KIND,
+ "canonical_evidence_sha256": _sha256_bytes(canonical_json_bytes(evidence)),
+ "evidence": evidence,
+ }
+ payload = canonical_json_bytes(artifact)
+ _atomic_write(args.output, payload)
+ round_trip_evidence, semantic_verification = (
+ load_and_validate_stage_b_result_artifact(args.output)
+ )
+ if round_trip_evidence != evidence:
+ raise RuntimeError("written Stage-B evidence changed during canonical round-trip")
+
+ post_write_repository = pilot.git_state()
+ post_write_hashes = pilot.source_file_hashes(repository_root, SOURCE_FILES)
+ pilot.validate_cora_development_repository_end(
+ start_repository=repository_start,
+ end_repository=post_write_repository,
+ start_source_hashes=source_hashes_start,
+ end_source_hashes=post_write_hashes,
+ )
+ print(
+ json.dumps(
+ {
+ "output": str(args.output.resolve()),
+ "artifact_sha256": _sha256_bytes(payload),
+ "canonical_evidence_sha256": artifact["canonical_evidence_sha256"],
+ "stage_b_integrity": integrity_gate,
+ "stage_b_gate": gate,
+ "semantic_verification": semantic_verification,
+ "post_write_repository_authenticated": True,
+ },
+ indent=2,
+ sort_keys=True,
+ )
+ )
+ return 0 if gate["passed"] is True else 2
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/scripts/resolve_rht_cqer_stage_b_identity.py b/scripts/resolve_rht_cqer_stage_b_identity.py
new file mode 100644
index 0000000..41a42bd
--- /dev/null
+++ b/scripts/resolve_rht_cqer_stage_b_identity.py
@@ -0,0 +1,2148 @@
+#!/usr/bin/env python3
+"""Resolve the frozen Experiment 009 Stage-B identity without model weights.
+
+The only content retained, canonicalized, or tokenized by this program belongs
+to ranked MBPP calibration window ``[32, 64)``. The first streaming pass reads
+only ``task_id`` so the frozen ranking can be reconstructed. A second
+task-ID-only streaming pass retains exactly the 32 authorized rows.
+
+This module deliberately does not load model weights, run a forward pass, or
+compute a quality metric. Its authenticated output is an identity amendment,
+not experimental evidence.
+"""
+
+from __future__ import annotations
+
+import argparse
+import hashlib
+import importlib.metadata
+import json
+import os
+import string
+import subprocess
+import sys
+import tempfile
+from collections.abc import Callable, Iterable, Mapping, Sequence
+from dataclasses import dataclass
+from datetime import UTC, datetime
+from numbers import Integral
+from pathlib import Path
+from typing import Any, Final
+
+from recurquant.evidence import canonical_json_bytes, verify_evidence_artifact
+from recurquant.public_data import (
+ MBPP_CALIBRATION_SIZE,
+ MBPP_CONFIG,
+ MBPP_DATASET_ID,
+ MBPP_FORMATTER_VERSION,
+ MBPP_MANIFEST_SCHEMA,
+ MBPP_REVISION,
+ MBPP_SELECTION_NAMESPACE,
+ canonical_mbpp_row,
+ format_mbpp_example,
+ mbpp_calibration_key,
+ mbpp_manifest,
+ mbpp_manifest_content_sha256,
+ mbpp_row_sha256,
+ mbpp_source_split,
+)
+
+ARTIFACT_KIND: Final = "recurquant_rht_cqer32_stage_b_identity"
+IDENTITY_SCHEMA: Final = "recurquant.experiment009-stage-b-identity.v1"
+TOKEN_MANIFEST_SCHEMA: Final = "recurquant.experiment009-stage-b-token-manifest.v1"
+ORDERED_IDENTITY_SCHEMA: Final = "recurquant.experiment009-stage-b-ordered-identity.v1"
+CLAIM_BOUNDARY: Final = (
+ "This artifact fixes the Experiment 009 Stage-B data and tokenizer "
+ "identity before model weights or quality metrics are opened. It is "
+ "not performance, novelty, state-of-the-art, or breakthrough evidence."
+)
+
+STAGE_B_OFFSET: Final = 32
+STAGE_B_LIMIT: Final = 32
+STAGE_B_STOP: Final = STAGE_B_OFFSET + STAGE_B_LIMIT
+PROTECTED_WINDOW: Final = (8, 16)
+
+MODEL_ID: Final = "Qwen/Qwen3.5-0.8B-Base"
+MODEL_REVISION: Final = "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68"
+TOKENIZER_CLASS: Final = "Qwen2Tokenizer"
+TRANSFORMERS_VERSION: Final = "5.14.1"
+TOKEN_ID_HASH_SERIALIZATION: Final = "recurquant.canonical-json.v1"
+TEXT_HASH_ENCODING: Final = "utf-8"
+RUNTIME_ENVIRONMENT_SCHEMA: Final = (
+ "recurquant.experiment009-stage-b-runtime-environment.v1"
+)
+STAGE_A_PYTHON_VERSION: Final = (3, 11, 15)
+STAGE_A_PACKAGE_VERSIONS: Final = {
+ "datasets": "4.8.5",
+ "numpy": "2.4.6",
+ "safetensors": "0.8.0",
+ "torch": "2.11.0+cu128",
+ "transformers": TRANSFORMERS_VERSION,
+}
+STAGE_A_CUDA_CONTRACT: Final = {
+ "available": True,
+ "runtime_version": "12.8",
+ "device_type": "cuda",
+}
+
+STAGE_A_ARTIFACT_RELATIVE_PATH: Final = (
+ "evidence/experiment009-rht-cqer-stage-a-666-5be8d48.json"
+)
+STAGE_A_ARTIFACT_KIND: Final = "recurquant_rht_cqer32_stage_a_screen"
+STAGE_A_FILE_SHA256: Final = (
+ "98a432843dc438f2d5fde34f8704f154ebc3ee12c93ba7c469369acfedfb15b5"
+)
+STAGE_A_CANONICAL_EVIDENCE_SHA256: Final = (
+ "9e03a1e8cefb5801406a47a2e5e365686afb0a05e10e099a989cee616b505ed1"
+)
+STAGE_A_IMPLEMENTATION_COMMIT: Final = (
+ "5be8d48369d94081e55aa389c25f63c303c7b0dd"
+)
+STAGE_A_RESULT_COMMIT: Final = "1cbc20f6c493e79f771d047fc63e96a7464eacf4"
+ROW_PLAN_SCHEMA: Final = "recurquant.experiment009-stage-b-row-plan.v1"
+ROW_PLAN_METHOD: Final = "target_directional_fisher_difference_int4"
+SELECTOR_ARTIFACT_RELATIVE_PATH: Final = (
+ "artifacts/experiment006-hrr-selector-8task-c2ad68b.json"
+)
+LOSS_SELECTOR_ARTIFACT_RELATIVE_PATH: Final = (
+ "artifacts/experiment006-loss-selector-8task-c2ad68b.json"
+)
+SELECTOR_ARTIFACT_KIND: Final = "recurquant_hrr_calibration_diagnostic"
+LOSS_SELECTOR_ARTIFACT_KIND: Final = (
+ "recurquant_loss_sensitivity_calibration_diagnostic"
+)
+SELECTOR_FILE_SHA256: Final = (
+ "d0c4267095ee3f5068627b189a1fd9f58cb02f6e25672d9b89dd0990e5b09330"
+)
+SELECTOR_CANONICAL_EVIDENCE_SHA256: Final = (
+ "7970961fd88b522998189ad64f26b333aed9c88ff5f653de5449fd9e01d8cbc8"
+)
+LOSS_SELECTOR_FILE_SHA256: Final = (
+ "95c16656edb32efbc985f2fea59e229634dd558f4f4bf04819b8efc37783a1d6"
+)
+LOSS_SELECTOR_CANONICAL_EVIDENCE_SHA256: Final = (
+ "bff4e33253990b8115e1f35e74516c4975c2fe4aac5066475afe968eb8a64609"
+)
+FROZEN_LINEAR_LAYERS: Final = (
+ 0,
+ 1,
+ 2,
+ 4,
+ 5,
+ 6,
+ 8,
+ 9,
+ 10,
+ 12,
+ 13,
+ 14,
+ 16,
+ 17,
+ 18,
+ 20,
+ 21,
+ 22,
+)
+FROZEN_LAYER_QUOTAS: Final = {
+ 0: 355,
+ 1: 380,
+ 2: 269,
+ 4: 179,
+ 5: 185,
+ 6: 105,
+ 8: 80,
+ 9: 43,
+ 10: 84,
+ 12: 30,
+ 13: 62,
+ 14: 54,
+ 16: 45,
+ 17: 27,
+ 18: 7,
+ 20: 9,
+ 21: 7,
+ 22: 55,
+}
+
+STAGE_B_SOURCE_FILES: Final = (
+ "research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md",
+ "research/EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md",
+ "research/EXPERIMENT_009_STAGE_A_AUDIT.md",
+ "research/EXPERIMENT_009_STAGE_A_RESULT.md",
+ "scripts/evaluate_rht_cqer_stage_b.py",
+ "scripts/resolve_rht_cqer_stage_b_identity.py",
+ "scripts/screen_rht_cqer.py",
+ "scripts/pilot_evaluate_hrr.py",
+ "src/recurquant/__init__.py",
+ "src/recurquant/cache.py",
+ "src/recurquant/evaluation.py",
+ "src/recurquant/evidence.py",
+ "src/recurquant/finite_difference.py",
+ "src/recurquant/fisher_sensitivity.py",
+ "src/recurquant/horizon.py",
+ "src/recurquant/horizon_calibration.py",
+ "src/recurquant/intervention.py",
+ "src/recurquant/metrics.py",
+ "src/recurquant/mixed_quantization.py",
+ "src/recurquant/model_fisher.py",
+ "src/recurquant/multibit_policy.py",
+ "src/recurquant/multibit_quantization.py",
+ "src/recurquant/packed_cache.py",
+ "src/recurquant/public_data.py",
+ "src/recurquant/quantization.py",
+ "src/recurquant/query_energy.py",
+ "src/recurquant/qwen35.py",
+ "src/recurquant/rht.py",
+ "src/recurquant/row_policy.py",
+ "src/recurquant/transition_observer.py",
+ "tests/test_evaluate_rht_cqer_stage_b.py",
+ "tests/test_resolve_rht_cqer_stage_b_identity.py",
+ "tests/test_rht.py",
+ "tests/test_rht_independent_reference.py",
+ "tests/test_rht_mixed_quantization.py",
+ "tests/test_right_rht_query_ema_cache.py",
+ "tests/test_screen_rht_cqer.py",
+)
+SOURCE_FILES: Final = STAGE_B_SOURCE_FILES
+IMPORTED_MODULE_PATHS: Final = {
+ "recurquant": "src/recurquant/__init__.py",
+ "recurquant.evidence": "src/recurquant/evidence.py",
+ "recurquant.public_data": "src/recurquant/public_data.py",
+}
+
+LoadDataset = Callable[..., Iterable[Mapping[str, Any]]]
+
+
+@dataclass(frozen=True, slots=True)
+class EncodedIdentityTask:
+ """One authenticated Stage-B row and its exact tokenizer outputs."""
+
+ row: Mapping[str, Any]
+ prompt_token_ids: tuple[int, ...]
+ code_token_ids: tuple[int, ...]
+ record: Mapping[str, Any]
+
+
+@dataclass(frozen=True, slots=True)
+class StageBDataAccessAudit:
+ """Application-level access counters separated from transport behavior."""
+
+ ranking_transport_records_yielded: int
+ ranking_task_id_fields_inspected: int
+ target_transport_records_yielded: int
+ target_task_id_fields_inspected: int
+ target_rows_retained_and_canonicalized: int
+
+ def as_dict(self, *, selected_task_ids: Sequence[int]) -> dict[str, Any]:
+ selected = [int(task_id) for task_id in selected_task_ids]
+ return {
+ "transport_limitation": (
+ "The Hugging Face streaming transport may deserialize complete "
+ "source records before yielding mappings. These counters describe "
+ "fields read and rows retained by RecurQuant application code."
+ ),
+ "ranking_pass": {
+ "transport_records_yielded": self.ranking_transport_records_yielded,
+ "task_id_fields_inspected": self.ranking_task_id_fields_inspected,
+ "non_task_id_fields_read_by_recurquant": 0,
+ "row_mappings_retained": 0,
+ },
+ "target_load_pass": {
+ "transport_records_yielded": self.target_transport_records_yielded,
+ "task_id_fields_inspected": self.target_task_id_fields_inspected,
+ "non_target_content_fields_read_by_recurquant": 0,
+ "target_rows_retained_and_canonicalized": (
+ self.target_rows_retained_and_canonicalized
+ ),
+ },
+ "application_task_id_sets": {
+ "selected": selected,
+ "retained": selected,
+ "canonicalized": selected,
+ "formatted": selected,
+ "tokenized": selected,
+ "passed_to_model": [],
+ "evaluated": [],
+ },
+ "protected_window_intersection": {
+ "selected": False,
+ "retained": False,
+ "canonicalized": False,
+ "formatted": False,
+ "tokenized": False,
+ "passed_to_model": False,
+ "evaluated": False,
+ },
+ }
+
+
+@dataclass(frozen=True, slots=True)
+class AuthenticatedStageBRows:
+ """Exact Stage-B rows plus application-level stream-access evidence."""
+
+ rows: tuple[Mapping[str, Any], ...]
+ ordered_task_ids: tuple[int, ...]
+ access_audit: StageBDataAccessAudit
+
+
+@dataclass(frozen=True, slots=True)
+class RuntimeIdentityAuthentication:
+ """Tokenized runtime identity and the hashes authenticated before weights."""
+
+ tasks: tuple[EncodedIdentityTask, ...]
+ ordered_task_ids: tuple[int, ...]
+ content_manifest_sha256: str
+ token_manifest_sha256: str
+ ordered_identity_sha256: str
+ access_audit: StageBDataAccessAudit | None
+
+
+def parse_args() -> argparse.Namespace:
+ parser = argparse.ArgumentParser(
+ description=(
+ "Resolve only the frozen Experiment 009 ranked MBPP [32, 64) "
+ "development identity. No model weights or quality metrics are opened."
+ )
+ )
+ parser.add_argument("--output", type=Path, required=True)
+ parser.add_argument("--local-files-only", action="store_true")
+ return parser.parse_args()
+
+
+def _sha256_bytes(value: bytes) -> str:
+ return hashlib.sha256(value).hexdigest()
+
+
+def _valid_sha256(value: object) -> bool:
+ return (
+ isinstance(value, str)
+ and len(value) == 64
+ and all(character in string.hexdigits for character in value)
+ and value == value.lower()
+ )
+
+
+def _strict_int(value: object, *, context: str) -> int:
+ if isinstance(value, bool) or not isinstance(value, Integral):
+ raise ValueError(f"{context} must be an integer")
+ return int(value)
+
+
+def _require_mapping(value: object, *, context: str) -> Mapping[str, Any]:
+ if not isinstance(value, Mapping):
+ raise ValueError(f"{context} must be an object")
+ return value
+
+
+def _require_list(value: object, *, context: str) -> list[Any]:
+ if not isinstance(value, list):
+ raise ValueError(f"{context} must be an array")
+ return value
+
+
+def _python_triplet_from_stage_a(value: object) -> tuple[int, int, int]:
+ if not isinstance(value, str):
+ raise ValueError("Stage-A Python identity must be a string")
+ version_token = value.split(maxsplit=1)[0]
+ components = version_token.split(".")
+ if (
+ len(components) != 3
+ or any(not component.isdigit() for component in components)
+ ):
+ raise ValueError("Stage-A Python identity lacks an exact major.minor.micro")
+ triplet = tuple(int(component) for component in components)
+ if ".".join(str(component) for component in triplet) != version_token:
+ raise ValueError("Stage-A Python identity is not canonical")
+ return triplet[0], triplet[1], triplet[2]
+
+
+def derive_stage_a_runtime_environment(
+ stage_a_evidence: Mapping[str, Any],
+) -> dict[str, Any]:
+ """Derive the frozen Stage-B runtime from authenticated Stage-A evidence."""
+
+ environment = _require_mapping(
+ stage_a_evidence.get("environment"),
+ context="Stage-A environment",
+ )
+ if set(environment) != {
+ "cuda_available",
+ "cuda_runtime",
+ "gpu",
+ "packages",
+ "platform",
+ "python",
+ }:
+ raise ValueError("Stage-A environment fields drifted")
+ packages = _require_mapping(
+ environment.get("packages"),
+ context="Stage-A environment packages",
+ )
+ if set(packages) != set(STAGE_A_PACKAGE_VERSIONS) or any(
+ not isinstance(value, str) or not value for value in packages.values()
+ ):
+ raise ValueError("Stage-A environment package identity drifted")
+ model = _require_mapping(stage_a_evidence.get("model"), context="Stage-A model")
+ python_version = _python_triplet_from_stage_a(environment.get("python"))
+ cuda_available = environment.get("cuda_available")
+ cuda_runtime = environment.get("cuda_runtime")
+ device_type = model.get("device")
+ if (
+ not isinstance(cuda_available, bool)
+ or not isinstance(cuda_runtime, str)
+ or not cuda_runtime
+ or not isinstance(device_type, str)
+ or not device_type
+ or not isinstance(environment.get("gpu"), str)
+ or not environment.get("gpu")
+ or not isinstance(environment.get("platform"), str)
+ or not environment.get("platform")
+ ):
+ raise ValueError("Stage-A accelerator environment identity is incomplete")
+ return {
+ "python": {
+ "major": python_version[0],
+ "minor": python_version[1],
+ "micro": python_version[2],
+ "version": ".".join(str(component) for component in python_version),
+ },
+ "packages": dict(packages),
+ "cuda": {
+ "available": cuda_available,
+ "runtime_version": cuda_runtime,
+ "device_type": device_type,
+ },
+ }
+
+
+def _frozen_stage_a_runtime_environment() -> dict[str, Any]:
+ return {
+ "python": {
+ "major": STAGE_A_PYTHON_VERSION[0],
+ "minor": STAGE_A_PYTHON_VERSION[1],
+ "micro": STAGE_A_PYTHON_VERSION[2],
+ "version": ".".join(
+ str(component) for component in STAGE_A_PYTHON_VERSION
+ ),
+ },
+ "packages": dict(STAGE_A_PACKAGE_VERSIONS),
+ "cuda": dict(STAGE_A_CUDA_CONTRACT),
+ }
+
+
+def inspect_runtime_environment() -> dict[str, Any]:
+ """Inspect only version and accelerator metadata; do not open model weights."""
+
+ packages: dict[str, str] = {}
+ for name in STAGE_A_PACKAGE_VERSIONS:
+ try:
+ packages[name] = importlib.metadata.version(name)
+ except importlib.metadata.PackageNotFoundError as error:
+ raise ValueError(f"required runtime package is missing: {name}") from error
+
+ import torch
+
+ cuda_available = bool(torch.cuda.is_available())
+ cuda_runtime = torch.version.cuda
+ if cuda_runtime is not None and not isinstance(cuda_runtime, str):
+ raise ValueError("runtime CUDA version must be a string or null")
+ version = sys.version_info
+ return {
+ "python": {
+ "major": version.major,
+ "minor": version.minor,
+ "micro": version.micro,
+ "version": f"{version.major}.{version.minor}.{version.micro}",
+ },
+ "packages": packages,
+ "cuda": {
+ "available": cuda_available,
+ "runtime_version": cuda_runtime,
+ "device_type": "cuda" if cuda_available else "cpu",
+ },
+ }
+
+
+def authenticate_runtime_environment(
+ stage_a_evidence: Mapping[str, Any],
+ *,
+ local_files_only: bool,
+ runtime_environment: Mapping[str, Any] | None = None,
+) -> dict[str, Any]:
+ """Require an exact Stage-A runtime match before Stage-B dataset access."""
+
+ if not isinstance(local_files_only, bool):
+ raise ValueError("local_files_only must be boolean")
+ derived = derive_stage_a_runtime_environment(stage_a_evidence)
+ frozen = _frozen_stage_a_runtime_environment()
+ if derived != frozen:
+ raise ValueError("authenticated Stage-A runtime contract drifted")
+ observed = (
+ dict(runtime_environment)
+ if runtime_environment is not None
+ else inspect_runtime_environment()
+ )
+ if observed != derived:
+ mismatches = [
+ field
+ for field in ("python", "packages", "cuda")
+ if observed.get(field) != derived[field]
+ ]
+ extra = sorted(set(observed) - set(derived))
+ if extra:
+ mismatches.append("unexpected_fields")
+ raise ValueError(
+ "Stage-B runtime does not exactly match authenticated Stage A: "
+ + ", ".join(mismatches)
+ )
+ return {
+ "schema": RUNTIME_ENVIRONMENT_SCHEMA,
+ "stage_a_binding": {
+ "artifact_kind": STAGE_A_ARTIFACT_KIND,
+ "file_sha256": STAGE_A_FILE_SHA256,
+ "canonical_evidence_sha256": STAGE_A_CANONICAL_EVIDENCE_SHA256,
+ },
+ **derived,
+ "runtime_matches_stage_a": True,
+ "local_files_only": local_files_only,
+ }
+
+
+def _load_exact_evidence_artifact(
+ path: Path,
+ *,
+ expected_kind: str,
+ expected_file_sha256: str,
+ expected_canonical_evidence_sha256: str,
+) -> dict[str, Any]:
+ verification = verify_evidence_artifact(
+ path,
+ expected_file_sha256=expected_file_sha256,
+ expected_canonical_evidence_sha256=expected_canonical_evidence_sha256,
+ )
+ if verification["valid"] is not True:
+ raise ValueError(
+ f"{expected_kind} artifact failed authentication: "
+ + "; ".join(verification["errors"])
+ )
+ document = json.loads(path.read_bytes().decode("utf-8"))
+ evidence = _require_mapping(document.get("evidence"), context=expected_kind)
+ if evidence.get("artifact_kind") != expected_kind:
+ raise ValueError(f"{expected_kind} artifact kind drifted")
+ model = _require_mapping(evidence.get("model"), context=f"{expected_kind} model")
+ if (
+ model.get("id") != MODEL_ID
+ or model.get("revision") != MODEL_REVISION
+ or model.get("dtype") != "torch.bfloat16"
+ ):
+ raise ValueError(f"{expected_kind} model contract drifted")
+ return dict(evidence)
+
+
+def _normalize_high_precision_rows(
+ value: object,
+ *,
+ context: str,
+) -> tuple[dict[str, int], ...]:
+ rows = _require_list(value, context=context)
+ normalized: list[dict[str, int]] = []
+ seen: set[tuple[int, int, int]] = set()
+ for index, raw in enumerate(rows):
+ record = _require_mapping(raw, context=f"{context} row {index}")
+ if set(record) != {"layer_index", "head_index", "row_index"}:
+ raise ValueError(f"{context} row {index} fields drifted")
+ layer = _strict_int(
+ record.get("layer_index"),
+ context=f"{context} row {index} layer",
+ )
+ head = _strict_int(
+ record.get("head_index"),
+ context=f"{context} row {index} head",
+ )
+ row = _strict_int(
+ record.get("row_index"),
+ context=f"{context} row {index} row",
+ )
+ identity = (layer, head, row)
+ if (
+ layer not in FROZEN_LAYER_QUOTAS
+ or not 0 <= head < 16
+ or not 0 <= row < 128
+ or identity in seen
+ ):
+ raise ValueError(f"{context} row {index} identity is invalid or repeated")
+ seen.add(identity)
+ normalized.append(
+ {
+ "layer_index": layer,
+ "head_index": head,
+ "row_index": row,
+ }
+ )
+ if tuple(
+ (record["layer_index"], record["head_index"], record["row_index"])
+ for record in normalized
+ ) != tuple(
+ sorted(
+ (
+ record["layer_index"],
+ record["head_index"],
+ record["row_index"],
+ )
+ for record in normalized
+ )
+ ):
+ raise ValueError(f"{context} rows are not in canonical order")
+ return tuple(normalized)
+
+
+def validate_compact_row_plan(plan: Mapping[str, Any]) -> None:
+ """Authenticate the complete public row plan embedded in the identity."""
+
+ expected_fields = {
+ "schema",
+ "method",
+ "selector_binding",
+ "model",
+ "quantization",
+ "accounting",
+ "score_shapes",
+ "layer_quotas",
+ "high_precision_rows",
+ "canonical_plan_sha256",
+ }
+ if set(plan) != expected_fields:
+ raise ValueError("Stage-B compact row-plan fields drifted")
+ if plan.get("schema") != ROW_PLAN_SCHEMA or plan.get("method") != ROW_PLAN_METHOD:
+ raise ValueError("Stage-B compact row-plan identity drifted")
+ if dict(
+ _require_mapping(plan.get("selector_binding"), context="selector binding")
+ ) != {
+ "selector_file_sha256": SELECTOR_FILE_SHA256,
+ "selector_canonical_evidence_sha256": (
+ SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ "loss_selector_file_sha256": LOSS_SELECTOR_FILE_SHA256,
+ "loss_selector_canonical_evidence_sha256": (
+ LOSS_SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ }:
+ raise ValueError("Stage-B selector binding drifted")
+ if dict(_require_mapping(plan.get("model"), context="row-plan model")) != {
+ "id": MODEL_ID,
+ "revision": MODEL_REVISION,
+ }:
+ raise ValueError("Stage-B row-plan model drifted")
+ if dict(
+ _require_mapping(plan.get("quantization"), context="row-plan quantization")
+ ) != {
+ "low_bits": 4,
+ "high_bits": 8,
+ "group_size": 128,
+ "scale_bits": 16,
+ }:
+ raise ValueError("Stage-B row-plan quantization drifted")
+ if dict(_require_mapping(plan.get("accounting"), context="row-plan accounting")) != {
+ "total_groups": 36_864,
+ "mask_bytes": 4_608,
+ "promotion_increment_bytes": 64,
+ "target_resident_bytes": 2_564_096,
+ "resident_bytes": 2_564_096,
+ "promoted_group_count": 1_976,
+ }:
+ raise ValueError("Stage-B row-plan accounting drifted")
+ expected_shapes = [
+ {"layer_index": layer, "heads": 16, "rows": 128}
+ for layer in FROZEN_LINEAR_LAYERS
+ ]
+ if plan.get("score_shapes") != expected_shapes:
+ raise ValueError("Stage-B row-plan score shapes drifted")
+ if dict(_require_mapping(plan.get("layer_quotas"), context="layer quotas")) != {
+ str(layer): quota for layer, quota in FROZEN_LAYER_QUOTAS.items()
+ }:
+ raise ValueError("Stage-B row-plan layer quotas drifted")
+ rows = _normalize_high_precision_rows(
+ plan.get("high_precision_rows"),
+ context="Stage-B row plan",
+ )
+ if len(rows) != 1_976:
+ raise ValueError("Stage-B row plan must contain exactly 1,976 promotions")
+ observed_quotas = {
+ layer: sum(record["layer_index"] == layer for record in rows)
+ for layer in FROZEN_LINEAR_LAYERS
+ }
+ if observed_quotas != FROZEN_LAYER_QUOTAS:
+ raise ValueError("Stage-B row-plan promotion counts drifted")
+ recorded_hash = plan.get("canonical_plan_sha256")
+ if not _valid_sha256(recorded_hash):
+ raise ValueError("Stage-B row-plan canonical hash is invalid")
+ hash_payload = dict(plan)
+ del hash_payload["canonical_plan_sha256"]
+ if _sha256_bytes(canonical_json_bytes(hash_payload)) != recorded_hash:
+ raise ValueError("Stage-B row-plan canonical hash does not match its contents")
+
+
+def build_compact_row_plan(
+ selector_path: Path,
+ loss_selector_path: Path,
+) -> dict[str, Any]:
+ """Authenticate frozen selectors and extract their complete public row plan."""
+
+ selector = _load_exact_evidence_artifact(
+ selector_path,
+ expected_kind=SELECTOR_ARTIFACT_KIND,
+ expected_file_sha256=SELECTOR_FILE_SHA256,
+ expected_canonical_evidence_sha256=SELECTOR_CANONICAL_EVIDENCE_SHA256,
+ )
+ loss_selector = _load_exact_evidence_artifact(
+ loss_selector_path,
+ expected_kind=LOSS_SELECTOR_ARTIFACT_KIND,
+ expected_file_sha256=LOSS_SELECTOR_FILE_SHA256,
+ expected_canonical_evidence_sha256=LOSS_SELECTOR_CANONICAL_EVIDENCE_SHA256,
+ )
+ selector_dataset = _require_mapping(
+ selector.get("dataset"),
+ context="selector dataset",
+ )
+ loss_dataset = _require_mapping(
+ loss_selector.get("dataset"),
+ context="loss-selector dataset",
+ )
+ if (
+ selector_dataset.get("manifest") != loss_dataset.get("manifest")
+ or selector_dataset.get("manifest_sha256")
+ != loss_dataset.get("manifest_sha256")
+ ):
+ raise ValueError("frozen selector dataset identities differ")
+ plan_record = _require_mapping(
+ _require_mapping(loss_selector.get("plans"), context="loss-selector plans").get(
+ ROW_PLAN_METHOD
+ ),
+ context="target-Fisher plan",
+ )
+ if set(plan_record) != {"evidence", "locations", "promotions_by_layer"}:
+ raise ValueError("target-Fisher plan record fields drifted")
+ plan_evidence = _require_mapping(
+ plan_record.get("evidence"),
+ context="target-Fisher plan evidence",
+ )
+ rows = _normalize_high_precision_rows(
+ plan_record.get("locations"),
+ context="target-Fisher locations",
+ )
+ evidence_rows = _normalize_high_precision_rows(
+ plan_evidence.get("high_precision_rows"),
+ context="target-Fisher evidence rows",
+ )
+ if rows != evidence_rows:
+ raise ValueError("target-Fisher plan locations disagree with its evidence")
+ expected_evidence_without_rows = {
+ "low_bits": 4,
+ "high_bits": 8,
+ "group_size": 128,
+ "scale_bits": 16,
+ "total_groups": 36_864,
+ "mask_bytes": 4_608,
+ "promotion_increment_bytes": 64,
+ "target_resident_bytes": 2_564_096,
+ "resident_bytes": 2_564_096,
+ "promoted_group_count": 1_976,
+ "score_shapes": [
+ [layer, 16, 128] for layer in FROZEN_LINEAR_LAYERS
+ ],
+ }
+ if {
+ key: plan_evidence.get(key) for key in expected_evidence_without_rows
+ } != expected_evidence_without_rows:
+ raise ValueError("target-Fisher recorded plan accounting drifted")
+ observed_promotions = {
+ str(layer): sum(record["layer_index"] == layer for record in rows)
+ for layer in FROZEN_LINEAR_LAYERS
+ }
+ if observed_promotions != {
+ str(layer): quota for layer, quota in FROZEN_LAYER_QUOTAS.items()
+ }:
+ raise ValueError("target-Fisher recorded layer quotas drifted")
+ promotions_by_layer = _require_mapping(
+ plan_record.get("promotions_by_layer"),
+ context="target-Fisher promotions by layer",
+ )
+ if {
+ str(key): _strict_int(value, context="promotions_by_layer value")
+ for key, value in promotions_by_layer.items()
+ } != observed_promotions:
+ raise ValueError("target-Fisher promotion summary drifted")
+ plan: dict[str, Any] = {
+ "schema": ROW_PLAN_SCHEMA,
+ "method": ROW_PLAN_METHOD,
+ "selector_binding": {
+ "selector_file_sha256": SELECTOR_FILE_SHA256,
+ "selector_canonical_evidence_sha256": (
+ SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ "loss_selector_file_sha256": LOSS_SELECTOR_FILE_SHA256,
+ "loss_selector_canonical_evidence_sha256": (
+ LOSS_SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ },
+ "model": {
+ "id": MODEL_ID,
+ "revision": MODEL_REVISION,
+ },
+ "quantization": {
+ "low_bits": 4,
+ "high_bits": 8,
+ "group_size": 128,
+ "scale_bits": 16,
+ },
+ "accounting": {
+ "total_groups": 36_864,
+ "mask_bytes": 4_608,
+ "promotion_increment_bytes": 64,
+ "target_resident_bytes": 2_564_096,
+ "resident_bytes": 2_564_096,
+ "promoted_group_count": 1_976,
+ },
+ "score_shapes": [
+ {"layer_index": layer, "heads": 16, "rows": 128}
+ for layer in FROZEN_LINEAR_LAYERS
+ ],
+ "layer_quotas": {
+ str(layer): quota for layer, quota in FROZEN_LAYER_QUOTAS.items()
+ },
+ "high_precision_rows": list(rows),
+ }
+ plan["canonical_plan_sha256"] = _sha256_bytes(canonical_json_bytes(plan))
+ validate_compact_row_plan(plan)
+ return plan
+
+
+def _load_dataset_lazily(*args: Any, **kwargs: Any) -> Iterable[Mapping[str, Any]]:
+ try:
+ from datasets import load_dataset
+ except ModuleNotFoundError as error:
+ raise RuntimeError(
+ "Stage-B identity resolution requires the optional evaluation "
+ "dependencies; install recurquant[eval]"
+ ) from error
+ return load_dataset(*args, **kwargs)
+
+
+def _resolve_ranked_id_windows(
+ *,
+ load_dataset_fn: LoadDataset | None = None,
+) -> tuple[tuple[int, ...], frozenset[int], int]:
+ """Resolve target/protected ranks while reading only source task IDs."""
+
+ loader = load_dataset_fn or _load_dataset_lazily
+ loaded = loader(
+ MBPP_DATASET_ID,
+ MBPP_CONFIG,
+ revision=MBPP_REVISION,
+ split=mbpp_source_split("calibration"),
+ streaming=True,
+ )
+ task_ids: list[int] = []
+ seen: set[int] = set()
+ for source_index, raw_row in enumerate(loaded):
+ if not isinstance(raw_row, Mapping):
+ raise TypeError(f"MBPP source row {source_index} must be a mapping")
+ task_id = _strict_int(
+ raw_row.get("task_id"),
+ context=f"MBPP source row {source_index} task_id",
+ )
+ if task_id in seen:
+ raise ValueError(f"duplicate MBPP task_id {task_id} in source split")
+ seen.add(task_id)
+ task_ids.append(task_id)
+
+ if len(task_ids) < MBPP_CALIBRATION_SIZE:
+ raise ValueError(
+ "MBPP train split is too small for the frozen calibration population: "
+ f"{len(task_ids)} < {MBPP_CALIBRATION_SIZE}"
+ )
+ ranked = sorted(task_ids, key=lambda task_id: (mbpp_calibration_key(task_id), task_id))
+ selected = tuple(ranked[STAGE_B_OFFSET:STAGE_B_STOP])
+ protected = frozenset(ranked[PROTECTED_WINDOW[0] : PROTECTED_WINDOW[1]])
+ if len(selected) != STAGE_B_LIMIT or len(set(selected)) != STAGE_B_LIMIT:
+ raise RuntimeError("Stage-B ranking did not resolve exactly 32 unique task IDs")
+ if set(selected) & protected:
+ raise RuntimeError("Stage-B target IDs overlap the protected ranked window")
+ return selected, protected, len(task_ids)
+
+
+def resolve_stage_b_task_ids(
+ *,
+ load_dataset_fn: LoadDataset | None = None,
+) -> tuple[tuple[int, ...], int]:
+ """Resolve ranks 32-63 while reading only task IDs from the source stream."""
+
+ selected, _protected, source_row_count = _resolve_ranked_id_windows(
+ load_dataset_fn=load_dataset_fn,
+ )
+ return selected, source_row_count
+
+
+def _load_exact_rows_with_audit(
+ *,
+ task_ids: Sequence[int],
+ protected_task_ids: frozenset[int],
+ load_dataset_fn: LoadDataset | None,
+) -> tuple[tuple[Mapping[str, Any], ...], int]:
+ """Canonicalize targets only; non-target mappings are read for task_id only."""
+
+ ordered_ids = tuple(_strict_int(task_id, context="target task_id") for task_id in task_ids)
+ if (
+ len(ordered_ids) != STAGE_B_LIMIT
+ or len(set(ordered_ids)) != STAGE_B_LIMIT
+ ):
+ raise ValueError("target task IDs must contain exactly 32 unique integers")
+ if set(ordered_ids) & protected_task_ids:
+ raise ValueError("target task IDs overlap the protected ranked window")
+
+ loader = load_dataset_fn or _load_dataset_lazily
+ loaded = loader(
+ MBPP_DATASET_ID,
+ MBPP_CONFIG,
+ revision=MBPP_REVISION,
+ split=mbpp_source_split("calibration"),
+ streaming=True,
+ )
+ targets = set(ordered_ids)
+ selected: dict[int, Mapping[str, Any]] = {}
+ transport_rows = 0
+ for source_index, raw_row in enumerate(loaded):
+ transport_rows += 1
+ if not isinstance(raw_row, Mapping):
+ raise TypeError(f"MBPP source row {source_index} must be a mapping")
+ task_id = _strict_int(
+ raw_row.get("task_id"),
+ context=f"MBPP source row {source_index} task_id",
+ )
+ if task_id not in targets:
+ continue
+ if task_id in protected_task_ids:
+ raise RuntimeError("protected ranked row reached target canonicalization")
+ if task_id in selected:
+ raise ValueError(f"duplicate requested MBPP task_id {task_id} in source split")
+ selected[task_id] = canonical_mbpp_row(raw_row)
+ if len(selected) == len(targets):
+ break
+
+ missing = [task_id for task_id in ordered_ids if task_id not in selected]
+ if missing:
+ rendered = ", ".join(str(task_id) for task_id in missing)
+ raise ValueError(f"requested MBPP task IDs are missing from source split: {rendered}")
+ return tuple(selected[task_id] for task_id in ordered_ids), transport_rows
+
+
+def resolve_stage_b_rows(
+ *,
+ load_dataset_fn: LoadDataset | None = None,
+) -> AuthenticatedStageBRows:
+ """Retain exactly the rows in the frozen ranked calibration window."""
+
+ task_ids, protected_ids, source_row_count = _resolve_ranked_id_windows(
+ load_dataset_fn=load_dataset_fn,
+ )
+ rows, target_transport_rows = _load_exact_rows_with_audit(
+ task_ids=task_ids,
+ protected_task_ids=protected_ids,
+ load_dataset_fn=load_dataset_fn,
+ )
+ actual_ids = tuple(_strict_int(row.get("task_id"), context="selected task_id") for row in rows)
+ if actual_ids != task_ids:
+ raise RuntimeError("task-ID loader changed the frozen Stage-B order")
+ return AuthenticatedStageBRows(
+ rows=tuple(rows),
+ ordered_task_ids=task_ids,
+ access_audit=StageBDataAccessAudit(
+ ranking_transport_records_yielded=source_row_count,
+ ranking_task_id_fields_inspected=source_row_count,
+ target_transport_records_yielded=target_transport_rows,
+ target_task_id_fields_inspected=target_transport_rows,
+ target_rows_retained_and_canonicalized=len(rows),
+ ),
+ )
+
+
+def _normalize_token_ids(value: object, *, context: str) -> tuple[int, ...]:
+ if isinstance(value, (str, bytes)) or not isinstance(value, Sequence):
+ raise ValueError(f"{context} must be a sequence of token IDs")
+ normalized = tuple(_strict_int(token, context=f"{context} token") for token in value)
+ if not normalized:
+ raise ValueError(f"{context} must not be empty")
+ if any(token < 0 for token in normalized):
+ raise ValueError(f"{context} must contain non-negative token IDs")
+ return normalized
+
+
+def _tokenize_text(tokenizer: Any, text: str, *, add_special_tokens: bool) -> tuple[int, ...]:
+ encoded = tokenizer(
+ text,
+ add_special_tokens=add_special_tokens,
+ return_attention_mask=False,
+ return_token_type_ids=False,
+ )
+ if not isinstance(encoded, Mapping) or "input_ids" not in encoded:
+ raise ValueError("tokenizer output must contain input_ids")
+ return _normalize_token_ids(encoded["input_ids"], context="tokenizer input_ids")
+
+
+def tokenize_stage_b_rows(
+ tokenizer: Any,
+ rows: Sequence[Mapping[str, Any]],
+) -> tuple[tuple[EncodedIdentityTask, ...], tuple[dict[str, Any], ...]]:
+ """Tokenize and fingerprint only the exact ordered Stage-B rows."""
+
+ if len(rows) != STAGE_B_LIMIT:
+ raise ValueError(f"Stage-B identity requires exactly {STAGE_B_LIMIT} rows")
+
+ encoded_tasks: list[EncodedIdentityTask] = []
+ records: list[dict[str, Any]] = []
+ seen: set[int] = set()
+ for index, row in enumerate(rows):
+ rank = STAGE_B_OFFSET + index
+ task_id = _strict_int(row.get("task_id"), context=f"rank {rank} task_id")
+ if task_id in seen:
+ raise ValueError(f"Stage-B rows repeat task_id {task_id}")
+ seen.add(task_id)
+
+ formatted = format_mbpp_example(row)
+ prompt_ids = _tokenize_text(
+ tokenizer,
+ formatted.prompt,
+ add_special_tokens=True,
+ )
+ code_ids = _tokenize_text(
+ tokenizer,
+ formatted.code,
+ add_special_tokens=False,
+ )
+ if len(code_ids) < 2:
+ raise ValueError(f"MBPP task {task_id} has fewer than two code tokens")
+
+ record = {
+ "rank": rank,
+ "task_id": task_id,
+ "row_sha256": mbpp_row_sha256(row),
+ "prompt_tokens": len(prompt_ids),
+ "code_tokens": len(code_ids),
+ "aligned_scored_tokens": len(code_ids) - 1,
+ "full_code_scored_tokens": len(code_ids),
+ "prompt_text_sha256": _sha256_bytes(formatted.prompt.encode("utf-8")),
+ "code_text_sha256": _sha256_bytes(formatted.code.encode("utf-8")),
+ "prompt_token_ids_sha256": _sha256_bytes(canonical_json_bytes(prompt_ids)),
+ "code_token_ids_sha256": _sha256_bytes(canonical_json_bytes(code_ids)),
+ }
+ records.append(record)
+ encoded_tasks.append(
+ EncodedIdentityTask(
+ row=row,
+ prompt_token_ids=prompt_ids,
+ code_token_ids=code_ids,
+ record=record,
+ )
+ )
+ return tuple(encoded_tasks), tuple(records)
+
+
+def token_manifest_sha256(records: Sequence[Mapping[str, Any]]) -> str:
+ """Hash the exact ordered task/token records under a named schema."""
+
+ payload = {
+ "schema": TOKEN_MANIFEST_SCHEMA,
+ "tasks": list(records),
+ }
+ return _sha256_bytes(canonical_json_bytes(payload))
+
+
+def ordered_identity_sha256(
+ *,
+ content_manifest_sha256: str,
+ task_records: Sequence[Mapping[str, Any]],
+) -> str:
+ """Bind data, model, tokenizer, row order, and token identity together."""
+
+ payload = {
+ "schema": ORDERED_IDENTITY_SCHEMA,
+ "dataset": {
+ "id": MBPP_DATASET_ID,
+ "config": MBPP_CONFIG,
+ "revision": MBPP_REVISION,
+ "phase": "calibration",
+ "source_split": mbpp_source_split("calibration"),
+ "selection_namespace": MBPP_SELECTION_NAMESPACE,
+ "ranked_window": [STAGE_B_OFFSET, STAGE_B_STOP],
+ "content_manifest_sha256": content_manifest_sha256,
+ },
+ "model": {
+ "id": MODEL_ID,
+ "revision": MODEL_REVISION,
+ },
+ "tokenizer": {
+ "source_id": MODEL_ID,
+ "revision": MODEL_REVISION,
+ "class": TOKENIZER_CLASS,
+ "transformers_version": TRANSFORMERS_VERSION,
+ "prompt_add_special_tokens": True,
+ "code_add_special_tokens": False,
+ "formatter_version": MBPP_FORMATTER_VERSION,
+ "token_id_hash_serialization": TOKEN_ID_HASH_SERIALIZATION,
+ "text_hash_encoding": TEXT_HASH_ENCODING,
+ },
+ "tasks": list(task_records),
+ }
+ return _sha256_bytes(canonical_json_bytes(payload))
+
+
+def _validate_task_records(records: object) -> tuple[Mapping[str, Any], ...]:
+ raw_records = _require_list(records, context="dataset tasks")
+ if len(raw_records) != STAGE_B_LIMIT:
+ raise ValueError(f"identity must contain exactly {STAGE_B_LIMIT} task records")
+
+ normalized: list[Mapping[str, Any]] = []
+ seen: set[int] = set()
+ hash_fields = (
+ "row_sha256",
+ "prompt_text_sha256",
+ "code_text_sha256",
+ "prompt_token_ids_sha256",
+ "code_token_ids_sha256",
+ )
+ required_fields = {
+ "rank",
+ "task_id",
+ "row_sha256",
+ "prompt_tokens",
+ "code_tokens",
+ "aligned_scored_tokens",
+ "full_code_scored_tokens",
+ "prompt_text_sha256",
+ "code_text_sha256",
+ "prompt_token_ids_sha256",
+ "code_token_ids_sha256",
+ }
+ for index, raw_record in enumerate(raw_records):
+ record = _require_mapping(raw_record, context=f"dataset task {index}")
+ if set(record) != required_fields:
+ raise ValueError(f"dataset task {index} fields do not match the frozen schema")
+ rank = _strict_int(record.get("rank"), context=f"dataset task {index} rank")
+ task_id = _strict_int(record.get("task_id"), context=f"dataset task {index} task_id")
+ prompt_tokens = _strict_int(
+ record.get("prompt_tokens"),
+ context=f"dataset task {index} prompt_tokens",
+ )
+ code_tokens = _strict_int(
+ record.get("code_tokens"),
+ context=f"dataset task {index} code_tokens",
+ )
+ aligned_tokens = _strict_int(
+ record.get("aligned_scored_tokens"),
+ context=f"dataset task {index} aligned_scored_tokens",
+ )
+ full_tokens = _strict_int(
+ record.get("full_code_scored_tokens"),
+ context=f"dataset task {index} full_code_scored_tokens",
+ )
+ if rank != STAGE_B_OFFSET + index:
+ raise ValueError("Stage-B rank order drifted")
+ if task_id in seen:
+ raise ValueError(f"identity repeats task_id {task_id}")
+ if prompt_tokens < 1 or code_tokens < 2:
+ raise ValueError(f"task {task_id} has invalid token counts")
+ if aligned_tokens != code_tokens - 1 or full_tokens != code_tokens:
+ raise ValueError(f"task {task_id} scoring counts are misaligned")
+ for field in hash_fields:
+ if not _valid_sha256(record.get(field)):
+ raise ValueError(f"task {task_id} {field} is not a canonical SHA-256")
+ seen.add(task_id)
+ normalized.append(record)
+ return tuple(normalized)
+
+
+def validate_stage_b_identity_evidence(evidence: Mapping[str, Any]) -> None:
+ """Fail closed on any internal or frozen-contract drift in an identity."""
+
+ expected_evidence_fields = {
+ "schema_version",
+ "artifact_kind",
+ "identity_schema",
+ "identity_only",
+ "claim_boundary",
+ "created_at_utc",
+ "authorization",
+ "row_plan",
+ "model_contract",
+ "tokenizer_contract",
+ "dataset",
+ "integrity",
+ "repository",
+ "source_files",
+ "environment",
+ }
+ if set(evidence) != expected_evidence_fields:
+ raise ValueError("Stage-B identity top-level fields drifted")
+ if evidence.get("schema_version") != 1:
+ raise ValueError("Stage-B identity schema_version must be 1")
+ if evidence.get("artifact_kind") != ARTIFACT_KIND:
+ raise ValueError("unexpected Stage-B identity artifact kind")
+ if evidence.get("identity_schema") != IDENTITY_SCHEMA:
+ raise ValueError("unexpected Stage-B identity schema")
+ if evidence.get("identity_only") is not True:
+ raise ValueError("Stage-B artifact must be identity-only")
+ if evidence.get("claim_boundary") != CLAIM_BOUNDARY:
+ raise ValueError("Stage-B claim boundary drifted")
+ created_at = evidence.get("created_at_utc")
+ if not isinstance(created_at, str):
+ raise ValueError("Stage-B creation time must be an ISO-8601 string")
+ try:
+ parsed_created_at = datetime.fromisoformat(created_at)
+ except ValueError as error:
+ raise ValueError("Stage-B creation time is not valid ISO-8601") from error
+ if parsed_created_at.tzinfo is None:
+ raise ValueError("Stage-B creation time must include a timezone")
+
+ authorization = _require_mapping(
+ evidence.get("authorization"),
+ context="authorization",
+ )
+ authorization_expected = {
+ "stage_a_artifact_kind": STAGE_A_ARTIFACT_KIND,
+ "stage_a_file_sha256": STAGE_A_FILE_SHA256,
+ "stage_a_canonical_evidence_sha256": STAGE_A_CANONICAL_EVIDENCE_SHA256,
+ "stage_a_implementation_commit": STAGE_A_IMPLEMENTATION_COMMIT,
+ "stage_a_result_commit": STAGE_A_RESULT_COMMIT,
+ "stage_a_gate_passed": True,
+ "verified_before_dataset_access": True,
+ }
+ if dict(authorization) != authorization_expected:
+ raise ValueError("Stage-A authorization contract drifted")
+
+ row_plan = _require_mapping(evidence.get("row_plan"), context="row plan")
+ validate_compact_row_plan(row_plan)
+
+ model = _require_mapping(evidence.get("model_contract"), context="model contract")
+ if dict(model) != {
+ "id": MODEL_ID,
+ "revision": MODEL_REVISION,
+ "weights_loaded": False,
+ }:
+ raise ValueError("Stage-B model contract drifted")
+
+ tokenizer = _require_mapping(
+ evidence.get("tokenizer_contract"),
+ context="tokenizer contract",
+ )
+ if dict(tokenizer) != {
+ "source_id": MODEL_ID,
+ "revision": MODEL_REVISION,
+ "class": TOKENIZER_CLASS,
+ "transformers_version": TRANSFORMERS_VERSION,
+ "trust_remote_code": False,
+ "prompt_add_special_tokens": True,
+ "code_add_special_tokens": False,
+ "formatter_version": MBPP_FORMATTER_VERSION,
+ "token_id_hash_serialization": TOKEN_ID_HASH_SERIALIZATION,
+ "text_hash_encoding": TEXT_HASH_ENCODING,
+ }:
+ raise ValueError("Stage-B tokenizer contract drifted")
+
+ dataset = _require_mapping(evidence.get("dataset"), context="dataset")
+ expected_dataset_fields = {
+ "id",
+ "config",
+ "revision",
+ "phase",
+ "source_split",
+ "selection_namespace",
+ "formatter_version",
+ "selection_mode",
+ "selection_window",
+ "protected_window",
+ "ordered_task_ids",
+ "manifest",
+ "content_manifest_sha256",
+ "token_manifest_sha256",
+ "ordered_identity_sha256",
+ "tasks",
+ "totals",
+ "data_access",
+ }
+ if set(dataset) != expected_dataset_fields:
+ raise ValueError("Stage-B dataset fields drifted")
+ if dataset.get("phase") != "calibration":
+ raise ValueError("Stage-B identity must use calibration phase")
+ expected_dataset_contract = {
+ "id": MBPP_DATASET_ID,
+ "config": MBPP_CONFIG,
+ "revision": MBPP_REVISION,
+ "source_split": mbpp_source_split("calibration"),
+ "selection_namespace": MBPP_SELECTION_NAMESPACE,
+ "formatter_version": MBPP_FORMATTER_VERSION,
+ }
+ for field, expected in expected_dataset_contract.items():
+ if dataset.get(field) != expected:
+ raise ValueError(f"Stage-B dataset {field} drifted")
+ if dataset.get("selection_mode") != "task_id_ranking_then_exact_task_id_stream":
+ raise ValueError("Stage-B selection mode drifted")
+ if dataset.get("selection_window") != {
+ "offset": STAGE_B_OFFSET,
+ "limit": STAGE_B_LIMIT,
+ "stop_exclusive": STAGE_B_STOP,
+ }:
+ raise ValueError("Stage-B ranked window drifted")
+ if dataset.get("protected_window") != {
+ "offset": PROTECTED_WINDOW[0],
+ "stop_exclusive": PROTECTED_WINDOW[1],
+ "content_retained_canonicalized_or_tokenized": False,
+ }:
+ raise ValueError("protected-window contract drifted")
+
+ records = _validate_task_records(dataset.get("tasks"))
+ ordered_ids = [_strict_int(value, context="ordered task_id") for value in _require_list(
+ dataset.get("ordered_task_ids"),
+ context="ordered task IDs",
+ )]
+ record_ids = [int(record["task_id"]) for record in records]
+ if ordered_ids != record_ids:
+ raise ValueError("ordered task IDs do not match task records")
+
+ manifest = _require_mapping(dataset.get("manifest"), context="content manifest")
+ expected_manifest_fields = {
+ "schema",
+ "dataset_id",
+ "config",
+ "revision",
+ "phase",
+ "source_split",
+ "selection_namespace",
+ "formatter_version",
+ "row_count",
+ "rows",
+ }
+ if set(manifest) != expected_manifest_fields:
+ raise ValueError("content manifest fields drifted")
+ for field, expected in {
+ "schema": MBPP_MANIFEST_SCHEMA,
+ "dataset_id": MBPP_DATASET_ID,
+ "config": MBPP_CONFIG,
+ "revision": MBPP_REVISION,
+ "phase": "calibration",
+ "source_split": mbpp_source_split("calibration"),
+ "selection_namespace": MBPP_SELECTION_NAMESPACE,
+ "formatter_version": MBPP_FORMATTER_VERSION,
+ }.items():
+ if manifest.get(field) != expected:
+ raise ValueError(f"content manifest {field} drifted")
+ content_hash = dataset.get("content_manifest_sha256")
+ if not _valid_sha256(content_hash):
+ raise ValueError("content manifest SHA-256 is invalid")
+ if mbpp_manifest_content_sha256(manifest) != content_hash:
+ raise ValueError("content manifest hash does not match embedded content")
+ if manifest.get("row_count") != STAGE_B_LIMIT:
+ raise ValueError("content manifest must contain exactly 32 rows")
+ manifest_rows = _require_list(manifest.get("rows"), context="content manifest rows")
+ record_hashes = {
+ int(record["task_id"]): str(record["row_sha256"]) for record in records
+ }
+ normalized_manifest_rows = tuple(
+ _require_mapping(item, context="content manifest row") for item in manifest_rows
+ )
+ if any(set(record) != {"task_id", "sha256"} for record in normalized_manifest_rows):
+ raise ValueError("content manifest row fields drifted")
+ manifest_hashes = {
+ _strict_int(record.get("task_id"), context="manifest task_id"): record.get("sha256")
+ for record in normalized_manifest_rows
+ }
+ if manifest_hashes != record_hashes:
+ raise ValueError("content manifest rows do not match ordered row identities")
+
+ expected_token_hash = token_manifest_sha256(records)
+ if dataset.get("token_manifest_sha256") != expected_token_hash:
+ raise ValueError("token manifest hash drifted")
+ expected_ordered_hash = ordered_identity_sha256(
+ content_manifest_sha256=str(content_hash),
+ task_records=records,
+ )
+ if dataset.get("ordered_identity_sha256") != expected_ordered_hash:
+ raise ValueError("ordered identity hash drifted")
+
+ totals = _require_mapping(dataset.get("totals"), context="dataset totals")
+ expected_totals = {
+ "source_train_rows_seen_by_task_id_only": _strict_int(
+ totals.get("source_train_rows_seen_by_task_id_only"),
+ context="source row count",
+ ),
+ "retained_rows": STAGE_B_LIMIT,
+ "prompt_tokens": sum(int(record["prompt_tokens"]) for record in records),
+ "code_tokens": sum(int(record["code_tokens"]) for record in records),
+ "aligned_scored_tokens": sum(
+ int(record["aligned_scored_tokens"]) for record in records
+ ),
+ "full_code_scored_tokens": sum(
+ int(record["full_code_scored_tokens"]) for record in records
+ ),
+ }
+ if expected_totals["source_train_rows_seen_by_task_id_only"] < MBPP_CALIBRATION_SIZE:
+ raise ValueError("source row count is too small for frozen MBPP ranking")
+ if dict(totals) != expected_totals:
+ raise ValueError("Stage-B aggregate token totals drifted")
+
+ data_access = _require_mapping(dataset.get("data_access"), context="data access")
+ limitation = data_access.get("transport_limitation")
+ if (
+ not isinstance(limitation, str)
+ or "may deserialize complete source records" not in limitation
+ or "RecurQuant application code" not in limitation
+ ):
+ raise ValueError("data-access transport limitation is missing")
+ ranking_pass = _require_mapping(
+ data_access.get("ranking_pass"),
+ context="ranking-pass access",
+ )
+ ranking_yielded = _strict_int(
+ ranking_pass.get("transport_records_yielded"),
+ context="ranking transport records",
+ )
+ if dict(ranking_pass) != {
+ "transport_records_yielded": ranking_yielded,
+ "task_id_fields_inspected": ranking_yielded,
+ "non_task_id_fields_read_by_recurquant": 0,
+ "row_mappings_retained": 0,
+ }:
+ raise ValueError("ranking-pass access counters drifted")
+ if ranking_yielded != expected_totals["source_train_rows_seen_by_task_id_only"]:
+ raise ValueError("ranking-pass access count does not match dataset totals")
+ target_pass = _require_mapping(
+ data_access.get("target_load_pass"),
+ context="target-load access",
+ )
+ target_yielded = _strict_int(
+ target_pass.get("transport_records_yielded"),
+ context="target-load transport records",
+ )
+ if target_yielded < STAGE_B_LIMIT or dict(target_pass) != {
+ "transport_records_yielded": target_yielded,
+ "task_id_fields_inspected": target_yielded,
+ "non_target_content_fields_read_by_recurquant": 0,
+ "target_rows_retained_and_canonicalized": STAGE_B_LIMIT,
+ }:
+ raise ValueError("target-load access counters drifted")
+ application_sets = _require_mapping(
+ data_access.get("application_task_id_sets"),
+ context="application task-ID sets",
+ )
+ expected_application_sets = {
+ "selected": ordered_ids,
+ "retained": ordered_ids,
+ "canonicalized": ordered_ids,
+ "formatted": ordered_ids,
+ "tokenized": ordered_ids,
+ "passed_to_model": [],
+ "evaluated": [],
+ }
+ if dict(application_sets) != expected_application_sets:
+ raise ValueError("application task-ID access sets drifted")
+ protected_intersection = _require_mapping(
+ data_access.get("protected_window_intersection"),
+ context="protected-window intersection",
+ )
+ if set(protected_intersection) != set(expected_application_sets) or any(
+ value is not False for value in protected_intersection.values()
+ ):
+ raise ValueError("protected ranked window intersects an application access set")
+
+ integrity = _require_mapping(evidence.get("integrity"), context="integrity")
+ required_true = (
+ "stage_a_authenticated_before_dataset_access",
+ "runtime_environment_authenticated_before_dataset_access",
+ "selector_artifacts_authenticated_before_dataset_access",
+ "repository_clean_at_start",
+ "repository_clean_at_end",
+ "repository_commit_stable",
+ "source_hashes_stable",
+ "task_id_only_ranking_pass",
+ "only_stage_b_content_retained_canonicalized_and_tokenized",
+ "imported_modules_resolved_to_authenticated_repository",
+ "output_path_external_or_git_ignored",
+ )
+ if any(integrity.get(field) is not True for field in required_true):
+ raise ValueError("Stage-B integrity contract contains a failed check")
+ required_false = (
+ "protected_window_8_16_content_retained_canonicalized_or_tokenized",
+ "model_weights_loaded",
+ "model_forward_pass_run",
+ "logits_or_quality_metrics_observed",
+ )
+ if any(integrity.get(field) is not False for field in required_false):
+ raise ValueError("Stage-B identity observed forbidden model/data state")
+ if set(integrity) != set(required_true) | set(required_false):
+ raise ValueError("Stage-B integrity fields drifted")
+
+ repository = _require_mapping(evidence.get("repository"), context="repository")
+ if set(repository) != {"commit", "start", "end", "stable_commit"}:
+ raise ValueError("repository fields drifted")
+ start = _require_mapping(repository.get("start"), context="repository start")
+ end = _require_mapping(repository.get("end"), context="repository end")
+ if set(start) != {"commit", "worktree_clean", "status"} or set(end) != {
+ "commit",
+ "worktree_clean",
+ "status",
+ }:
+ raise ValueError("repository snapshot fields drifted")
+ commit = repository.get("commit")
+ if (
+ not isinstance(commit, str)
+ or len(commit) != 40
+ or commit != commit.lower()
+ or not all(character in string.hexdigits for character in commit)
+ ):
+ raise ValueError("repository commit must be a full lowercase Git SHA")
+ if (
+ start.get("commit") != commit
+ or end.get("commit") != commit
+ or start.get("worktree_clean") is not True
+ or end.get("worktree_clean") is not True
+ or start.get("status") != []
+ or end.get("status") != []
+ or repository.get("stable_commit") is not True
+ ):
+ raise ValueError("repository identity was not clean and stable")
+
+ sources = _require_mapping(evidence.get("source_files"), context="source files")
+ if set(sources) != {
+ "paths",
+ "sha256_start",
+ "sha256_end",
+ "stable",
+ "imported_modules",
+ }:
+ raise ValueError("source-file fields drifted")
+ if sources.get("paths") != list(SOURCE_FILES) or sources.get("stable") is not True:
+ raise ValueError("source-file path contract drifted")
+ start_hashes = _require_mapping(sources.get("sha256_start"), context="source hashes start")
+ end_hashes = _require_mapping(sources.get("sha256_end"), context="source hashes end")
+ if dict(start_hashes) != dict(end_hashes) or set(start_hashes) != set(SOURCE_FILES):
+ raise ValueError("source-file hashes were not complete and stable")
+ if any(not _valid_sha256(value) for value in start_hashes.values()):
+ raise ValueError("source-file map contains an invalid SHA-256")
+ imported_modules = _require_mapping(
+ sources.get("imported_modules"),
+ context="imported modules",
+ )
+ if dict(imported_modules) != IMPORTED_MODULE_PATHS:
+ raise ValueError("imported-module source paths drifted")
+
+ environment = _require_mapping(evidence.get("environment"), context="environment")
+ if not isinstance(environment.get("local_files_only"), bool):
+ raise ValueError("local_files_only must be boolean")
+ expected_environment = {
+ "schema": RUNTIME_ENVIRONMENT_SCHEMA,
+ "stage_a_binding": {
+ "artifact_kind": STAGE_A_ARTIFACT_KIND,
+ "file_sha256": STAGE_A_FILE_SHA256,
+ "canonical_evidence_sha256": STAGE_A_CANONICAL_EVIDENCE_SHA256,
+ },
+ **_frozen_stage_a_runtime_environment(),
+ "runtime_matches_stage_a": True,
+ "local_files_only": environment["local_files_only"],
+ }
+ if dict(environment) != expected_environment:
+ raise ValueError("Stage-B runtime environment contract drifted")
+
+
+def load_stage_b_identity_artifact(path: str | Path) -> tuple[dict[str, Any], str]:
+ """Load and authenticate an Experiment 009 Stage-B identity artifact."""
+
+ artifact_path = Path(path)
+ verification = verify_evidence_artifact(artifact_path)
+ if verification["valid"] is not True:
+ raise ValueError(
+ "Stage-B identity artifact failed canonical verification: "
+ + "; ".join(verification["errors"])
+ )
+ raw = artifact_path.read_bytes()
+ try:
+ document = json.loads(raw.decode("utf-8"))
+ except (UnicodeDecodeError, json.JSONDecodeError) as error:
+ raise ValueError("Stage-B identity artifact must be strict UTF-8 JSON") from error
+ if (
+ not isinstance(document, dict)
+ or set(document) != {"canonical_evidence_sha256", "evidence"}
+ or not isinstance(document.get("evidence"), dict)
+ ):
+ raise ValueError("Stage-B identity artifact must contain an evidence object")
+ evidence = document["evidence"]
+ validate_stage_b_identity_evidence(evidence)
+ return evidence, _sha256_bytes(raw)
+
+
+def load_authenticated_stage_b_rows(
+ evidence: Mapping[str, Any],
+ *,
+ load_dataset_fn: LoadDataset | None = None,
+) -> AuthenticatedStageBRows:
+ """Independently re-rank IDs, then load only authenticated Stage-B content."""
+
+ validate_stage_b_identity_evidence(evidence)
+ dataset = _require_mapping(evidence.get("dataset"), context="dataset")
+ task_ids = tuple(
+ _strict_int(value, context="ordered task_id")
+ for value in _require_list(dataset.get("ordered_task_ids"), context="ordered task IDs")
+ )
+ expected_task_ids, protected_task_ids, source_row_count = (
+ _resolve_ranked_id_windows(load_dataset_fn=load_dataset_fn)
+ )
+ if task_ids != expected_task_ids:
+ raise ValueError(
+ "identity task IDs are not the independently resolved ranked window [32, 64)"
+ )
+ rows, transport_rows = _load_exact_rows_with_audit(
+ task_ids=task_ids,
+ protected_task_ids=protected_task_ids,
+ load_dataset_fn=load_dataset_fn,
+ )
+ actual_manifest = mbpp_manifest(rows, phase="calibration")
+ if actual_manifest != dataset.get("manifest"):
+ raise ValueError("runtime Stage-B row content does not match the identity manifest")
+ if mbpp_manifest_content_sha256(actual_manifest) != dataset.get(
+ "content_manifest_sha256"
+ ):
+ raise ValueError("runtime Stage-B content manifest hash drifted")
+ actual_ids = tuple(int(row["task_id"]) for row in rows)
+ if actual_ids != task_ids:
+ raise ValueError("runtime Stage-B row order drifted")
+ return AuthenticatedStageBRows(
+ rows=tuple(rows),
+ ordered_task_ids=task_ids,
+ access_audit=StageBDataAccessAudit(
+ ranking_transport_records_yielded=source_row_count,
+ ranking_task_id_fields_inspected=source_row_count,
+ target_transport_records_yielded=transport_rows,
+ target_task_id_fields_inspected=transport_rows,
+ target_rows_retained_and_canonicalized=len(rows),
+ ),
+ )
+
+
+def authenticate_stage_b_runtime_identity(
+ evidence: Mapping[str, Any],
+ rows: AuthenticatedStageBRows | Sequence[Mapping[str, Any]],
+ tokenizer: Any,
+) -> RuntimeIdentityAuthentication:
+ """Re-tokenize and authenticate the complete identity before model loading."""
+
+ validate_stage_b_identity_evidence(evidence)
+ if tokenizer.__class__.__name__ != TOKENIZER_CLASS:
+ raise ValueError(
+ f"tokenizer class drifted: {tokenizer.__class__.__name__} != {TOKENIZER_CLASS}"
+ )
+ try:
+ actual_transformers_version = importlib.metadata.version("transformers")
+ except importlib.metadata.PackageNotFoundError as error:
+ raise RuntimeError("transformers is required to authenticate token identity") from error
+ if actual_transformers_version != TRANSFORMERS_VERSION:
+ raise ValueError(
+ "transformers version drifted: "
+ f"{actual_transformers_version} != {TRANSFORMERS_VERSION}"
+ )
+
+ dataset = _require_mapping(evidence.get("dataset"), context="dataset")
+ authenticated_rows = rows if isinstance(rows, AuthenticatedStageBRows) else None
+ row_sequence = authenticated_rows.rows if authenticated_rows is not None else tuple(rows)
+ actual_manifest = mbpp_manifest(row_sequence, phase="calibration")
+ if actual_manifest != dataset.get("manifest"):
+ raise ValueError("runtime Stage-B content manifest drifted before tokenization")
+ encoded, records = tokenize_stage_b_rows(tokenizer, row_sequence)
+ if list(records) != dataset.get("tasks"):
+ raise ValueError("runtime Stage-B token records drifted")
+ if token_manifest_sha256(records) != dataset.get("token_manifest_sha256"):
+ raise ValueError("runtime Stage-B token manifest hash drifted")
+ if ordered_identity_sha256(
+ content_manifest_sha256=str(dataset["content_manifest_sha256"]),
+ task_records=records,
+ ) != dataset.get("ordered_identity_sha256"):
+ raise ValueError("runtime Stage-B ordered identity hash drifted")
+ return RuntimeIdentityAuthentication(
+ tasks=encoded,
+ ordered_task_ids=tuple(int(record["task_id"]) for record in records),
+ content_manifest_sha256=str(dataset["content_manifest_sha256"]),
+ token_manifest_sha256=str(dataset["token_manifest_sha256"]),
+ ordered_identity_sha256=str(dataset["ordered_identity_sha256"]),
+ access_audit=(
+ authenticated_rows.access_audit if authenticated_rows is not None else None
+ ),
+ )
+
+
+def authenticate_stage_a_artifact(path: str | Path) -> tuple[dict[str, Any], str]:
+ """Require the exact committed Stage-A pass before any Stage-B data access."""
+
+ artifact_path = Path(path)
+ verification = verify_evidence_artifact(
+ artifact_path,
+ expected_file_sha256=STAGE_A_FILE_SHA256,
+ expected_canonical_evidence_sha256=STAGE_A_CANONICAL_EVIDENCE_SHA256,
+ )
+ if verification["valid"] is not True:
+ raise ValueError(
+ "Stage-A authorization artifact failed authentication: "
+ + "; ".join(verification["errors"])
+ )
+ raw = artifact_path.read_bytes()
+ document = json.loads(raw.decode("utf-8"))
+ evidence = _require_mapping(document.get("evidence"), context="Stage-A evidence")
+ if evidence.get("artifact_kind") != STAGE_A_ARTIFACT_KIND:
+ raise ValueError("Stage-A artifact kind drifted")
+ gate = _require_mapping(evidence.get("stage_a_gate"), context="Stage-A gate")
+ checks = _require_mapping(gate.get("checks"), context="Stage-A gate checks")
+ if (
+ gate.get("schema") != "recurquant.experiment009-stage-a-gate.v1"
+ or gate.get("passed") is not True
+ or not checks
+ or any(
+ _require_mapping(check, context="Stage-A gate check").get("passed") is not True
+ for check in checks.values()
+ )
+ ):
+ raise ValueError("Stage-A gate did not pass every frozen check")
+ model = _require_mapping(evidence.get("model"), context="Stage-A model")
+ if model.get("id") != MODEL_ID or model.get("revision") != MODEL_REVISION:
+ raise ValueError("Stage-A model identity drifted")
+ selectors = _require_mapping(
+ evidence.get("selector_artifacts"),
+ context="Stage-A selector artifacts",
+ )
+ expected_selector_hashes = {
+ "selector_file_sha256": SELECTOR_FILE_SHA256,
+ "selector_canonical_evidence_sha256": (
+ SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ "loss_selector_file_sha256": LOSS_SELECTOR_FILE_SHA256,
+ "loss_selector_canonical_evidence_sha256": (
+ LOSS_SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ }
+ if any(
+ selectors.get(field) != expected
+ for field, expected in expected_selector_hashes.items()
+ ):
+ raise ValueError("Stage-A selector artifact hashes drifted")
+ repository = _require_mapping(evidence.get("repository"), context="Stage-A repository")
+ if (
+ repository.get("commit") != STAGE_A_IMPLEMENTATION_COMMIT
+ or repository.get("stable_commit") is not True
+ ):
+ raise ValueError("Stage-A implementation commit drifted")
+ stage_a_dataset = _require_mapping(
+ evidence.get("dataset"),
+ context="Stage-A dataset",
+ )
+ identity_gate = _require_mapping(
+ checks.get("frozen_task_identity_before_model_weights"),
+ context="Stage-A identity gate",
+ )
+ if (
+ stage_a_dataset.get("identity_authenticated_before_model_weights") is not True
+ or stage_a_dataset.get(
+ "protected_window_8_16_loaded_tokenized_or_evaluated"
+ )
+ is not False
+ or identity_gate.get("identity_authenticated_before_model_weights") is not True
+ or identity_gate.get("protected_window_8_16_accessed") is not False
+ ):
+ raise ValueError("Stage-A data-access integrity drifted")
+ return dict(evidence), _sha256_bytes(raw)
+
+
+def git_state(repository_root: Path) -> dict[str, Any]:
+ """Return a strict full-SHA and porcelain worktree snapshot."""
+
+ commit_result = subprocess.run(
+ ("git", "rev-parse", "HEAD"),
+ cwd=repository_root,
+ check=True,
+ capture_output=True,
+ text=True,
+ )
+ status_result = subprocess.run(
+ ("git", "status", "--porcelain=v1", "--untracked-files=all"),
+ cwd=repository_root,
+ check=True,
+ capture_output=True,
+ text=True,
+ )
+ commit = commit_result.stdout.strip()
+ status = status_result.stdout.splitlines()
+ if (
+ len(commit) != 40
+ or commit != commit.lower()
+ or not all(character in string.hexdigits for character in commit)
+ ):
+ raise RuntimeError("Git did not return a full lowercase commit SHA")
+ return {
+ "commit": commit,
+ "worktree_clean": not status,
+ "status": status,
+ }
+
+
+def validate_repository_start(repository_root: Path, repository: Mapping[str, Any]) -> None:
+ """Require clean committed code containing the authenticated Stage-A result."""
+
+ if repository.get("worktree_clean") is not True or repository.get("status") != []:
+ raise ValueError("Stage-B identity resolution requires a clean worktree")
+ ancestor = subprocess.run(
+ ("git", "merge-base", "--is-ancestor", STAGE_A_RESULT_COMMIT, "HEAD"),
+ cwd=repository_root,
+ check=False,
+ capture_output=True,
+ text=True,
+ )
+ if ancestor.returncode != 0:
+ raise ValueError("current HEAD does not contain the authenticated Stage-A result")
+
+
+def validate_output_path(output: Path, repository_root: Path) -> None:
+ """Require external or Git-ignored output so publication cannot dirty the run."""
+
+ resolved_output = output.resolve()
+ resolved_root = repository_root.resolve()
+ try:
+ relative = resolved_output.relative_to(resolved_root)
+ except ValueError:
+ return
+ ignored = subprocess.run(
+ ("git", "check-ignore", "--quiet", "--", str(relative)),
+ cwd=resolved_root,
+ check=False,
+ capture_output=True,
+ text=True,
+ )
+ if ignored.returncode != 0:
+ raise ValueError(
+ "Stage-B identity output inside the repository must be Git-ignored"
+ )
+
+
+def source_file_hashes(repository_root: Path) -> dict[str, str]:
+ """Hash the exact implementation, protocol, and tests used by the resolver."""
+
+ hashes: dict[str, str] = {}
+ resolved_root = repository_root.resolve()
+ for relative in SOURCE_FILES:
+ path = (resolved_root / relative).resolve()
+ try:
+ path.relative_to(resolved_root)
+ except ValueError as error:
+ raise ValueError(f"source path escapes repository root: {relative}") from error
+ if not path.is_file():
+ raise FileNotFoundError(f"required source file is missing: {relative}")
+ hashes[relative] = _sha256_bytes(path.read_bytes())
+ return hashes
+
+
+def validate_imported_module_paths(
+ repository_root: Path,
+ *,
+ modules: Mapping[str, Any] | None = None,
+) -> dict[str, str]:
+ """Bind imported RecurQuant modules to the source files being authenticated."""
+
+ active_modules = sys.modules if modules is None else modules
+ validate_all_imported_repository_modules_frozen(
+ repository_root,
+ modules=active_modules,
+ )
+ resolved_root = repository_root.resolve()
+ authenticated: dict[str, str] = {}
+ for module_name, relative_path in IMPORTED_MODULE_PATHS.items():
+ module = active_modules.get(module_name)
+ raw_path = getattr(module, "__file__", None)
+ if not isinstance(raw_path, str):
+ raise ValueError(f"imported module {module_name} has no source file")
+ actual_path = Path(raw_path).resolve()
+ expected_path = (resolved_root / relative_path).resolve()
+ if actual_path != expected_path:
+ raise ValueError(
+ f"imported module {module_name} did not resolve to authenticated "
+ f"repository source {relative_path}"
+ )
+ authenticated[module_name] = relative_path
+ return authenticated
+
+
+def validate_all_imported_repository_modules_frozen(
+ repository_root: Path,
+ *,
+ modules: Mapping[str, Any] | None = None,
+) -> dict[str, str]:
+ """Reject any imported project script or package module outside the source freeze."""
+
+ resolved_root = repository_root.resolve()
+ frozen = set(STAGE_B_SOURCE_FILES)
+ imported: dict[str, str] = {}
+ active_modules = sys.modules if modules is None else modules
+ for module_name, module in sorted(active_modules.items()):
+ raw_path = getattr(module, "__file__", None)
+ if not isinstance(raw_path, str):
+ continue
+ actual_path = Path(raw_path).resolve()
+ try:
+ relative_path = actual_path.relative_to(resolved_root).as_posix()
+ except ValueError:
+ continue
+ if not relative_path.startswith(("scripts/", "src/recurquant/")):
+ continue
+ if not actual_path.is_file():
+ raise ValueError(
+ f"imported repository module {module_name} has no source file: "
+ f"{relative_path}"
+ )
+ if relative_path not in frozen:
+ raise ValueError(
+ f"imported repository module {module_name} is outside the "
+ f"Stage-B source freeze: {relative_path}"
+ )
+ imported[module_name] = relative_path
+ return imported
+
+
+def _atomic_write(path: Path, payload: bytes) -> None:
+ path.parent.mkdir(parents=True, exist_ok=True)
+ descriptor, temporary_name = tempfile.mkstemp(
+ prefix=f".{path.name}.",
+ suffix=".tmp",
+ dir=path.parent,
+ )
+ temporary = Path(temporary_name)
+ try:
+ with os.fdopen(descriptor, "wb") as handle:
+ handle.write(payload)
+ handle.flush()
+ os.fsync(handle.fileno())
+ os.replace(temporary, path)
+ finally:
+ if temporary.exists():
+ temporary.unlink()
+
+
+def main() -> int:
+ args = parse_args()
+ repository_root = Path(__file__).resolve().parents[1]
+ repository_start = git_state(repository_root)
+ validate_repository_start(repository_root, repository_start)
+ validate_output_path(args.output, repository_root)
+ source_hashes_start = source_file_hashes(repository_root)
+ imported_module_paths = validate_imported_module_paths(repository_root)
+
+ stage_a_path = repository_root / STAGE_A_ARTIFACT_RELATIVE_PATH
+ stage_a_evidence, stage_a_file_sha = authenticate_stage_a_artifact(stage_a_path)
+ runtime_environment = authenticate_runtime_environment(
+ stage_a_evidence,
+ local_files_only=bool(args.local_files_only),
+ )
+ row_plan = build_compact_row_plan(
+ repository_root / SELECTOR_ARTIFACT_RELATIVE_PATH,
+ repository_root / LOSS_SELECTOR_ARTIFACT_RELATIVE_PATH,
+ )
+
+ resolved_rows = resolve_stage_b_rows()
+ rows = resolved_rows.rows
+ task_ids = resolved_rows.ordered_task_ids
+ source_row_count = resolved_rows.access_audit.ranking_transport_records_yielded
+ content_manifest = mbpp_manifest(rows, phase="calibration")
+ content_hash = mbpp_manifest_content_sha256(content_manifest)
+
+ actual_transformers_version = importlib.metadata.version("transformers")
+ if actual_transformers_version != TRANSFORMERS_VERSION:
+ raise ValueError(
+ "transformers version drifted before tokenization: "
+ f"{actual_transformers_version} != {TRANSFORMERS_VERSION}"
+ )
+ from transformers import AutoTokenizer
+
+ tokenizer = AutoTokenizer.from_pretrained(
+ MODEL_ID,
+ revision=MODEL_REVISION,
+ local_files_only=args.local_files_only,
+ trust_remote_code=False,
+ )
+ if tokenizer.__class__.__name__ != TOKENIZER_CLASS:
+ raise ValueError(
+ f"tokenizer class drifted: {tokenizer.__class__.__name__} != {TOKENIZER_CLASS}"
+ )
+ _encoded_tasks, task_records = tokenize_stage_b_rows(tokenizer, rows)
+ token_hash = token_manifest_sha256(task_records)
+ ordered_hash = ordered_identity_sha256(
+ content_manifest_sha256=content_hash,
+ task_records=task_records,
+ )
+
+ repository_end = git_state(repository_root)
+ source_hashes_end = source_file_hashes(repository_root)
+ if repository_end != repository_start:
+ raise RuntimeError("repository state changed during Stage-B identity resolution")
+ if source_hashes_end != source_hashes_start:
+ raise RuntimeError("source files changed during Stage-B identity resolution")
+
+ totals = {
+ "source_train_rows_seen_by_task_id_only": source_row_count,
+ "retained_rows": len(rows),
+ "prompt_tokens": sum(int(record["prompt_tokens"]) for record in task_records),
+ "code_tokens": sum(int(record["code_tokens"]) for record in task_records),
+ "aligned_scored_tokens": sum(
+ int(record["aligned_scored_tokens"]) for record in task_records
+ ),
+ "full_code_scored_tokens": sum(
+ int(record["full_code_scored_tokens"]) for record in task_records
+ ),
+ }
+ evidence: dict[str, Any] = {
+ "schema_version": 1,
+ "artifact_kind": ARTIFACT_KIND,
+ "identity_schema": IDENTITY_SCHEMA,
+ "identity_only": True,
+ "claim_boundary": CLAIM_BOUNDARY,
+ "created_at_utc": datetime.now(UTC).isoformat(),
+ "authorization": {
+ "stage_a_artifact_kind": STAGE_A_ARTIFACT_KIND,
+ "stage_a_file_sha256": stage_a_file_sha,
+ "stage_a_canonical_evidence_sha256": STAGE_A_CANONICAL_EVIDENCE_SHA256,
+ "stage_a_implementation_commit": STAGE_A_IMPLEMENTATION_COMMIT,
+ "stage_a_result_commit": STAGE_A_RESULT_COMMIT,
+ "stage_a_gate_passed": True,
+ "verified_before_dataset_access": True,
+ },
+ "row_plan": row_plan,
+ "model_contract": {
+ "id": MODEL_ID,
+ "revision": MODEL_REVISION,
+ "weights_loaded": False,
+ },
+ "tokenizer_contract": {
+ "source_id": MODEL_ID,
+ "revision": MODEL_REVISION,
+ "class": tokenizer.__class__.__name__,
+ "transformers_version": actual_transformers_version,
+ "trust_remote_code": False,
+ "prompt_add_special_tokens": True,
+ "code_add_special_tokens": False,
+ "formatter_version": MBPP_FORMATTER_VERSION,
+ "token_id_hash_serialization": TOKEN_ID_HASH_SERIALIZATION,
+ "text_hash_encoding": TEXT_HASH_ENCODING,
+ },
+ "dataset": {
+ "id": MBPP_DATASET_ID,
+ "config": MBPP_CONFIG,
+ "revision": MBPP_REVISION,
+ "phase": "calibration",
+ "source_split": mbpp_source_split("calibration"),
+ "selection_namespace": MBPP_SELECTION_NAMESPACE,
+ "formatter_version": MBPP_FORMATTER_VERSION,
+ "selection_mode": "task_id_ranking_then_exact_task_id_stream",
+ "selection_window": {
+ "offset": STAGE_B_OFFSET,
+ "limit": STAGE_B_LIMIT,
+ "stop_exclusive": STAGE_B_STOP,
+ },
+ "protected_window": {
+ "offset": PROTECTED_WINDOW[0],
+ "stop_exclusive": PROTECTED_WINDOW[1],
+ "content_retained_canonicalized_or_tokenized": False,
+ },
+ "ordered_task_ids": list(task_ids),
+ "manifest": content_manifest,
+ "content_manifest_sha256": content_hash,
+ "token_manifest_sha256": token_hash,
+ "ordered_identity_sha256": ordered_hash,
+ "tasks": list(task_records),
+ "totals": totals,
+ "data_access": resolved_rows.access_audit.as_dict(
+ selected_task_ids=task_ids,
+ ),
+ },
+ "integrity": {
+ "stage_a_authenticated_before_dataset_access": True,
+ "runtime_environment_authenticated_before_dataset_access": True,
+ "selector_artifacts_authenticated_before_dataset_access": True,
+ "repository_clean_at_start": True,
+ "repository_clean_at_end": True,
+ "repository_commit_stable": True,
+ "source_hashes_stable": True,
+ "task_id_only_ranking_pass": True,
+ "only_stage_b_content_retained_canonicalized_and_tokenized": True,
+ "imported_modules_resolved_to_authenticated_repository": True,
+ "protected_window_8_16_content_retained_canonicalized_or_tokenized": False,
+ "model_weights_loaded": False,
+ "model_forward_pass_run": False,
+ "logits_or_quality_metrics_observed": False,
+ "output_path_external_or_git_ignored": True,
+ },
+ "repository": {
+ "commit": repository_end["commit"],
+ "start": repository_start,
+ "end": repository_end,
+ "stable_commit": True,
+ },
+ "source_files": {
+ "paths": list(SOURCE_FILES),
+ "sha256_start": source_hashes_start,
+ "sha256_end": source_hashes_end,
+ "stable": True,
+ "imported_modules": imported_module_paths,
+ },
+ "environment": runtime_environment,
+ }
+ validate_stage_b_identity_evidence(evidence)
+
+ artifact = {
+ "canonical_evidence_sha256": _sha256_bytes(canonical_json_bytes(evidence)),
+ "evidence": evidence,
+ }
+ _atomic_write(args.output, canonical_json_bytes(artifact))
+ verification = verify_evidence_artifact(args.output)
+ if verification["valid"] is not True:
+ raise RuntimeError(
+ "written Stage-B identity artifact failed verification: "
+ + "; ".join(verification["errors"])
+ )
+
+ post_write_repository = git_state(repository_root)
+ post_write_source_hashes = source_file_hashes(repository_root)
+ if post_write_repository != repository_start:
+ raise RuntimeError("repository state changed while writing Stage-B identity")
+ if post_write_source_hashes != source_hashes_start:
+ raise RuntimeError("source files changed while writing Stage-B identity")
+ loaded_evidence, file_sha = load_stage_b_identity_artifact(args.output)
+ if loaded_evidence != evidence:
+ raise RuntimeError("written Stage-B identity did not round-trip exactly")
+
+ print(
+ json.dumps(
+ {
+ "artifact": str(args.output.resolve()),
+ "file_sha256": file_sha,
+ "canonical_evidence_sha256": artifact["canonical_evidence_sha256"],
+ "content_manifest_sha256": content_hash,
+ "token_manifest_sha256": token_hash,
+ "ordered_identity_sha256": ordered_hash,
+ "ordered_task_ids": list(task_ids),
+ "prompt_tokens": totals["prompt_tokens"],
+ "code_tokens": totals["code_tokens"],
+ "aligned_scored_tokens": totals["aligned_scored_tokens"],
+ "protected_window_8_16_content_selected_retained_canonicalized_"
+ "formatted_tokenized_passed_to_model_or_evaluated": False,
+ "model_weights_loaded": False,
+ "valid": True,
+ },
+ indent=2,
+ sort_keys=True,
+ )
+ )
+ return 0
+
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/scripts/screen_rht_cqer.py b/scripts/screen_rht_cqer.py
index ce4c5d1..3a8d7b5 100644
--- a/scripts/screen_rht_cqer.py
+++ b/scripts/screen_rht_cqer.py
@@ -292,6 +292,26 @@ def aggregate_state_error_evidence(records: Sequence[object]) -> dict[str, Any]:
occurrence_key = (layer_index, state_index)
write_ordinal = layer_occurrences[occurrence_key]
layer_occurrences[occurrence_key] += 1
+ if "element_count" in record and _strict_int(
+ record["element_count"],
+ context=f"state-error record {record_index} element_count",
+ ) != element_count:
+ raise ValueError("state-error element_count does not match its shape")
+ if "write_ordinal" in record and _strict_int(
+ record["write_ordinal"],
+ context=f"state-error record {record_index} write_ordinal",
+ ) != write_ordinal:
+ raise ValueError("state-error write_ordinal does not match causal order")
+ if "state_sse" in record and not math.isclose(
+ _finite_float(
+ record["state_sse"],
+ context=f"state-error record {record_index} state_sse",
+ ),
+ state_sse,
+ rel_tol=1e-12,
+ abs_tol=1e-12,
+ ):
+ raise ValueError("state-error state_sse does not match MSE times elements")
normalized_record = {
**record,
"shape": list(shape),
@@ -347,20 +367,52 @@ def aggregate_state_error_evidence(records: Sequence[object]) -> dict[str, Any]:
def validate_state_error_coverage(
state_errors: Mapping[str, Mapping[str, Any]],
) -> dict[str, Any]:
- """Require both codecs to record the same layers, writes, states, and shapes."""
+ """Recompute and authenticate exact layers, writes, states, shapes, and totals."""
if set(state_errors) != set(METHODS):
raise ValueError("state-error evidence must contain exactly CQER and RHT-CQER")
- cqer = state_errors[CQER_METHOD]
- rht = state_errors[RHT_METHOD]
- if cqer.get("coverage") != rht.get("coverage"):
- raise ValueError("CQER and RHT-CQER state-error coverage differs")
expected_records = len(FROZEN_LINEAR_LAYERS) * EXPECTED_STATE_WRITES
+ expected_coverage = [
+ {
+ "write_ordinal": write,
+ "layer_index": layer,
+ "state_index": 0,
+ "shape": [1, 16, 128, 128],
+ }
+ for write in range(EXPECTED_STATE_WRITES)
+ for layer in FROZEN_LINEAR_LAYERS
+ ]
+ final_masks: dict[str, dict[int, str]] = {}
for method, record in state_errors.items():
+ raw_records = record.get("records")
+ if isinstance(raw_records, (str, bytes)) or not isinstance(
+ raw_records, Sequence
+ ):
+ raise ValueError(f"{method} must retain raw per-write state-error records")
+ recomputed = aggregate_state_error_evidence(raw_records)
if int(record.get("record_count", -1)) != expected_records:
raise ValueError(
f"{method} must contain exactly {expected_records} state-error records"
)
+ if recomputed["record_count"] != expected_records:
+ raise ValueError(f"{method} raw state-error record count drifted")
+ if recomputed["coverage"] != expected_coverage:
+ raise ValueError(f"{method} raw state-error geometry or causal order drifted")
+ if record.get("coverage") != expected_coverage:
+ raise ValueError(f"{method} reported state-error coverage drifted")
+ if _strict_int(
+ record.get("element_count"),
+ context=f"{method} aggregate element_count",
+ ) != recomputed["element_count"]:
+ raise ValueError(f"{method} aggregate element count was not recomputed")
+ for field in ("aggregate_state_sse", "aggregate_state_mse"):
+ if not math.isclose(
+ _finite_float(record.get(field), context=f"{method} {field}"),
+ float(recomputed[field]),
+ rel_tol=1e-12,
+ abs_tol=1e-12,
+ ):
+ raise ValueError(f"{method} {field} does not match raw records")
per_layer = record.get("per_layer")
per_write = record.get("per_write")
if not isinstance(per_layer, Mapping) or set(per_layer) != {
@@ -382,11 +434,79 @@ def validate_state_error_coverage(
for write in range(EXPECTED_STATE_WRITES)
):
raise ValueError(f"{method} did not record every layer within every write")
+ for grouping_name, reported, expected in (
+ ("per-layer", per_layer, recomputed["per_layer"]),
+ ("per-write", per_write, recomputed["per_write"]),
+ ):
+ for key, expected_values in expected.items():
+ reported_values = reported[key]
+ for field in ("record_count", "element_count"):
+ if _strict_int(
+ reported_values.get(field),
+ context=f"{method} {grouping_name} {key} {field}",
+ ) != int(expected_values[field]):
+ raise ValueError(
+ f"{method} {grouping_name} {key} {field} drifted"
+ )
+ if not math.isclose(
+ _finite_float(
+ reported_values.get("state_sse"),
+ context=f"{method} {grouping_name} {key} state_sse",
+ ),
+ float(expected_values["state_sse"]),
+ rel_tol=1e-12,
+ abs_tol=1e-12,
+ ):
+ raise ValueError(
+ f"{method} {grouping_name} {key} state_sse drifted"
+ )
+ expected_selection_method = (
+ "query_ema32_weighted_aligned_mse_reduction"
+ if method == CQER_METHOD
+ else RHT_METHOD
+ )
+ method_final_masks: dict[int, str] = {}
+ for index, raw_record in enumerate(recomputed["records"]):
+ layer = FROZEN_LINEAR_LAYERS[index % len(FROZEN_LINEAR_LAYERS)]
+ write = index // len(FROZEN_LINEAR_LAYERS)
+ if (
+ raw_record.get("layer_index") != layer
+ or raw_record.get("state_index") != 0
+ or raw_record.get("shape") != [1, 16, 128, 128]
+ or raw_record.get("update_index") != index
+ or raw_record.get("write_ordinal") != write
+ or raw_record.get("source_dtype") != "torch.float32"
+ or raw_record.get("selection_method") != expected_selection_method
+ or raw_record.get("total_groups") != 2048
+ or raw_record.get("high_precision_groups")
+ != FROZEN_LAYER_QUOTAS[layer]
+ ):
+ raise ValueError(
+ f"{method} raw state-error record {index} contract drifted"
+ )
+ mask_hash = raw_record.get("high_precision_mask_sha256")
+ if (
+ not isinstance(mask_hash, str)
+ or len(mask_hash) != 64
+ or any(character not in "0123456789abcdef" for character in mask_hash)
+ ):
+ raise ValueError(f"{method} raw state-error mask hash is invalid")
+ if write == EXPECTED_STATE_WRITES - 1:
+ method_final_masks[layer] = mask_hash
+ final_masks[method] = method_final_masks
+ if state_errors[CQER_METHOD].get("coverage") != state_errors[RHT_METHOD].get(
+ "coverage"
+ ):
+ raise ValueError("CQER and RHT-CQER state-error coverage differs")
return {
"passed": True,
"record_count_per_method": expected_records,
"state_writes": EXPECTED_STATE_WRITES,
"linear_layers": list(FROZEN_LINEAR_LAYERS),
+ "final_mask_sha256s": {
+ method: {str(layer): value for layer, value in masks.items()}
+ for method, masks in final_masks.items()
+ },
}
@@ -535,6 +655,44 @@ def _metric_summary(
for field in fields
},
}
+ values = normalized[method]
+ mean_kl = float(values["mean_kl"])
+ cvar95_kl = float(values["cvar95_kl"])
+ max_kl = float(values["max_kl"])
+ top1 = float(values["top1_agreement"])
+ reference_nll = float(values["reference_nll"])
+ candidate_nll = float(values["candidate_nll"])
+ delta_nll = float(values["delta_nll"])
+ if mean_kl < 0 or cvar95_kl < 0 or max_kl < 0:
+ raise ValueError(f"{context} {method} KL metrics must be non-negative")
+ if mean_kl > cvar95_kl or cvar95_kl > max_kl:
+ raise ValueError(f"{context} {method} KL summary ordering is invalid")
+ if not 0.0 <= top1 <= 1.0:
+ raise ValueError(f"{context} {method} top1_agreement must be in [0, 1]")
+ if reference_nll < 0 or candidate_nll < 0:
+ raise ValueError(f"{context} {method} NLL metrics must be non-negative")
+ if not math.isclose(
+ delta_nll,
+ candidate_nll - reference_nll,
+ rel_tol=1e-12,
+ abs_tol=1e-12,
+ ):
+ raise ValueError(
+ f"{context} {method} delta_nll does not equal candidate minus reference"
+ )
+ reference_values = [
+ float(normalized[method]["reference_nll"]) for method in METHODS
+ ]
+ if any(
+ not math.isclose(
+ value,
+ reference_values[0],
+ rel_tol=1e-12,
+ abs_tol=1e-12,
+ )
+ for value in reference_values[1:]
+ ):
+ raise ValueError(f"{context} methods do not share one reference NLL")
return normalized
@@ -622,6 +780,15 @@ def finite_and_handshake_check() -> dict[str, Any]:
)
selector_audit = audit_selector_diagnostics(selector_diagnostics)
coverage = validate_state_error_coverage(state_errors)
+ for method in METHODS:
+ diagnostic_masks = {
+ str(record["layer_index"]): record["current_mask_sha256"]
+ for record in selector_audit["methods"][method]
+ }
+ if diagnostic_masks != coverage["final_mask_sha256s"][method]:
+ raise ValueError(
+ f"{method} final state-error masks do not match selector diagnostics"
+ )
return {
"passed": True,
"all_logits_and_metrics_finite": True,
@@ -739,7 +906,7 @@ def top1_check() -> dict[str, Any]:
def compute_unit_evidence() -> dict[str, Any]:
- """Recompute deterministic inverse, sign, and physical-pack evidence on CPU."""
+ """Recompute deterministic production-path self-consistency evidence on CPU."""
generator = torch.Generator().manual_seed(SEED)
state = torch.randn((1, 3, 7, 128), generator=generator, dtype=torch.float32)
diff --git a/tests/test_evaluate_rht_cqer_stage_b.py b/tests/test_evaluate_rht_cqer_stage_b.py
new file mode 100644
index 0000000..b8c45c1
--- /dev/null
+++ b/tests/test_evaluate_rht_cqer_stage_b.py
@@ -0,0 +1,1618 @@
+from __future__ import annotations
+
+import copy
+import json
+from pathlib import Path
+
+import pytest
+
+from recurquant.evaluation import paired_bootstrap_mean_improvement
+from scripts import evaluate_rht_cqer_stage_b as stage_b
+
+
+def _metric(
+ *,
+ task_id: int,
+ token_count: int,
+ delta_nll: float,
+ mean_kl: float,
+ cvar95_kl: float,
+ top1_agreement: float,
+) -> dict[str, float | int | bool]:
+ return {
+ "task_id": task_id,
+ "token_count": token_count,
+ "mean_kl": mean_kl,
+ "cvar95_kl": cvar95_kl,
+ "max_kl": cvar95_kl + 0.25,
+ "top1_agreement": top1_agreement,
+ "reference_nll": 1.0,
+ "candidate_nll": 1.0 + delta_nll,
+ "delta_nll": delta_nll,
+ "all_logits_finite": True,
+ }
+
+
+def _task_records() -> list[dict[str, int | str]]:
+ digest = "a" * 64
+ return [
+ {
+ "rank": stage_b.STAGE_B_OFFSET + index,
+ "task_id": 10_000 + index,
+ "row_sha256": digest,
+ "prompt_tokens": 3,
+ "code_tokens": 4,
+ "aligned_scored_tokens": 3,
+ "full_code_scored_tokens": 4,
+ "prompt_text_sha256": digest,
+ "code_text_sha256": digest,
+ "prompt_token_ids_sha256": digest,
+ "code_token_ids_sha256": digest,
+ }
+ for index in range(stage_b.STAGE_B_LIMIT)
+ ]
+
+
+def _frozen_row_plan_inputs() -> tuple[dict[str, object], dict[str, object]]:
+ resolver = stage_b.identity_resolver
+ rows = [
+ {
+ "layer_index": layer,
+ "head_index": flat_index // 128,
+ "row_index": flat_index % 128,
+ }
+ for layer in stage_b.FROZEN_LINEAR_LAYERS
+ for flat_index in range(stage_b.FROZEN_LAYER_QUOTAS[layer])
+ ]
+ selector_binding = {
+ "selector_file_sha256": resolver.SELECTOR_FILE_SHA256,
+ "selector_canonical_evidence_sha256": (
+ resolver.SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ "loss_selector_file_sha256": resolver.LOSS_SELECTOR_FILE_SHA256,
+ "loss_selector_canonical_evidence_sha256": (
+ resolver.LOSS_SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ }
+ row_plan: dict[str, object] = {
+ "schema": resolver.ROW_PLAN_SCHEMA,
+ "method": stage_b.TARGET_FISHER_SCORE,
+ "selector_binding": selector_binding,
+ "model": {
+ "id": resolver.MODEL_ID,
+ "revision": resolver.MODEL_REVISION,
+ },
+ "quantization": {
+ "low_bits": 4,
+ "high_bits": 8,
+ "group_size": 128,
+ "scale_bits": 16,
+ },
+ "accounting": {
+ "total_groups": 36_864,
+ "mask_bytes": stage_b.TARGET_MASK_BYTES,
+ "promotion_increment_bytes": 64,
+ "target_resident_bytes": stage_b.TARGET_PACKED_STATE_BYTES,
+ "resident_bytes": stage_b.TARGET_PACKED_STATE_BYTES,
+ "promoted_group_count": stage_b.TARGET_PROMOTED_ROWS,
+ },
+ "score_shapes": [
+ {"layer_index": layer, "heads": 16, "rows": 128}
+ for layer in stage_b.FROZEN_LINEAR_LAYERS
+ ],
+ "layer_quotas": {
+ str(layer): quota
+ for layer, quota in stage_b.FROZEN_LAYER_QUOTAS.items()
+ },
+ "high_precision_rows": rows,
+ }
+ row_plan["canonical_plan_sha256"] = stage_b._sha256_bytes( # noqa: SLF001
+ stage_b.canonical_json_bytes(row_plan)
+ )
+ identity = {
+ "row_plan": row_plan,
+ "model_contract": {
+ "id": resolver.MODEL_ID,
+ "revision": resolver.MODEL_REVISION,
+ "weights_loaded": False,
+ },
+ }
+ stage_a = {"selector_artifacts": dict(selector_binding)}
+ return identity, stage_a
+
+
+def _rehash_row_plan(identity: dict[str, object]) -> None:
+ row_plan = dict(identity["row_plan"]) # type: ignore[arg-type]
+ row_plan.pop("canonical_plan_sha256")
+ row_plan["canonical_plan_sha256"] = stage_b._sha256_bytes( # noqa: SLF001
+ stage_b.canonical_json_bytes(row_plan)
+ )
+ identity["row_plan"] = row_plan
+
+
+def _per_task_metrics(
+ task_records: list[dict[str, int | str]],
+ *,
+ token_field: str = "aligned_scored_tokens",
+) -> dict[str, list[dict[str, float | int | bool]]]:
+ values = {
+ stage_b.STATIC_METHOD: (0.95, 0.9, 1.8, 0.88),
+ stage_b.ADAPTIVE_METHOD: (0.90, 0.8, 1.7, 0.89),
+ stage_b.CQER_METHOD: (1.00, 1.0, 2.0, 0.900),
+ stage_b.RHT_METHOD: (0.70, 0.5, 1.5, 0.897),
+ }
+ return {
+ method: [
+ _metric(
+ task_id=int(task["task_id"]),
+ token_count=int(task[token_field]),
+ delta_nll=method_values[0],
+ mean_kl=method_values[1],
+ cvar95_kl=method_values[2],
+ top1_agreement=method_values[3],
+ )
+ for task in task_records
+ ]
+ for method, method_values in values.items()
+ }
+
+
+def _aggregates(
+ per_task: dict[str, list[dict[str, float | int | bool]]],
+) -> dict[str, dict[str, float | int]]:
+ return stage_b._expected_aggregates(per_task) # noqa: SLF001
+
+
+def _bootstrap(
+ per_task: dict[str, list[dict[str, float | int | bool]]],
+) -> dict[str, object]:
+ return paired_bootstrap_mean_improvement(
+ [float(row["delta_nll"]) for row in per_task[stage_b.CQER_METHOD]],
+ [float(row["delta_nll"]) for row in per_task[stage_b.RHT_METHOD]],
+ samples=stage_b.BOOTSTRAP_SAMPLES,
+ seed=stage_b.SEED,
+ )
+
+
+def _passing_gate_inputs() -> dict[str, object]:
+ tasks = _task_records()
+ per_task = _per_task_metrics(tasks)
+ selector_diagnostics = _selector_diagnostics(tasks)
+ per_task_state_errors = _per_task_state_errors(tasks)
+ return {
+ "aggregates": _aggregates(per_task),
+ "per_task": per_task,
+ "paired_bootstrap": _bootstrap(per_task),
+ "aggregate_state_error": stage_b.aggregate_state_errors(
+ per_task_state_errors
+ ),
+ "per_task_state_errors": per_task_state_errors,
+ "selector_diagnostics": selector_diagnostics,
+ "task_records": tasks,
+ "integrity_gate": {"passed": True},
+ }
+
+
+def _storage() -> dict[str, dict[str, int]]:
+ common = {
+ "payload_bytes": stage_b.TARGET_PAYLOAD_BYTES,
+ "scale_bytes": stage_b.TARGET_SCALE_BYTES,
+ "mask_bytes": stage_b.TARGET_MASK_BYTES,
+ "resident_bytes": stage_b.TARGET_PACKED_STATE_BYTES,
+ "high_precision_groups": stage_b.TARGET_PROMOTED_ROWS,
+ }
+ storage = {method: dict(common) for method in stage_b.METHODS}
+ for method in stage_b.QUERY_METHODS:
+ storage[method].update(
+ {
+ "selector_auxiliary_bytes": stage_b.TARGET_SELECTOR_BYTES,
+ "resident_bytes_including_selector": stage_b.TARGET_TOTAL_BYTES,
+ }
+ )
+ return storage
+
+
+def _selector_diagnostics(
+ tasks: list[dict[str, int | str]],
+) -> dict[str, list[dict[str, object]]]:
+ result: dict[str, list[dict[str, object]]] = {}
+ for method in stage_b.QUERY_METHODS:
+ task_rows: list[dict[str, object]] = []
+ for task in tasks:
+ layers: list[dict[str, object]] = []
+ for layer in stage_b.FROZEN_LINEAR_LAYERS:
+ record: dict[str, object] = {
+ "layer_index": layer,
+ "quota": stage_b.FROZEN_LAYER_QUOTAS[layer],
+ "current_selected_count": stage_b.FROZEN_LAYER_QUOTAS[layer],
+ "state_updates": 4,
+ "observations_staged": 4,
+ "observations_committed": 4,
+ "tokens_observed": 6,
+ "pending_observation": False,
+ "confirmation_two": False,
+ "selection_method": (
+ "query_ema32_weighted_aligned_mse_reduction"
+ if method == stage_b.CQER_METHOD
+ else stage_b.RHT_METHOD
+ ),
+ "current_mask_sha256": "b" * 64,
+ }
+ if method == stage_b.RHT_METHOD:
+ record.update(
+ {
+ "state_codec": "right_rht_sha256_signs_v1",
+ "state_codec_seed": stage_b.SEED,
+ "state_codec_axis": "value",
+ "state_codec_normalization": "orthonormal",
+ "state_codec_persistent_tensor_bytes": 0,
+ }
+ )
+ layers.append(record)
+ task_rows.append({"task_id": int(task["task_id"]), "layers": layers})
+ result[method] = task_rows
+ return result
+
+
+def _state_error_summary(*, method: str, sse_per_record: float) -> dict[str, object]:
+ writes = 4
+ layers = stage_b.FROZEN_LINEAR_LAYERS
+ elements_per_record = 16 * 128 * 128
+ record_count = writes * len(layers)
+ element_count = record_count * elements_per_record
+ selection_method = (
+ "query_ema32_weighted_aligned_mse_reduction"
+ if method == stage_b.CQER_METHOD
+ else stage_b.RHT_METHOD
+ )
+ records: list[dict[str, object]] = []
+ for write in range(writes):
+ for layer in layers:
+ quota = stage_b.FROZEN_LAYER_QUOTAS[layer]
+ payload = 2_048 * 64 + quota * 64
+ scale = 2_048 * 2
+ mask = 2_048 // 8
+ records.append(
+ {
+ "update_index": len(records),
+ "layer_index": layer,
+ "state_index": 0,
+ "low_bits": 4,
+ "high_bits": 8,
+ "group_size": 128,
+ "scale_bits": 16,
+ "rounding": "nearest",
+ "source_dtype": "torch.float32",
+ "shape": [1, 16, 128, 128],
+ "total_groups": 2_048,
+ "high_precision_groups": quota,
+ "selection_method": selection_method,
+ "high_precision_mask_sha256": "b" * 64,
+ "baseline_bytes": elements_per_record * 4,
+ "payload_bytes": payload,
+ "scale_bytes": scale,
+ "mask_bytes": mask,
+ "resident_bytes": payload + scale + mask,
+ "relative_l2_error": 0.1,
+ "mean_squared_error": sse_per_record / elements_per_record,
+ "max_absolute_error": 0.2,
+ "element_count": elements_per_record,
+ "state_sse": sse_per_record,
+ "write_ordinal": write,
+ }
+ )
+ coverage = [
+ {
+ "write_ordinal": int(record["write_ordinal"]),
+ "layer_index": int(record["layer_index"]),
+ "state_index": 0,
+ "shape": [1, 16, 128, 128],
+ }
+ for record in records
+ ]
+ total_sse = sse_per_record * record_count
+ return {
+ "record_count": record_count,
+ "element_count": element_count,
+ "aggregate_state_sse": total_sse,
+ "aggregate_state_mse": total_sse / element_count,
+ "coverage": coverage,
+ "per_layer": {
+ str(layer): {
+ "record_count": writes,
+ "element_count": writes * elements_per_record,
+ "state_sse": sum(sse_per_record for _ in range(writes)),
+ }
+ for layer in layers
+ },
+ "per_write": {
+ str(write): {
+ "record_count": len(layers),
+ "element_count": len(layers) * elements_per_record,
+ "state_sse": sum(sse_per_record for _ in layers),
+ }
+ for write in range(writes)
+ },
+ "records": records,
+ }
+
+
+def _per_task_state_errors(
+ tasks: list[dict[str, int | str]],
+) -> dict[str, list[dict[str, object]]]:
+ return {
+ method: [
+ {
+ "task_id": int(task["task_id"]),
+ "state_error": _state_error_summary(
+ method=method,
+ sse_per_record=(
+ 1.0 if method == stage_b.CQER_METHOD else 0.4
+ ),
+ ),
+ }
+ for task in tasks
+ ]
+ for method in stage_b.QUERY_METHODS
+ }
+
+
+def _reference_aligned_summary(*, sse_per_layer: float) -> dict[str, object]:
+ expected_shape = [1, 16, 128, 128]
+ elements = 16 * 128 * 128
+ writes: list[dict[str, object]] = []
+ for write in range(4):
+ layers = [
+ {
+ "layer_index": layer,
+ "state_index": 0,
+ "shape": expected_shape,
+ "element_count": elements,
+ "state_sse": sse_per_layer,
+ "state_mse": sse_per_layer / elements,
+ "relative_l2_error": 0.1,
+ "max_absolute_error": 0.2,
+ }
+ for layer in stage_b.FROZEN_LINEAR_LAYERS
+ ]
+ writes.append(
+ {
+ "write_ordinal": write,
+ "record_count": len(layers),
+ "element_count": len(layers) * elements,
+ "state_sse": sum(sse_per_layer for _ in layers),
+ "layers": layers,
+ }
+ )
+ total_elements = sum(int(write["element_count"]) for write in writes)
+ total_sse = sum(float(write["state_sse"]) for write in writes)
+ return {
+ "metric": "candidate_materialized_state_minus_matched_fp32_state",
+ "write_count": len(writes),
+ "record_count": len(writes) * len(stage_b.FROZEN_LINEAR_LAYERS),
+ "element_count": total_elements,
+ "aggregate_state_sse": total_sse,
+ "aggregate_state_mse": total_sse / total_elements,
+ "writes": writes,
+ }
+
+
+def _per_task_reference_aligned_state_errors(
+ tasks: list[dict[str, int | str]],
+) -> dict[str, list[dict[str, object]]]:
+ return {
+ method: [
+ {
+ "task_id": int(task["task_id"]),
+ "state_error": _reference_aligned_summary(
+ sse_per_layer=(
+ 2.0 if method == stage_b.CQER_METHOD else 1.0
+ )
+ ),
+ }
+ for task in tasks
+ ]
+ for method in stage_b.QUERY_METHODS
+ }
+
+
+def _unit_evidence() -> dict[str, object]:
+ return {
+ "production_self_check": {
+ "inverse_relative_l2": 1e-7,
+ "inverse_relative_l2_threshold": stage_b.MAX_RHT_INVERSE_RELATIVE_L2,
+ "physical_pack_matches_transformed_qdq": True,
+ "physical_pack_max_abs_difference": 0.0,
+ "physical_pack_storage_bytes": (
+ stage_b.PRODUCTION_SELF_CHECK_STORAGE_BYTES
+ ),
+ "sign_schedule_sha256": stage_b.EXPECTED_SIGN_SCHEDULE_SHA256,
+ "expected_sign_schedule_sha256": (
+ stage_b.EXPECTED_SIGN_SCHEDULE_SHA256
+ ),
+ "seed": stage_b.SEED,
+ "device": "cpu",
+ "dtype": "torch.float32",
+ },
+ "independent_dense_reference": {
+ "reference": stage_b.INDEPENDENT_REFERENCE_DESCRIPTION,
+ "passed": True,
+ "signs_exact": True,
+ "encode_max_abs_difference": 1e-7,
+ "encode_max_abs_threshold": (
+ stage_b.INDEPENDENT_ENCODE_MAX_ABS_THRESHOLD
+ ),
+ "physical_pack_max_abs_difference": 1e-7,
+ "physical_pack_max_abs_threshold": (
+ stage_b.INDEPENDENT_PACK_MAX_ABS_THRESHOLD
+ ),
+ },
+ }
+
+
+def _integrity_flags() -> dict[str, bool]:
+ return {
+ "repository_clean_at_start": True,
+ "repository_clean_at_end": True,
+ "repository_commit_stable": True,
+ "source_hashes_stable": True,
+ "stage_a_artifact_committed_authenticated_and_passed": True,
+ "identity_artifact_committed_and_authenticated": True,
+ "identity_authenticated_before_model_weights": True,
+ "identity_row_plan_authenticated": True,
+ "identity_source_freeze_matches_current_bytes": True,
+ "imported_modules_resolved_to_authenticated_repository": True,
+ "runtime_environment_authenticated_before_dataset_access": True,
+ (
+ "protected_window_8_16_content_selected_retained_canonicalized_"
+ "formatted_tokenized_passed_to_model_or_evaluated"
+ ): False,
+ }
+
+
+def _token_traces(
+ tasks: list[dict[str, int | str]],
+ *,
+ token_field: str,
+) -> dict[str, list[dict[str, object]]]:
+ method_values = {
+ stage_b.STATIC_METHOD: (0.95, 0.9),
+ stage_b.ADAPTIVE_METHOD: (0.90, 0.8),
+ stage_b.CQER_METHOD: (1.00, 1.0),
+ stage_b.RHT_METHOD: (0.70, 0.5),
+ }
+ result: dict[str, list[dict[str, object]]] = {}
+ for method, (delta, kl) in method_values.items():
+ rows: list[dict[str, object]] = []
+ for task in tasks:
+ count = int(task[token_field])
+ payload = {
+ "token_count": count,
+ "kl": [kl] * count,
+ "reference_nll": [1.0] * count,
+ "candidate_nll": [1.0 + delta] * count,
+ "top1_agreement": [True] * count,
+ "outputs_finite": [True] * count,
+ }
+ rows.append(
+ {
+ "task_id": int(task["task_id"]),
+ **payload,
+ "canonical_primitives_sha256": stage_b._sha256_bytes( # noqa: SLF001
+ stage_b.canonical_json_bytes(payload)
+ ),
+ }
+ )
+ result[method] = rows
+ return result
+
+
+def _summaries_from_traces(
+ traces: dict[str, list[dict[str, object]]],
+) -> dict[str, list[dict[str, float | int | bool]]]:
+ return {
+ method: [
+ {
+ "task_id": int(trace["task_id"]),
+ **stage_b._summary_from_trace(trace), # noqa: SLF001
+ }
+ for trace in method_traces
+ ]
+ for method, method_traces in traces.items()
+ }
+
+
+def _passing_integrity_inputs() -> dict[str, object]:
+ tasks = _task_records()
+ traces = _token_traces(tasks, token_field="aligned_scored_tokens")
+ full_traces = _token_traces(tasks, token_field="full_code_scored_tokens")
+ per_task = _summaries_from_traces(traces)
+ full = _summaries_from_traces(full_traces)
+ return {
+ "per_task": per_task,
+ "per_task_full_code": full,
+ "per_task_token_traces": traces,
+ "per_task_full_code_token_traces": full_traces,
+ "aggregates": _aggregates(per_task),
+ "aggregates_full_code": _aggregates(full),
+ "storage": _storage(),
+ "selector_diagnostics": _selector_diagnostics(tasks),
+ "per_task_state_errors": _per_task_state_errors(tasks),
+ "per_task_reference_aligned_state_errors": (
+ _per_task_reference_aligned_state_errors(tasks)
+ ),
+ "task_records": tasks,
+ "unit_evidence": _unit_evidence(),
+ "integrity": _integrity_flags(),
+ }
+
+
+def _result_identity_dataset(
+ tasks: list[dict[str, int | str]],
+) -> dict[str, object]:
+ resolver = stage_b.identity_resolver
+ ordered_ids = [int(task["task_id"]) for task in tasks]
+ manifest = {
+ "schema": resolver.MBPP_MANIFEST_SCHEMA,
+ "dataset_id": resolver.MBPP_DATASET_ID,
+ "config": resolver.MBPP_CONFIG,
+ "revision": resolver.MBPP_REVISION,
+ "phase": "calibration",
+ "source_split": resolver.mbpp_source_split("calibration"),
+ "selection_namespace": resolver.MBPP_SELECTION_NAMESPACE,
+ "formatter_version": resolver.MBPP_FORMATTER_VERSION,
+ "row_count": stage_b.STAGE_B_LIMIT,
+ "rows": [
+ {"task_id": int(task["task_id"]), "sha256": task["row_sha256"]}
+ for task in tasks
+ ],
+ }
+ content_hash = stage_b.mbpp_manifest_content_sha256(manifest)
+ token_hash = resolver.token_manifest_sha256(tasks)
+ ordered_hash = resolver.ordered_identity_sha256(
+ content_manifest_sha256=content_hash,
+ task_records=tasks,
+ )
+ source_rows = resolver.MBPP_CALIBRATION_SIZE
+ target_rows_seen = stage_b.STAGE_B_STOP
+ application_keys = (
+ "selected",
+ "retained",
+ "canonicalized",
+ "formatted",
+ "tokenized",
+ "passed_to_model",
+ "evaluated",
+ )
+ data_access = {
+ "transport_limitation": stage_b.DATA_ACCESS_TRANSPORT_LIMITATION,
+ "ranking_pass": {
+ "transport_records_yielded": source_rows,
+ "task_id_fields_inspected": source_rows,
+ "non_task_id_fields_read_by_recurquant": 0,
+ "row_mappings_retained": 0,
+ },
+ "target_load_pass": {
+ "transport_records_yielded": target_rows_seen,
+ "task_id_fields_inspected": target_rows_seen,
+ "non_target_content_fields_read_by_recurquant": 0,
+ "target_rows_retained_and_canonicalized": stage_b.STAGE_B_LIMIT,
+ },
+ "application_task_id_sets": {
+ "selected": ordered_ids,
+ "retained": ordered_ids,
+ "canonicalized": ordered_ids,
+ "formatted": ordered_ids,
+ "tokenized": ordered_ids,
+ "passed_to_model": [],
+ "evaluated": [],
+ },
+ "protected_window_intersection": {
+ key: False for key in application_keys
+ },
+ }
+ return {
+ "id": resolver.MBPP_DATASET_ID,
+ "config": resolver.MBPP_CONFIG,
+ "revision": resolver.MBPP_REVISION,
+ "phase": "calibration",
+ "source_split": resolver.mbpp_source_split("calibration"),
+ "selection_namespace": resolver.MBPP_SELECTION_NAMESPACE,
+ "formatter_version": resolver.MBPP_FORMATTER_VERSION,
+ "selection_mode": "task_id_ranking_then_exact_task_id_stream",
+ "selection_window": {
+ "offset": stage_b.STAGE_B_OFFSET,
+ "limit": stage_b.STAGE_B_LIMIT,
+ "stop_exclusive": stage_b.STAGE_B_STOP,
+ },
+ "protected_window": {
+ "offset": stage_b.PROTECTED_WINDOW[0],
+ "stop_exclusive": stage_b.PROTECTED_WINDOW[1],
+ "content_retained_canonicalized_or_tokenized": False,
+ },
+ "ordered_task_ids": ordered_ids,
+ "manifest": manifest,
+ "content_manifest_sha256": content_hash,
+ "token_manifest_sha256": token_hash,
+ "ordered_identity_sha256": ordered_hash,
+ "tasks": tasks,
+ "totals": {
+ "source_train_rows_seen_by_task_id_only": source_rows,
+ "retained_rows": stage_b.STAGE_B_LIMIT,
+ "prompt_tokens": sum(int(task["prompt_tokens"]) for task in tasks),
+ "code_tokens": sum(int(task["code_tokens"]) for task in tasks),
+ "aligned_scored_tokens": sum(
+ int(task["aligned_scored_tokens"]) for task in tasks
+ ),
+ "full_code_scored_tokens": sum(
+ int(task["full_code_scored_tokens"]) for task in tasks
+ ),
+ },
+ "data_access": data_access,
+ }
+
+
+def _result_runtime_environment() -> dict[str, object]:
+ resolver = stage_b.identity_resolver
+ version = ".".join(str(item) for item in resolver.STAGE_A_PYTHON_VERSION)
+ return {
+ "schema": resolver.RUNTIME_ENVIRONMENT_SCHEMA,
+ "stage_a_binding": {
+ "artifact_kind": stage_b.STAGE_A_ARTIFACT_KIND,
+ "file_sha256": resolver.STAGE_A_FILE_SHA256,
+ "canonical_evidence_sha256": resolver.STAGE_A_CANONICAL_EVIDENCE_SHA256,
+ },
+ "python": {
+ "major": resolver.STAGE_A_PYTHON_VERSION[0],
+ "minor": resolver.STAGE_A_PYTHON_VERSION[1],
+ "micro": resolver.STAGE_A_PYTHON_VERSION[2],
+ "version": version,
+ },
+ "packages": dict(resolver.STAGE_A_PACKAGE_VERSIONS),
+ "cuda": dict(resolver.STAGE_A_CUDA_CONTRACT),
+ "runtime_matches_stage_a": True,
+ "local_files_only": False,
+ }
+
+
+def _stage_b_result_document() -> dict[str, object]:
+ inputs = _passing_integrity_inputs()
+ per_task = inputs["per_task"]
+ state_aggregates = stage_b.aggregate_state_errors(
+ inputs["per_task_state_errors"]
+ )
+ bootstrap = _bootstrap(per_task)
+ integrity = stage_b.evaluate_stage_b_integrity(**inputs)
+ gate = stage_b.evaluate_stage_b_gate(
+ aggregates=inputs["aggregates"],
+ per_task=per_task,
+ paired_bootstrap=bootstrap,
+ aggregate_state_error=state_aggregates,
+ per_task_state_errors=inputs["per_task_state_errors"],
+ selector_diagnostics=inputs["selector_diagnostics"],
+ task_records=inputs["task_records"],
+ integrity_gate=integrity,
+ )
+ tasks = inputs["task_records"]
+ ordered_ids = [int(task["task_id"]) for task in tasks]
+ identity_dataset = _result_identity_dataset(tasks)
+ identity_access = identity_dataset["data_access"]
+ application_keys = (
+ "selected",
+ "retained",
+ "canonicalized",
+ "formatted",
+ "tokenized",
+ "passed_to_model",
+ "evaluated",
+ )
+ source_hashes = {path: "c" * 64 for path in stage_b.SOURCE_FILES}
+ runtime_environment = _result_runtime_environment()
+ python_version = runtime_environment["python"]["version"]
+ evidence: dict[str, object] = {
+ "schema_version": 1,
+ "artifact_kind": stage_b.ARTIFACT_KIND,
+ "diagnostic_only": True,
+ "claim_boundary": stage_b.RESULT_CLAIM_BOUNDARY,
+ "created_at_utc": "2026-07-26T00:00:00+00:00",
+ "protocol": {
+ "name": "Experiment 009 Stage B",
+ "ranked_window": [stage_b.STAGE_B_OFFSET, stage_b.STAGE_B_STOP],
+ "protected_ranked_window": list(stage_b.PROTECTED_WINDOW),
+ "protected_window_application_content_intersection": False,
+ "methods_locked": True,
+ "thresholds_locked": True,
+ "bootstrap_samples": stage_b.BOOTSTRAP_SAMPLES,
+ "bootstrap_seed": stage_b.SEED,
+ },
+ "prerequisite_artifacts": {
+ "stage_a": {
+ "path": stage_b.identity_resolver.STAGE_A_ARTIFACT_RELATIVE_PATH,
+ "sha256": stage_b.identity_resolver.STAGE_A_FILE_SHA256,
+ "git_blob_sha256": stage_b.identity_resolver.STAGE_A_FILE_SHA256,
+ "artifact_sha256": stage_b.identity_resolver.STAGE_A_FILE_SHA256,
+ "canonical_evidence_sha256": (
+ stage_b.identity_resolver.STAGE_A_CANONICAL_EVIDENCE_SHA256
+ ),
+ "implementation_commit": (
+ stage_b.identity_resolver.STAGE_A_IMPLEMENTATION_COMMIT
+ ),
+ "gate_recomputed_and_passed": "true",
+ "artifact_kind": stage_b.STAGE_A_ARTIFACT_KIND,
+ "historical_path_privacy_limitation": (
+ stage_b.STAGE_A_PATH_PRIVACY_LIMITATION
+ ),
+ },
+ "stage_b_identity": {
+ "path": "evidence/experiment009-stage-b-identity.json",
+ "sha256": "d" * 64,
+ "git_blob_sha256": "d" * 64,
+ "artifact_sha256": "d" * 64,
+ "canonical_evidence_sha256": "e" * 64,
+ "resolver_commit": "f" * 40,
+ "artifact_kind": stage_b.IDENTITY_ARTIFACT_KIND,
+ },
+ "committed_row_plan": {
+ "passed": True,
+ "canonical_plan_sha256": "1" * 64,
+ "method": stage_b.TARGET_FISHER_SCORE,
+ "promoted_group_count": stage_b.TARGET_PROMOTED_ROWS,
+ "resident_bytes": stage_b.TARGET_PACKED_STATE_BYTES,
+ "selector_binding": {
+ "selector_file_sha256": (
+ stage_b.identity_resolver.SELECTOR_FILE_SHA256
+ ),
+ "selector_canonical_evidence_sha256": (
+ stage_b.identity_resolver.SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ "loss_selector_file_sha256": (
+ stage_b.identity_resolver.LOSS_SELECTOR_FILE_SHA256
+ ),
+ "loss_selector_canonical_evidence_sha256": (
+ stage_b.identity_resolver.LOSS_SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ },
+ },
+ "identity_source_freeze": {
+ "passed": True,
+ "path_count": len(stage_b.SOURCE_FILES),
+ "paths": list(stage_b.SOURCE_FILES),
+ "sha256": source_hashes,
+ },
+ },
+ "model": {
+ "id": stage_b.identity_resolver.MODEL_ID,
+ "revision": stage_b.identity_resolver.MODEL_REVISION,
+ "dtype": "torch.bfloat16",
+ "device": "cuda",
+ },
+ "methods": list(stage_b.METHODS),
+ "dataset": {
+ "phase": "calibration",
+ "selection_mode": (
+ "committed_exact_task_ids_from_ranked_window_32_64"
+ ),
+ "identity": identity_dataset,
+ "identity_validation": {
+ "passed": True,
+ "authenticated_before_model_weights": True,
+ "ordered_task_ids": ordered_ids,
+ "content_manifest_sha256": (
+ identity_dataset["content_manifest_sha256"]
+ ),
+ "token_manifest_sha256": identity_dataset["token_manifest_sha256"],
+ "ordered_identity_sha256": identity_dataset["ordered_identity_sha256"],
+ },
+ "data_access": {
+ "transport_limitation": stage_b.DATA_ACCESS_TRANSPORT_LIMITATION,
+ "identity_resolution": copy.deepcopy(identity_access),
+ "evaluator_target_load": copy.deepcopy(
+ identity_access["target_load_pass"]
+ ),
+ "evaluator_application_task_id_sets": {
+ key: ordered_ids for key in application_keys
+ },
+ "protected_window_intersection": {
+ key: False for key in application_keys
+ },
+ "non_target_source_records": {
+ "recurquant_fields_inspected": ["task_id"],
+ (
+ "content_retained_canonicalized_formatted_tokenized_"
+ "or_evaluated"
+ ): False,
+ },
+ },
+ "identity_authenticated_before_model_weights": True,
+ stage_b.PROTECTED_EVALUATION_FIELD: False,
+ },
+ "metric_contract": {
+ "primary": (
+ "task-macro aligned excess next-token NLL versus FP32 state"
+ ),
+ "aligned_excludes": "prompt-to-first-code-token prediction",
+ "secondary": "task-macro full-code metrics",
+ "paired_bootstrap_samples": stage_b.BOOTSTRAP_SAMPLES,
+ "paired_bootstrap_seed": stage_b.SEED,
+ },
+ "storage": {
+ "fp32_reference_recurrent_state_bytes": 10_000_000,
+ "candidates": inputs["storage"],
+ },
+ "aggregates": inputs["aggregates"],
+ "aggregates_full_code_secondary": inputs["aggregates_full_code"],
+ "per_task": per_task,
+ "per_task_full_code_secondary": inputs["per_task_full_code"],
+ "per_task_token_primitives": inputs["per_task_token_traces"],
+ "per_task_full_code_token_primitives": (
+ inputs["per_task_full_code_token_traces"]
+ ),
+ "paired_bootstrap_cqer_minus_rht_aligned_delta_nll": bootstrap,
+ "selector_diagnostics": inputs["selector_diagnostics"],
+ "state_error": {
+ "primary_gate_metric": stage_b.PRIMARY_STATE_ERROR_METRIC,
+ "aggregates": state_aggregates,
+ "per_task": inputs["per_task_state_errors"],
+ "reference_aligned_secondary": {
+ "metric": stage_b.REFERENCE_ALIGNED_STATE_ERROR_METRIC,
+ "per_task": inputs["per_task_reference_aligned_state_errors"]
+ },
+ },
+ "unit_evidence": inputs["unit_evidence"],
+ "integrity_inputs": inputs["integrity"],
+ "stage_b_integrity": integrity,
+ "stage_b_gate": gate,
+ "runtime_environment": runtime_environment,
+ "environment": {
+ "python": f"{python_version} test-build",
+ "platform": "Windows-test",
+ "packages": dict(stage_b.identity_resolver.STAGE_A_PACKAGE_VERSIONS),
+ "cuda_available": True,
+ "cuda_runtime": (
+ stage_b.identity_resolver.STAGE_A_CUDA_CONTRACT[
+ "runtime_version"
+ ]
+ ),
+ "gpu": "Test CUDA GPU",
+ },
+ "repository": {
+ "commit": "2" * 40,
+ "start": {
+ "commit": "2" * 40,
+ "worktree_clean": True,
+ "status": [],
+ },
+ "end": {
+ "commit": "2" * 40,
+ "worktree_clean": True,
+ "status": [],
+ },
+ "stable_commit": True,
+ },
+ "source_files": {
+ "paths": list(stage_b.SOURCE_FILES),
+ "sha256_start": source_hashes,
+ "sha256_end": dict(source_hashes),
+ "stable": True,
+ "imported_module_paths": dict(stage_b.RESULT_IMPORTED_MODULE_PATHS),
+ },
+ "command_template": [
+ "python",
+ "scripts/evaluate_rht_cqer_stage_b.py",
+ "--stage-a-artifact",
+ "",
+ "--identity-artifact",
+ "",
+ "--output",
+ "",
+ "--device",
+ "auto",
+ ],
+ }
+ return {
+ "schema_version": 1,
+ "artifact_kind": stage_b.ARTIFACT_KIND,
+ "canonical_evidence_sha256": stage_b._sha256_bytes( # noqa: SLF001
+ stage_b.canonical_json_bytes(evidence)
+ ),
+ "evidence": evidence,
+ }
+
+
+def _write_result_document(path: Path, document: dict[str, object]) -> None:
+ path.write_bytes(stage_b.canonical_json_bytes(document))
+
+
+def _rehash_result_document(document: dict[str, object]) -> None:
+ document["canonical_evidence_sha256"] = stage_b._sha256_bytes( # noqa: SLF001
+ stage_b.canonical_json_bytes(document["evidence"])
+ )
+
+
+def _recompute_result_outcomes(document: dict[str, object]) -> None:
+ evidence = document["evidence"]
+ assert isinstance(evidence, dict)
+ dataset = evidence["dataset"]
+ assert isinstance(dataset, dict)
+ identity_dataset = dataset["identity"]
+ assert isinstance(identity_dataset, dict)
+ state_error = evidence["state_error"]
+ assert isinstance(state_error, dict)
+ reference_aligned = state_error["reference_aligned_secondary"]
+ assert isinstance(reference_aligned, dict)
+ storage = evidence["storage"]
+ assert isinstance(storage, dict)
+ integrity = stage_b.evaluate_stage_b_integrity(
+ per_task=evidence["per_task"],
+ per_task_full_code=evidence["per_task_full_code_secondary"],
+ per_task_token_traces=evidence["per_task_token_primitives"],
+ per_task_full_code_token_traces=(
+ evidence["per_task_full_code_token_primitives"]
+ ),
+ aggregates=evidence["aggregates"],
+ aggregates_full_code=evidence["aggregates_full_code_secondary"],
+ storage=storage["candidates"],
+ selector_diagnostics=evidence["selector_diagnostics"],
+ per_task_state_errors=state_error["per_task"],
+ per_task_reference_aligned_state_errors=reference_aligned["per_task"],
+ task_records=identity_dataset["tasks"],
+ unit_evidence=evidence["unit_evidence"],
+ integrity=evidence["integrity_inputs"],
+ )
+ evidence["stage_b_integrity"] = integrity
+ evidence["stage_b_gate"] = stage_b.evaluate_stage_b_gate(
+ aggregates=evidence["aggregates"],
+ per_task=evidence["per_task"],
+ paired_bootstrap=(
+ evidence["paired_bootstrap_cqer_minus_rht_aligned_delta_nll"]
+ ),
+ aggregate_state_error=state_error["aggregates"],
+ per_task_state_errors=state_error["per_task"],
+ selector_diagnostics=evidence["selector_diagnostics"],
+ task_records=identity_dataset["tasks"],
+ integrity_gate=integrity,
+ )
+ _rehash_result_document(document)
+
+
+def test_stage_b_gate_passes_exactly_eight_frozen_checks() -> None:
+ gate = stage_b.evaluate_stage_b_gate(**_passing_gate_inputs())
+
+ assert gate["passed"] is True
+ assert gate["integrity_passed"] is True
+ assert len(gate["advancement_checks"]) == 8
+ assert all(check["passed"] is True for check in gate["advancement_checks"].values())
+
+
+@pytest.mark.parametrize(
+ "check_name",
+ [
+ "macro_excess_nll_relative_reduction",
+ "paired_95pct_lower_bound_above_zero",
+ "at_least_20_task_level_excess_nll_wins",
+ "lower_macro_mean_kl",
+ "macro_cvar95_kl_not_higher",
+ "macro_top1_disadvantage_at_most_0_005",
+ "maximum_task_excess_nll_disadvantage_at_most_0_25",
+ "aggregate_state_sse_relative_reduction",
+ ],
+)
+def test_each_stage_b_advancement_condition_fails_closed(check_name: str) -> None:
+ inputs = copy.deepcopy(_passing_gate_inputs())
+ per_task = inputs["per_task"]
+
+ if check_name == "macro_excess_nll_relative_reduction":
+ for row in per_task[stage_b.RHT_METHOD]:
+ row.update({"candidate_nll": 1.85, "delta_nll": 0.85})
+ inputs["aggregates"] = _aggregates(per_task)
+ inputs["paired_bootstrap"] = _bootstrap(per_task)
+ elif check_name == "paired_95pct_lower_bound_above_zero":
+ inputs["paired_bootstrap"]["confidence_interval"] = [-0.01, 0.2]
+ elif check_name == "at_least_20_task_level_excess_nll_wins":
+ for index, row in enumerate(per_task[stage_b.RHT_METHOD]):
+ delta = 0.5 if index < 19 else 1.1
+ row.update({"candidate_nll": 1.0 + delta, "delta_nll": delta})
+ inputs["aggregates"] = _aggregates(per_task)
+ inputs["paired_bootstrap"] = _bootstrap(per_task)
+ elif check_name == "lower_macro_mean_kl":
+ for row in per_task[stage_b.RHT_METHOD]:
+ row["mean_kl"] = 1.0
+ inputs["aggregates"] = _aggregates(per_task)
+ elif check_name == "macro_cvar95_kl_not_higher":
+ for row in per_task[stage_b.RHT_METHOD]:
+ row.update({"cvar95_kl": 2.1, "max_kl": 2.35})
+ inputs["aggregates"] = _aggregates(per_task)
+ elif check_name == "macro_top1_disadvantage_at_most_0_005":
+ for row in per_task[stage_b.RHT_METHOD]:
+ row["top1_agreement"] = 0.894
+ inputs["aggregates"] = _aggregates(per_task)
+ elif check_name == "maximum_task_excess_nll_disadvantage_at_most_0_25":
+ per_task[stage_b.RHT_METHOD][0].update(
+ {"candidate_nll": 2.3, "delta_nll": 1.3}
+ )
+ inputs["aggregates"] = _aggregates(per_task)
+ inputs["paired_bootstrap"] = _bootstrap(per_task)
+ elif check_name == "aggregate_state_sse_relative_reduction":
+ for task in inputs["per_task_state_errors"][stage_b.RHT_METHOD]:
+ task["state_error"] = _state_error_summary(
+ method=stage_b.RHT_METHOD,
+ sse_per_record=0.51,
+ )
+ inputs["aggregate_state_error"] = stage_b.aggregate_state_errors(
+ inputs["per_task_state_errors"]
+ )
+
+ gate = stage_b.evaluate_stage_b_gate(**inputs)
+
+ assert gate["passed"] is False
+ assert gate["advancement_checks"][check_name]["passed"] is False
+
+
+def test_stage_b_gate_cannot_pass_when_integrity_fails() -> None:
+ inputs = _passing_gate_inputs()
+ inputs["integrity_gate"] = {"passed": False}
+
+ gate = stage_b.evaluate_stage_b_gate(**inputs)
+
+ assert gate["passed"] is False
+ assert gate["integrity_passed"] is False
+ assert all(check["passed"] is True for check in gate["advancement_checks"].values())
+
+
+def test_stage_b_gate_rejects_detached_macro_aggregate() -> None:
+ inputs = _passing_gate_inputs()
+ for row in inputs["per_task"][stage_b.RHT_METHOD]:
+ row.update({"candidate_nll": 1.99, "delta_nll": 0.99})
+ inputs["paired_bootstrap"] = _bootstrap(inputs["per_task"])
+
+ with pytest.raises(ValueError, match="aggregate differs"):
+ stage_b.evaluate_stage_b_gate(**inputs)
+
+
+def test_stage_b_gate_rejects_detached_state_aggregate() -> None:
+ inputs = _passing_gate_inputs()
+ inputs["aggregate_state_error"][stage_b.RHT_METHOD][
+ "aggregate_state_sse"
+ ] = 0.0
+
+ with pytest.raises(ValueError, match="differs from raw state-error"):
+ stage_b.evaluate_stage_b_gate(**inputs)
+
+
+def test_stage_b_result_loader_recomputes_the_exact_canonical_result(
+ tmp_path: Path,
+) -> None:
+ document = _stage_b_result_document()
+ path = tmp_path / "stage-b.json"
+ _write_result_document(path, document)
+
+ evidence, verification = stage_b.load_and_validate_stage_b_result_artifact(
+ path
+ )
+
+ assert evidence == document["evidence"]
+ assert verification["passed"] is True
+ assert verification["integrity_passed"] is True
+ assert verification["advancement_passed"] is True
+ assert verification["canonical_round_trip"] is True
+ assert verification["advancement_check_count"] == 8
+
+
+def test_stage_b_result_loader_authenticates_an_exact_negative_result(
+ tmp_path: Path,
+) -> None:
+ document = _stage_b_result_document()
+ evidence = document["evidence"]
+ traces = evidence["per_task_token_primitives"]
+ for trace in traces[stage_b.RHT_METHOD]:
+ token_count = int(trace["token_count"])
+ trace["top1_agreement"] = [False] * token_count
+ payload = {
+ key: trace[key]
+ for key in (
+ "token_count",
+ "kl",
+ "reference_nll",
+ "candidate_nll",
+ "top1_agreement",
+ "outputs_finite",
+ )
+ }
+ trace["canonical_primitives_sha256"] = stage_b._sha256_bytes( # noqa: SLF001
+ stage_b.canonical_json_bytes(payload)
+ )
+ evidence["per_task"] = _summaries_from_traces(traces)
+ evidence["aggregates"] = _aggregates(evidence["per_task"])
+ evidence["paired_bootstrap_cqer_minus_rht_aligned_delta_nll"] = _bootstrap(
+ evidence["per_task"]
+ )
+ _recompute_result_outcomes(document)
+ path = tmp_path / "stage-b-negative.json"
+ _write_result_document(path, document)
+
+ loaded, verification = stage_b.load_and_validate_stage_b_result_artifact(path)
+
+ assert verification["passed"] is True
+ assert verification["integrity_passed"] is True
+ assert verification["advancement_passed"] is False
+ assert (
+ loaded["stage_b_gate"]["advancement_checks"][
+ "macro_top1_disadvantage_at_most_0_005"
+ ]["passed"]
+ is False
+ )
+
+
+def test_stage_b_result_loader_rejects_contradictory_unit_passed_flag(
+ tmp_path: Path,
+) -> None:
+ document = _stage_b_result_document()
+ document["evidence"]["unit_evidence"]["independent_dense_reference"][
+ "passed"
+ ] = False
+ _recompute_result_outcomes(document)
+ path = tmp_path / "contradictory-unit-pass.json"
+ _write_result_document(path, document)
+
+ with pytest.raises(ValueError, match="passed flag contradicts"):
+ stage_b.load_and_validate_stage_b_result_artifact(path)
+
+
+def test_stage_b_result_loader_rejects_incomplete_unit_evidence_schema(
+ tmp_path: Path,
+) -> None:
+ document = _stage_b_result_document()
+ del document["evidence"]["unit_evidence"]["independent_dense_reference"][
+ "reference"
+ ]
+ _recompute_result_outcomes(document)
+ path = tmp_path / "incomplete-unit-schema.json"
+ _write_result_document(path, document)
+
+ with pytest.raises(ValueError, match="reference fields drifted"):
+ stage_b.load_and_validate_stage_b_result_artifact(path)
+
+
+def test_stage_b_result_loader_rejects_missing_production_provenance(
+ tmp_path: Path,
+) -> None:
+ document = _stage_b_result_document()
+ del document["evidence"]["protocol"]
+ _rehash_result_document(document)
+ path = tmp_path / "missing-provenance.json"
+ _write_result_document(path, document)
+
+ with pytest.raises(ValueError, match="evidence fields drifted"):
+ stage_b.load_and_validate_stage_b_result_artifact(path)
+
+
+def test_stage_b_result_loader_rejects_local_prerequisite_path(
+ tmp_path: Path,
+) -> None:
+ document = _stage_b_result_document()
+ document["evidence"]["prerequisite_artifacts"]["stage_b_identity"][
+ "path"
+ ] = "/private/identity.json"
+ _rehash_result_document(document)
+ path = tmp_path / "local-path.json"
+ _write_result_document(path, document)
+
+ with pytest.raises(ValueError, match="repository-relative path"):
+ stage_b.load_and_validate_stage_b_result_artifact(path)
+
+
+def test_stage_b_result_loader_rejects_state_metric_label_drift(
+ tmp_path: Path,
+) -> None:
+ document = _stage_b_result_document()
+ document["evidence"]["state_error"]["primary_gate_metric"] = "generic MSE"
+ _rehash_result_document(document)
+ path = tmp_path / "metric-label.json"
+ _write_result_document(path, document)
+
+ with pytest.raises(ValueError, match="state-error metric label drifted"):
+ stage_b.load_and_validate_stage_b_result_artifact(path)
+
+
+def test_stage_b_result_loader_rejects_rehashed_aggregate_tamper(
+ tmp_path: Path,
+) -> None:
+ document = _stage_b_result_document()
+ document["evidence"]["aggregates"][stage_b.RHT_METHOD][
+ "macro_delta_nll"
+ ] = 0.01
+ _rehash_result_document(document)
+ path = tmp_path / "aggregate-tamper.json"
+ _write_result_document(path, document)
+
+ with pytest.raises(ValueError, match="integrity"):
+ stage_b.load_and_validate_stage_b_result_artifact(path)
+
+
+def test_stage_b_result_loader_rejects_rehashed_state_aggregate_tamper(
+ tmp_path: Path,
+) -> None:
+ document = _stage_b_result_document()
+ document["evidence"]["state_error"]["aggregates"][stage_b.RHT_METHOD][
+ "aggregate_state_sse"
+ ] = 0.0
+ _rehash_result_document(document)
+ path = tmp_path / "state-tamper.json"
+ _write_result_document(path, document)
+
+ with pytest.raises(ValueError, match="differs from raw state-error"):
+ stage_b.load_and_validate_stage_b_result_artifact(path)
+
+
+def test_stage_b_integrity_accepts_complete_exact_contract() -> None:
+ integrity = stage_b.evaluate_stage_b_integrity(**_passing_integrity_inputs())
+
+ assert integrity["passed"] is True
+ assert all(check["passed"] is True for check in integrity["checks"].values())
+
+
+@pytest.mark.parametrize(
+ ("section", "mutation", "failed_check"),
+ [
+ (
+ "integrity",
+ lambda values: values.update(
+ {
+ (
+ "protected_window_8_16_content_selected_retained_"
+ "canonicalized_formatted_tokenized_passed_to_model_or_evaluated"
+ ): True
+ }
+ ),
+ "committed_clean_stable_provenance",
+ ),
+ (
+ "storage",
+ lambda values: values[stage_b.RHT_METHOD].update({"resident_bytes": 1}),
+ "exact_physical_storage",
+ ),
+ (
+ "selector_diagnostics",
+ lambda values: values[stage_b.RHT_METHOD][0]["layers"][0].update(
+ {"state_codec_seed": 1}
+ ),
+ "exact_quotas_and_query_handshakes",
+ ),
+ (
+ "per_task_state_errors",
+ lambda values: values[stage_b.RHT_METHOD][0]["state_error"].update(
+ {"coverage": []}
+ ),
+ "complete_matched_state_error_coverage",
+ ),
+ (
+ "per_task",
+ lambda values: values[stage_b.RHT_METHOD][0].update(
+ {"candidate_nll": 99.0}
+ ),
+ "finite_exact_task_macro_metrics",
+ ),
+ (
+ "per_task",
+ lambda values: values[stage_b.RHT_METHOD][0].update({"mean_kl": -0.1}),
+ "finite_exact_task_macro_metrics",
+ ),
+ (
+ "per_task",
+ lambda values: values[stage_b.RHT_METHOD][0].update(
+ {"mean_kl": 2.0, "cvar95_kl": 1.0}
+ ),
+ "finite_exact_task_macro_metrics",
+ ),
+ (
+ "per_task",
+ lambda values: values[stage_b.RHT_METHOD][0].update(
+ {"top1_agreement": 1.1}
+ ),
+ "finite_exact_task_macro_metrics",
+ ),
+ (
+ "per_task",
+ lambda values: values[stage_b.RHT_METHOD][0].update(
+ {"reference_nll": 1.1, "candidate_nll": 1.8}
+ ),
+ "finite_exact_task_macro_metrics",
+ ),
+ (
+ "per_task_token_traces",
+ lambda values: values[stage_b.RHT_METHOD][0].update(
+ {"canonical_primitives_sha256": "0" * 64}
+ ),
+ "finite_exact_task_macro_metrics",
+ ),
+ (
+ "per_task_state_errors",
+ lambda values: values[stage_b.RHT_METHOD][0]["state_error"]["records"][
+ 0
+ ].update({"mean_squared_error": 0.5}),
+ "complete_matched_state_error_coverage",
+ ),
+ (
+ "per_task_state_errors",
+ lambda values: values[stage_b.RHT_METHOD][0]["state_error"]["records"][
+ 0
+ ].update({"resident_bytes": 1}),
+ "complete_matched_state_error_coverage",
+ ),
+ (
+ "per_task_state_errors",
+ lambda values: values[stage_b.RHT_METHOD][0]["state_error"]["records"][
+ -1
+ ].update({"high_precision_mask_sha256": "0" * 64}),
+ "complete_matched_state_error_coverage",
+ ),
+ (
+ "per_task_reference_aligned_state_errors",
+ lambda values: values[stage_b.RHT_METHOD][0]["state_error"].update(
+ {"aggregate_state_sse": 999.0}
+ ),
+ "authenticated_reference_aligned_state_secondary",
+ ),
+ (
+ "unit_evidence",
+ lambda values: values["production_self_check"].update(
+ {"inverse_relative_l2": 1e-3}
+ ),
+ "deterministic_rht_codec_self_check",
+ ),
+ ],
+)
+def test_stage_b_integrity_fails_closed_on_contract_drift(
+ section: str,
+ mutation: object,
+ failed_check: str,
+) -> None:
+ inputs = copy.deepcopy(_passing_integrity_inputs())
+ mutation(inputs[section])
+
+ integrity = stage_b.evaluate_stage_b_integrity(**inputs)
+
+ assert integrity["passed"] is False
+ assert integrity["checks"][failed_check]["passed"] is False
+
+
+def test_stage_b_identity_tasks_accept_only_exact_ordered_window() -> None:
+ tasks = _task_records()
+ identity = {
+ "dataset": {
+ "tasks": tasks,
+ "ordered_task_ids": [record["task_id"] for record in tasks],
+ "selection_window": {
+ "offset": stage_b.STAGE_B_OFFSET,
+ "limit": stage_b.STAGE_B_LIMIT,
+ "stop_exclusive": stage_b.STAGE_B_STOP,
+ },
+ "protected_window": {
+ "offset": stage_b.PROTECTED_WINDOW[0],
+ "stop_exclusive": stage_b.PROTECTED_WINDOW[1],
+ "content_retained_canonicalized_or_tokenized": False,
+ },
+ }
+ }
+
+ assert stage_b._identity_task_records(identity) == tuple(tasks) # noqa: SLF001
+
+ drifted = copy.deepcopy(identity)
+ drifted["dataset"]["tasks"][0]["rank"] = 31
+ with pytest.raises(ValueError, match=r"\[32, 64\)"):
+ stage_b._identity_task_records(drifted) # noqa: SLF001
+
+
+def test_stage_b_cli_exposes_no_quality_or_window_tuning_flags() -> None:
+ required = [
+ "--stage-a-artifact",
+ "stage-a.json",
+ "--identity-artifact",
+ "identity.json",
+ "--output",
+ "result.json",
+ ]
+ parsed = stage_b.parse_args(required)
+ assert parsed.device == "auto"
+
+ with pytest.raises(SystemExit):
+ stage_b.parse_args([*required, "--bootstrap-samples", "10"])
+
+
+def test_identity_source_freeze_survives_canonical_json_round_trip() -> None:
+ source_hashes = {
+ path: stage_b._sha256_bytes(path.encode("utf-8")) # noqa: SLF001
+ for path in stage_b.SOURCE_FILES
+ }
+ identity = {
+ "source_files": {
+ "paths": list(stage_b.SOURCE_FILES),
+ "sha256_start": source_hashes,
+ "sha256_end": source_hashes,
+ "stable": True,
+ }
+ }
+ round_tripped = json.loads(stage_b.canonical_json_bytes(identity))
+
+ authentication = stage_b.authenticate_identity_source_freeze(
+ round_tripped,
+ current_source_hashes=source_hashes,
+ )
+
+ assert stage_b.SOURCE_FILES is stage_b.identity_resolver.STAGE_B_SOURCE_FILES
+ assert authentication["passed"] is True
+ assert authentication["path_count"] == len(stage_b.SOURCE_FILES)
+
+
+def test_identity_source_freeze_rejects_current_byte_drift() -> None:
+ source_hashes = {
+ path: stage_b._sha256_bytes(path.encode("utf-8")) # noqa: SLF001
+ for path in stage_b.SOURCE_FILES
+ }
+ identity = {
+ "source_files": {
+ "paths": list(stage_b.SOURCE_FILES),
+ "sha256_start": source_hashes,
+ "sha256_end": source_hashes,
+ "stable": True,
+ }
+ }
+ current = dict(source_hashes)
+ current[stage_b.SOURCE_FILES[0]] = "0" * 64
+
+ with pytest.raises(ValueError, match="differ from the identity freeze"):
+ stage_b.authenticate_identity_source_freeze(
+ identity,
+ current_source_hashes=current,
+ )
+
+
+def test_runtime_environment_must_equal_the_committed_identity(
+ monkeypatch: pytest.MonkeyPatch,
+) -> None:
+ authenticated = {
+ "schema": "recurquant.experiment009-stage-b-runtime-environment.v1",
+ "runtime_matches_stage_a": True,
+ "local_files_only": True,
+ }
+ calls: list[tuple[object, bool]] = []
+
+ def fake_authenticate(
+ stage_a: object,
+ *,
+ local_files_only: bool,
+ ) -> dict[str, object]:
+ calls.append((stage_a, local_files_only))
+ return dict(authenticated)
+
+ monkeypatch.setattr(
+ stage_b.identity_resolver,
+ "authenticate_runtime_environment",
+ fake_authenticate,
+ )
+ stage_a = {"artifact_kind": stage_b.STAGE_A_ARTIFACT_KIND}
+ identity = {"environment": dict(authenticated)}
+
+ assert stage_b.authenticate_stage_b_runtime_environment(
+ stage_a,
+ identity,
+ local_files_only=True,
+ ) == authenticated
+ assert calls == [(stage_a, True)]
+
+ identity["environment"]["local_files_only"] = False
+ with pytest.raises(ValueError, match="differs from the Stage-B identity"):
+ stage_b.authenticate_stage_b_runtime_environment(
+ stage_a,
+ identity,
+ local_files_only=True,
+ )
+
+
+def test_identity_row_plan_reconstructs_the_only_frozen_plan() -> None:
+ identity, stage_a = _frozen_row_plan_inputs()
+
+ plan, authentication = stage_b.plan_from_identity(identity, stage_a=stage_a)
+
+ assert plan.promoted_group_count == stage_b.TARGET_PROMOTED_ROWS
+ assert plan.resident_bytes == stage_b.TARGET_PACKED_STATE_BYTES
+ assert {
+ layer: len(plan.groups_for_layer(layer))
+ for layer in stage_b.FROZEN_LINEAR_LAYERS
+ } == stage_b.FROZEN_LAYER_QUOTAS
+ assert authentication["passed"] is True
+
+
+def test_identity_row_plan_rejects_canonical_hash_drift() -> None:
+ identity, stage_a = _frozen_row_plan_inputs()
+ identity["row_plan"]["canonical_plan_sha256"] = "0" * 64 # type: ignore[index]
+
+ with pytest.raises(ValueError, match="canonical hash"):
+ stage_b.plan_from_identity(identity, stage_a=stage_a)
+
+
+def test_identity_row_plan_rejects_duplicate_promoted_row() -> None:
+ identity, stage_a = _frozen_row_plan_inputs()
+ row_plan = identity["row_plan"] # type: ignore[assignment]
+ rows = row_plan["high_precision_rows"] # type: ignore[index]
+ rows[1] = copy.deepcopy(rows[0]) # type: ignore[index]
+ _rehash_row_plan(identity)
+
+ with pytest.raises(ValueError, match="duplicated"):
+ stage_b.plan_from_identity(identity, stage_a=stage_a)
+
+
+def test_identity_row_plan_rejects_selector_binding_drift() -> None:
+ identity, stage_a = _frozen_row_plan_inputs()
+ row_plan = identity["row_plan"] # type: ignore[assignment]
+ selector_binding = row_plan["selector_binding"] # type: ignore[index]
+ selector_binding["selector_file_sha256"] = "0" * 64 # type: ignore[index]
+ _rehash_row_plan(identity)
+
+ with pytest.raises(ValueError, match="exact Stage-A selectors"):
+ stage_b.plan_from_identity(identity, stage_a=stage_a)
+
+
+def test_committed_stage_a_artifact_recomputes_as_a_passing_prerequisite() -> None:
+ repository_root = Path(__file__).resolve().parents[1]
+ path = (
+ repository_root
+ / "evidence"
+ / "experiment009-rht-cqer-stage-a-666-5be8d48.json"
+ )
+
+ evidence, authentication = stage_b.authenticate_stage_a_prerequisite(
+ path,
+ repository_root=repository_root,
+ )
+
+ assert evidence["stage_a_gate"]["passed"] is True
+ assert authentication["gate_recomputed_and_passed"] == "true"
+
+
+def test_independent_dense_rht_reference_passes() -> None:
+ evidence = stage_b.compute_independent_dense_rht_evidence()
+
+ assert evidence["passed"] is True
+ assert evidence["signs_exact"] is True
+ assert evidence["encode_max_abs_difference"] <= 2e-6
+ assert evidence["physical_pack_max_abs_difference"] <= 6e-6
+
+
+def test_imported_evaluator_modules_resolve_to_repository_sources() -> None:
+ repository_root = Path(__file__).resolve().parents[1]
+ controlled_modules = {
+ "stage_b": stage_b,
+ "identity_resolver": stage_b.identity_resolver,
+ "pilot": stage_b.pilot,
+ "screen": stage_b.screen,
+ "recurquant.cache": stage_b.importlib.import_module("recurquant.cache"),
+ "recurquant.evaluation": stage_b.importlib.import_module(
+ "recurquant.evaluation"
+ ),
+ "recurquant.packed_cache": stage_b.importlib.import_module(
+ "recurquant.packed_cache"
+ ),
+ "recurquant.qwen35": stage_b.importlib.import_module("recurquant.qwen35"),
+ "recurquant.rht": stage_b.importlib.import_module("recurquant.rht"),
+ }
+
+ paths = stage_b.authenticate_imported_module_paths(
+ repository_root,
+ modules=controlled_modules,
+ )
+
+ assert paths["stage_b_identity_resolver"] == (
+ "scripts/resolve_rht_cqer_stage_b_identity.py"
+ )
+ assert paths["recurquant_qwen35"] == "src/recurquant/qwen35.py"
+
+
+def test_stage_b_artifact_source_avoids_local_path_and_raw_command_fields() -> None:
+ source = Path(stage_b.__file__).read_text(encoding="utf-8")
+
+ assert '"path_supplied"' not in source
+ assert '"selector_path"' not in source
+ assert '"loss_selector_path"' not in source
+ assert '"command": [sys.executable, *sys.argv]' not in source
+ assert '"command_template"' in source
diff --git a/tests/test_resolve_rht_cqer_stage_b_identity.py b/tests/test_resolve_rht_cqer_stage_b_identity.py
new file mode 100644
index 0000000..8056c03
--- /dev/null
+++ b/tests/test_resolve_rht_cqer_stage_b_identity.py
@@ -0,0 +1,807 @@
+from __future__ import annotations
+
+import copy
+import hashlib
+import importlib
+import json
+import random
+import sys
+from collections.abc import Iterator, Mapping
+from pathlib import Path
+from types import SimpleNamespace
+from typing import Any
+
+import pytest
+
+from recurquant.evidence import canonical_json_bytes
+from recurquant.public_data import (
+ MBPP_CALIBRATION_SIZE,
+ mbpp_calibration_key,
+ mbpp_manifest,
+ mbpp_manifest_content_sha256,
+ select_mbpp_calibration,
+)
+
+resolver = importlib.import_module("scripts.resolve_rht_cqer_stage_b_identity")
+REPOSITORY_ROOT = Path(__file__).resolve().parents[1]
+
+
+def _resolver_runtime_modules() -> dict[str, Any]:
+ modules: dict[str, Any] = {}
+ frozen_paths = set(resolver.STAGE_B_SOURCE_FILES)
+ for name, module in sys.modules.items():
+ if not (
+ name == "recurquant"
+ or name.startswith("recurquant.")
+ or name == resolver.__name__
+ ):
+ continue
+ raw_path = getattr(module, "__file__", None)
+ if not isinstance(raw_path, str):
+ continue
+ path = Path(raw_path).resolve()
+ try:
+ relative = path.relative_to(REPOSITORY_ROOT).as_posix()
+ except ValueError:
+ continue
+ if relative in frozen_paths:
+ modules[name] = module
+ return modules
+
+
+def test_all_imported_repository_modules_are_source_frozen() -> None:
+ imported = resolver.validate_all_imported_repository_modules_frozen(
+ REPOSITORY_ROOT,
+ modules=_resolver_runtime_modules(),
+ )
+
+ assert imported["recurquant"] == "src/recurquant/__init__.py"
+ assert set(imported.values()) <= set(resolver.STAGE_B_SOURCE_FILES)
+
+
+def test_unfrozen_imported_repository_module_is_rejected() -> None:
+ unfrozen = SimpleNamespace(
+ __file__=str(REPOSITORY_ROOT / "src" / "recurquant" / "cli.py")
+ )
+
+ with pytest.raises(ValueError, match="outside the Stage-B source freeze"):
+ resolver.validate_all_imported_repository_modules_frozen(
+ REPOSITORY_ROOT,
+ modules={"recurquant.unfrozen_test": unfrozen},
+ )
+
+
+def _row(task_id: int) -> dict[str, Any]:
+ return {
+ "task_id": task_id,
+ "text": f"Return {task_id}.",
+ "code": f"def answer_{task_id}():\n return {task_id}\n",
+ "test_list": [f"assert answer_{task_id}() == {task_id}"],
+ "test_setup_code": "",
+ "challenge_test_list": [],
+ }
+
+
+class _TrackedRow(Mapping[str, Any]):
+ def __init__(self, row: Mapping[str, Any], accesses: list[tuple[int, str]]) -> None:
+ self._row = row
+ self._accesses = accesses
+
+ def __getitem__(self, key: str) -> Any:
+ self._accesses.append((int(self._row["task_id"]), key))
+ return self._row[key]
+
+ def __iter__(self) -> Iterator[str]:
+ return iter(self._row)
+
+ def __len__(self) -> int:
+ return len(self._row)
+
+ def get(self, key: str, default: Any = None) -> Any:
+ self._accesses.append((int(self._row["task_id"]), key))
+ return self._row.get(key, default)
+
+
+class Qwen2Tokenizer:
+ def __call__(
+ self,
+ text: str,
+ *,
+ add_special_tokens: bool,
+ return_attention_mask: bool,
+ return_token_type_ids: bool,
+ ) -> dict[str, list[int]]:
+ assert return_attention_mask is False
+ assert return_token_type_ids is False
+ payload = list(text.encode("utf-8"))
+ return {"input_ids": ([1] if add_special_tokens else []) + payload}
+
+
+def _compact_row_plan() -> dict[str, Any]:
+ locations = [
+ {
+ "layer_index": layer,
+ "head_index": flat_index // 128,
+ "row_index": flat_index % 128,
+ }
+ for layer in resolver.FROZEN_LINEAR_LAYERS
+ for flat_index in range(resolver.FROZEN_LAYER_QUOTAS[layer])
+ ]
+ plan: dict[str, Any] = {
+ "schema": resolver.ROW_PLAN_SCHEMA,
+ "method": resolver.ROW_PLAN_METHOD,
+ "selector_binding": {
+ "selector_file_sha256": resolver.SELECTOR_FILE_SHA256,
+ "selector_canonical_evidence_sha256": (
+ resolver.SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ "loss_selector_file_sha256": resolver.LOSS_SELECTOR_FILE_SHA256,
+ "loss_selector_canonical_evidence_sha256": (
+ resolver.LOSS_SELECTOR_CANONICAL_EVIDENCE_SHA256
+ ),
+ },
+ "model": {
+ "id": resolver.MODEL_ID,
+ "revision": resolver.MODEL_REVISION,
+ },
+ "quantization": {
+ "low_bits": 4,
+ "high_bits": 8,
+ "group_size": 128,
+ "scale_bits": 16,
+ },
+ "accounting": {
+ "total_groups": 36_864,
+ "mask_bytes": 4_608,
+ "promotion_increment_bytes": 64,
+ "target_resident_bytes": 2_564_096,
+ "resident_bytes": 2_564_096,
+ "promoted_group_count": 1_976,
+ },
+ "score_shapes": [
+ {"layer_index": layer, "heads": 16, "rows": 128}
+ for layer in resolver.FROZEN_LINEAR_LAYERS
+ ],
+ "layer_quotas": {
+ str(layer): quota
+ for layer, quota in resolver.FROZEN_LAYER_QUOTAS.items()
+ },
+ "high_precision_rows": locations,
+ }
+ plan["canonical_plan_sha256"] = hashlib.sha256(
+ canonical_json_bytes(plan)
+ ).hexdigest()
+ return plan
+
+
+def _loader_with_tracking(
+ rows: list[dict[str, Any]],
+ accesses: list[tuple[int, str]],
+) -> Any:
+ def loader(*args: Any, **kwargs: Any) -> tuple[_TrackedRow, ...]:
+ assert args[:2] == (
+ resolver.MBPP_DATASET_ID,
+ resolver.MBPP_CONFIG,
+ )
+ assert kwargs == {
+ "revision": resolver.MBPP_REVISION,
+ "split": "train",
+ "streaming": True,
+ }
+ return tuple(_TrackedRow(row, accesses) for row in rows)
+
+ return loader
+
+
+def _identity_evidence(
+ rows: tuple[Mapping[str, Any], ...],
+ records: tuple[dict[str, Any], ...],
+) -> dict[str, Any]:
+ content_manifest = mbpp_manifest(rows, phase="calibration")
+ content_hash = mbpp_manifest_content_sha256(content_manifest)
+ source_hashes = {
+ path: hashlib.sha256(path.encode()).hexdigest()
+ for path in resolver.SOURCE_FILES
+ }
+ commit = "a" * 40
+ return {
+ "schema_version": 1,
+ "artifact_kind": resolver.ARTIFACT_KIND,
+ "identity_schema": resolver.IDENTITY_SCHEMA,
+ "identity_only": True,
+ "claim_boundary": resolver.CLAIM_BOUNDARY,
+ "created_at_utc": "2026-07-26T00:00:00+00:00",
+ "authorization": {
+ "stage_a_artifact_kind": resolver.STAGE_A_ARTIFACT_KIND,
+ "stage_a_file_sha256": resolver.STAGE_A_FILE_SHA256,
+ "stage_a_canonical_evidence_sha256": (
+ resolver.STAGE_A_CANONICAL_EVIDENCE_SHA256
+ ),
+ "stage_a_implementation_commit": resolver.STAGE_A_IMPLEMENTATION_COMMIT,
+ "stage_a_result_commit": resolver.STAGE_A_RESULT_COMMIT,
+ "stage_a_gate_passed": True,
+ "verified_before_dataset_access": True,
+ },
+ "row_plan": _compact_row_plan(),
+ "model_contract": {
+ "id": resolver.MODEL_ID,
+ "revision": resolver.MODEL_REVISION,
+ "weights_loaded": False,
+ },
+ "tokenizer_contract": {
+ "source_id": resolver.MODEL_ID,
+ "revision": resolver.MODEL_REVISION,
+ "class": resolver.TOKENIZER_CLASS,
+ "transformers_version": resolver.TRANSFORMERS_VERSION,
+ "trust_remote_code": False,
+ "prompt_add_special_tokens": True,
+ "code_add_special_tokens": False,
+ "formatter_version": resolver.MBPP_FORMATTER_VERSION,
+ "token_id_hash_serialization": resolver.TOKEN_ID_HASH_SERIALIZATION,
+ "text_hash_encoding": resolver.TEXT_HASH_ENCODING,
+ },
+ "dataset": {
+ "id": resolver.MBPP_DATASET_ID,
+ "config": resolver.MBPP_CONFIG,
+ "revision": resolver.MBPP_REVISION,
+ "phase": "calibration",
+ "source_split": "train",
+ "selection_namespace": resolver.MBPP_SELECTION_NAMESPACE,
+ "formatter_version": resolver.MBPP_FORMATTER_VERSION,
+ "selection_mode": "task_id_ranking_then_exact_task_id_stream",
+ "selection_window": {
+ "offset": resolver.STAGE_B_OFFSET,
+ "limit": resolver.STAGE_B_LIMIT,
+ "stop_exclusive": resolver.STAGE_B_STOP,
+ },
+ "protected_window": {
+ "offset": resolver.PROTECTED_WINDOW[0],
+ "stop_exclusive": resolver.PROTECTED_WINDOW[1],
+ "content_retained_canonicalized_or_tokenized": False,
+ },
+ "ordered_task_ids": [int(row["task_id"]) for row in rows],
+ "manifest": content_manifest,
+ "content_manifest_sha256": content_hash,
+ "token_manifest_sha256": resolver.token_manifest_sha256(records),
+ "ordered_identity_sha256": resolver.ordered_identity_sha256(
+ content_manifest_sha256=content_hash,
+ task_records=records,
+ ),
+ "tasks": list(records),
+ "totals": {
+ "source_train_rows_seen_by_task_id_only": MBPP_CALIBRATION_SIZE,
+ "retained_rows": resolver.STAGE_B_LIMIT,
+ "prompt_tokens": sum(record["prompt_tokens"] for record in records),
+ "code_tokens": sum(record["code_tokens"] for record in records),
+ "aligned_scored_tokens": sum(
+ record["aligned_scored_tokens"] for record in records
+ ),
+ "full_code_scored_tokens": sum(
+ record["full_code_scored_tokens"] for record in records
+ ),
+ },
+ "data_access": resolver.StageBDataAccessAudit(
+ ranking_transport_records_yielded=MBPP_CALIBRATION_SIZE,
+ ranking_task_id_fields_inspected=MBPP_CALIBRATION_SIZE,
+ target_transport_records_yielded=MBPP_CALIBRATION_SIZE,
+ target_task_id_fields_inspected=MBPP_CALIBRATION_SIZE,
+ target_rows_retained_and_canonicalized=resolver.STAGE_B_LIMIT,
+ ).as_dict(
+ selected_task_ids=[int(row["task_id"]) for row in rows],
+ ),
+ },
+ "integrity": {
+ "stage_a_authenticated_before_dataset_access": True,
+ "runtime_environment_authenticated_before_dataset_access": True,
+ "selector_artifacts_authenticated_before_dataset_access": True,
+ "repository_clean_at_start": True,
+ "repository_clean_at_end": True,
+ "repository_commit_stable": True,
+ "source_hashes_stable": True,
+ "task_id_only_ranking_pass": True,
+ "only_stage_b_content_retained_canonicalized_and_tokenized": True,
+ "imported_modules_resolved_to_authenticated_repository": True,
+ "protected_window_8_16_content_retained_canonicalized_or_tokenized": False,
+ "model_weights_loaded": False,
+ "model_forward_pass_run": False,
+ "logits_or_quality_metrics_observed": False,
+ "output_path_external_or_git_ignored": True,
+ },
+ "repository": {
+ "commit": commit,
+ "start": {"commit": commit, "worktree_clean": True, "status": []},
+ "end": {"commit": commit, "worktree_clean": True, "status": []},
+ "stable_commit": True,
+ },
+ "source_files": {
+ "paths": list(resolver.SOURCE_FILES),
+ "sha256_start": source_hashes,
+ "sha256_end": source_hashes,
+ "stable": True,
+ "imported_modules": dict(resolver.IMPORTED_MODULE_PATHS),
+ },
+ "environment": {
+ "schema": resolver.RUNTIME_ENVIRONMENT_SCHEMA,
+ "stage_a_binding": {
+ "artifact_kind": resolver.STAGE_A_ARTIFACT_KIND,
+ "file_sha256": resolver.STAGE_A_FILE_SHA256,
+ "canonical_evidence_sha256": (
+ resolver.STAGE_A_CANONICAL_EVIDENCE_SHA256
+ ),
+ },
+ "python": {
+ "major": resolver.STAGE_A_PYTHON_VERSION[0],
+ "minor": resolver.STAGE_A_PYTHON_VERSION[1],
+ "micro": resolver.STAGE_A_PYTHON_VERSION[2],
+ "version": ".".join(
+ str(component)
+ for component in resolver.STAGE_A_PYTHON_VERSION
+ ),
+ },
+ "packages": dict(resolver.STAGE_A_PACKAGE_VERSIONS),
+ "cuda": dict(resolver.STAGE_A_CUDA_CONTRACT),
+ "runtime_matches_stage_a": True,
+ "local_files_only": True,
+ },
+ }
+
+
+@pytest.fixture
+def resolved_identity() -> tuple[
+ list[dict[str, Any]],
+ tuple[Mapping[str, Any], ...],
+ tuple[dict[str, Any], ...],
+ dict[str, Any],
+]:
+ source_rows = [_row(task_id) for task_id in range(1000, 1000 + MBPP_CALIBRATION_SIZE)]
+ ranked = sorted(
+ source_rows,
+ key=lambda row: (mbpp_calibration_key(row["task_id"]), row["task_id"]),
+ )
+ rows = tuple(ranked[resolver.STAGE_B_OFFSET : resolver.STAGE_B_STOP])
+ _, records = resolver.tokenize_stage_b_rows(Qwen2Tokenizer(), rows)
+ evidence = _identity_evidence(rows, records)
+ return source_rows, rows, records, evidence
+
+
+def test_resolver_reads_only_task_id_outside_stage_b_window() -> None:
+ source_rows = [_row(task_id) for task_id in range(1000, 1000 + MBPP_CALIBRATION_SIZE)]
+ ranked = sorted(
+ source_rows,
+ key=lambda row: (mbpp_calibration_key(row["task_id"]), row["task_id"]),
+ )
+ protected_ids = {
+ row["task_id"]
+ for row in ranked[resolver.PROTECTED_WINDOW[0] : resolver.PROTECTED_WINDOW[1]]
+ }
+ expected_ids = tuple(
+ row["task_id"] for row in ranked[resolver.STAGE_B_OFFSET : resolver.STAGE_B_STOP]
+ )
+ accesses: list[tuple[int, str]] = []
+
+ resolved = resolver.resolve_stage_b_rows(
+ load_dataset_fn=_loader_with_tracking(source_rows, accesses)
+ )
+
+ assert resolved.ordered_task_ids == expected_ids
+ assert tuple(int(row["task_id"]) for row in resolved.rows) == expected_ids
+ assert (
+ resolved.access_audit.ranking_transport_records_yielded
+ == MBPP_CALIBRATION_SIZE
+ )
+ assert all(key == "task_id" for task_id, key in accesses if task_id in protected_ids)
+ content_access_ids = {task_id for task_id, key in accesses if key != "task_id"}
+ assert content_access_ids == set(expected_ids)
+ _, token_records = resolver.tokenize_stage_b_rows(
+ Qwen2Tokenizer(),
+ resolved.rows,
+ )
+ assert {record["task_id"] for record in token_records}.isdisjoint(protected_ids)
+ audit = resolved.access_audit.as_dict(selected_task_ids=resolved.ordered_task_ids)
+ for name in ("selected", "retained", "canonicalized", "formatted", "tokenized"):
+ assert set(audit["application_task_id_sets"][name]).isdisjoint(protected_ids)
+ assert audit["protected_window_intersection"][name] is False
+ assert audit["application_task_id_sets"]["passed_to_model"] == []
+ assert audit["application_task_id_sets"]["evaluated"] == []
+
+
+def test_resolver_rejects_duplicate_or_undersized_source() -> None:
+ rows = [_row(task_id) for task_id in range(MBPP_CALIBRATION_SIZE)]
+ duplicate_rows = [*rows, _row(0)]
+ with pytest.raises(ValueError, match="duplicate MBPP task_id"):
+ resolver.resolve_stage_b_task_ids(
+ load_dataset_fn=_loader_with_tracking(duplicate_rows, [])
+ )
+ with pytest.raises(ValueError, match="too small"):
+ resolver.resolve_stage_b_task_ids(
+ load_dataset_fn=_loader_with_tracking(rows[:-1], [])
+ )
+
+
+def test_id_only_ranking_matches_full_selector_on_shuffled_large_source() -> None:
+ source_rows = [_row(task_id) for task_id in range(2000, 2500)]
+ random.Random(2339).shuffle(source_rows)
+ expected = select_mbpp_calibration(
+ source_rows,
+ size=MBPP_CALIBRATION_SIZE,
+ )[resolver.STAGE_B_OFFSET : resolver.STAGE_B_STOP]
+
+ actual, source_count = resolver.resolve_stage_b_task_ids(
+ load_dataset_fn=_loader_with_tracking(source_rows, [])
+ )
+
+ assert source_count == 500
+ assert actual == tuple(int(row["task_id"]) for row in expected)
+
+
+def test_token_records_bind_row_text_and_exact_token_ids(
+ resolved_identity: tuple[
+ list[dict[str, Any]],
+ tuple[Mapping[str, Any], ...],
+ tuple[dict[str, Any], ...],
+ dict[str, Any],
+ ],
+) -> None:
+ _, rows, records, _ = resolved_identity
+ encoded, repeated = resolver.tokenize_stage_b_rows(Qwen2Tokenizer(), rows)
+
+ assert repeated == records
+ assert len(encoded) == resolver.STAGE_B_LIMIT
+ assert [record["rank"] for record in records] == list(
+ range(resolver.STAGE_B_OFFSET, resolver.STAGE_B_STOP)
+ )
+ assert all(
+ record["aligned_scored_tokens"] == record["code_tokens"] - 1
+ for record in records
+ )
+ assert all(record["full_code_scored_tokens"] == record["code_tokens"] for record in records)
+ assert resolver.token_manifest_sha256(records) == resolver.token_manifest_sha256(repeated)
+
+
+def test_identity_validator_and_runtime_authentication_round_trip(
+ monkeypatch: pytest.MonkeyPatch,
+ resolved_identity: tuple[
+ list[dict[str, Any]],
+ tuple[Mapping[str, Any], ...],
+ tuple[dict[str, Any], ...],
+ dict[str, Any],
+ ],
+) -> None:
+ source_rows, rows, _, evidence = resolved_identity
+ resolver.validate_stage_b_identity_evidence(evidence)
+ monkeypatch.setattr(
+ resolver.importlib.metadata,
+ "version",
+ lambda name: resolver.TRANSFORMERS_VERSION,
+ )
+ accesses: list[tuple[int, str]] = []
+ loaded = resolver.load_authenticated_stage_b_rows(
+ evidence,
+ load_dataset_fn=_loader_with_tracking(source_rows, accesses),
+ )
+ authentication = resolver.authenticate_stage_b_runtime_identity(
+ evidence,
+ loaded,
+ Qwen2Tokenizer(),
+ )
+ assert len(authentication.tasks) == resolver.STAGE_B_LIMIT
+ assert tuple(task.record for task in authentication.tasks) == tuple(
+ evidence["dataset"]["tasks"]
+ )
+ assert loaded.ordered_task_ids == tuple(evidence["dataset"]["ordered_task_ids"])
+ assert authentication.access_audit == loaded.access_audit
+ assert authentication.ordered_identity_sha256 == evidence["dataset"][
+ "ordered_identity_sha256"
+ ]
+
+
+def test_runtime_rejects_coherent_wrong_rank_identity_before_content_access() -> None:
+ source_rows = [
+ _row(task_id) for task_id in range(1000, 1000 + MBPP_CALIBRATION_SIZE)
+ ]
+ ranked = sorted(
+ source_rows,
+ key=lambda row: (mbpp_calibration_key(row["task_id"]), row["task_id"]),
+ )
+ wrong_rows = tuple(ranked[: resolver.STAGE_B_LIMIT])
+ _, wrong_records = resolver.tokenize_stage_b_rows(
+ Qwen2Tokenizer(),
+ wrong_rows,
+ )
+ coherent_wrong_evidence = _identity_evidence(wrong_rows, wrong_records)
+ accesses: list[tuple[int, str]] = []
+
+ with pytest.raises(ValueError, match=r"ranked window \[32, 64\)"):
+ resolver.load_authenticated_stage_b_rows(
+ coherent_wrong_evidence,
+ load_dataset_fn=_loader_with_tracking(source_rows, accesses),
+ )
+
+ assert accesses
+ assert all(key == "task_id" for _, key in accesses)
+
+
+def test_imported_module_paths_must_match_authenticated_repository(
+ monkeypatch: pytest.MonkeyPatch,
+ tmp_path: Path,
+) -> None:
+ modules = _resolver_runtime_modules()
+ assert resolver.validate_imported_module_paths(
+ REPOSITORY_ROOT,
+ modules=modules,
+ ) == dict(resolver.IMPORTED_MODULE_PATHS)
+ evidence_module = resolver.sys.modules["recurquant.evidence"]
+ monkeypatch.setattr(
+ evidence_module,
+ "__file__",
+ str(tmp_path / "untrusted" / "evidence.py"),
+ )
+
+ with pytest.raises(ValueError, match="did not resolve"):
+ resolver.validate_imported_module_paths(
+ REPOSITORY_ROOT,
+ modules=modules,
+ )
+
+
+@pytest.mark.skipif(
+ not (
+ REPOSITORY_ROOT / resolver.SELECTOR_ARTIFACT_RELATIVE_PATH
+ ).is_file()
+ or not (
+ REPOSITORY_ROOT / resolver.LOSS_SELECTOR_ARTIFACT_RELATIVE_PATH
+ ).is_file(),
+ reason="original frozen selector artifacts are not present in this clone",
+)
+def test_exact_selector_pair_builds_a_complete_public_compact_plan() -> None:
+ plan = resolver.build_compact_row_plan(
+ REPOSITORY_ROOT / resolver.SELECTOR_ARTIFACT_RELATIVE_PATH,
+ REPOSITORY_ROOT / resolver.LOSS_SELECTOR_ARTIFACT_RELATIVE_PATH,
+ )
+
+ resolver.validate_compact_row_plan(plan)
+ assert len(plan["high_precision_rows"]) == 1_976
+ assert plan["accounting"]["resident_bytes"] == 2_564_096
+ assert plan["selector_binding"]["selector_file_sha256"] == (
+ resolver.SELECTOR_FILE_SHA256
+ )
+
+
+@pytest.mark.parametrize(
+ ("mutation", "message"),
+ [
+ (
+ lambda evidence: evidence["dataset"]["selection_window"].update({"offset": 8}),
+ "ranked window",
+ ),
+ (
+ lambda evidence: evidence["integrity"].update(
+ {"protected_window_8_16_content_retained_canonicalized_or_tokenized": True}
+ ),
+ "forbidden",
+ ),
+ (
+ lambda evidence: evidence["model_contract"].update({"weights_loaded": True}),
+ "model contract",
+ ),
+ (
+ lambda evidence: evidence.update(
+ {
+ "claim_boundary": (
+ "This is not performance evidence. It proves a breakthrough."
+ )
+ }
+ ),
+ "claim boundary",
+ ),
+ (
+ lambda evidence: evidence["row_plan"]["high_precision_rows"][0].update(
+ {"row_index": 127}
+ ),
+ "row.plan",
+ ),
+ (
+ lambda evidence: evidence["dataset"]["tasks"][0].update({"prompt_tokens": 1}),
+ "token manifest hash",
+ ),
+ (
+ lambda evidence: evidence["dataset"]["manifest"]["rows"][0].update(
+ {"sha256": "0" * 64}
+ ),
+ "content manifest hash",
+ ),
+ (
+ lambda evidence: evidence["environment"]["python"].update({"micro": 14}),
+ "runtime environment contract",
+ ),
+ (
+ lambda evidence: evidence["environment"]["packages"].update(
+ {"numpy": "2.4.5"}
+ ),
+ "runtime environment contract",
+ ),
+ (
+ lambda evidence: evidence["environment"]["packages"].pop("safetensors"),
+ "runtime environment contract",
+ ),
+ (
+ lambda evidence: evidence["environment"]["cuda"].update(
+ {"runtime_version": "12.7"}
+ ),
+ "runtime environment contract",
+ ),
+ (
+ lambda evidence: evidence["environment"]["cuda"].update(
+ {"available": False, "device_type": "cpu"}
+ ),
+ "runtime environment contract",
+ ),
+ (
+ lambda evidence: evidence["environment"]["stage_a_binding"].update(
+ {"file_sha256": "0" * 64}
+ ),
+ "runtime environment contract",
+ ),
+ (
+ lambda evidence: evidence["environment"].update(
+ {"runtime_matches_stage_a": False}
+ ),
+ "runtime environment contract",
+ ),
+ ],
+)
+def test_identity_validator_fails_closed_on_contract_drift(
+ resolved_identity: tuple[
+ list[dict[str, Any]],
+ tuple[Mapping[str, Any], ...],
+ tuple[dict[str, Any], ...],
+ dict[str, Any],
+ ],
+ mutation: Any,
+ message: str,
+) -> None:
+ evidence = copy.deepcopy(resolved_identity[3])
+ mutation(evidence)
+ with pytest.raises(ValueError, match=message):
+ resolver.validate_stage_b_identity_evidence(evidence)
+
+
+def test_artifact_loader_rejects_outer_or_internal_tampering(
+ tmp_path: Path,
+ resolved_identity: tuple[
+ list[dict[str, Any]],
+ tuple[Mapping[str, Any], ...],
+ tuple[dict[str, Any], ...],
+ dict[str, Any],
+ ],
+) -> None:
+ evidence = resolved_identity[3]
+ artifact = {
+ "canonical_evidence_sha256": hashlib.sha256(
+ canonical_json_bytes(evidence)
+ ).hexdigest(),
+ "evidence": evidence,
+ }
+ path = tmp_path / "identity.json"
+ path.write_bytes(canonical_json_bytes(artifact))
+ loaded, file_hash = resolver.load_stage_b_identity_artifact(path)
+ assert loaded == evidence
+ assert file_hash == hashlib.sha256(path.read_bytes()).hexdigest()
+
+ tampered = json.loads(path.read_text(encoding="utf-8"))
+ tampered["evidence"]["dataset"]["tasks"][0]["task_id"] += 1
+ path.write_bytes(canonical_json_bytes(tampered))
+ with pytest.raises(ValueError, match="canonical verification"):
+ resolver.load_stage_b_identity_artifact(path)
+
+
+def test_stage_a_artifact_is_the_exact_authenticated_pass() -> None:
+ repository_root = Path(__file__).resolve().parents[1]
+ stage_a_path = repository_root / resolver.STAGE_A_ARTIFACT_RELATIVE_PATH
+ evidence, file_hash = resolver.authenticate_stage_a_artifact(stage_a_path)
+
+ assert file_hash == resolver.STAGE_A_FILE_SHA256
+ assert evidence["stage_a_gate"]["passed"] is True
+ assert (
+ evidence["dataset"]["protected_window_8_16_loaded_tokenized_or_evaluated"]
+ is False
+ )
+
+
+def test_runtime_environment_is_derived_from_authenticated_stage_a() -> None:
+ stage_a_path = REPOSITORY_ROOT / resolver.STAGE_A_ARTIFACT_RELATIVE_PATH
+ stage_a_evidence, _ = resolver.authenticate_stage_a_artifact(stage_a_path)
+ derived = resolver.derive_stage_a_runtime_environment(stage_a_evidence)
+
+ assert derived == {
+ "python": {
+ "major": 3,
+ "minor": 11,
+ "micro": 15,
+ "version": "3.11.15",
+ },
+ "packages": {
+ "datasets": "4.8.5",
+ "numpy": "2.4.6",
+ "safetensors": "0.8.0",
+ "torch": "2.11.0+cu128",
+ "transformers": "5.14.1",
+ },
+ "cuda": {
+ "available": True,
+ "runtime_version": "12.8",
+ "device_type": "cuda",
+ },
+ }
+ contract = resolver.authenticate_runtime_environment(
+ stage_a_evidence,
+ local_files_only=True,
+ runtime_environment=copy.deepcopy(derived),
+ )
+ assert contract["runtime_matches_stage_a"] is True
+ assert contract["stage_a_binding"]["file_sha256"] == resolver.STAGE_A_FILE_SHA256
+ assert "gpu" not in contract
+ assert "platform" not in contract
+ assert "executable" not in contract
+
+
+@pytest.mark.parametrize(
+ "mutation",
+ [
+ lambda runtime: runtime["python"].update({"micro": 14}),
+ lambda runtime: runtime["packages"].update({"datasets": "4.8.4"}),
+ lambda runtime: runtime["packages"].update({"numpy": "2.4.5"}),
+ lambda runtime: runtime["packages"].pop("safetensors"),
+ lambda runtime: runtime["packages"].update({"torch": "2.11.0"}),
+ lambda runtime: runtime["packages"].update({"transformers": "5.14.0"}),
+ lambda runtime: runtime["cuda"].update({"runtime_version": "12.7"}),
+ lambda runtime: runtime["cuda"].update(
+ {"available": False, "device_type": "cpu"}
+ ),
+ lambda runtime: runtime["cuda"].update({"device_type": "cpu"}),
+ lambda runtime: runtime.update({"unexpected_path": "C:/private/python.exe"}),
+ ],
+)
+def test_runtime_environment_authentication_rejects_any_drift(
+ mutation: Any,
+) -> None:
+ stage_a_path = REPOSITORY_ROOT / resolver.STAGE_A_ARTIFACT_RELATIVE_PATH
+ stage_a_evidence, _ = resolver.authenticate_stage_a_artifact(stage_a_path)
+ runtime = resolver.derive_stage_a_runtime_environment(stage_a_evidence)
+ mutation(runtime)
+
+ with pytest.raises(ValueError, match="does not exactly match"):
+ resolver.authenticate_runtime_environment(
+ stage_a_evidence,
+ local_files_only=True,
+ runtime_environment=runtime,
+ )
+
+
+def test_runtime_environment_rejects_stage_a_contract_drift() -> None:
+ stage_a_path = REPOSITORY_ROOT / resolver.STAGE_A_ARTIFACT_RELATIVE_PATH
+ stage_a_evidence, _ = resolver.authenticate_stage_a_artifact(stage_a_path)
+ runtime = resolver.derive_stage_a_runtime_environment(stage_a_evidence)
+ drifted_stage_a = copy.deepcopy(stage_a_evidence)
+ drifted_stage_a["environment"]["packages"]["numpy"] = "2.4.5"
+
+ with pytest.raises(ValueError, match="authenticated Stage-A runtime"):
+ resolver.authenticate_runtime_environment(
+ drifted_stage_a,
+ local_files_only=True,
+ runtime_environment=runtime,
+ )
+
+
+def test_output_path_must_be_external_or_git_ignored(tmp_path: Path) -> None:
+ repository_root = Path(__file__).resolve().parents[1]
+ resolver.validate_output_path(tmp_path / "identity.json", repository_root)
+ resolver.validate_output_path(
+ repository_root / "artifacts" / "identity.json",
+ repository_root,
+ )
+ with pytest.raises(ValueError, match="must be Git-ignored"):
+ resolver.validate_output_path(
+ repository_root / "research" / "identity.json",
+ repository_root,
+ )
diff --git a/tests/test_rht_independent_reference.py b/tests/test_rht_independent_reference.py
new file mode 100644
index 0000000..2541177
--- /dev/null
+++ b/tests/test_rht_independent_reference.py
@@ -0,0 +1,156 @@
+from __future__ import annotations
+
+import hashlib
+import math
+
+import numpy as np
+import torch
+
+from recurquant.mixed_quantization import quantize_pack_mixed
+from recurquant.quantization import QuantizationSpec
+from recurquant.rht import right_rht_encode, right_rht_signs
+
+LOW = QuantizationSpec(bits=4, group_size=128, flatten_last_dims=2)
+HIGH = QuantizationSpec(bits=8, group_size=128, flatten_last_dims=2)
+DOMAIN = b"recurquant.right-rht.signs.v1\0"
+SEED = 2339
+
+
+def _reference_signs(layer: int, heads: int, width: int) -> np.ndarray:
+ result = np.empty((1, heads, 1, width), dtype=np.float32)
+ for head in range(heads):
+ values: list[float] = []
+ counter = 0
+ while len(values) < width:
+ message = b"".join(
+ (
+ DOMAIN,
+ SEED.to_bytes(8, "little"),
+ layer.to_bytes(8, "little"),
+ head.to_bytes(8, "little"),
+ width.to_bytes(8, "little"),
+ counter.to_bytes(8, "little"),
+ )
+ )
+ for byte in hashlib.sha256(message).digest():
+ for bit in range(8):
+ values.append(1.0 if byte & (1 << bit) else -1.0)
+ if len(values) == width:
+ break
+ if len(values) == width:
+ break
+ counter += 1
+ result[0, head, 0] = np.asarray(values, dtype=np.float32)
+ return result
+
+
+def _dense_hadamard(width: int) -> np.ndarray:
+ matrix = np.ones((1, 1), dtype=np.float32)
+ while matrix.shape[0] < width:
+ matrix = np.block([[matrix, matrix], [matrix, -matrix]])
+ return matrix
+
+
+def _reference_encode(state: np.ndarray, *, layer: int) -> np.ndarray:
+ width = state.shape[-1]
+ signed = state.astype(np.float32) * _reference_signs(
+ layer,
+ state.shape[1],
+ width,
+ )
+ return np.matmul(signed, _dense_hadamard(width)) / math.sqrt(width)
+
+
+def _reference_decode(encoded: np.ndarray, *, layer: int) -> np.ndarray:
+ width = encoded.shape[-1]
+ decoded = np.matmul(encoded.astype(np.float32), _dense_hadamard(width))
+ decoded /= math.sqrt(width)
+ return decoded * _reference_signs(layer, encoded.shape[1], width)
+
+
+def _reference_mixed_qdq(
+ state: np.ndarray,
+ mask: np.ndarray,
+ *,
+ layer: int,
+) -> np.ndarray:
+ encoded = _reference_encode(state, layer=layer)
+ rows = encoded.reshape(state.shape[0] * state.shape[1], -1)
+ groups = rows.reshape(-1, 128)
+ flat_mask = mask.reshape(-1)
+ qmax = np.where(flat_mask, 127.0, 7.0).reshape(-1, 1)
+ ideal_scales = np.max(np.abs(groups), axis=1, keepdims=True) / qmax
+ ideal_scales = np.where(ideal_scales > 1e-8, ideal_scales, 1.0)
+ ideal_scales = np.clip(
+ ideal_scales,
+ 2.0**-24,
+ np.finfo(np.float16).max,
+ )
+ scales = ideal_scales.astype(np.float16).astype(np.float32)
+ codes = np.rint(groups / scales)
+ codes = np.maximum(np.minimum(codes, qmax), -qmax)
+ quantized = (codes * scales).reshape(encoded.shape)
+ return _reference_decode(quantized, layer=layer)
+
+
+def test_production_rht_matches_independent_dense_reference() -> None:
+ state = torch.randn(
+ (1, 2, 3, 128),
+ generator=torch.Generator().manual_seed(811),
+ dtype=torch.float32,
+ )
+ reference_signs = _reference_signs(layer=7, heads=2, width=128)
+ reference_encoded = _reference_encode(state.numpy(), layer=7)
+
+ production_signs = right_rht_signs(
+ layer_index=7,
+ expected_heads=2,
+ width=128,
+ device="cpu",
+ )
+ production_encoded = right_rht_encode(
+ state,
+ layer_index=7,
+ expected_heads=2,
+ )
+
+ np.testing.assert_array_equal(production_signs.numpy(), reference_signs)
+ np.testing.assert_allclose(
+ production_encoded.numpy(),
+ reference_encoded,
+ rtol=2e-6,
+ atol=2e-6,
+ )
+
+
+def test_physical_rht_pack_matches_independent_dense_quantizer() -> None:
+ state = torch.randn(
+ (1, 2, 4, 128),
+ generator=torch.Generator().manual_seed(823),
+ dtype=torch.float32,
+ )
+ mask = torch.tensor(
+ [[False, True, False, True], [True, False, False, True]],
+ dtype=torch.bool,
+ )
+ packed = quantize_pack_mixed(
+ state,
+ mask,
+ low_spec=LOW,
+ high_spec=HIGH,
+ right_rht_layer_index=9,
+ right_rht_expected_heads=2,
+ )
+
+ reference = _reference_mixed_qdq(
+ state.numpy(),
+ mask.numpy(),
+ layer=9,
+ )
+
+ np.testing.assert_allclose(
+ packed.dequantize().numpy(),
+ reference,
+ rtol=5e-6,
+ atol=6e-6,
+ )
diff --git a/tests/test_screen_rht_cqer.py b/tests/test_screen_rht_cqer.py
index 721290c..bd3bce6 100644
--- a/tests/test_screen_rht_cqer.py
+++ b/tests/test_screen_rht_cqer.py
@@ -1,11 +1,20 @@
from __future__ import annotations
+import json
from copy import deepcopy
+from pathlib import Path
import pytest
from scripts import screen_rht_cqer as screen
+REPOSITORY_ROOT = Path(__file__).resolve().parents[1]
+STAGE_A_EVIDENCE = (
+ REPOSITORY_ROOT
+ / "evidence"
+ / "experiment009-rht-cqer-stage-a-666-5be8d48.json"
+)
+
def _metric(
*,
@@ -65,40 +74,37 @@ def _diagnostics(method: str) -> list[dict[str, object]]:
return records
-def _state_error(*, sse: float) -> dict[str, object]:
- coverage = [
+def _state_error(*, sse: float, method: str) -> dict[str, object]:
+ record_count = (
+ screen.EXPECTED_STATE_WRITES * len(screen.FROZEN_LINEAR_LAYERS)
+ )
+ element_count = 16 * 128 * 128
+ mse = sse / (record_count * element_count)
+ mask_hash = "a" * 64 if method == screen.CQER_METHOD else "b" * 64
+ selection_method = (
+ "query_ema32_weighted_aligned_mse_reduction"
+ if method == screen.CQER_METHOD
+ else screen.RHT_METHOD
+ )
+ records = [
{
- "write_ordinal": write,
+ "update_index": write * len(screen.FROZEN_LINEAR_LAYERS) + offset,
"layer_index": layer,
"state_index": 0,
"shape": [1, 16, 128, 128],
+ "mean_squared_error": mse,
+ "max_absolute_error": 0.1,
+ "relative_l2_error": 0.1,
+ "source_dtype": "torch.float32",
+ "selection_method": selection_method,
+ "total_groups": 2048,
+ "high_precision_groups": screen.FROZEN_LAYER_QUOTAS[layer],
+ "high_precision_mask_sha256": mask_hash,
}
for write in range(screen.EXPECTED_STATE_WRITES)
- for layer in screen.FROZEN_LINEAR_LAYERS
+ for offset, layer in enumerate(screen.FROZEN_LINEAR_LAYERS)
]
- return {
- "record_count": len(coverage),
- "element_count": len(coverage) * 16 * 128 * 128,
- "aggregate_state_sse": sse,
- "aggregate_state_mse": sse / (len(coverage) * 16 * 128 * 128),
- "coverage": coverage,
- "per_layer": {
- str(layer): {
- "record_count": screen.EXPECTED_STATE_WRITES,
- "element_count": screen.EXPECTED_STATE_WRITES * 16 * 128 * 128,
- "state_sse": sse / len(screen.FROZEN_LINEAR_LAYERS),
- }
- for layer in screen.FROZEN_LINEAR_LAYERS
- },
- "per_write": {
- str(write): {
- "record_count": len(screen.FROZEN_LINEAR_LAYERS),
- "element_count": len(screen.FROZEN_LINEAR_LAYERS) * 16 * 128 * 128,
- "state_sse": sse / screen.EXPECTED_STATE_WRITES,
- }
- for write in range(screen.EXPECTED_STATE_WRITES)
- },
- }
+ return screen.aggregate_state_error_evidence(records)
def _passing_gate_inputs() -> dict[str, object]:
@@ -150,8 +156,14 @@ def _passing_gate_inputs() -> dict[str, object]:
method: _diagnostics(method) for method in screen.METHODS
},
"state_errors": {
- screen.CQER_METHOD: _state_error(sse=100.0),
- screen.RHT_METHOD: _state_error(sse=40.0),
+ screen.CQER_METHOD: _state_error(
+ sse=100.0,
+ method=screen.CQER_METHOD,
+ ),
+ screen.RHT_METHOD: _state_error(
+ sse=40.0,
+ method=screen.RHT_METHOD,
+ ),
},
"unit_evidence": {
"inverse_relative_l2": 2e-7,
@@ -260,6 +272,73 @@ def test_stage_a_gate_rejects_rht_method_or_codec_drift(
)
+@pytest.mark.parametrize(
+ "mutation",
+ [
+ lambda values: values["aligned_metrics"][screen.RHT_METHOD].__setitem__(
+ "candidate_nll", 999.0
+ ),
+ lambda values: values["aligned_metrics"][screen.RHT_METHOD].__setitem__(
+ "reference_nll", 1.5
+ ),
+ lambda values: values["aligned_metrics"][screen.RHT_METHOD].__setitem__(
+ "mean_kl", -0.1
+ ),
+ lambda values: values["aligned_metrics"][screen.RHT_METHOD].__setitem__(
+ "top1_agreement", 1.2
+ ),
+ lambda values: values["state_errors"][screen.RHT_METHOD]["records"][
+ 0
+ ].__setitem__("mean_squared_error", 1.0),
+ lambda values: values["state_errors"][screen.RHT_METHOD]["records"][
+ -1
+ ].__setitem__("high_precision_mask_sha256", "c" * 64),
+ ],
+)
+def test_stage_a_gate_recomputes_metrics_state_totals_and_mask_links(
+ mutation,
+) -> None:
+ inputs = deepcopy(_passing_gate_inputs())
+ mutation(inputs)
+
+ gate = screen.evaluate_stage_a_gate(**inputs)
+
+ assert gate["passed"] is False
+ assert (
+ gate["checks"]["finite_metrics_exact_quotas_and_handshakes"]["passed"]
+ is False
+ )
+
+
+def test_committed_stage_a_artifact_passes_the_hardened_gate() -> None:
+ document = json.loads(STAGE_A_EVIDENCE.read_text(encoding="utf-8"))
+ evidence = document["evidence"]
+ repository = evidence["repository"]
+ integrity = {
+ "repository_clean_at_start": repository["start"]["worktree_clean"],
+ "repository_clean_at_end": repository["end"]["worktree_clean"],
+ "repository_commit_stable": repository["stable_commit"],
+ "source_hashes_stable": evidence["source_files"]["stable"],
+ "identity_authenticated_before_model_weights": evidence["dataset"][
+ "identity_authenticated_before_model_weights"
+ ],
+ "protected_window_8_16_accessed": False,
+ }
+
+ gate = screen.evaluate_stage_a_gate(
+ aligned_metrics=evidence["metrics_aligned"],
+ full_code_metrics=evidence["metrics_full_code_secondary"],
+ storage=evidence["storage"]["candidates"],
+ selector_diagnostics=evidence["selector_diagnostics"],
+ state_errors=evidence["state_error"],
+ unit_evidence=evidence["unit_evidence"],
+ integrity=integrity,
+ )
+
+ assert gate["passed"] is True
+ assert all(check["passed"] is True for check in gate["checks"].values())
+
+
def test_stage_a_identity_accepts_only_frozen_task_hash_and_token_counts() -> None:
identity = screen.validate_stage_a_identity(
task_id=screen.TASK_ID,
From 8168c469b252bc9e707e51feaeccc3f940f190bb Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Sun, 26 Jul 2026 13:14:11 +0800
Subject: [PATCH 19/22] research: freeze Experiment 009 Stage B identity
---
...009-rht-cqer-stage-b-identity-cdc603b.json | 11066 ++++++++++++++++
research/EXPERIMENT_009_STAGE_B_IDENTITY.md | 107 +
2 files changed, 11173 insertions(+)
create mode 100644 evidence/experiment009-rht-cqer-stage-b-identity-cdc603b.json
create mode 100644 research/EXPERIMENT_009_STAGE_B_IDENTITY.md
diff --git a/evidence/experiment009-rht-cqer-stage-b-identity-cdc603b.json b/evidence/experiment009-rht-cqer-stage-b-identity-cdc603b.json
new file mode 100644
index 0000000..499c7a9
--- /dev/null
+++ b/evidence/experiment009-rht-cqer-stage-b-identity-cdc603b.json
@@ -0,0 +1,11066 @@
+{
+ "canonical_evidence_sha256": "4074db6860d3f36dff1a13b7945d0c5c5d619ee208f0fdb35108defb9512c343",
+ "evidence": {
+ "artifact_kind": "recurquant_rht_cqer32_stage_b_identity",
+ "authorization": {
+ "stage_a_artifact_kind": "recurquant_rht_cqer32_stage_a_screen",
+ "stage_a_canonical_evidence_sha256": "9e03a1e8cefb5801406a47a2e5e365686afb0a05e10e099a989cee616b505ed1",
+ "stage_a_file_sha256": "98a432843dc438f2d5fde34f8704f154ebc3ee12c93ba7c469369acfedfb15b5",
+ "stage_a_gate_passed": true,
+ "stage_a_implementation_commit": "5be8d48369d94081e55aa389c25f63c303c7b0dd",
+ "stage_a_result_commit": "1cbc20f6c493e79f771d047fc63e96a7464eacf4",
+ "verified_before_dataset_access": true
+ },
+ "claim_boundary": "This artifact fixes the Experiment 009 Stage-B data and tokenizer identity before model weights or quality metrics are opened. It is not performance, novelty, state-of-the-art, or breakthrough evidence.",
+ "created_at_utc": "2026-07-26T05:12:01.884112+00:00",
+ "dataset": {
+ "config": "full",
+ "content_manifest_sha256": "7a66a3d1241baf27887f43f04129b9e6d8ce46f24e22835b9888cab53d172bcb",
+ "data_access": {
+ "application_task_id_sets": {
+ "canonicalized": [
+ 725,
+ 616,
+ 686,
+ 722,
+ 919,
+ 636,
+ 607,
+ 950,
+ 885,
+ 646,
+ 708,
+ 840,
+ 793,
+ 860,
+ 800,
+ 867,
+ 622,
+ 677,
+ 849,
+ 756,
+ 960,
+ 741,
+ 763,
+ 924,
+ 839,
+ 870,
+ 862,
+ 877,
+ 672,
+ 894,
+ 911,
+ 907
+ ],
+ "evaluated": [],
+ "formatted": [
+ 725,
+ 616,
+ 686,
+ 722,
+ 919,
+ 636,
+ 607,
+ 950,
+ 885,
+ 646,
+ 708,
+ 840,
+ 793,
+ 860,
+ 800,
+ 867,
+ 622,
+ 677,
+ 849,
+ 756,
+ 960,
+ 741,
+ 763,
+ 924,
+ 839,
+ 870,
+ 862,
+ 877,
+ 672,
+ 894,
+ 911,
+ 907
+ ],
+ "passed_to_model": [],
+ "retained": [
+ 725,
+ 616,
+ 686,
+ 722,
+ 919,
+ 636,
+ 607,
+ 950,
+ 885,
+ 646,
+ 708,
+ 840,
+ 793,
+ 860,
+ 800,
+ 867,
+ 622,
+ 677,
+ 849,
+ 756,
+ 960,
+ 741,
+ 763,
+ 924,
+ 839,
+ 870,
+ 862,
+ 877,
+ 672,
+ 894,
+ 911,
+ 907
+ ],
+ "selected": [
+ 725,
+ 616,
+ 686,
+ 722,
+ 919,
+ 636,
+ 607,
+ 950,
+ 885,
+ 646,
+ 708,
+ 840,
+ 793,
+ 860,
+ 800,
+ 867,
+ 622,
+ 677,
+ 849,
+ 756,
+ 960,
+ 741,
+ 763,
+ 924,
+ 839,
+ 870,
+ 862,
+ 877,
+ 672,
+ 894,
+ 911,
+ 907
+ ],
+ "tokenized": [
+ 725,
+ 616,
+ 686,
+ 722,
+ 919,
+ 636,
+ 607,
+ 950,
+ 885,
+ 646,
+ 708,
+ 840,
+ 793,
+ 860,
+ 800,
+ 867,
+ 622,
+ 677,
+ 849,
+ 756,
+ 960,
+ 741,
+ 763,
+ 924,
+ 839,
+ 870,
+ 862,
+ 877,
+ 672,
+ 894,
+ 911,
+ 907
+ ]
+ },
+ "protected_window_intersection": {
+ "canonicalized": false,
+ "evaluated": false,
+ "formatted": false,
+ "passed_to_model": false,
+ "retained": false,
+ "selected": false,
+ "tokenized": false
+ },
+ "ranking_pass": {
+ "non_task_id_fields_read_by_recurquant": 0,
+ "row_mappings_retained": 0,
+ "task_id_fields_inspected": 374,
+ "transport_records_yielded": 374
+ },
+ "target_load_pass": {
+ "non_target_content_fields_read_by_recurquant": 0,
+ "target_rows_retained_and_canonicalized": 32,
+ "task_id_fields_inspected": 360,
+ "transport_records_yielded": 360
+ },
+ "transport_limitation": "The Hugging Face streaming transport may deserialize complete source records before yielding mappings. These counters describe fields read and rows retained by RecurQuant application code."
+ },
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "id": "google-research-datasets/mbpp",
+ "manifest": {
+ "config": "full",
+ "dataset_id": "google-research-datasets/mbpp",
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "phase": "calibration",
+ "revision": "4bb6404fdc6cacfda99d4ac4205087b89d32030c",
+ "row_count": 32,
+ "rows": [
+ {
+ "sha256": "11232053152c07a60b8e2e79815d3de04a1443a87a65774ef87639fedcf630b6",
+ "task_id": 607
+ },
+ {
+ "sha256": "5f1b71dafe9e85d5f48be7f279c5634adae641fdfb87e6909a997bcc5b74acae",
+ "task_id": 616
+ },
+ {
+ "sha256": "57ac285cb7a025d45282c3f6abe281fce91e4da9330e282165c7a0c99907f09b",
+ "task_id": 622
+ },
+ {
+ "sha256": "02970640b1788468a6f2ff70b282e0f78ab45bb155d30974046382cf62b3f9b7",
+ "task_id": 636
+ },
+ {
+ "sha256": "a0a6132d99c64acc06c5947116f86df29c7e7c4b10e449d8357c859a0cac8ecb",
+ "task_id": 646
+ },
+ {
+ "sha256": "82b87eac2a21c807c65cb68047ed2cb5ce3d8bc453bb6a99205f6a9555843afd",
+ "task_id": 672
+ },
+ {
+ "sha256": "0e7a43cda14ead948c5a011dae76ec4cd91111fcb644abd2afca0356375c99bb",
+ "task_id": 677
+ },
+ {
+ "sha256": "d41cc9253a016b071472b34642a8e1ad5f66b319f20719e9cc839eaf305ae5a6",
+ "task_id": 686
+ },
+ {
+ "sha256": "bccec7302a85edcfc051afb0894c6915c3fad68dd121d9cbb453d1b03511fd3b",
+ "task_id": 708
+ },
+ {
+ "sha256": "9bbd665af173f07fd00e8e9f14d16fe42d02fe7a4060be3ee8656296f1c24015",
+ "task_id": 722
+ },
+ {
+ "sha256": "4def8e85bd92c9756de5a6ce85bf7cd73aed45a8e582120e1d8de8f1eb70868e",
+ "task_id": 725
+ },
+ {
+ "sha256": "b6cfe3dac4270af8bc80cd469cf6ac9c996354660864448756c25b09996ed5d7",
+ "task_id": 741
+ },
+ {
+ "sha256": "c548acfae5d44e40dadf7340e6a95770267132f0d9ebaa56c06dddce84eeec0f",
+ "task_id": 756
+ },
+ {
+ "sha256": "1fa1bb3481bbffa4496b6e035777caf912a0f650985b08ec3a9041900e9e73e2",
+ "task_id": 763
+ },
+ {
+ "sha256": "af6a0c224e5118d6554a8c07cf9fda753414d8b0e23784969d6df6b4ee365191",
+ "task_id": 793
+ },
+ {
+ "sha256": "b5f6d0ebbd110d5f0ca866dca13ee76da881c253a88f922299e9315586bd8474",
+ "task_id": 800
+ },
+ {
+ "sha256": "9a3a8dc7b0c01f525b10282b3be30fe899e1cf70289e5ec5cf6d4ed5d2627d0f",
+ "task_id": 839
+ },
+ {
+ "sha256": "a49784c13a6113a3ded3161764a8f37473a15f3760e0cdf01927f30bfe040c18",
+ "task_id": 840
+ },
+ {
+ "sha256": "653a2e01264ed1d36f7adb97f2bfdac1abe506f1f935c2bcaf227a3e9c135353",
+ "task_id": 849
+ },
+ {
+ "sha256": "c249175bd739930b950995bede307495b169c63f709eb2e41f0fc5597efada0f",
+ "task_id": 860
+ },
+ {
+ "sha256": "9e4b6ef7ce7d4eda8a241226cc66b0486cfbb42e1348463e9c82657769beaf95",
+ "task_id": 862
+ },
+ {
+ "sha256": "63b248175efd8f2e22ec48e9f77bbbcb488acb1cb414d122e610216aab83ca7b",
+ "task_id": 867
+ },
+ {
+ "sha256": "282f8ea69b300531e40d724fdef1e898a57b74470ae43578bb5dbdaa5aa2637c",
+ "task_id": 870
+ },
+ {
+ "sha256": "583c205150f59734648d69899b8b9616e600131ee0e0071c7a2395d0e5578319",
+ "task_id": 877
+ },
+ {
+ "sha256": "4c0d89e359074acbd4139fbb1fe87edaf1cbde75ed617be49db266a613b09d91",
+ "task_id": 885
+ },
+ {
+ "sha256": "d92f7d1ba82cab3763014bea1d719a7771ff72490b774c548c1b77f8aff3e41c",
+ "task_id": 894
+ },
+ {
+ "sha256": "073a931c88cc6d01d730c5050afb5ff700a3ef9aaad7deeaa623aea044fd7968",
+ "task_id": 907
+ },
+ {
+ "sha256": "30393686473b7c4700ca1dc290d7690b222d96c763fae28843ea4197858dc5c5",
+ "task_id": 911
+ },
+ {
+ "sha256": "3ef4c44d5746bddb64e9a28c351fb9f56fc451c34c20190a01f4793509a939e3",
+ "task_id": 919
+ },
+ {
+ "sha256": "35822c08ae141bce472f4f9b8731ea70def350d27cea8744e9976f997d1e986a",
+ "task_id": 924
+ },
+ {
+ "sha256": "85415b60358ed5c36762d2a692f5ea0d242a388c2badd4434cf411684fae7898",
+ "task_id": 950
+ },
+ {
+ "sha256": "b03ac32ece778320e5c766293410b13fb5e53fb34a2e9278b2f7ec958e217363",
+ "task_id": 960
+ }
+ ],
+ "schema": "recurquant.mbpp-manifest.v1",
+ "selection_namespace": "rq-v0.2",
+ "source_split": "train"
+ },
+ "ordered_identity_sha256": "3a7f9f2e1b60321680082d93ea983425085f0e26afad03c49413b41e6e4b2ddc",
+ "ordered_task_ids": [
+ 725,
+ 616,
+ 686,
+ 722,
+ 919,
+ 636,
+ 607,
+ 950,
+ 885,
+ 646,
+ 708,
+ 840,
+ 793,
+ 860,
+ 800,
+ 867,
+ 622,
+ 677,
+ 849,
+ 756,
+ 960,
+ 741,
+ 763,
+ 924,
+ 839,
+ 870,
+ 862,
+ 877,
+ 672,
+ 894,
+ 911,
+ 907
+ ],
+ "phase": "calibration",
+ "protected_window": {
+ "content_retained_canonicalized_or_tokenized": false,
+ "offset": 8,
+ "stop_exclusive": 16
+ },
+ "revision": "4bb6404fdc6cacfda99d4ac4205087b89d32030c",
+ "selection_mode": "task_id_ranking_then_exact_task_id_stream",
+ "selection_namespace": "rq-v0.2",
+ "selection_window": {
+ "limit": 32,
+ "offset": 32,
+ "stop_exclusive": 64
+ },
+ "source_split": "train",
+ "tasks": [
+ {
+ "aligned_scored_tokens": 25,
+ "code_text_sha256": "3eaf7ccddd2b5ec8a8d801194db287556777a8e628f50c80d3c6e648cd5832f8",
+ "code_token_ids_sha256": "620c1ad1b6a9fa934b37eb4289a49af61490c0b1df29e664bc9d86f2c9f6c732",
+ "code_tokens": 26,
+ "full_code_scored_tokens": 26,
+ "prompt_text_sha256": "eb3a25d7413661cbd443f193ebcc3983f41435494f96b9a2c2282b2a9345fdc1",
+ "prompt_token_ids_sha256": "0dc44645457fc4d5cd7b0a7d53235bd475fde9c78e3ea00beb0b22c50d911b97",
+ "prompt_tokens": 138,
+ "rank": 32,
+ "row_sha256": "4def8e85bd92c9756de5a6ce85bf7cd73aed45a8e582120e1d8de8f1eb70868e",
+ "task_id": 725
+ },
+ {
+ "aligned_scored_tokens": 48,
+ "code_text_sha256": "2c68e695e7437360b9740dc15aae3c2417ac54f9b05c8c5d066fb83ebda14ae0",
+ "code_token_ids_sha256": "242cf76ac105736d4a92822a6cd82a91472ec3ec696c97108ffdff2dcd2d7b17",
+ "code_tokens": 49,
+ "full_code_scored_tokens": 49,
+ "prompt_text_sha256": "b436def27e0c7c6104f0f253e15953c1c87a8eee266d4f4e8076c867ca5fb0e8",
+ "prompt_token_ids_sha256": "efd641577400219acc2c347518f933200ecb7b4f13d2d88256077299b0d986a8",
+ "prompt_tokens": 172,
+ "rank": 33,
+ "row_sha256": "5f1b71dafe9e85d5f48be7f279c5634adae641fdfb87e6909a997bcc5b74acae",
+ "task_id": 616
+ },
+ {
+ "aligned_scored_tokens": 45,
+ "code_text_sha256": "fa1d06b50fa6e835cecb09e460c8c83c35134e3af96377ea3f473f40f37642f3",
+ "code_token_ids_sha256": "2e4e2f868725012d6cf0ca0562b9dfb071db2624d1bce79a5c999eed099b9d76",
+ "code_tokens": 46,
+ "full_code_scored_tokens": 46,
+ "prompt_text_sha256": "63e1cf945c320423137793405e4a4b9c71695dc5cb6b6b9e7b6796512841631e",
+ "prompt_token_ids_sha256": "9edbdeb49e22170609d18f80e59022b512cbbad6ef70d26149932690f9b864cb",
+ "prompt_tokens": 239,
+ "rank": 34,
+ "row_sha256": "d41cc9253a016b071472b34642a8e1ad5f66b319f20719e9cc839eaf305ae5a6",
+ "task_id": 686
+ },
+ {
+ "aligned_scored_tokens": 43,
+ "code_text_sha256": "9e3709713e44df9854d8e62fdb349289cb8aa2eb553dae05133b2b2467781888",
+ "code_token_ids_sha256": "40c54904dbd6bede2078ca31dfb436f155e3e73546c0df521eec9ad24088d970",
+ "code_tokens": 44,
+ "full_code_scored_tokens": 44,
+ "prompt_text_sha256": "813ec53d8c25b11922007e83061f234eb28d78b4628ee1b765050d23346be545",
+ "prompt_token_ids_sha256": "a077cf5ce943dbe287b6a9331baa5c65822520b78f62042564decbac17162dc5",
+ "prompt_tokens": 344,
+ "rank": 35,
+ "row_sha256": "9bbd665af173f07fd00e8e9f14d16fe42d02fe7a4060be3ee8656296f1c24015",
+ "task_id": 722
+ },
+ {
+ "aligned_scored_tokens": 26,
+ "code_text_sha256": "e256622c62241780fada08859843537278c9e6f583e187cb3ea59979f0d3f7c9",
+ "code_token_ids_sha256": "a42e9e36d7d0f9703013d8c863a0843a476fe87d07bc88c9cb04f410103bd772",
+ "code_tokens": 27,
+ "full_code_scored_tokens": 27,
+ "prompt_text_sha256": "65a32e791efe4dd8ab65eb48a321b7c86059e0fe8b86af52eae12771d247f4af",
+ "prompt_token_ids_sha256": "ca5f6ccecff42463c00d3f18e9cffece242b65b7ebecfe93d977edaa6174f2a8",
+ "prompt_tokens": 86,
+ "rank": 36,
+ "row_sha256": "3ef4c44d5746bddb64e9a28c351fb9f56fc451c34c20190a01f4793509a939e3",
+ "task_id": 919
+ },
+ {
+ "aligned_scored_tokens": 32,
+ "code_text_sha256": "cef7999d8c91f571c289c755472a161983eea46d477b5a0e531f33feb38e5ddb",
+ "code_token_ids_sha256": "a75e57dfacf267e991d55ac6777abb58a3bb4e82be8071ed23f863f4aff23316",
+ "code_tokens": 33,
+ "full_code_scored_tokens": 33,
+ "prompt_text_sha256": "d63b6220146f202940f2b4ca31c7534176dd81b52c20708aafd8e3e1527cf572",
+ "prompt_token_ids_sha256": "eee75d47676bd7f5c6f35b282f1d3c179904c0c4a25ac425625c9441a2b70b79",
+ "prompt_tokens": 94,
+ "rank": 37,
+ "row_sha256": "02970640b1788468a6f2ff70b282e0f78ab45bb155d30974046382cf62b3f9b7",
+ "task_id": 636
+ },
+ {
+ "aligned_scored_tokens": 65,
+ "code_text_sha256": "63a23997cd8f62991e7ee497b9fc3ff0397474979dac243af6e28e7cf16ca40a",
+ "code_token_ids_sha256": "3834e1bc81fbe5ead66d618bc690693135ff9305e0bf300df62ccc2f455a0829",
+ "code_tokens": 66,
+ "full_code_scored_tokens": 66,
+ "prompt_text_sha256": "9d62e1d4940f176c3e5d449eeb0ae7d6b720219f037a348fa02d2924c67de550",
+ "prompt_token_ids_sha256": "cf0c42ec3568a85e1c545f3375b5e588379f3047a606fb69d5d31a90a92473f9",
+ "prompt_tokens": 141,
+ "rank": 38,
+ "row_sha256": "11232053152c07a60b8e2e79815d3de04a1443a87a65774ef87639fedcf630b6",
+ "task_id": 607
+ },
+ {
+ "aligned_scored_tokens": 313,
+ "code_text_sha256": "31ada150fed3d548bc23166eb3c9a621a484650b3a1f36fd5f4684eda6403c79",
+ "code_token_ids_sha256": "fc2018c32b6e8ec6e8e26eb8bd3fa50250a837a4485eccbb0394152a1e003988",
+ "code_tokens": 314,
+ "full_code_scored_tokens": 314,
+ "prompt_text_sha256": "1c3bb8f6d8ce6b7435eee9f837512763c4580690f02df592714f20834629128e",
+ "prompt_token_ids_sha256": "e7a23f1bec8e2d8397935c862ed746f04e838909b3f3cae468ad33514422c16e",
+ "prompt_tokens": 85,
+ "rank": 39,
+ "row_sha256": "85415b60358ed5c36762d2a692f5ea0d242a388c2badd4434cf411684fae7898",
+ "task_id": 950
+ },
+ {
+ "aligned_scored_tokens": 110,
+ "code_text_sha256": "cc51da76e49dcdcd1fddb1e6f94f1c5cc057efa21ebc6685f784b56fbffb467a",
+ "code_token_ids_sha256": "9c357d89ef1a0af84f1d672cccccb5ad381a1829332c47d70837675ebfbd130b",
+ "code_tokens": 111,
+ "full_code_scored_tokens": 111,
+ "prompt_text_sha256": "8fc6d3a26706cb61c8e767bb9cd45b0bd9118b7bebdb5d47dfda9d7fe7595732",
+ "prompt_token_ids_sha256": "4720c2b736f0fb717600db783492eb73d50e786eba21a4acca15ff20a85154d9",
+ "prompt_tokens": 82,
+ "rank": 40,
+ "row_sha256": "4c0d89e359074acbd4139fbb1fe87edaf1cbde75ed617be49db266a613b09d91",
+ "task_id": 885
+ },
+ {
+ "aligned_scored_tokens": 40,
+ "code_text_sha256": "ee248343e9a842e7e2ec62a150820e6f3225a15c495290ce73ec9bacad6f8439",
+ "code_token_ids_sha256": "ef41c13193df4bdd6ef964979ef847d4eff9b6644711f4391f2724d639221cdb",
+ "code_tokens": 41,
+ "full_code_scored_tokens": 41,
+ "prompt_text_sha256": "4cf14efea9f084d3e1dc244dd13f4450fc6529b6d99bb4d77108676725dfd9ad",
+ "prompt_token_ids_sha256": "7c84de43c456cad9ec5b5dafc5192a3c5239a50031b55d194bf7f5f72e5e7b35",
+ "prompt_tokens": 88,
+ "rank": 41,
+ "row_sha256": "a0a6132d99c64acc06c5947116f86df29c7e7c4b10e449d8357c859a0cac8ecb",
+ "task_id": 646
+ },
+ {
+ "aligned_scored_tokens": 17,
+ "code_text_sha256": "0145c31b6917f02bee2379d607c778bde985bf7c09777bd55cefb075f2b9fb59",
+ "code_token_ids_sha256": "a261017425e34f335bf464c07e5e9d85eecb60b634926e536624b4b061911593",
+ "code_tokens": 18,
+ "full_code_scored_tokens": 18,
+ "prompt_text_sha256": "7971f1a33c813ce90c647793c3850454a290a0224a545e3491e9297c8b96f318",
+ "prompt_token_ids_sha256": "e8b6b3330169d3b4dfcc24208c7e37af63a41b335f1b3d96249dd02072937ddd",
+ "prompt_tokens": 79,
+ "rank": 42,
+ "row_sha256": "bccec7302a85edcfc051afb0894c6915c3fad68dd121d9cbb453d1b03511fd3b",
+ "task_id": 708
+ },
+ {
+ "aligned_scored_tokens": 32,
+ "code_text_sha256": "b90c686180b01d55b9b11c801a309507348b366c7268584f03915901cb84365e",
+ "code_token_ids_sha256": "f62aba0495879837ffb4cceadaf7f0834ece2b4ab5652dc9c451bd2433dac7f7",
+ "code_tokens": 33,
+ "full_code_scored_tokens": 33,
+ "prompt_text_sha256": "fed0738d833bad82c8b3279729683ff27fe564e501a57bab36b7905491285cf4",
+ "prompt_token_ids_sha256": "c088ad16fb7700ad4fdea32d6c7fbadf694ea47edf3c184a153635a6bf11e8ba",
+ "prompt_tokens": 98,
+ "rank": 43,
+ "row_sha256": "a49784c13a6113a3ded3161764a8f37473a15f3760e0cdf01927f30bfe040c18",
+ "task_id": 840
+ },
+ {
+ "aligned_scored_tokens": 100,
+ "code_text_sha256": "73769bd9779e3a779a96b210732a4c0bf04c1ec8f0dcb7c30b234845672a567f",
+ "code_token_ids_sha256": "51afe40ceacfd6e1bb6ee6199e32ad0f8abb0910fbb4932f0238ad83cc94dce5",
+ "code_tokens": 101,
+ "full_code_scored_tokens": 101,
+ "prompt_text_sha256": "ee15baee4eff639610903bdb0a741704ff48ce892a0b5708ac69bddd312394b4",
+ "prompt_token_ids_sha256": "1e32ad10eced5c6f8750888c8196124bebf4f32505f36e53d96fed57f4c1f359",
+ "prompt_tokens": 108,
+ "rank": 44,
+ "row_sha256": "af6a0c224e5118d6554a8c07cf9fda753414d8b0e23784969d6df6b4ee365191",
+ "task_id": 793
+ },
+ {
+ "aligned_scored_tokens": 45,
+ "code_text_sha256": "943a152d1799070781515b6e7115b48c05a46c3e22512ded275c8bc86f5e2c51",
+ "code_token_ids_sha256": "f70c5792252d21e8e0fe96801251799d3c30be34ae110b04a6a79803265db22f",
+ "code_tokens": 46,
+ "full_code_scored_tokens": 46,
+ "prompt_text_sha256": "4338fbd430ae9ba06673278f8687dec92312ae193520134fe0586cc04e5dc41a",
+ "prompt_token_ids_sha256": "cd394c559857ddcb8d5f19ebbdbad8113410fa009f8509778d41e682b38d7c4e",
+ "prompt_tokens": 95,
+ "rank": 45,
+ "row_sha256": "c249175bd739930b950995bede307495b169c63f709eb2e41f0fc5597efada0f",
+ "task_id": 860
+ },
+ {
+ "aligned_scored_tokens": 20,
+ "code_text_sha256": "48d7b16a714761c7262434625bfefff84db672f93a2c2c9d6f2f108fb2fa85f8",
+ "code_token_ids_sha256": "db11390527b9e08008ac63174fc74861dc0150b1d49bf9c2ea218c4d4165f0b4",
+ "code_tokens": 21,
+ "full_code_scored_tokens": 21,
+ "prompt_text_sha256": "af5470ca026b24c54ac3a274fa4932c97545000f4d6c0efa3cdb5f9799336409",
+ "prompt_token_ids_sha256": "49db1f4a80ed0281fa0b9999c4f126348ef29c68391ddf3a6e7cc039fa34f6f6",
+ "prompt_tokens": 83,
+ "rank": 46,
+ "row_sha256": "b5f6d0ebbd110d5f0ca866dca13ee76da881c253a88f922299e9315586bd8474",
+ "task_id": 800
+ },
+ {
+ "aligned_scored_tokens": 55,
+ "code_text_sha256": "3a1aaa18c3a5e454daf1c284d15e76d7256ddfb519adef16cc9ae2f49112ce20",
+ "code_token_ids_sha256": "4238e015069f58afa37eeaaa3e4f6035fcfb060fa7ee6e40db4304d9908b27f1",
+ "code_tokens": 56,
+ "full_code_scored_tokens": 56,
+ "prompt_text_sha256": "fd2af1c2fb82c3999159d4f493e63d61318e1cd91699bf0d40b07d48f89fa9e3",
+ "prompt_token_ids_sha256": "552dc15e3300e4861a9aec6d076a239d1f474af7bf2366dadb1ae161b429b1aa",
+ "prompt_tokens": 114,
+ "rank": 47,
+ "row_sha256": "63b248175efd8f2e22ec48e9f77bbbcb488acb1cb414d122e610216aab83ca7b",
+ "task_id": 867
+ },
+ {
+ "aligned_scored_tokens": 183,
+ "code_text_sha256": "cace27a1c56e68a15b9f24836d5c4f2e78579f064790f81a0d8ba064d98562db",
+ "code_token_ids_sha256": "8274597f71636c5815cf1a10ed5044abc1563aced547f541e1ebdffe45955e53",
+ "code_tokens": 184,
+ "full_code_scored_tokens": 184,
+ "prompt_text_sha256": "20a8e38d5a59f6fb2dd193c16b438eec532afbf98ccd90129fd3b6c64fe56a19",
+ "prompt_token_ids_sha256": "5afa9afebe21b612797f9abd4c996753131fe0ead022ad3b3162c70c935eadf2",
+ "prompt_tokens": 189,
+ "rank": 48,
+ "row_sha256": "57ac285cb7a025d45282c3f6abe281fce91e4da9330e282165c7a0c99907f09b",
+ "task_id": 622
+ },
+ {
+ "aligned_scored_tokens": 34,
+ "code_text_sha256": "47ac7a78fa994fd7309865ae35aa873e8d0315e88739d10b9a54e7709c645dbf",
+ "code_token_ids_sha256": "67a4b5af6f06899ebeaf74ed865520c2653fcabf1f620660fdfdfb343a265772",
+ "code_tokens": 35,
+ "full_code_scored_tokens": 35,
+ "prompt_text_sha256": "04bcc8375306a1f0fc4ce3023122ef41242afb12cf6bf762aa242b2772e5e640",
+ "prompt_token_ids_sha256": "525c7172ac4f01ec3f758f91547d064bdd34e680839140841b58c56e7bd77191",
+ "prompt_tokens": 85,
+ "rank": 49,
+ "row_sha256": "0e7a43cda14ead948c5a011dae76ec4cd91111fcb644abd2afca0356375c99bb",
+ "task_id": 677
+ },
+ {
+ "aligned_scored_tokens": 85,
+ "code_text_sha256": "1af18c662f326effffbaab573fec7b590c3e388b863ea9dbebd96efe7df732f8",
+ "code_token_ids_sha256": "586984420e81f36bb87d8005c70825fddbdfd5c3b2ba9bb929630ff5ca9d31f6",
+ "code_tokens": 86,
+ "full_code_scored_tokens": 86,
+ "prompt_text_sha256": "cf6c13bd696d4cc27fd5db1543b0878022ebc7efd9a3b098889165647d230291",
+ "prompt_token_ids_sha256": "f9b7d1445e1ab737abe2d6f63e57e190fa915562301f5a3dc959ad793341b500",
+ "prompt_tokens": 75,
+ "rank": 50,
+ "row_sha256": "653a2e01264ed1d36f7adb97f2bfdac1abe506f1f935c2bcaf227a3e9c135353",
+ "task_id": 849
+ },
+ {
+ "aligned_scored_tokens": 47,
+ "code_text_sha256": "fdc6e3c18b1c0c721292eaf98461de21de34df9983bf6adaa08a8a7eb9450950",
+ "code_token_ids_sha256": "e91aae4ff14bd975f4b685bbecda359067713d79673a756444703ae40e8ceccf",
+ "code_tokens": 48,
+ "full_code_scored_tokens": 48,
+ "prompt_text_sha256": "ad00495cd4ec778219096cc470544d33d6e27d41a521f6201304036dc96feb9a",
+ "prompt_token_ids_sha256": "27dd6214357e8e9a957e757da6b32f94edc6c3316f16ed6764e25d4f8fc6fd74",
+ "prompt_tokens": 91,
+ "rank": 51,
+ "row_sha256": "c548acfae5d44e40dadf7340e6a95770267132f0d9ebaa56c06dddce84eeec0f",
+ "task_id": 756
+ },
+ {
+ "aligned_scored_tokens": 58,
+ "code_text_sha256": "ad1dd2cd6e415ad484541c8b7a67a4d3059b7d8a24606ae84459cb25f26ca64b",
+ "code_token_ids_sha256": "1359bf83f338c70bb91510ffd61f5e9e07f5827c6efb75547ec41ee3655da805",
+ "code_tokens": 59,
+ "full_code_scored_tokens": 59,
+ "prompt_text_sha256": "300185d83e69718953c1a63f633482f94a29b7389594ab1581fe603ace2121c2",
+ "prompt_token_ids_sha256": "f615b8bf09d8e053d4a412fb0425aae363158b16211c05a1cc48a746e79728ea",
+ "prompt_tokens": 65,
+ "rank": 52,
+ "row_sha256": "b03ac32ece778320e5c766293410b13fb5e53fb34a2e9278b2f7ec958e217363",
+ "task_id": 960
+ },
+ {
+ "aligned_scored_tokens": 46,
+ "code_text_sha256": "4cb15f6da61f92ee1137fd121e49c91591f895d9fe8ee5ef4a6c6d4e3750fb06",
+ "code_token_ids_sha256": "03e4f060f7868a8d0a3349d465300563062172402b525d43cde948f19fb49516",
+ "code_tokens": 47,
+ "full_code_scored_tokens": 47,
+ "prompt_text_sha256": "7cfcc28936288590abcbf12d6d656585878c482e4a9e209236c9c7d85e63f2a3",
+ "prompt_token_ids_sha256": "90f2bc0b7fc3d37b2d94f6e0115019b4074de42a7f8a308fd5a699b791fa7d96",
+ "prompt_tokens": 77,
+ "rank": 53,
+ "row_sha256": "b6cfe3dac4270af8bc80cd469cf6ac9c996354660864448756c25b09996ed5d7",
+ "task_id": 741
+ },
+ {
+ "aligned_scored_tokens": 67,
+ "code_text_sha256": "92dc8cad111b775b23bd4a019c8b8893e568d31fe79fd97afa4928d5dd15c5f1",
+ "code_token_ids_sha256": "dab65e6b3e021cab25feb4432625cbaac22aac3a061b445b96aa1896b93280df",
+ "code_tokens": 68,
+ "full_code_scored_tokens": 68,
+ "prompt_text_sha256": "f1966910b05dc20a0b2095f6d319be9b89d57a7d4b368a47cab1ab9768a914e4",
+ "prompt_token_ids_sha256": "5159a13020feb2de22979ee6c9bf85fc0ae2a54407a9a5a4ddfddf8a2fd5a6ce",
+ "prompt_tokens": 113,
+ "rank": 54,
+ "row_sha256": "1fa1bb3481bbffa4496b6e035777caf912a0f650985b08ec3a9041900e9e73e2",
+ "task_id": 763
+ },
+ {
+ "aligned_scored_tokens": 23,
+ "code_text_sha256": "d75a2f32ed97a179ab299826051f73da1dd12f387932a7e013bcfce508e9e1bd",
+ "code_token_ids_sha256": "9e197637b78f493b02859b7b90648cd4ddc6c642972fc566a176299eac74186d",
+ "code_tokens": 24,
+ "full_code_scored_tokens": 24,
+ "prompt_text_sha256": "aaa64aa77157020f4ba42b2c9ece4e764235b5325db0d2aac41a54662d6bb97a",
+ "prompt_token_ids_sha256": "0ed29776d2d73c7bde2d224a5f904ce6807e726398928c397d52e7156f2e3df1",
+ "prompt_tokens": 79,
+ "rank": 55,
+ "row_sha256": "35822c08ae141bce472f4f9b8731ea70def350d27cea8744e9976f997d1e986a",
+ "task_id": 924
+ },
+ {
+ "aligned_scored_tokens": 72,
+ "code_text_sha256": "bc19874dad5278f78a5c26c5add6d65db7670e90cb5daee5132d19d5b8cc3bdc",
+ "code_token_ids_sha256": "e6ae85cf6ba9fe51ccc76aab548971e84bda0683366888447353da5d147485f8",
+ "code_tokens": 73,
+ "full_code_scored_tokens": 73,
+ "prompt_text_sha256": "f30acb8c050de560bc922599a768f797e7ce8df846add807a3b1eea2e419afa9",
+ "prompt_token_ids_sha256": "f666e09c3ccd2ef8369c34df6d0c12e785fb59468f96ce77f1340bc1b0fe3f69",
+ "prompt_tokens": 292,
+ "rank": 56,
+ "row_sha256": "9a3a8dc7b0c01f525b10282b3be30fe899e1cf70289e5ec5cf6d4ed5d2627d0f",
+ "task_id": 839
+ },
+ {
+ "aligned_scored_tokens": 36,
+ "code_text_sha256": "2b2016da2fdf15ccd85b9e9da07dee9cb43df89579511f4fa430657e17bfcf5a",
+ "code_token_ids_sha256": "ab00e10d776daba2cab62a7a81f2d1d2e4424188f87b9a64cfe858acaf6a4165",
+ "code_tokens": 37,
+ "full_code_scored_tokens": 37,
+ "prompt_text_sha256": "c0b6eda08456084c68ae0cf8a0a9a91d26eaddba3a228466402b61a299cac1ba",
+ "prompt_token_ids_sha256": "7f0a54271e6b1419f89f5f951f7230d225051fb50f52aa482581135e74e14ad5",
+ "prompt_tokens": 171,
+ "rank": 57,
+ "row_sha256": "282f8ea69b300531e40d724fdef1e898a57b74470ae43578bb5dbdaa5aa2637c",
+ "task_id": 870
+ },
+ {
+ "aligned_scored_tokens": 46,
+ "code_text_sha256": "fb4a6a239a004e7fe880e0d139524d44dbea6d1623fb37e5e9ffb3905d2cce52",
+ "code_token_ids_sha256": "13f691f9774b7824ed178bbbc3d942637371e04e8384b765180082b62d926c55",
+ "code_tokens": 47,
+ "full_code_scored_tokens": 47,
+ "prompt_text_sha256": "c3735233a200f3ea02e5e7d63583921ae6dcb4e9c401e2b5a5f94703e11f7647",
+ "prompt_token_ids_sha256": "6aa258cdcb88e359b6fcb0ddef84cbd64f111adcd6e64189f80e794460910503",
+ "prompt_tokens": 130,
+ "rank": 58,
+ "row_sha256": "9e4b6ef7ce7d4eda8a241226cc66b0486cfbb42e1348463e9c82657769beaf95",
+ "task_id": 862
+ },
+ {
+ "aligned_scored_tokens": 21,
+ "code_text_sha256": "85d2dfa45544cf47b67e8fa48f3a464a9941862e6d13326c026fa7cf3c4a3d28",
+ "code_token_ids_sha256": "462111429ce892b308efa1d89917a4da268c3e4855a62a1d1ac0c4b467442b9f",
+ "code_tokens": 22,
+ "full_code_scored_tokens": 22,
+ "prompt_text_sha256": "ff8d6c075ae7944802884844bf2a72e2a683cb4d560e3e7e1aae338a61c8c5ab",
+ "prompt_token_ids_sha256": "dd8976e6b2eda46c829cebeac1c54a165e3ea5dba95a331bb74a663bc2f7397e",
+ "prompt_tokens": 71,
+ "rank": 59,
+ "row_sha256": "583c205150f59734648d69899b8b9616e600131ee0e0071c7a2395d0e5578319",
+ "task_id": 877
+ },
+ {
+ "aligned_scored_tokens": 76,
+ "code_text_sha256": "ea4dc83876ff4bece43a56a39c57da7d6da5645c8bb0e56401e33a4367b57c86",
+ "code_token_ids_sha256": "56135287ef25187e7dd0628fc1cb42aed18fbd7e369a1b953c74fa2c60e1e9d9",
+ "code_tokens": 77,
+ "full_code_scored_tokens": 77,
+ "prompt_text_sha256": "4549b19a70f416f31adfdf371682350f8f6ebd6de1bffcf15d010c29e68e8941",
+ "prompt_token_ids_sha256": "0a3ba7fad7195e9fbdd55ab56ef27185fd904c0188f106e9b0f832d4a3690e9d",
+ "prompt_tokens": 87,
+ "rank": 60,
+ "row_sha256": "82b87eac2a21c807c65cb68047ed2cb5ce3d8bc453bb6a99205f6a9555843afd",
+ "task_id": 672
+ },
+ {
+ "aligned_scored_tokens": 27,
+ "code_text_sha256": "2afb6be25b8349cd609b61e2815461a42f3c9f4b657876adae62a65501b0eb14",
+ "code_token_ids_sha256": "9eb8799eddc960501c558c9ecf549474b926df3449f35a10bff1b61104c4acf8",
+ "code_tokens": 28,
+ "full_code_scored_tokens": 28,
+ "prompt_text_sha256": "e38d968217119cc971ce1d8ad36ccaef05040143f4ad93e68abb812e32a66919",
+ "prompt_token_ids_sha256": "25f58862508f54152d21bb712112085686f21de96f080f09bed026a1ffcb34eb",
+ "prompt_tokens": 198,
+ "rank": 61,
+ "row_sha256": "d92f7d1ba82cab3763014bea1d719a7771ff72490b774c548c1b77f8aff3e41c",
+ "task_id": 894
+ },
+ {
+ "aligned_scored_tokens": 64,
+ "code_text_sha256": "1ac1118242ed4e6394b6d72e34d59085bc673d82773919c3aa7e019d85edbf22",
+ "code_token_ids_sha256": "a414c15089e2f571e97eb18b51ecdaef5630344b348791969afa653efa36c846",
+ "code_tokens": 65,
+ "full_code_scored_tokens": 65,
+ "prompt_text_sha256": "53569c9ec0ee947d07e9b828334f12458387588308110c23e4ad376a107d7c82",
+ "prompt_token_ids_sha256": "2e1d44b0c2dbb90b8c7e5e7732f387b10189999913974dfb2be11d4c3679d9a9",
+ "prompt_tokens": 171,
+ "rank": 62,
+ "row_sha256": "30393686473b7c4700ca1dc290d7690b222d96c763fae28843ea4197858dc5c5",
+ "task_id": 911
+ },
+ {
+ "aligned_scored_tokens": 55,
+ "code_text_sha256": "73988b52e0ac1f75c3d4a26e1005797bdbc61d3d7d74d49fe2c71e17164f8ad8",
+ "code_token_ids_sha256": "cde8bf2fdb33f8c663a69324833dffe37cf6ddc51b21fdec71f9c10cb177fd5a",
+ "code_tokens": 56,
+ "full_code_scored_tokens": 56,
+ "prompt_text_sha256": "7de551e15451fc2f95f8ba040ab909a1cebf69b247cb5bc7258f725b3b96178c",
+ "prompt_token_ids_sha256": "9ccff73e526f1a84ed6e30e5df30b3c5f1b94573a46f7c2bbcd26746f08cbbd7",
+ "prompt_tokens": 139,
+ "rank": 63,
+ "row_sha256": "073a931c88cc6d01d730c5050afb5ff700a3ef9aaad7deeaa623aea044fd7968",
+ "task_id": 907
+ }
+ ],
+ "token_manifest_sha256": "76b73079b704c48a5e87d479887e5b88d2a0a9c1516c1187acae22e0c71618a9",
+ "totals": {
+ "aligned_scored_tokens": 1956,
+ "code_tokens": 1988,
+ "full_code_scored_tokens": 1988,
+ "prompt_tokens": 4079,
+ "retained_rows": 32,
+ "source_train_rows_seen_by_task_id_only": 374
+ }
+ },
+ "environment": {
+ "cuda": {
+ "available": true,
+ "device_type": "cuda",
+ "runtime_version": "12.8"
+ },
+ "local_files_only": true,
+ "packages": {
+ "datasets": "4.8.5",
+ "numpy": "2.4.6",
+ "safetensors": "0.8.0",
+ "torch": "2.11.0+cu128",
+ "transformers": "5.14.1"
+ },
+ "python": {
+ "major": 3,
+ "micro": 15,
+ "minor": 11,
+ "version": "3.11.15"
+ },
+ "runtime_matches_stage_a": true,
+ "schema": "recurquant.experiment009-stage-b-runtime-environment.v1",
+ "stage_a_binding": {
+ "artifact_kind": "recurquant_rht_cqer32_stage_a_screen",
+ "canonical_evidence_sha256": "9e03a1e8cefb5801406a47a2e5e365686afb0a05e10e099a989cee616b505ed1",
+ "file_sha256": "98a432843dc438f2d5fde34f8704f154ebc3ee12c93ba7c469369acfedfb15b5"
+ }
+ },
+ "identity_only": true,
+ "identity_schema": "recurquant.experiment009-stage-b-identity.v1",
+ "integrity": {
+ "imported_modules_resolved_to_authenticated_repository": true,
+ "logits_or_quality_metrics_observed": false,
+ "model_forward_pass_run": false,
+ "model_weights_loaded": false,
+ "only_stage_b_content_retained_canonicalized_and_tokenized": true,
+ "output_path_external_or_git_ignored": true,
+ "protected_window_8_16_content_retained_canonicalized_or_tokenized": false,
+ "repository_clean_at_end": true,
+ "repository_clean_at_start": true,
+ "repository_commit_stable": true,
+ "runtime_environment_authenticated_before_dataset_access": true,
+ "selector_artifacts_authenticated_before_dataset_access": true,
+ "source_hashes_stable": true,
+ "stage_a_authenticated_before_dataset_access": true,
+ "task_id_only_ranking_pass": true
+ },
+ "model_contract": {
+ "id": "Qwen/Qwen3.5-0.8B-Base",
+ "revision": "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68",
+ "weights_loaded": false
+ },
+ "repository": {
+ "commit": "cdc603b6b8462e42e98495c5ec0610faa9473721",
+ "end": {
+ "commit": "cdc603b6b8462e42e98495c5ec0610faa9473721",
+ "status": [],
+ "worktree_clean": true
+ },
+ "stable_commit": true,
+ "start": {
+ "commit": "cdc603b6b8462e42e98495c5ec0610faa9473721",
+ "status": [],
+ "worktree_clean": true
+ }
+ },
+ "row_plan": {
+ "accounting": {
+ "mask_bytes": 4608,
+ "promoted_group_count": 1976,
+ "promotion_increment_bytes": 64,
+ "resident_bytes": 2564096,
+ "target_resident_bytes": 2564096,
+ "total_groups": 36864
+ },
+ "canonical_plan_sha256": "b480b6483bec2f07ef56388df27f5d78402b9b9545f2c039d332495de2a9fbde",
+ "high_precision_rows": [
+ {
+ "head_index": 1,
+ "layer_index": 0,
+ "row_index": 7
+ },
+ {
+ "head_index": 1,
+ "layer_index": 0,
+ "row_index": 10
+ },
+ {
+ "head_index": 1,
+ "layer_index": 0,
+ "row_index": 81
+ },
+ {
+ "head_index": 2,
+ "layer_index": 0,
+ "row_index": 59
+ },
+ {
+ "head_index": 2,
+ "layer_index": 0,
+ "row_index": 104
+ },
+ {
+ "head_index": 2,
+ "layer_index": 0,
+ "row_index": 118
+ },
+ {
+ "head_index": 2,
+ "layer_index": 0,
+ "row_index": 123
+ },
+ {
+ "head_index": 3,
+ "layer_index": 0,
+ "row_index": 44
+ },
+ {
+ "head_index": 3,
+ "layer_index": 0,
+ "row_index": 56
+ },
+ {
+ "head_index": 3,
+ "layer_index": 0,
+ "row_index": 83
+ },
+ {
+ "head_index": 3,
+ "layer_index": 0,
+ "row_index": 90
+ },
+ {
+ "head_index": 3,
+ "layer_index": 0,
+ "row_index": 103
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 0
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 1
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 4
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 5
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 6
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 7
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 8
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 11
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 12
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 13
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 15
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 16
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 18
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 19
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 20
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 22
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 24
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 26
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 29
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 30
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 31
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 32
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 33
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 34
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 35
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 37
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 38
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 39
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 40
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 41
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 43
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 44
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 45
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 47
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 48
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 49
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 50
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 51
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 52
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 53
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 58
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 59
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 60
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 63
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 64
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 65
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 66
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 67
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 69
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 70
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 71
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 72
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 76
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 77
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 78
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 79
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 80
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 81
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 85
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 86
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 87
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 88
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 89
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 91
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 92
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 93
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 94
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 95
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 97
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 98
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 99
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 101
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 102
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 104
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 105
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 109
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 110
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 111
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 112
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 113
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 114
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 115
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 116
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 117
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 118
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 119
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 120
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 121
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 122
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 124
+ },
+ {
+ "head_index": 4,
+ "layer_index": 0,
+ "row_index": 125
+ },
+ {
+ "head_index": 5,
+ "layer_index": 0,
+ "row_index": 57
+ },
+ {
+ "head_index": 5,
+ "layer_index": 0,
+ "row_index": 104
+ },
+ {
+ "head_index": 5,
+ "layer_index": 0,
+ "row_index": 106
+ },
+ {
+ "head_index": 5,
+ "layer_index": 0,
+ "row_index": 115
+ },
+ {
+ "head_index": 5,
+ "layer_index": 0,
+ "row_index": 122
+ },
+ {
+ "head_index": 6,
+ "layer_index": 0,
+ "row_index": 41
+ },
+ {
+ "head_index": 6,
+ "layer_index": 0,
+ "row_index": 52
+ },
+ {
+ "head_index": 6,
+ "layer_index": 0,
+ "row_index": 116
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 1
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 3
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 4
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 5
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 6
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 13
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 17
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 19
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 23
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 28
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 30
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 32
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 35
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 36
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 37
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 39
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 42
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 47
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 48
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 56
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 58
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 63
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 71
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 73
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 75
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 78
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 80
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 81
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 82
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 86
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 97
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 99
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 100
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 103
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 108
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 110
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 117
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 118
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 120
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 121
+ },
+ {
+ "head_index": 7,
+ "layer_index": 0,
+ "row_index": 125
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 0
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 3
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 4
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 5
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 6
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 8
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 11
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 12
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 15
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 16
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 17
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 19
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 20
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 22
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 23
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 25
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 27
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 28
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 29
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 30
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 31
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 32
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 33
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 34
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 35
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 37
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 39
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 40
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 43
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 44
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 45
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 46
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 47
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 48
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 49
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 52
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 55
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 58
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 62
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 63
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 65
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 67
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 68
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 69
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 71
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 72
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 73
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 74
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 75
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 78
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 83
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 84
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 85
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 86
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 90
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 91
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 93
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 95
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 97
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 99
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 100
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 102
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 103
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 104
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 105
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 106
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 107
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 108
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 109
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 110
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 112
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 116
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 118
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 119
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 123
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 125
+ },
+ {
+ "head_index": 8,
+ "layer_index": 0,
+ "row_index": 126
+ },
+ {
+ "head_index": 9,
+ "layer_index": 0,
+ "row_index": 32
+ },
+ {
+ "head_index": 9,
+ "layer_index": 0,
+ "row_index": 55
+ },
+ {
+ "head_index": 9,
+ "layer_index": 0,
+ "row_index": 82
+ },
+ {
+ "head_index": 10,
+ "layer_index": 0,
+ "row_index": 11
+ },
+ {
+ "head_index": 10,
+ "layer_index": 0,
+ "row_index": 40
+ },
+ {
+ "head_index": 10,
+ "layer_index": 0,
+ "row_index": 64
+ },
+ {
+ "head_index": 10,
+ "layer_index": 0,
+ "row_index": 75
+ },
+ {
+ "head_index": 10,
+ "layer_index": 0,
+ "row_index": 101
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 9
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 22
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 47
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 61
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 67
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 70
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 85
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 89
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 90
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 92
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 98
+ },
+ {
+ "head_index": 11,
+ "layer_index": 0,
+ "row_index": 122
+ },
+ {
+ "head_index": 12,
+ "layer_index": 0,
+ "row_index": 18
+ },
+ {
+ "head_index": 12,
+ "layer_index": 0,
+ "row_index": 87
+ },
+ {
+ "head_index": 12,
+ "layer_index": 0,
+ "row_index": 96
+ },
+ {
+ "head_index": 12,
+ "layer_index": 0,
+ "row_index": 103
+ },
+ {
+ "head_index": 12,
+ "layer_index": 0,
+ "row_index": 112
+ },
+ {
+ "head_index": 12,
+ "layer_index": 0,
+ "row_index": 113
+ },
+ {
+ "head_index": 12,
+ "layer_index": 0,
+ "row_index": 121
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 0
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 1
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 2
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 3
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 4
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 5
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 6
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 7
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 8
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 9
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 11
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 12
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 13
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 15
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 19
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 20
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 23
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 24
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 25
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 29
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 31
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 32
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 33
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 34
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 35
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 36
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 37
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 38
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 40
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 41
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 43
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 44
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 46
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 48
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 52
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 53
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 54
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 55
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 56
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 57
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 58
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 59
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 60
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 61
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 62
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 63
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 65
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 67
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 68
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 69
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 70
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 71
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 72
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 73
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 75
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 76
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 77
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 79
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 80
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 81
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 82
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 84
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 85
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 86
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 87
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 88
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 90
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 93
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 94
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 95
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 96
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 100
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 101
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 103
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 104
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 106
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 107
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 108
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 109
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 110
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 111
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 112
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 113
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 114
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 115
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 116
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 117
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 118
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 119
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 121
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 122
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 124
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 126
+ },
+ {
+ "head_index": 13,
+ "layer_index": 0,
+ "row_index": 127
+ },
+ {
+ "head_index": 14,
+ "layer_index": 0,
+ "row_index": 33
+ },
+ {
+ "head_index": 14,
+ "layer_index": 0,
+ "row_index": 39
+ },
+ {
+ "head_index": 14,
+ "layer_index": 0,
+ "row_index": 82
+ },
+ {
+ "head_index": 15,
+ "layer_index": 0,
+ "row_index": 51
+ },
+ {
+ "head_index": 15,
+ "layer_index": 0,
+ "row_index": 111
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 3
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 7
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 9
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 10
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 11
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 15
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 20
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 26
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 27
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 28
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 29
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 42
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 43
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 46
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 48
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 51
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 66
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 68
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 70
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 82
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 88
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 89
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 90
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 93
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 98
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 111
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 114
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 115
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 116
+ },
+ {
+ "head_index": 0,
+ "layer_index": 1,
+ "row_index": 121
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 5
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 7
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 13
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 16
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 18
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 20
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 29
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 34
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 37
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 39
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 44
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 47
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 50
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 60
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 62
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 64
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 66
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 70
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 76
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 80
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 99
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 103
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 105
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 109
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 120
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 123
+ },
+ {
+ "head_index": 1,
+ "layer_index": 1,
+ "row_index": 127
+ },
+ {
+ "head_index": 2,
+ "layer_index": 1,
+ "row_index": 58
+ },
+ {
+ "head_index": 2,
+ "layer_index": 1,
+ "row_index": 60
+ },
+ {
+ "head_index": 3,
+ "layer_index": 1,
+ "row_index": 32
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 1
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 3
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 5
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 6
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 7
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 11
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 12
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 13
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 16
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 17
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 20
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 21
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 23
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 25
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 29
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 36
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 38
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 39
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 41
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 43
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 44
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 45
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 46
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 47
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 49
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 50
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 51
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 55
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 56
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 59
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 62
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 65
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 69
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 70
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 72
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 73
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 75
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 77
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 78
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 80
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 83
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 86
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 87
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 88
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 89
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 90
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 91
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 92
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 94
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 95
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 97
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 100
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 101
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 102
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 103
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 109
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 110
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 112
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 115
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 116
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 117
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 120
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 122
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 123
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 124
+ },
+ {
+ "head_index": 4,
+ "layer_index": 1,
+ "row_index": 125
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 4
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 6
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 13
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 16
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 17
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 18
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 23
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 27
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 28
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 29
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 34
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 36
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 38
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 40
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 43
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 55
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 64
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 66
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 69
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 71
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 72
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 86
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 90
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 91
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 95
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 96
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 103
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 105
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 107
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 108
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 109
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 113
+ },
+ {
+ "head_index": 5,
+ "layer_index": 1,
+ "row_index": 118
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 3
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 4
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 6
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 7
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 8
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 9
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 15
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 16
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 22
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 23
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 24
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 39
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 40
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 45
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 51
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 52
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 57
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 61
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 63
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 66
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 67
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 69
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 75
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 77
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 80
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 92
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 97
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 100
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 102
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 121
+ },
+ {
+ "head_index": 6,
+ "layer_index": 1,
+ "row_index": 123
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 2
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 3
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 4
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 5
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 6
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 7
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 8
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 9
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 10
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 11
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 13
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 15
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 16
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 17
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 19
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 20
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 21
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 22
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 24
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 25
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 28
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 30
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 32
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 33
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 34
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 36
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 37
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 38
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 39
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 40
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 41
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 42
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 46
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 49
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 50
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 51
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 52
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 53
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 58
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 59
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 60
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 62
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 65
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 66
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 69
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 70
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 71
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 72
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 73
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 74
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 78
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 79
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 80
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 85
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 86
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 87
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 88
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 89
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 91
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 92
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 93
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 95
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 96
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 97
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 99
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 100
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 101
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 102
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 104
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 105
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 106
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 107
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 108
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 109
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 110
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 111
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 112
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 113
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 115
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 119
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 121
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 123
+ },
+ {
+ "head_index": 8,
+ "layer_index": 1,
+ "row_index": 124
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 0
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 6
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 7
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 8
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 14
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 16
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 20
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 23
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 26
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 31
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 35
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 36
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 38
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 42
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 43
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 45
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 48
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 49
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 58
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 60
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 62
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 66
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 68
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 70
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 73
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 76
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 79
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 86
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 87
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 88
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 89
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 96
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 98
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 104
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 109
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 111
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 112
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 120
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 122
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 123
+ },
+ {
+ "head_index": 9,
+ "layer_index": 1,
+ "row_index": 127
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 12
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 16
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 31
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 40
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 59
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 76
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 90
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 105
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 111
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 121
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 122
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 124
+ },
+ {
+ "head_index": 10,
+ "layer_index": 1,
+ "row_index": 125
+ },
+ {
+ "head_index": 11,
+ "layer_index": 1,
+ "row_index": 38
+ },
+ {
+ "head_index": 11,
+ "layer_index": 1,
+ "row_index": 102
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 2
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 13
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 15
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 16
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 20
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 22
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 25
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 33
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 38
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 46
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 53
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 57
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 62
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 71
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 74
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 76
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 78
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 82
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 90
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 100
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 101
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 103
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 108
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 110
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 120
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 123
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 124
+ },
+ {
+ "head_index": 12,
+ "layer_index": 1,
+ "row_index": 127
+ },
+ {
+ "head_index": 13,
+ "layer_index": 1,
+ "row_index": 35
+ },
+ {
+ "head_index": 14,
+ "layer_index": 1,
+ "row_index": 95
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 3
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 15
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 19
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 28
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 40
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 51
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 62
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 65
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 68
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 77
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 84
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 86
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 92
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 93
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 96
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 98
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 99
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 104
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 109
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 115
+ },
+ {
+ "head_index": 15,
+ "layer_index": 1,
+ "row_index": 120
+ },
+ {
+ "head_index": 0,
+ "layer_index": 2,
+ "row_index": 3
+ },
+ {
+ "head_index": 0,
+ "layer_index": 2,
+ "row_index": 46
+ },
+ {
+ "head_index": 0,
+ "layer_index": 2,
+ "row_index": 52
+ },
+ {
+ "head_index": 0,
+ "layer_index": 2,
+ "row_index": 77
+ },
+ {
+ "head_index": 0,
+ "layer_index": 2,
+ "row_index": 83
+ },
+ {
+ "head_index": 0,
+ "layer_index": 2,
+ "row_index": 108
+ },
+ {
+ "head_index": 0,
+ "layer_index": 2,
+ "row_index": 125
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 2
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 4
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 10
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 17
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 21
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 33
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 34
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 35
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 42
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 43
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 57
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 64
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 65
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 70
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 79
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 80
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 83
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 91
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 93
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 95
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 99
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 101
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 104
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 108
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 113
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 114
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 117
+ },
+ {
+ "head_index": 1,
+ "layer_index": 2,
+ "row_index": 126
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 2
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 7
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 19
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 34
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 40
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 48
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 49
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 56
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 67
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 84
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 89
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 90
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 97
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 100
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 113
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 115
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 116
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 118
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 121
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 124
+ },
+ {
+ "head_index": 2,
+ "layer_index": 2,
+ "row_index": 126
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 3
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 19
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 35
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 38
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 43
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 60
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 61
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 63
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 68
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 73
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 86
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 90
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 93
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 97
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 107
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 108
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 123
+ },
+ {
+ "head_index": 3,
+ "layer_index": 2,
+ "row_index": 127
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 9
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 16
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 22
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 23
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 25
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 28
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 31
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 32
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 39
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 42
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 43
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 46
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 47
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 48
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 53
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 58
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 60
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 69
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 84
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 87
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 102
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 104
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 110
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 117
+ },
+ {
+ "head_index": 4,
+ "layer_index": 2,
+ "row_index": 125
+ },
+ {
+ "head_index": 5,
+ "layer_index": 2,
+ "row_index": 8
+ },
+ {
+ "head_index": 5,
+ "layer_index": 2,
+ "row_index": 49
+ },
+ {
+ "head_index": 5,
+ "layer_index": 2,
+ "row_index": 65
+ },
+ {
+ "head_index": 5,
+ "layer_index": 2,
+ "row_index": 118
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 9
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 12
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 13
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 16
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 65
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 66
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 72
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 73
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 74
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 76
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 85
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 97
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 105
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 114
+ },
+ {
+ "head_index": 6,
+ "layer_index": 2,
+ "row_index": 125
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 0
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 12
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 16
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 23
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 27
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 37
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 38
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 53
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 58
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 73
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 76
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 86
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 87
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 92
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 93
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 94
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 99
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 100
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 108
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 112
+ },
+ {
+ "head_index": 7,
+ "layer_index": 2,
+ "row_index": 121
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 0
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 5
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 9
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 17
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 18
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 27
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 37
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 47
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 54
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 62
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 63
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 70
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 75
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 85
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 87
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 94
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 100
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 104
+ },
+ {
+ "head_index": 8,
+ "layer_index": 2,
+ "row_index": 124
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 0
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 5
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 8
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 10
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 11
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 13
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 18
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 20
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 23
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 24
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 27
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 29
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 30
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 36
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 37
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 42
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 46
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 49
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 51
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 55
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 58
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 60
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 61
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 62
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 63
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 64
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 65
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 67
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 73
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 74
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 75
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 77
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 78
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 80
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 81
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 82
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 84
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 85
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 93
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 98
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 100
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 101
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 102
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 103
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 105
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 111
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 112
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 116
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 119
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 121
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 122
+ },
+ {
+ "head_index": 9,
+ "layer_index": 2,
+ "row_index": 123
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 0
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 3
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 10
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 11
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 12
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 13
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 30
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 31
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 36
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 39
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 40
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 43
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 52
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 53
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 56
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 58
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 65
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 68
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 70
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 83
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 89
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 91
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 93
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 98
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 101
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 105
+ },
+ {
+ "head_index": 10,
+ "layer_index": 2,
+ "row_index": 121
+ },
+ {
+ "head_index": 11,
+ "layer_index": 2,
+ "row_index": 42
+ },
+ {
+ "head_index": 12,
+ "layer_index": 2,
+ "row_index": 36
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 10
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 20
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 25
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 27
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 36
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 59
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 60
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 67
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 69
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 76
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 94
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 96
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 98
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 116
+ },
+ {
+ "head_index": 13,
+ "layer_index": 2,
+ "row_index": 125
+ },
+ {
+ "head_index": 14,
+ "layer_index": 2,
+ "row_index": 11
+ },
+ {
+ "head_index": 14,
+ "layer_index": 2,
+ "row_index": 13
+ },
+ {
+ "head_index": 14,
+ "layer_index": 2,
+ "row_index": 26
+ },
+ {
+ "head_index": 14,
+ "layer_index": 2,
+ "row_index": 37
+ },
+ {
+ "head_index": 14,
+ "layer_index": 2,
+ "row_index": 67
+ },
+ {
+ "head_index": 14,
+ "layer_index": 2,
+ "row_index": 70
+ },
+ {
+ "head_index": 14,
+ "layer_index": 2,
+ "row_index": 101
+ },
+ {
+ "head_index": 14,
+ "layer_index": 2,
+ "row_index": 116
+ },
+ {
+ "head_index": 15,
+ "layer_index": 2,
+ "row_index": 9
+ },
+ {
+ "head_index": 15,
+ "layer_index": 2,
+ "row_index": 34
+ },
+ {
+ "head_index": 15,
+ "layer_index": 2,
+ "row_index": 69
+ },
+ {
+ "head_index": 15,
+ "layer_index": 2,
+ "row_index": 72
+ },
+ {
+ "head_index": 15,
+ "layer_index": 2,
+ "row_index": 78
+ },
+ {
+ "head_index": 15,
+ "layer_index": 2,
+ "row_index": 80
+ },
+ {
+ "head_index": 15,
+ "layer_index": 2,
+ "row_index": 93
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 0
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 1
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 2
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 3
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 4
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 6
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 9
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 11
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 13
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 15
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 18
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 21
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 22
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 24
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 26
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 29
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 30
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 31
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 36
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 37
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 38
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 42
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 47
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 50
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 55
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 56
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 61
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 63
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 69
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 70
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 76
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 77
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 79
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 82
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 83
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 87
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 92
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 93
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 96
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 97
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 100
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 102
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 103
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 104
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 107
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 110
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 111
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 113
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 114
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 115
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 116
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 117
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 118
+ },
+ {
+ "head_index": 0,
+ "layer_index": 4,
+ "row_index": 126
+ },
+ {
+ "head_index": 1,
+ "layer_index": 4,
+ "row_index": 24
+ },
+ {
+ "head_index": 1,
+ "layer_index": 4,
+ "row_index": 35
+ },
+ {
+ "head_index": 1,
+ "layer_index": 4,
+ "row_index": 71
+ },
+ {
+ "head_index": 1,
+ "layer_index": 4,
+ "row_index": 119
+ },
+ {
+ "head_index": 2,
+ "layer_index": 4,
+ "row_index": 66
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 13
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 17
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 45
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 47
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 57
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 58
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 59
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 62
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 68
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 77
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 78
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 113
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 114
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 116
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 117
+ },
+ {
+ "head_index": 3,
+ "layer_index": 4,
+ "row_index": 126
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 4
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 18
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 19
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 20
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 21
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 25
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 26
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 45
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 52
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 54
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 88
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 97
+ },
+ {
+ "head_index": 4,
+ "layer_index": 4,
+ "row_index": 125
+ },
+ {
+ "head_index": 6,
+ "layer_index": 4,
+ "row_index": 58
+ },
+ {
+ "head_index": 6,
+ "layer_index": 4,
+ "row_index": 119
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 8
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 10
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 27
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 54
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 63
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 67
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 79
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 95
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 97
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 105
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 107
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 109
+ },
+ {
+ "head_index": 7,
+ "layer_index": 4,
+ "row_index": 111
+ },
+ {
+ "head_index": 8,
+ "layer_index": 4,
+ "row_index": 11
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 1
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 15
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 22
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 47
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 48
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 50
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 55
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 63
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 73
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 109
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 112
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 115
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 120
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 122
+ },
+ {
+ "head_index": 9,
+ "layer_index": 4,
+ "row_index": 126
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 2
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 13
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 14
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 18
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 21
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 25
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 26
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 27
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 28
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 43
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 49
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 53
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 55
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 58
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 62
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 63
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 64
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 85
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 104
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 108
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 111
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 115
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 119
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 120
+ },
+ {
+ "head_index": 10,
+ "layer_index": 4,
+ "row_index": 123
+ },
+ {
+ "head_index": 11,
+ "layer_index": 4,
+ "row_index": 62
+ },
+ {
+ "head_index": 11,
+ "layer_index": 4,
+ "row_index": 69
+ },
+ {
+ "head_index": 11,
+ "layer_index": 4,
+ "row_index": 81
+ },
+ {
+ "head_index": 11,
+ "layer_index": 4,
+ "row_index": 84
+ },
+ {
+ "head_index": 11,
+ "layer_index": 4,
+ "row_index": 114
+ },
+ {
+ "head_index": 12,
+ "layer_index": 4,
+ "row_index": 0
+ },
+ {
+ "head_index": 12,
+ "layer_index": 4,
+ "row_index": 32
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 1
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 4
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 7
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 8
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 15
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 20
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 25
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 27
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 32
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 33
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 37
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 39
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 44
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 47
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 49
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 59
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 61
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 66
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 69
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 70
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 72
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 76
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 93
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 101
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 108
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 112
+ },
+ {
+ "head_index": 14,
+ "layer_index": 4,
+ "row_index": 123
+ },
+ {
+ "head_index": 15,
+ "layer_index": 4,
+ "row_index": 25
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 2
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 4
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 7
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 13
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 15
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 18
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 19
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 20
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 22
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 26
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 28
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 30
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 36
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 37
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 38
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 39
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 47
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 48
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 52
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 55
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 58
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 59
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 62
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 65
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 66
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 67
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 72
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 80
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 82
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 107
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 111
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 115
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 116
+ },
+ {
+ "head_index": 0,
+ "layer_index": 5,
+ "row_index": 125
+ },
+ {
+ "head_index": 1,
+ "layer_index": 5,
+ "row_index": 91
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 2
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 6
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 9
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 13
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 14
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 20
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 24
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 28
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 38
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 40
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 48
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 49
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 53
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 59
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 62
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 66
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 75
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 79
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 82
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 90
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 102
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 103
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 105
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 106
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 108
+ },
+ {
+ "head_index": 2,
+ "layer_index": 5,
+ "row_index": 126
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 2
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 3
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 4
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 5
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 9
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 21
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 23
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 26
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 31
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 34
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 37
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 38
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 43
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 48
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 49
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 51
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 54
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 55
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 60
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 63
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 65
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 67
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 69
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 70
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 73
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 75
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 76
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 79
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 83
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 85
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 91
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 94
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 100
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 104
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 108
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 115
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 122
+ },
+ {
+ "head_index": 4,
+ "layer_index": 5,
+ "row_index": 123
+ },
+ {
+ "head_index": 6,
+ "layer_index": 5,
+ "row_index": 18
+ },
+ {
+ "head_index": 6,
+ "layer_index": 5,
+ "row_index": 70
+ },
+ {
+ "head_index": 7,
+ "layer_index": 5,
+ "row_index": 24
+ },
+ {
+ "head_index": 7,
+ "layer_index": 5,
+ "row_index": 84
+ },
+ {
+ "head_index": 9,
+ "layer_index": 5,
+ "row_index": 24
+ },
+ {
+ "head_index": 10,
+ "layer_index": 5,
+ "row_index": 30
+ },
+ {
+ "head_index": 10,
+ "layer_index": 5,
+ "row_index": 35
+ },
+ {
+ "head_index": 10,
+ "layer_index": 5,
+ "row_index": 119
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 0
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 2
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 3
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 4
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 17
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 23
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 25
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 27
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 31
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 32
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 33
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 35
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 38
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 44
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 46
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 47
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 50
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 58
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 63
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 67
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 73
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 75
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 79
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 88
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 89
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 92
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 97
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 102
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 118
+ },
+ {
+ "head_index": 11,
+ "layer_index": 5,
+ "row_index": 122
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 0
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 4
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 7
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 8
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 16
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 32
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 38
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 44
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 46
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 48
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 58
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 59
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 72
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 84
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 105
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 106
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 108
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 114
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 121
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 122
+ },
+ {
+ "head_index": 12,
+ "layer_index": 5,
+ "row_index": 125
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 0
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 10
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 11
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 19
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 20
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 24
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 45
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 54
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 59
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 71
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 84
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 105
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 115
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 116
+ },
+ {
+ "head_index": 13,
+ "layer_index": 5,
+ "row_index": 117
+ },
+ {
+ "head_index": 14,
+ "layer_index": 5,
+ "row_index": 22
+ },
+ {
+ "head_index": 14,
+ "layer_index": 5,
+ "row_index": 30
+ },
+ {
+ "head_index": 14,
+ "layer_index": 5,
+ "row_index": 63
+ },
+ {
+ "head_index": 14,
+ "layer_index": 5,
+ "row_index": 71
+ },
+ {
+ "head_index": 14,
+ "layer_index": 5,
+ "row_index": 74
+ },
+ {
+ "head_index": 14,
+ "layer_index": 5,
+ "row_index": 75
+ },
+ {
+ "head_index": 14,
+ "layer_index": 5,
+ "row_index": 76
+ },
+ {
+ "head_index": 14,
+ "layer_index": 5,
+ "row_index": 85
+ },
+ {
+ "head_index": 14,
+ "layer_index": 5,
+ "row_index": 101
+ },
+ {
+ "head_index": 14,
+ "layer_index": 5,
+ "row_index": 104
+ },
+ {
+ "head_index": 15,
+ "layer_index": 5,
+ "row_index": 46
+ },
+ {
+ "head_index": 15,
+ "layer_index": 5,
+ "row_index": 91
+ },
+ {
+ "head_index": 0,
+ "layer_index": 6,
+ "row_index": 3
+ },
+ {
+ "head_index": 0,
+ "layer_index": 6,
+ "row_index": 9
+ },
+ {
+ "head_index": 0,
+ "layer_index": 6,
+ "row_index": 38
+ },
+ {
+ "head_index": 0,
+ "layer_index": 6,
+ "row_index": 44
+ },
+ {
+ "head_index": 0,
+ "layer_index": 6,
+ "row_index": 55
+ },
+ {
+ "head_index": 0,
+ "layer_index": 6,
+ "row_index": 56
+ },
+ {
+ "head_index": 0,
+ "layer_index": 6,
+ "row_index": 77
+ },
+ {
+ "head_index": 0,
+ "layer_index": 6,
+ "row_index": 86
+ },
+ {
+ "head_index": 1,
+ "layer_index": 6,
+ "row_index": 12
+ },
+ {
+ "head_index": 1,
+ "layer_index": 6,
+ "row_index": 14
+ },
+ {
+ "head_index": 1,
+ "layer_index": 6,
+ "row_index": 91
+ },
+ {
+ "head_index": 1,
+ "layer_index": 6,
+ "row_index": 111
+ },
+ {
+ "head_index": 1,
+ "layer_index": 6,
+ "row_index": 115
+ },
+ {
+ "head_index": 1,
+ "layer_index": 6,
+ "row_index": 127
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 0
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 12
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 17
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 31
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 34
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 60
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 70
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 73
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 74
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 75
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 80
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 85
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 104
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 109
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 113
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 114
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 118
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 121
+ },
+ {
+ "head_index": 2,
+ "layer_index": 6,
+ "row_index": 127
+ },
+ {
+ "head_index": 3,
+ "layer_index": 6,
+ "row_index": 2
+ },
+ {
+ "head_index": 3,
+ "layer_index": 6,
+ "row_index": 3
+ },
+ {
+ "head_index": 3,
+ "layer_index": 6,
+ "row_index": 22
+ },
+ {
+ "head_index": 3,
+ "layer_index": 6,
+ "row_index": 45
+ },
+ {
+ "head_index": 3,
+ "layer_index": 6,
+ "row_index": 56
+ },
+ {
+ "head_index": 3,
+ "layer_index": 6,
+ "row_index": 59
+ },
+ {
+ "head_index": 3,
+ "layer_index": 6,
+ "row_index": 79
+ },
+ {
+ "head_index": 3,
+ "layer_index": 6,
+ "row_index": 94
+ },
+ {
+ "head_index": 3,
+ "layer_index": 6,
+ "row_index": 107
+ },
+ {
+ "head_index": 3,
+ "layer_index": 6,
+ "row_index": 109
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 0
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 4
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 5
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 28
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 30
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 31
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 32
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 42
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 56
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 61
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 78
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 81
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 86
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 91
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 95
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 100
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 104
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 114
+ },
+ {
+ "head_index": 4,
+ "layer_index": 6,
+ "row_index": 127
+ },
+ {
+ "head_index": 5,
+ "layer_index": 6,
+ "row_index": 12
+ },
+ {
+ "head_index": 5,
+ "layer_index": 6,
+ "row_index": 17
+ },
+ {
+ "head_index": 5,
+ "layer_index": 6,
+ "row_index": 39
+ },
+ {
+ "head_index": 7,
+ "layer_index": 6,
+ "row_index": 19
+ },
+ {
+ "head_index": 9,
+ "layer_index": 6,
+ "row_index": 45
+ },
+ {
+ "head_index": 9,
+ "layer_index": 6,
+ "row_index": 59
+ },
+ {
+ "head_index": 9,
+ "layer_index": 6,
+ "row_index": 65
+ },
+ {
+ "head_index": 9,
+ "layer_index": 6,
+ "row_index": 67
+ },
+ {
+ "head_index": 9,
+ "layer_index": 6,
+ "row_index": 75
+ },
+ {
+ "head_index": 9,
+ "layer_index": 6,
+ "row_index": 124
+ },
+ {
+ "head_index": 10,
+ "layer_index": 6,
+ "row_index": 56
+ },
+ {
+ "head_index": 10,
+ "layer_index": 6,
+ "row_index": 87
+ },
+ {
+ "head_index": 10,
+ "layer_index": 6,
+ "row_index": 104
+ },
+ {
+ "head_index": 11,
+ "layer_index": 6,
+ "row_index": 62
+ },
+ {
+ "head_index": 11,
+ "layer_index": 6,
+ "row_index": 113
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 0
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 8
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 9
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 10
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 19
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 20
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 21
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 24
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 33
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 38
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 39
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 56
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 65
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 70
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 96
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 103
+ },
+ {
+ "head_index": 13,
+ "layer_index": 6,
+ "row_index": 125
+ },
+ {
+ "head_index": 14,
+ "layer_index": 6,
+ "row_index": 39
+ },
+ {
+ "head_index": 14,
+ "layer_index": 6,
+ "row_index": 100
+ },
+ {
+ "head_index": 15,
+ "layer_index": 6,
+ "row_index": 2
+ },
+ {
+ "head_index": 15,
+ "layer_index": 6,
+ "row_index": 4
+ },
+ {
+ "head_index": 15,
+ "layer_index": 6,
+ "row_index": 30
+ },
+ {
+ "head_index": 15,
+ "layer_index": 6,
+ "row_index": 90
+ },
+ {
+ "head_index": 15,
+ "layer_index": 6,
+ "row_index": 97
+ },
+ {
+ "head_index": 15,
+ "layer_index": 6,
+ "row_index": 99
+ },
+ {
+ "head_index": 15,
+ "layer_index": 6,
+ "row_index": 100
+ },
+ {
+ "head_index": 15,
+ "layer_index": 6,
+ "row_index": 102
+ },
+ {
+ "head_index": 15,
+ "layer_index": 6,
+ "row_index": 103
+ },
+ {
+ "head_index": 0,
+ "layer_index": 8,
+ "row_index": 2
+ },
+ {
+ "head_index": 0,
+ "layer_index": 8,
+ "row_index": 26
+ },
+ {
+ "head_index": 0,
+ "layer_index": 8,
+ "row_index": 50
+ },
+ {
+ "head_index": 0,
+ "layer_index": 8,
+ "row_index": 61
+ },
+ {
+ "head_index": 0,
+ "layer_index": 8,
+ "row_index": 99
+ },
+ {
+ "head_index": 0,
+ "layer_index": 8,
+ "row_index": 102
+ },
+ {
+ "head_index": 1,
+ "layer_index": 8,
+ "row_index": 39
+ },
+ {
+ "head_index": 1,
+ "layer_index": 8,
+ "row_index": 74
+ },
+ {
+ "head_index": 1,
+ "layer_index": 8,
+ "row_index": 103
+ },
+ {
+ "head_index": 3,
+ "layer_index": 8,
+ "row_index": 0
+ },
+ {
+ "head_index": 3,
+ "layer_index": 8,
+ "row_index": 117
+ },
+ {
+ "head_index": 4,
+ "layer_index": 8,
+ "row_index": 46
+ },
+ {
+ "head_index": 5,
+ "layer_index": 8,
+ "row_index": 41
+ },
+ {
+ "head_index": 5,
+ "layer_index": 8,
+ "row_index": 86
+ },
+ {
+ "head_index": 7,
+ "layer_index": 8,
+ "row_index": 5
+ },
+ {
+ "head_index": 7,
+ "layer_index": 8,
+ "row_index": 20
+ },
+ {
+ "head_index": 7,
+ "layer_index": 8,
+ "row_index": 92
+ },
+ {
+ "head_index": 7,
+ "layer_index": 8,
+ "row_index": 111
+ },
+ {
+ "head_index": 8,
+ "layer_index": 8,
+ "row_index": 3
+ },
+ {
+ "head_index": 8,
+ "layer_index": 8,
+ "row_index": 34
+ },
+ {
+ "head_index": 8,
+ "layer_index": 8,
+ "row_index": 95
+ },
+ {
+ "head_index": 9,
+ "layer_index": 8,
+ "row_index": 95
+ },
+ {
+ "head_index": 11,
+ "layer_index": 8,
+ "row_index": 33
+ },
+ {
+ "head_index": 11,
+ "layer_index": 8,
+ "row_index": 80
+ },
+ {
+ "head_index": 12,
+ "layer_index": 8,
+ "row_index": 109
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 2
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 3
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 7
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 8
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 14
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 23
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 25
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 29
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 33
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 35
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 36
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 37
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 43
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 49
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 50
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 52
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 62
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 68
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 76
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 81
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 82
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 83
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 87
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 88
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 91
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 96
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 99
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 104
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 113
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 115
+ },
+ {
+ "head_index": 13,
+ "layer_index": 8,
+ "row_index": 124
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 0
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 5
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 6
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 22
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 24
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 29
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 36
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 73
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 77
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 78
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 79
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 81
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 82
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 87
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 99
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 101
+ },
+ {
+ "head_index": 14,
+ "layer_index": 8,
+ "row_index": 116
+ },
+ {
+ "head_index": 15,
+ "layer_index": 8,
+ "row_index": 35
+ },
+ {
+ "head_index": 15,
+ "layer_index": 8,
+ "row_index": 36
+ },
+ {
+ "head_index": 15,
+ "layer_index": 8,
+ "row_index": 64
+ },
+ {
+ "head_index": 15,
+ "layer_index": 8,
+ "row_index": 87
+ },
+ {
+ "head_index": 15,
+ "layer_index": 8,
+ "row_index": 110
+ },
+ {
+ "head_index": 15,
+ "layer_index": 8,
+ "row_index": 123
+ },
+ {
+ "head_index": 15,
+ "layer_index": 8,
+ "row_index": 127
+ },
+ {
+ "head_index": 0,
+ "layer_index": 9,
+ "row_index": 2
+ },
+ {
+ "head_index": 0,
+ "layer_index": 9,
+ "row_index": 30
+ },
+ {
+ "head_index": 0,
+ "layer_index": 9,
+ "row_index": 103
+ },
+ {
+ "head_index": 0,
+ "layer_index": 9,
+ "row_index": 107
+ },
+ {
+ "head_index": 0,
+ "layer_index": 9,
+ "row_index": 120
+ },
+ {
+ "head_index": 4,
+ "layer_index": 9,
+ "row_index": 5
+ },
+ {
+ "head_index": 4,
+ "layer_index": 9,
+ "row_index": 67
+ },
+ {
+ "head_index": 6,
+ "layer_index": 9,
+ "row_index": 3
+ },
+ {
+ "head_index": 6,
+ "layer_index": 9,
+ "row_index": 22
+ },
+ {
+ "head_index": 6,
+ "layer_index": 9,
+ "row_index": 68
+ },
+ {
+ "head_index": 6,
+ "layer_index": 9,
+ "row_index": 89
+ },
+ {
+ "head_index": 6,
+ "layer_index": 9,
+ "row_index": 95
+ },
+ {
+ "head_index": 6,
+ "layer_index": 9,
+ "row_index": 106
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 1
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 34
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 41
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 57
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 58
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 69
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 75
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 81
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 84
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 87
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 90
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 92
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 99
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 110
+ },
+ {
+ "head_index": 9,
+ "layer_index": 9,
+ "row_index": 122
+ },
+ {
+ "head_index": 10,
+ "layer_index": 9,
+ "row_index": 58
+ },
+ {
+ "head_index": 10,
+ "layer_index": 9,
+ "row_index": 62
+ },
+ {
+ "head_index": 10,
+ "layer_index": 9,
+ "row_index": 86
+ },
+ {
+ "head_index": 10,
+ "layer_index": 9,
+ "row_index": 96
+ },
+ {
+ "head_index": 10,
+ "layer_index": 9,
+ "row_index": 97
+ },
+ {
+ "head_index": 10,
+ "layer_index": 9,
+ "row_index": 113
+ },
+ {
+ "head_index": 10,
+ "layer_index": 9,
+ "row_index": 120
+ },
+ {
+ "head_index": 11,
+ "layer_index": 9,
+ "row_index": 11
+ },
+ {
+ "head_index": 11,
+ "layer_index": 9,
+ "row_index": 32
+ },
+ {
+ "head_index": 11,
+ "layer_index": 9,
+ "row_index": 52
+ },
+ {
+ "head_index": 11,
+ "layer_index": 9,
+ "row_index": 79
+ },
+ {
+ "head_index": 11,
+ "layer_index": 9,
+ "row_index": 90
+ },
+ {
+ "head_index": 11,
+ "layer_index": 9,
+ "row_index": 101
+ },
+ {
+ "head_index": 11,
+ "layer_index": 9,
+ "row_index": 106
+ },
+ {
+ "head_index": 11,
+ "layer_index": 9,
+ "row_index": 111
+ },
+ {
+ "head_index": 0,
+ "layer_index": 10,
+ "row_index": 3
+ },
+ {
+ "head_index": 0,
+ "layer_index": 10,
+ "row_index": 17
+ },
+ {
+ "head_index": 0,
+ "layer_index": 10,
+ "row_index": 18
+ },
+ {
+ "head_index": 0,
+ "layer_index": 10,
+ "row_index": 80
+ },
+ {
+ "head_index": 0,
+ "layer_index": 10,
+ "row_index": 81
+ },
+ {
+ "head_index": 0,
+ "layer_index": 10,
+ "row_index": 101
+ },
+ {
+ "head_index": 0,
+ "layer_index": 10,
+ "row_index": 112
+ },
+ {
+ "head_index": 0,
+ "layer_index": 10,
+ "row_index": 113
+ },
+ {
+ "head_index": 0,
+ "layer_index": 10,
+ "row_index": 115
+ },
+ {
+ "head_index": 2,
+ "layer_index": 10,
+ "row_index": 11
+ },
+ {
+ "head_index": 2,
+ "layer_index": 10,
+ "row_index": 15
+ },
+ {
+ "head_index": 2,
+ "layer_index": 10,
+ "row_index": 57
+ },
+ {
+ "head_index": 2,
+ "layer_index": 10,
+ "row_index": 85
+ },
+ {
+ "head_index": 2,
+ "layer_index": 10,
+ "row_index": 126
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 1
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 8
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 10
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 42
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 44
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 48
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 50
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 58
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 64
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 71
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 76
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 83
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 101
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 106
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 108
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 110
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 115
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 116
+ },
+ {
+ "head_index": 4,
+ "layer_index": 10,
+ "row_index": 122
+ },
+ {
+ "head_index": 5,
+ "layer_index": 10,
+ "row_index": 38
+ },
+ {
+ "head_index": 5,
+ "layer_index": 10,
+ "row_index": 47
+ },
+ {
+ "head_index": 5,
+ "layer_index": 10,
+ "row_index": 51
+ },
+ {
+ "head_index": 5,
+ "layer_index": 10,
+ "row_index": 64
+ },
+ {
+ "head_index": 5,
+ "layer_index": 10,
+ "row_index": 104
+ },
+ {
+ "head_index": 6,
+ "layer_index": 10,
+ "row_index": 25
+ },
+ {
+ "head_index": 6,
+ "layer_index": 10,
+ "row_index": 27
+ },
+ {
+ "head_index": 6,
+ "layer_index": 10,
+ "row_index": 29
+ },
+ {
+ "head_index": 6,
+ "layer_index": 10,
+ "row_index": 63
+ },
+ {
+ "head_index": 6,
+ "layer_index": 10,
+ "row_index": 65
+ },
+ {
+ "head_index": 6,
+ "layer_index": 10,
+ "row_index": 75
+ },
+ {
+ "head_index": 6,
+ "layer_index": 10,
+ "row_index": 76
+ },
+ {
+ "head_index": 6,
+ "layer_index": 10,
+ "row_index": 80
+ },
+ {
+ "head_index": 6,
+ "layer_index": 10,
+ "row_index": 126
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 4
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 16
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 18
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 34
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 39
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 40
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 42
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 45
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 51
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 63
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 79
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 80
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 86
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 89
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 95
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 115
+ },
+ {
+ "head_index": 7,
+ "layer_index": 10,
+ "row_index": 123
+ },
+ {
+ "head_index": 8,
+ "layer_index": 10,
+ "row_index": 9
+ },
+ {
+ "head_index": 8,
+ "layer_index": 10,
+ "row_index": 42
+ },
+ {
+ "head_index": 8,
+ "layer_index": 10,
+ "row_index": 75
+ },
+ {
+ "head_index": 8,
+ "layer_index": 10,
+ "row_index": 91
+ },
+ {
+ "head_index": 8,
+ "layer_index": 10,
+ "row_index": 102
+ },
+ {
+ "head_index": 8,
+ "layer_index": 10,
+ "row_index": 107
+ },
+ {
+ "head_index": 8,
+ "layer_index": 10,
+ "row_index": 119
+ },
+ {
+ "head_index": 8,
+ "layer_index": 10,
+ "row_index": 124
+ },
+ {
+ "head_index": 9,
+ "layer_index": 10,
+ "row_index": 37
+ },
+ {
+ "head_index": 13,
+ "layer_index": 10,
+ "row_index": 28
+ },
+ {
+ "head_index": 13,
+ "layer_index": 10,
+ "row_index": 30
+ },
+ {
+ "head_index": 13,
+ "layer_index": 10,
+ "row_index": 58
+ },
+ {
+ "head_index": 13,
+ "layer_index": 10,
+ "row_index": 74
+ },
+ {
+ "head_index": 13,
+ "layer_index": 10,
+ "row_index": 76
+ },
+ {
+ "head_index": 13,
+ "layer_index": 10,
+ "row_index": 77
+ },
+ {
+ "head_index": 13,
+ "layer_index": 10,
+ "row_index": 113
+ },
+ {
+ "head_index": 13,
+ "layer_index": 10,
+ "row_index": 116
+ },
+ {
+ "head_index": 14,
+ "layer_index": 10,
+ "row_index": 97
+ },
+ {
+ "head_index": 14,
+ "layer_index": 10,
+ "row_index": 111
+ },
+ {
+ "head_index": 15,
+ "layer_index": 10,
+ "row_index": 113
+ },
+ {
+ "head_index": 1,
+ "layer_index": 12,
+ "row_index": 10
+ },
+ {
+ "head_index": 1,
+ "layer_index": 12,
+ "row_index": 13
+ },
+ {
+ "head_index": 1,
+ "layer_index": 12,
+ "row_index": 37
+ },
+ {
+ "head_index": 1,
+ "layer_index": 12,
+ "row_index": 62
+ },
+ {
+ "head_index": 1,
+ "layer_index": 12,
+ "row_index": 65
+ },
+ {
+ "head_index": 1,
+ "layer_index": 12,
+ "row_index": 72
+ },
+ {
+ "head_index": 1,
+ "layer_index": 12,
+ "row_index": 89
+ },
+ {
+ "head_index": 1,
+ "layer_index": 12,
+ "row_index": 99
+ },
+ {
+ "head_index": 1,
+ "layer_index": 12,
+ "row_index": 101
+ },
+ {
+ "head_index": 1,
+ "layer_index": 12,
+ "row_index": 115
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 17
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 19
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 22
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 26
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 28
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 36
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 53
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 55
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 68
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 98
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 112
+ },
+ {
+ "head_index": 9,
+ "layer_index": 12,
+ "row_index": 123
+ },
+ {
+ "head_index": 11,
+ "layer_index": 12,
+ "row_index": 9
+ },
+ {
+ "head_index": 11,
+ "layer_index": 12,
+ "row_index": 13
+ },
+ {
+ "head_index": 11,
+ "layer_index": 12,
+ "row_index": 25
+ },
+ {
+ "head_index": 11,
+ "layer_index": 12,
+ "row_index": 32
+ },
+ {
+ "head_index": 11,
+ "layer_index": 12,
+ "row_index": 107
+ },
+ {
+ "head_index": 11,
+ "layer_index": 12,
+ "row_index": 114
+ },
+ {
+ "head_index": 14,
+ "layer_index": 12,
+ "row_index": 36
+ },
+ {
+ "head_index": 15,
+ "layer_index": 12,
+ "row_index": 71
+ },
+ {
+ "head_index": 0,
+ "layer_index": 13,
+ "row_index": 25
+ },
+ {
+ "head_index": 0,
+ "layer_index": 13,
+ "row_index": 55
+ },
+ {
+ "head_index": 1,
+ "layer_index": 13,
+ "row_index": 50
+ },
+ {
+ "head_index": 1,
+ "layer_index": 13,
+ "row_index": 51
+ },
+ {
+ "head_index": 2,
+ "layer_index": 13,
+ "row_index": 10
+ },
+ {
+ "head_index": 2,
+ "layer_index": 13,
+ "row_index": 33
+ },
+ {
+ "head_index": 2,
+ "layer_index": 13,
+ "row_index": 35
+ },
+ {
+ "head_index": 2,
+ "layer_index": 13,
+ "row_index": 81
+ },
+ {
+ "head_index": 2,
+ "layer_index": 13,
+ "row_index": 92
+ },
+ {
+ "head_index": 2,
+ "layer_index": 13,
+ "row_index": 94
+ },
+ {
+ "head_index": 2,
+ "layer_index": 13,
+ "row_index": 102
+ },
+ {
+ "head_index": 3,
+ "layer_index": 13,
+ "row_index": 18
+ },
+ {
+ "head_index": 4,
+ "layer_index": 13,
+ "row_index": 22
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 1
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 5
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 7
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 19
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 23
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 27
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 28
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 40
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 52
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 62
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 68
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 78
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 81
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 87
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 88
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 94
+ },
+ {
+ "head_index": 6,
+ "layer_index": 13,
+ "row_index": 116
+ },
+ {
+ "head_index": 7,
+ "layer_index": 13,
+ "row_index": 31
+ },
+ {
+ "head_index": 7,
+ "layer_index": 13,
+ "row_index": 71
+ },
+ {
+ "head_index": 7,
+ "layer_index": 13,
+ "row_index": 107
+ },
+ {
+ "head_index": 8,
+ "layer_index": 13,
+ "row_index": 4
+ },
+ {
+ "head_index": 8,
+ "layer_index": 13,
+ "row_index": 41
+ },
+ {
+ "head_index": 8,
+ "layer_index": 13,
+ "row_index": 69
+ },
+ {
+ "head_index": 8,
+ "layer_index": 13,
+ "row_index": 80
+ },
+ {
+ "head_index": 8,
+ "layer_index": 13,
+ "row_index": 89
+ },
+ {
+ "head_index": 8,
+ "layer_index": 13,
+ "row_index": 94
+ },
+ {
+ "head_index": 8,
+ "layer_index": 13,
+ "row_index": 104
+ },
+ {
+ "head_index": 8,
+ "layer_index": 13,
+ "row_index": 108
+ },
+ {
+ "head_index": 8,
+ "layer_index": 13,
+ "row_index": 117
+ },
+ {
+ "head_index": 8,
+ "layer_index": 13,
+ "row_index": 123
+ },
+ {
+ "head_index": 10,
+ "layer_index": 13,
+ "row_index": 1
+ },
+ {
+ "head_index": 10,
+ "layer_index": 13,
+ "row_index": 34
+ },
+ {
+ "head_index": 10,
+ "layer_index": 13,
+ "row_index": 40
+ },
+ {
+ "head_index": 10,
+ "layer_index": 13,
+ "row_index": 91
+ },
+ {
+ "head_index": 10,
+ "layer_index": 13,
+ "row_index": 93
+ },
+ {
+ "head_index": 10,
+ "layer_index": 13,
+ "row_index": 96
+ },
+ {
+ "head_index": 10,
+ "layer_index": 13,
+ "row_index": 102
+ },
+ {
+ "head_index": 10,
+ "layer_index": 13,
+ "row_index": 115
+ },
+ {
+ "head_index": 10,
+ "layer_index": 13,
+ "row_index": 122
+ },
+ {
+ "head_index": 11,
+ "layer_index": 13,
+ "row_index": 42
+ },
+ {
+ "head_index": 11,
+ "layer_index": 13,
+ "row_index": 79
+ },
+ {
+ "head_index": 12,
+ "layer_index": 13,
+ "row_index": 34
+ },
+ {
+ "head_index": 12,
+ "layer_index": 13,
+ "row_index": 38
+ },
+ {
+ "head_index": 13,
+ "layer_index": 13,
+ "row_index": 16
+ },
+ {
+ "head_index": 13,
+ "layer_index": 13,
+ "row_index": 19
+ },
+ {
+ "head_index": 13,
+ "layer_index": 13,
+ "row_index": 46
+ },
+ {
+ "head_index": 13,
+ "layer_index": 13,
+ "row_index": 76
+ },
+ {
+ "head_index": 13,
+ "layer_index": 13,
+ "row_index": 108
+ },
+ {
+ "head_index": 13,
+ "layer_index": 13,
+ "row_index": 110
+ },
+ {
+ "head_index": 4,
+ "layer_index": 14,
+ "row_index": 93
+ },
+ {
+ "head_index": 4,
+ "layer_index": 14,
+ "row_index": 101
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 12
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 22
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 29
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 31
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 32
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 38
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 51
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 71
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 73
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 75
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 95
+ },
+ {
+ "head_index": 5,
+ "layer_index": 14,
+ "row_index": 106
+ },
+ {
+ "head_index": 6,
+ "layer_index": 14,
+ "row_index": 44
+ },
+ {
+ "head_index": 6,
+ "layer_index": 14,
+ "row_index": 95
+ },
+ {
+ "head_index": 6,
+ "layer_index": 14,
+ "row_index": 126
+ },
+ {
+ "head_index": 10,
+ "layer_index": 14,
+ "row_index": 23
+ },
+ {
+ "head_index": 10,
+ "layer_index": 14,
+ "row_index": 96
+ },
+ {
+ "head_index": 10,
+ "layer_index": 14,
+ "row_index": 111
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 18
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 27
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 32
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 34
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 37
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 51
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 54
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 55
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 62
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 83
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 87
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 92
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 101
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 103
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 104
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 108
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 110
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 112
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 114
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 119
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 120
+ },
+ {
+ "head_index": 13,
+ "layer_index": 14,
+ "row_index": 121
+ },
+ {
+ "head_index": 14,
+ "layer_index": 14,
+ "row_index": 16
+ },
+ {
+ "head_index": 14,
+ "layer_index": 14,
+ "row_index": 24
+ },
+ {
+ "head_index": 14,
+ "layer_index": 14,
+ "row_index": 33
+ },
+ {
+ "head_index": 14,
+ "layer_index": 14,
+ "row_index": 107
+ },
+ {
+ "head_index": 14,
+ "layer_index": 14,
+ "row_index": 113
+ },
+ {
+ "head_index": 15,
+ "layer_index": 14,
+ "row_index": 6
+ },
+ {
+ "head_index": 15,
+ "layer_index": 14,
+ "row_index": 47
+ },
+ {
+ "head_index": 15,
+ "layer_index": 14,
+ "row_index": 54
+ },
+ {
+ "head_index": 15,
+ "layer_index": 14,
+ "row_index": 58
+ },
+ {
+ "head_index": 15,
+ "layer_index": 14,
+ "row_index": 64
+ },
+ {
+ "head_index": 15,
+ "layer_index": 14,
+ "row_index": 78
+ },
+ {
+ "head_index": 15,
+ "layer_index": 14,
+ "row_index": 98
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 7
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 8
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 10
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 26
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 41
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 54
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 96
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 98
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 102
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 103
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 119
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 120
+ },
+ {
+ "head_index": 1,
+ "layer_index": 16,
+ "row_index": 126
+ },
+ {
+ "head_index": 3,
+ "layer_index": 16,
+ "row_index": 50
+ },
+ {
+ "head_index": 3,
+ "layer_index": 16,
+ "row_index": 118
+ },
+ {
+ "head_index": 3,
+ "layer_index": 16,
+ "row_index": 127
+ },
+ {
+ "head_index": 5,
+ "layer_index": 16,
+ "row_index": 2
+ },
+ {
+ "head_index": 5,
+ "layer_index": 16,
+ "row_index": 86
+ },
+ {
+ "head_index": 5,
+ "layer_index": 16,
+ "row_index": 91
+ },
+ {
+ "head_index": 6,
+ "layer_index": 16,
+ "row_index": 45
+ },
+ {
+ "head_index": 6,
+ "layer_index": 16,
+ "row_index": 46
+ },
+ {
+ "head_index": 6,
+ "layer_index": 16,
+ "row_index": 100
+ },
+ {
+ "head_index": 6,
+ "layer_index": 16,
+ "row_index": 101
+ },
+ {
+ "head_index": 6,
+ "layer_index": 16,
+ "row_index": 102
+ },
+ {
+ "head_index": 6,
+ "layer_index": 16,
+ "row_index": 124
+ },
+ {
+ "head_index": 7,
+ "layer_index": 16,
+ "row_index": 13
+ },
+ {
+ "head_index": 7,
+ "layer_index": 16,
+ "row_index": 75
+ },
+ {
+ "head_index": 8,
+ "layer_index": 16,
+ "row_index": 16
+ },
+ {
+ "head_index": 8,
+ "layer_index": 16,
+ "row_index": 109
+ },
+ {
+ "head_index": 8,
+ "layer_index": 16,
+ "row_index": 113
+ },
+ {
+ "head_index": 10,
+ "layer_index": 16,
+ "row_index": 19
+ },
+ {
+ "head_index": 10,
+ "layer_index": 16,
+ "row_index": 22
+ },
+ {
+ "head_index": 10,
+ "layer_index": 16,
+ "row_index": 23
+ },
+ {
+ "head_index": 10,
+ "layer_index": 16,
+ "row_index": 42
+ },
+ {
+ "head_index": 10,
+ "layer_index": 16,
+ "row_index": 77
+ },
+ {
+ "head_index": 10,
+ "layer_index": 16,
+ "row_index": 103
+ },
+ {
+ "head_index": 10,
+ "layer_index": 16,
+ "row_index": 108
+ },
+ {
+ "head_index": 10,
+ "layer_index": 16,
+ "row_index": 112
+ },
+ {
+ "head_index": 10,
+ "layer_index": 16,
+ "row_index": 125
+ },
+ {
+ "head_index": 11,
+ "layer_index": 16,
+ "row_index": 15
+ },
+ {
+ "head_index": 11,
+ "layer_index": 16,
+ "row_index": 22
+ },
+ {
+ "head_index": 11,
+ "layer_index": 16,
+ "row_index": 56
+ },
+ {
+ "head_index": 11,
+ "layer_index": 16,
+ "row_index": 73
+ },
+ {
+ "head_index": 11,
+ "layer_index": 16,
+ "row_index": 87
+ },
+ {
+ "head_index": 15,
+ "layer_index": 16,
+ "row_index": 107
+ },
+ {
+ "head_index": 0,
+ "layer_index": 17,
+ "row_index": 49
+ },
+ {
+ "head_index": 2,
+ "layer_index": 17,
+ "row_index": 12
+ },
+ {
+ "head_index": 3,
+ "layer_index": 17,
+ "row_index": 96
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 11
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 12
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 23
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 24
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 30
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 31
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 34
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 35
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 44
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 60
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 68
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 69
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 70
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 72
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 79
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 82
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 85
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 93
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 109
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 116
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 119
+ },
+ {
+ "head_index": 9,
+ "layer_index": 17,
+ "row_index": 126
+ },
+ {
+ "head_index": 13,
+ "layer_index": 17,
+ "row_index": 90
+ },
+ {
+ "head_index": 14,
+ "layer_index": 17,
+ "row_index": 4
+ },
+ {
+ "head_index": 1,
+ "layer_index": 18,
+ "row_index": 70
+ },
+ {
+ "head_index": 3,
+ "layer_index": 18,
+ "row_index": 44
+ },
+ {
+ "head_index": 3,
+ "layer_index": 18,
+ "row_index": 110
+ },
+ {
+ "head_index": 5,
+ "layer_index": 18,
+ "row_index": 28
+ },
+ {
+ "head_index": 5,
+ "layer_index": 18,
+ "row_index": 43
+ },
+ {
+ "head_index": 6,
+ "layer_index": 18,
+ "row_index": 11
+ },
+ {
+ "head_index": 6,
+ "layer_index": 18,
+ "row_index": 43
+ },
+ {
+ "head_index": 6,
+ "layer_index": 20,
+ "row_index": 3
+ },
+ {
+ "head_index": 6,
+ "layer_index": 20,
+ "row_index": 10
+ },
+ {
+ "head_index": 6,
+ "layer_index": 20,
+ "row_index": 61
+ },
+ {
+ "head_index": 6,
+ "layer_index": 20,
+ "row_index": 64
+ },
+ {
+ "head_index": 6,
+ "layer_index": 20,
+ "row_index": 68
+ },
+ {
+ "head_index": 6,
+ "layer_index": 20,
+ "row_index": 74
+ },
+ {
+ "head_index": 6,
+ "layer_index": 20,
+ "row_index": 110
+ },
+ {
+ "head_index": 8,
+ "layer_index": 20,
+ "row_index": 61
+ },
+ {
+ "head_index": 8,
+ "layer_index": 20,
+ "row_index": 119
+ },
+ {
+ "head_index": 5,
+ "layer_index": 21,
+ "row_index": 5
+ },
+ {
+ "head_index": 5,
+ "layer_index": 21,
+ "row_index": 83
+ },
+ {
+ "head_index": 5,
+ "layer_index": 21,
+ "row_index": 102
+ },
+ {
+ "head_index": 8,
+ "layer_index": 21,
+ "row_index": 36
+ },
+ {
+ "head_index": 8,
+ "layer_index": 21,
+ "row_index": 106
+ },
+ {
+ "head_index": 10,
+ "layer_index": 21,
+ "row_index": 14
+ },
+ {
+ "head_index": 10,
+ "layer_index": 21,
+ "row_index": 75
+ },
+ {
+ "head_index": 3,
+ "layer_index": 22,
+ "row_index": 115
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 14
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 15
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 16
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 17
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 19
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 21
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 22
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 25
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 28
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 34
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 35
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 37
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 40
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 41
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 42
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 43
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 49
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 52
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 56
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 57
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 58
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 62
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 64
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 65
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 66
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 69
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 72
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 73
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 75
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 78
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 82
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 89
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 93
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 104
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 105
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 109
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 110
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 112
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 119
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 124
+ },
+ {
+ "head_index": 7,
+ "layer_index": 22,
+ "row_index": 125
+ },
+ {
+ "head_index": 12,
+ "layer_index": 22,
+ "row_index": 10
+ },
+ {
+ "head_index": 12,
+ "layer_index": 22,
+ "row_index": 13
+ },
+ {
+ "head_index": 12,
+ "layer_index": 22,
+ "row_index": 20
+ },
+ {
+ "head_index": 12,
+ "layer_index": 22,
+ "row_index": 36
+ },
+ {
+ "head_index": 12,
+ "layer_index": 22,
+ "row_index": 40
+ },
+ {
+ "head_index": 12,
+ "layer_index": 22,
+ "row_index": 63
+ },
+ {
+ "head_index": 12,
+ "layer_index": 22,
+ "row_index": 84
+ },
+ {
+ "head_index": 12,
+ "layer_index": 22,
+ "row_index": 94
+ },
+ {
+ "head_index": 12,
+ "layer_index": 22,
+ "row_index": 107
+ },
+ {
+ "head_index": 12,
+ "layer_index": 22,
+ "row_index": 108
+ },
+ {
+ "head_index": 12,
+ "layer_index": 22,
+ "row_index": 121
+ },
+ {
+ "head_index": 14,
+ "layer_index": 22,
+ "row_index": 10
+ },
+ {
+ "head_index": 14,
+ "layer_index": 22,
+ "row_index": 118
+ }
+ ],
+ "layer_quotas": {
+ "0": 355,
+ "1": 380,
+ "10": 84,
+ "12": 30,
+ "13": 62,
+ "14": 54,
+ "16": 45,
+ "17": 27,
+ "18": 7,
+ "2": 269,
+ "20": 9,
+ "21": 7,
+ "22": 55,
+ "4": 179,
+ "5": 185,
+ "6": 105,
+ "8": 80,
+ "9": 43
+ },
+ "method": "target_directional_fisher_difference_int4",
+ "model": {
+ "id": "Qwen/Qwen3.5-0.8B-Base",
+ "revision": "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68"
+ },
+ "quantization": {
+ "group_size": 128,
+ "high_bits": 8,
+ "low_bits": 4,
+ "scale_bits": 16
+ },
+ "schema": "recurquant.experiment009-stage-b-row-plan.v1",
+ "score_shapes": [
+ {
+ "heads": 16,
+ "layer_index": 0,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 1,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 2,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 4,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 5,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 6,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 8,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 9,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 10,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 12,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 13,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 14,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 16,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 17,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 18,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 20,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 21,
+ "rows": 128
+ },
+ {
+ "heads": 16,
+ "layer_index": 22,
+ "rows": 128
+ }
+ ],
+ "selector_binding": {
+ "loss_selector_canonical_evidence_sha256": "bff4e33253990b8115e1f35e74516c4975c2fe4aac5066475afe968eb8a64609",
+ "loss_selector_file_sha256": "95c16656edb32efbc985f2fea59e229634dd558f4f4bf04819b8efc37783a1d6",
+ "selector_canonical_evidence_sha256": "7970961fd88b522998189ad64f26b333aed9c88ff5f653de5449fd9e01d8cbc8",
+ "selector_file_sha256": "d0c4267095ee3f5068627b189a1fd9f58cb02f6e25672d9b89dd0990e5b09330"
+ }
+ },
+ "schema_version": 1,
+ "source_files": {
+ "imported_modules": {
+ "recurquant": "src/recurquant/__init__.py",
+ "recurquant.evidence": "src/recurquant/evidence.py",
+ "recurquant.public_data": "src/recurquant/public_data.py"
+ },
+ "paths": [
+ "research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md",
+ "research/EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md",
+ "research/EXPERIMENT_009_STAGE_A_AUDIT.md",
+ "research/EXPERIMENT_009_STAGE_A_RESULT.md",
+ "scripts/evaluate_rht_cqer_stage_b.py",
+ "scripts/resolve_rht_cqer_stage_b_identity.py",
+ "scripts/screen_rht_cqer.py",
+ "scripts/pilot_evaluate_hrr.py",
+ "src/recurquant/__init__.py",
+ "src/recurquant/cache.py",
+ "src/recurquant/evaluation.py",
+ "src/recurquant/evidence.py",
+ "src/recurquant/finite_difference.py",
+ "src/recurquant/fisher_sensitivity.py",
+ "src/recurquant/horizon.py",
+ "src/recurquant/horizon_calibration.py",
+ "src/recurquant/intervention.py",
+ "src/recurquant/metrics.py",
+ "src/recurquant/mixed_quantization.py",
+ "src/recurquant/model_fisher.py",
+ "src/recurquant/multibit_policy.py",
+ "src/recurquant/multibit_quantization.py",
+ "src/recurquant/packed_cache.py",
+ "src/recurquant/public_data.py",
+ "src/recurquant/quantization.py",
+ "src/recurquant/query_energy.py",
+ "src/recurquant/qwen35.py",
+ "src/recurquant/rht.py",
+ "src/recurquant/row_policy.py",
+ "src/recurquant/transition_observer.py",
+ "tests/test_evaluate_rht_cqer_stage_b.py",
+ "tests/test_resolve_rht_cqer_stage_b_identity.py",
+ "tests/test_rht.py",
+ "tests/test_rht_independent_reference.py",
+ "tests/test_rht_mixed_quantization.py",
+ "tests/test_right_rht_query_ema_cache.py",
+ "tests/test_screen_rht_cqer.py"
+ ],
+ "sha256_end": {
+ "research/EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md": "6edb388bb0262844599056bf585e6266dfdb5e1153d8548ec5a45b3389dd6a89",
+ "research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md": "70a8c48dcd2f4541071a3709760cf331a8399af47fef7b7c46340b3840f13160",
+ "research/EXPERIMENT_009_STAGE_A_AUDIT.md": "cf1b9c0833d38046f65cc1c3fc610176fce92d1eaed99777fe6387cadefcc97a",
+ "research/EXPERIMENT_009_STAGE_A_RESULT.md": "d8ab273c1723687c4ba1da502e8e5cf24efa905f14b6cf12993d012c9d2b32a7",
+ "scripts/evaluate_rht_cqer_stage_b.py": "dff4d8d6ddcfd4d1a3bab27fe4b7cd09857cb362ec3128c80558df05707c14d0",
+ "scripts/pilot_evaluate_hrr.py": "bc87ef6b39df47390503c2688f855dda468454ce06488d3343c8ae9a3b28c9d1",
+ "scripts/resolve_rht_cqer_stage_b_identity.py": "49d2914e18b2ec58fd9d74f0d9d745fb80a9f822b550910cc83da34e2c691548",
+ "scripts/screen_rht_cqer.py": "30ef17c36aebd56b11e179692b1d233a2d57a09b581b680d3de10947d479c6d3",
+ "src/recurquant/__init__.py": "85cf0560e8d469b9942a07df8463a28437c9e6ec3bc2791de4d762cbc3bf4283",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/finite_difference.py": "d74b54f4adabb0fe5ea09fd8a9f8ba7503ff3aed52735406d2f48d3a56c7ad5b",
+ "src/recurquant/fisher_sensitivity.py": "f368e662a427a9234a5c43b831e513b6ac6b8e848062ff9dc22e3a0da834e2a8",
+ "src/recurquant/horizon.py": "22f368a491ec41f324cda9a731c8dcd64401e810be74b5de806461cb3eb7003b",
+ "src/recurquant/horizon_calibration.py": "852230800f49f27d57440dbdc89759eb69972de42bac51311063f70613540947",
+ "src/recurquant/intervention.py": "f57a0a44bf954a2f34c4970ec136789003627fd33de7eea3f4f78e9ef78ca737",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "026efa893458a2d991338d9a2f784b2a5035decbc826faf8e3652225a7af5d7d",
+ "src/recurquant/model_fisher.py": "a218191dcf1b1421174ea2a41d1dbd34eea1b843f15e3b32e67ad1850f30727b",
+ "src/recurquant/multibit_policy.py": "70e6753846f2a8d25178db0683ae5659d774d22f1a20d01b3df4d483e9a22752",
+ "src/recurquant/multibit_quantization.py": "16e367704a4b42c07c858cbee63d1e4958c5b210c4ffb7b46b8bdd47eade98cb",
+ "src/recurquant/packed_cache.py": "620ddc858b465c6038d13206d475d84bf03960334cacd7e40258ad59421bf8f2",
+ "src/recurquant/public_data.py": "561148178b4d4d538de897a32834895cef5303121acae3ecdae9e3bf2e325370",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/query_energy.py": "4484ee2f2f2e64c8d30810012c646a186b4635cf617244e42c7bfeac01493d63",
+ "src/recurquant/qwen35.py": "591c9956a1e621211df571f0546fb6537acc157a4ae31565995892a1983488ee",
+ "src/recurquant/rht.py": "13ed9e4686b4ab8a8d4d4cb95b5109bda00d4306bf7b79b44e9b84a134eee001",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708",
+ "src/recurquant/transition_observer.py": "c883602bd8beb8c692f621f5a188c63c311b26be0d8d1584c397edc58eb34b7b",
+ "tests/test_evaluate_rht_cqer_stage_b.py": "34e514c816a379b16f0f0da19e79d9e13039a59f167f6b0ca4fb3ffa61654ab1",
+ "tests/test_resolve_rht_cqer_stage_b_identity.py": "13186af7cb9a2512154fa5fbea97de3ac6c42bf9bc2e9637ceec99d0f6f19005",
+ "tests/test_rht.py": "a17bbb205aa9ace762aff3fa3a507828974578606b2af4070a80d974e2a97a14",
+ "tests/test_rht_independent_reference.py": "59ad869ba9d30d939aba0548b316ef74eaedf734b04e0ae9de8255f28d8be036",
+ "tests/test_rht_mixed_quantization.py": "26b43f92d429aca0ee0f91c54061187f3a227b63abe7bf41f7502a18c7f89cdf",
+ "tests/test_right_rht_query_ema_cache.py": "9727b78e4c9cae490ebe86f01e2c9fd51ed6c4ce42942e523be2f7042bcc97d0",
+ "tests/test_screen_rht_cqer.py": "0c44fe52b09594f04f72e97c3ebdd2d7292c1ea3b187df02f08b9bb3668a7d9f"
+ },
+ "sha256_start": {
+ "research/EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md": "6edb388bb0262844599056bf585e6266dfdb5e1153d8548ec5a45b3389dd6a89",
+ "research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md": "70a8c48dcd2f4541071a3709760cf331a8399af47fef7b7c46340b3840f13160",
+ "research/EXPERIMENT_009_STAGE_A_AUDIT.md": "cf1b9c0833d38046f65cc1c3fc610176fce92d1eaed99777fe6387cadefcc97a",
+ "research/EXPERIMENT_009_STAGE_A_RESULT.md": "d8ab273c1723687c4ba1da502e8e5cf24efa905f14b6cf12993d012c9d2b32a7",
+ "scripts/evaluate_rht_cqer_stage_b.py": "dff4d8d6ddcfd4d1a3bab27fe4b7cd09857cb362ec3128c80558df05707c14d0",
+ "scripts/pilot_evaluate_hrr.py": "bc87ef6b39df47390503c2688f855dda468454ce06488d3343c8ae9a3b28c9d1",
+ "scripts/resolve_rht_cqer_stage_b_identity.py": "49d2914e18b2ec58fd9d74f0d9d745fb80a9f822b550910cc83da34e2c691548",
+ "scripts/screen_rht_cqer.py": "30ef17c36aebd56b11e179692b1d233a2d57a09b581b680d3de10947d479c6d3",
+ "src/recurquant/__init__.py": "85cf0560e8d469b9942a07df8463a28437c9e6ec3bc2791de4d762cbc3bf4283",
+ "src/recurquant/cache.py": "ae86fa67519a9c93f373909775ade3153261f9d44a6f2e3c58bdefaf07cf432e",
+ "src/recurquant/evaluation.py": "51a5a50c3229687cda22f9e91126568672e6bfa89f036af8375b3b57f85e6555",
+ "src/recurquant/evidence.py": "9cb55afc2faed06e95dd17ed2449e3f60d8de652c4618f81a9958eccca9769af",
+ "src/recurquant/finite_difference.py": "d74b54f4adabb0fe5ea09fd8a9f8ba7503ff3aed52735406d2f48d3a56c7ad5b",
+ "src/recurquant/fisher_sensitivity.py": "f368e662a427a9234a5c43b831e513b6ac6b8e848062ff9dc22e3a0da834e2a8",
+ "src/recurquant/horizon.py": "22f368a491ec41f324cda9a731c8dcd64401e810be74b5de806461cb3eb7003b",
+ "src/recurquant/horizon_calibration.py": "852230800f49f27d57440dbdc89759eb69972de42bac51311063f70613540947",
+ "src/recurquant/intervention.py": "f57a0a44bf954a2f34c4970ec136789003627fd33de7eea3f4f78e9ef78ca737",
+ "src/recurquant/metrics.py": "5fe92c30b9fa13397e2977d48780a464628e7a475916f623ed3be21c7f2c89be",
+ "src/recurquant/mixed_quantization.py": "026efa893458a2d991338d9a2f784b2a5035decbc826faf8e3652225a7af5d7d",
+ "src/recurquant/model_fisher.py": "a218191dcf1b1421174ea2a41d1dbd34eea1b843f15e3b32e67ad1850f30727b",
+ "src/recurquant/multibit_policy.py": "70e6753846f2a8d25178db0683ae5659d774d22f1a20d01b3df4d483e9a22752",
+ "src/recurquant/multibit_quantization.py": "16e367704a4b42c07c858cbee63d1e4958c5b210c4ffb7b46b8bdd47eade98cb",
+ "src/recurquant/packed_cache.py": "620ddc858b465c6038d13206d475d84bf03960334cacd7e40258ad59421bf8f2",
+ "src/recurquant/public_data.py": "561148178b4d4d538de897a32834895cef5303121acae3ecdae9e3bf2e325370",
+ "src/recurquant/quantization.py": "81899e1484832986e77a521b1f13e203a6cbee2693f1b019579dcebf92f09dd4",
+ "src/recurquant/query_energy.py": "4484ee2f2f2e64c8d30810012c646a186b4635cf617244e42c7bfeac01493d63",
+ "src/recurquant/qwen35.py": "591c9956a1e621211df571f0546fb6537acc157a4ae31565995892a1983488ee",
+ "src/recurquant/rht.py": "13ed9e4686b4ab8a8d4d4cb95b5109bda00d4306bf7b79b44e9b84a134eee001",
+ "src/recurquant/row_policy.py": "dce8b8c2a1da88240ead08038edbbea5de5c28d530bd8659e461344ce15ef708",
+ "src/recurquant/transition_observer.py": "c883602bd8beb8c692f621f5a188c63c311b26be0d8d1584c397edc58eb34b7b",
+ "tests/test_evaluate_rht_cqer_stage_b.py": "34e514c816a379b16f0f0da19e79d9e13039a59f167f6b0ca4fb3ffa61654ab1",
+ "tests/test_resolve_rht_cqer_stage_b_identity.py": "13186af7cb9a2512154fa5fbea97de3ac6c42bf9bc2e9637ceec99d0f6f19005",
+ "tests/test_rht.py": "a17bbb205aa9ace762aff3fa3a507828974578606b2af4070a80d974e2a97a14",
+ "tests/test_rht_independent_reference.py": "59ad869ba9d30d939aba0548b316ef74eaedf734b04e0ae9de8255f28d8be036",
+ "tests/test_rht_mixed_quantization.py": "26b43f92d429aca0ee0f91c54061187f3a227b63abe7bf41f7502a18c7f89cdf",
+ "tests/test_right_rht_query_ema_cache.py": "9727b78e4c9cae490ebe86f01e2c9fd51ed6c4ce42942e523be2f7042bcc97d0",
+ "tests/test_screen_rht_cqer.py": "0c44fe52b09594f04f72e97c3ebdd2d7292c1ea3b187df02f08b9bb3668a7d9f"
+ },
+ "stable": true
+ },
+ "tokenizer_contract": {
+ "class": "Qwen2Tokenizer",
+ "code_add_special_tokens": false,
+ "formatter_version": "recurquant.mbpp-prompt-code.v1",
+ "prompt_add_special_tokens": true,
+ "revision": "dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68",
+ "source_id": "Qwen/Qwen3.5-0.8B-Base",
+ "text_hash_encoding": "utf-8",
+ "token_id_hash_serialization": "recurquant.canonical-json.v1",
+ "transformers_version": "5.14.1",
+ "trust_remote_code": false
+ }
+ }
+}
diff --git a/research/EXPERIMENT_009_STAGE_B_IDENTITY.md b/research/EXPERIMENT_009_STAGE_B_IDENTITY.md
new file mode 100644
index 0000000..e975ef5
--- /dev/null
+++ b/research/EXPERIMENT_009_STAGE_B_IDENTITY.md
@@ -0,0 +1,107 @@
+# Experiment 009 Stage-B identity freeze
+
+> **Status: the 32-task development identity is authenticated and frozen
+> before model weights or quality metrics are opened.**
+>
+> This artifact fixes the data, tokenizer, row-allocation plan, runtime, and
+> source-code identity for the one permitted Stage-B run. It is not
+> performance, novelty, state-of-the-art, or breakthrough evidence.
+
+Date recorded: 2026-07-26
+
+## Authenticated artifact
+
+| Field | Value |
+| --- | --- |
+| Artifact | `evidence/experiment009-rht-cqer-stage-b-identity-cdc603b.json` |
+| Artifact kind | `recurquant_rht_cqer32_stage_b_identity` |
+| Frozen source commit | `cdc603b6b8462e42e98495c5ec0610faa9473721` |
+| File SHA-256 | `f94e60adb6d9ab51b5894e3ad8b3c0064a8e69721e3df24f90a81f0b4009fe19` |
+| Canonical evidence SHA-256 | `4074db6860d3f36dff1a13b7945d0c5c5d619ee208f0fdb35108defb9512c343` |
+| Created at | `2026-07-26T05:12:01.884112+00:00` |
+| Ordered identity SHA-256 | `3a7f9f2e1b60321680082d93ea983425085f0e26afad03c49413b41e6e4b2ddc` |
+| Content manifest SHA-256 | `7a66a3d1241baf27887f43f04129b9e6d8ce46f24e22835b9888cab53d172bcb` |
+| Token manifest SHA-256 | `76b73079b704c48a5e87d479887e5b88d2a0a9c1516c1187acae22e0c71618a9` |
+| Row-plan SHA-256 | `b480b6483bec2f07ef56388df27f5d78402b9b9545f2c039d332495de2a9fbde` |
+
+The artifact loader independently recomputed its canonical hash and validated
+the complete production schema. The committed copy is byte-identical to the
+generated artifact.
+
+## Frozen evaluation identity
+
+The development set contains 32 ranked MBPP tasks from the preregistered
+`[32, 64)` window:
+
+```text
+725, 616, 686, 722, 919, 636, 607, 950,
+885, 646, 708, 840, 793, 860, 800, 867,
+622, 677, 849, 756, 960, 741, 763, 924,
+839, 870, 862, 877, 672, 894, 911, 907
+```
+
+| Token total | Count |
+| --- | ---: |
+| Prompt tokens | 4,079 |
+| Code tokens | 1,988 |
+| Aligned scored tokens | 1,956 |
+
+The model and tokenizer are fixed to
+`Qwen/Qwen3.5-0.8B-Base` at revision
+`dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68`. The tokenizer is
+`Qwen2Tokenizer` from Transformers `5.14.1`, with the exact prompt/code
+special-token settings recorded in the artifact.
+
+## Frozen runtime and row plan
+
+The identity authenticated the same runtime used for Stage A before reading
+dataset content:
+
+| Component | Frozen value |
+| --- | --- |
+| Python | `3.11.15` |
+| PyTorch | `2.11.0+cu128` |
+| CUDA runtime | `12.8` |
+| Transformers | `5.14.1` |
+| Datasets | `4.8.5` |
+| NumPy | `2.4.6` |
+| Safetensors | `0.8.0` |
+
+The compact selector plan promotes 1,976 of 36,864 recurrent-state groups.
+It preserves the exact 2,564,096-byte packed-state target, including the
+4,608-byte precision mask. Both source selector artifacts and their canonical
+evidence hashes are bound inside the identity.
+
+## Access and integrity boundary
+
+The identity run:
+
+- authenticated Stage A, the runtime, selector artifacts, source files, and
+ repository commit before target content access;
+- used a task-ID-only ranking pass and retained no row mappings from it;
+- retained, canonicalized, formatted, and tokenized only the 32 Stage-B tasks;
+- did not run a model forward pass;
+- did not load model weights, logits, or quality metrics;
+- did not access the protected ranked `[8, 16)` window at the application
+ content, tokenization, model, or evaluation layers; and
+- recorded repository-relative paths only.
+
+The Hugging Face streaming transport may deserialize complete source records
+before yielding them. RecurQuant itself inspected only `task_id` on
+non-target rows; the artifact records both transport and application-level
+counters.
+
+## Safe runtime rejection
+
+The first invocation used a different local virtual environment. Its runtime
+check detected that `datasets` was absent and stopped before dataset access or
+artifact creation. The successful invocation used the exact Stage-A runtime
+listed above. No dependency, seed, threshold, task window, selector, or source
+file was changed after the rejection.
+
+## Next decision
+
+This identity authorizes one frozen Stage-B development evaluation. The result
+must be preserved whether the eight advancement gates pass or fail. No
+threshold, seed, method, task, or source file may be changed after observing
+the result.
From 2075154e642c39a14432adcc8ec32da679b534d3 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Sun, 26 Jul 2026 14:01:45 +0800
Subject: [PATCH 20/22] fix: validate canonical Stage B manifest order
---
scripts/evaluate_rht_cqer_stage_b.py | 46 ++++++-
tests/test_evaluate_rht_cqer_stage_b.py | 166 +++++++++++++++++++++++-
2 files changed, 201 insertions(+), 11 deletions(-)
diff --git a/scripts/evaluate_rht_cqer_stage_b.py b/scripts/evaluate_rht_cqer_stage_b.py
index 1c96196..a13601a 100644
--- a/scripts/evaluate_rht_cqer_stage_b.py
+++ b/scripts/evaluate_rht_cqer_stage_b.py
@@ -2810,11 +2810,47 @@ def _validate_result_identity_dataset(
rows = manifest.get("rows")
if not isinstance(rows, list) or len(rows) != STAGE_B_LIMIT:
raise ValueError("Stage-B result identity manifest rows drifted")
- expected_rows = [
- {"task_id": int(record["task_id"]), "sha256": str(record["row_sha256"])}
- for record in task_records
- ]
- if rows != expected_rows:
+ normalized_rows: list[dict[str, Any]] = []
+ seen_manifest_ids: set[int] = set()
+ previous_task_id: int | None = None
+ for offset, raw_row in enumerate(rows):
+ row = _mapping(
+ raw_row,
+ context=f"Stage-B result identity manifest row {offset}",
+ )
+ _require_exact_fields(
+ row,
+ {"task_id", "sha256"},
+ context=f"Stage-B result identity manifest row {offset}",
+ )
+ task_id = _strict_int(
+ row.get("task_id"),
+ context=f"Stage-B result identity manifest row {offset} task_id",
+ )
+ row_sha256 = _require_sha256(
+ row.get("sha256"),
+ context=f"Stage-B result identity manifest row {offset}",
+ )
+ if task_id in seen_manifest_ids:
+ raise ValueError("Stage-B result identity manifest task IDs are duplicated")
+ if previous_task_id is not None and task_id <= previous_task_id:
+ raise ValueError(
+ "Stage-B result identity manifest rows are not in canonical task-ID order"
+ )
+ seen_manifest_ids.add(task_id)
+ previous_task_id = task_id
+ normalized_rows.append({"task_id": task_id, "sha256": row_sha256})
+ expected_rows = sorted(
+ (
+ {
+ "task_id": int(record["task_id"]),
+ "sha256": str(record["row_sha256"]),
+ }
+ for record in task_records
+ ),
+ key=lambda row: row["task_id"],
+ )
+ if normalized_rows != expected_rows:
raise ValueError("Stage-B result identity manifest rows do not match tasks")
content_hash = _require_sha256(
identity_dataset.get("content_manifest_sha256"),
diff --git a/tests/test_evaluate_rht_cqer_stage_b.py b/tests/test_evaluate_rht_cqer_stage_b.py
index b8c45c1..7809aea 100644
--- a/tests/test_evaluate_rht_cqer_stage_b.py
+++ b/tests/test_evaluate_rht_cqer_stage_b.py
@@ -38,8 +38,8 @@ def _task_records() -> list[dict[str, int | str]]:
return [
{
"rank": stage_b.STAGE_B_OFFSET + index,
- "task_id": 10_000 + index,
- "row_sha256": digest,
+ "task_id": 10_000 + ((index * 17) % stage_b.STAGE_B_LIMIT),
+ "row_sha256": f"{index + 1:064x}",
"prompt_tokens": 3,
"code_tokens": 4,
"aligned_scored_tokens": 3,
@@ -562,10 +562,13 @@ def _result_identity_dataset(
"selection_namespace": resolver.MBPP_SELECTION_NAMESPACE,
"formatter_version": resolver.MBPP_FORMATTER_VERSION,
"row_count": stage_b.STAGE_B_LIMIT,
- "rows": [
- {"task_id": int(task["task_id"]), "sha256": task["row_sha256"]}
- for task in tasks
- ],
+ "rows": sorted(
+ (
+ {"task_id": int(task["task_id"]), "sha256": task["row_sha256"]}
+ for task in tasks
+ ),
+ key=lambda row: row["task_id"],
+ ),
}
content_hash = stage_b.mbpp_manifest_content_sha256(manifest)
token_hash = resolver.token_manifest_sha256(tasks)
@@ -1096,6 +1099,157 @@ def test_stage_b_result_loader_recomputes_the_exact_canonical_result(
assert verification["advancement_passed"] is True
assert verification["canonical_round_trip"] is True
assert verification["advancement_check_count"] == 8
+ identity = evidence["dataset"]["identity"]
+ task_ids = [record["task_id"] for record in identity["tasks"]]
+ manifest_ids = [row["task_id"] for row in identity["manifest"]["rows"]]
+ assert task_ids != manifest_ids
+ assert manifest_ids == sorted(task_ids)
+
+
+def _rehash_result_identity_dataset(identity: dict[str, object]) -> None:
+ manifest = identity["manifest"]
+ tasks = identity["tasks"]
+ assert isinstance(manifest, dict)
+ assert isinstance(tasks, list)
+ content_hash = stage_b.mbpp_manifest_content_sha256(manifest)
+ identity["content_manifest_sha256"] = content_hash
+ identity["token_manifest_sha256"] = (
+ stage_b.identity_resolver.token_manifest_sha256(tasks)
+ )
+ identity["ordered_identity_sha256"] = (
+ stage_b.identity_resolver.ordered_identity_sha256(
+ content_manifest_sha256=content_hash,
+ task_records=tasks,
+ )
+ )
+
+
+def test_stage_b_result_identity_rejects_swapped_manifest_hashes() -> None:
+ identity = _result_identity_dataset(_task_records())
+ manifest = identity["manifest"]
+ assert isinstance(manifest, dict)
+ rows = manifest["rows"]
+ assert isinstance(rows, list)
+ rows[0]["sha256"], rows[1]["sha256"] = rows[1]["sha256"], rows[0]["sha256"]
+ _rehash_result_identity_dataset(identity)
+
+ with pytest.raises(ValueError, match="manifest rows do not match tasks"):
+ stage_b._validate_result_identity_dataset(identity) # noqa: SLF001
+
+
+@pytest.mark.parametrize("mutation", ["missing", "duplicate", "extra"])
+def test_stage_b_result_identity_rejects_manifest_row_set_drift(
+ mutation: str,
+) -> None:
+ identity = _result_identity_dataset(_task_records())
+ manifest = identity["manifest"]
+ assert isinstance(manifest, dict)
+ rows = manifest["rows"]
+ assert isinstance(rows, list)
+ if mutation == "missing":
+ rows.pop()
+ elif mutation == "duplicate":
+ rows[1] = copy.deepcopy(rows[0])
+ else:
+ rows.append({"task_id": 99_999, "sha256": "f" * 64})
+ _rehash_result_identity_dataset(identity)
+
+ with pytest.raises(ValueError, match="manifest rows|manifest task IDs"):
+ stage_b._validate_result_identity_dataset(identity) # noqa: SLF001
+
+
+def test_stage_b_result_identity_rejects_unique_unknown_manifest_task_id() -> None:
+ identity = _result_identity_dataset(_task_records())
+ manifest = identity["manifest"]
+ assert isinstance(manifest, dict)
+ rows = manifest["rows"]
+ assert isinstance(rows, list)
+ rows[-1]["task_id"] = 99_999
+ _rehash_result_identity_dataset(identity)
+
+ with pytest.raises(ValueError, match="manifest rows do not match tasks"):
+ stage_b._validate_result_identity_dataset(identity) # noqa: SLF001
+
+
+@pytest.mark.parametrize("field_drift", ["missing", "extra"])
+def test_stage_b_result_identity_rejects_manifest_row_field_drift(
+ field_drift: str,
+) -> None:
+ identity = _result_identity_dataset(_task_records())
+ manifest = identity["manifest"]
+ assert isinstance(manifest, dict)
+ rows = manifest["rows"]
+ assert isinstance(rows, list)
+ if field_drift == "missing":
+ del rows[0]["sha256"]
+ else:
+ rows[0]["unexpected"] = "field"
+ _rehash_result_identity_dataset(identity)
+
+ with pytest.raises(ValueError, match="manifest row 0 fields drifted"):
+ stage_b._validate_result_identity_dataset(identity) # noqa: SLF001
+
+
+def test_stage_b_result_identity_rejects_invalid_manifest_sha256() -> None:
+ identity = _result_identity_dataset(_task_records())
+ manifest = identity["manifest"]
+ assert isinstance(manifest, dict)
+ rows = manifest["rows"]
+ assert isinstance(rows, list)
+ rows[0]["sha256"] = "not-a-sha256"
+ _rehash_result_identity_dataset(identity)
+
+ with pytest.raises(ValueError, match="manifest row 0.*SHA-256"):
+ stage_b._validate_result_identity_dataset(identity) # noqa: SLF001
+
+
+def test_stage_b_result_identity_rejects_boolean_manifest_task_id() -> None:
+ identity = _result_identity_dataset(_task_records())
+ manifest = identity["manifest"]
+ assert isinstance(manifest, dict)
+ rows = manifest["rows"]
+ assert isinstance(rows, list)
+ rows[0]["task_id"] = True
+ _rehash_result_identity_dataset(identity)
+
+ with pytest.raises(ValueError, match="manifest row 0 task_id"):
+ stage_b._validate_result_identity_dataset(identity) # noqa: SLF001
+
+
+def test_stage_b_result_identity_rejects_noncanonical_manifest_order() -> None:
+ identity = _result_identity_dataset(_task_records())
+ manifest = identity["manifest"]
+ assert isinstance(manifest, dict)
+ rows = manifest["rows"]
+ assert isinstance(rows, list)
+ rows[0], rows[1] = rows[1], rows[0]
+ _rehash_result_identity_dataset(identity)
+
+ with pytest.raises(ValueError, match="canonical task-ID order"):
+ stage_b._validate_result_identity_dataset(identity) # noqa: SLF001
+
+
+def test_stage_b_result_identity_rejects_rehashed_task_reorder() -> None:
+ identity = _result_identity_dataset(_task_records())
+ tasks = identity["tasks"]
+ assert isinstance(tasks, list)
+ tasks[0], tasks[1] = tasks[1], tasks[0]
+ identity["ordered_task_ids"] = [task["task_id"] for task in tasks]
+ _rehash_result_identity_dataset(identity)
+
+ with pytest.raises(ValueError, match="ordered window"):
+ stage_b._validate_result_identity_dataset(identity) # noqa: SLF001
+
+
+def test_stage_b_result_identity_rejects_task_row_hash_tamper() -> None:
+ identity = _result_identity_dataset(_task_records())
+ tasks = identity["tasks"]
+ assert isinstance(tasks, list)
+ tasks[0]["row_sha256"] = "f" * 64
+ _rehash_result_identity_dataset(identity)
+
+ with pytest.raises(ValueError, match="manifest rows do not match tasks"):
+ stage_b._validate_result_identity_dataset(identity) # noqa: SLF001
def test_stage_b_result_loader_authenticates_an_exact_negative_result(
From 6c0fbe8735f3a390c3dedf0da71b6bab784a4a91 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Sun, 26 Jul 2026 14:40:31 +0800
Subject: [PATCH 21/22] research: publish authenticated RHT-CQER Stage B result
---
README.md | 74 +-
assets/experiment009-stage-b-overview.svg | 96 +++
assets/experiment009-stage-b-paired.svg | 192 +++++
...t009-rht-cqer-stage-b-result-manifest.json | 121 +++
research/CLAIM_BOUNDARY.md | 25 +-
research/EXPERIMENT_009_STAGE_B_IDENTITY.md | 15 +-
research/EXPERIMENT_009_STAGE_B_RESULT.md | 126 ++++
...RIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md | 112 +++
research/STATUS.md | 49 +-
scripts/generate_readme_assets.py | 714 +++++++++++++++++-
tests/test_generate_readme_assets.py | 387 ++++++++++
tests/test_transition_observer.py | 6 +-
12 files changed, 1872 insertions(+), 45 deletions(-)
create mode 100644 assets/experiment009-stage-b-overview.svg
create mode 100644 assets/experiment009-stage-b-paired.svg
create mode 100644 evidence/experiment009-rht-cqer-stage-b-result-manifest.json
create mode 100644 research/EXPERIMENT_009_STAGE_B_RESULT.md
create mode 100644 research/EXPERIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md
create mode 100644 tests/test_generate_readme_assets.py
diff --git a/README.md b/README.md
index 8ee6170..cc06886 100644
--- a/README.md
+++ b/README.md
@@ -11,9 +11,10 @@
- Quickstart ·
+ Quickstart ·
Storage ·
- Evidence ·
+ v0.2 evidence ·
+ Stage B ·
Compatibility ·
Reproduce
@@ -23,9 +24,16 @@ recurrent matrix states used by Qwen3.5 Gated DeltaNet layers. Pass its cache to
ordinary eager Transformers model calls to keep those states as grouped INT4 or
INT8 payloads between calls.
-Its frozen v0.2 layout passed a 500-task held-out MBPP teacher-forced fidelity
-protocol: task-macro excess NLL was 72.75% lower than uniform INT4 while the
-persistent recurrent state occupied exactly 2,564,096 resident bytes.
+Its frozen v0.2 layout passed a 500-task held-out MBPP teacher-forced
+recurrent-state fidelity protocol. Relative to uniform INT4, task-macro excess
+NLL above the matched FP32-state reference was 72.75% lower while the packed
+persistent recurrent state—including payloads, FP16 scales, and precision
+masks—occupied exactly 2,564,096 resident bytes.
+
+The experimental v0.3 RHT-CQER-32 method has now also passed its separate
+32-task development gate: aligned excess NLL was 52.73% lower than CQER-32 at
+the same packed-state and selector byte counts. That newer result is
+development evidence, not held-out confirmation.
It currently targets
[`Qwen/Qwen3.5-0.8B-Base`](https://huggingface.co/Qwen/Qwen3.5-0.8B-Base).
@@ -36,11 +44,13 @@ I built and maintain RecurQuant as an open research project. —
[Muhammad Labeeb Aryan](https://github.com/Labeeb2339). Licensed under
[Apache-2.0](LICENSE).
-## 60-second setup
+## Quickstart
-The commands are short; the first run still needs to download the pinned model
-and tokenizer. Python 3.11 and a CUDA GPU are recommended for the evaluated
-path.
+This installs the public v0.2 alpha from its frozen tag. The first model-backed
+run downloads the pinned model and tokenizer. Python 3.11 and a CUDA GPU match
+the evaluated path; `recurquant demo` uses synthetic states and does not
+download a model. RHT-CQER-32 remains an experimental research path rather
+than the default package policy.
Windows PowerShell:
@@ -199,6 +209,37 @@ Important boundaries:
It does not support generated-code quality, speed, peak memory, whole-model
memory, cross-model generality, or a breakthrough claim.
+## Experiment 009 Stage-B development
+
+RHT-CQER-32 applies a deterministic right-side randomized Hadamard transform
+inside each existing recurrent-state row group before the same physical Q4/Q8
+packing used by CQER-32. The transform does not change the frozen 1,976-row
+precision allocation or storage contract: both methods use 2,564,096 packed
+state bytes and 2,711,552 resident bytes including the query-energy selector.
+
+On the preregistered 32-task ranked MBPP `[32, 64)` development window,
+RHT-CQER-32 passed all eight frozen advancement checks. Task-macro aligned
+excess NLL fell from `0.323944` to `0.153129`, a **52.73% reduction**.
+Aggregate local recurrent-state reconstruction SSE fell from `36,409.363073`
+to `15,345.844948`, a **57.85% reduction**.
+
+
+
+RHT-CQER-32 had lower excess NLL on 27 of 32 tasks, with no ties. The paired
+CQER-minus-RHT improvement was `0.170815` nats/token and its frozen
+10,000-sample paired 95% bootstrap interval was `[0.116082, 0.229438]`.
+
+
+
+This is positive development evidence on one pinned model and task window, not
+held-out confirmation for RHT-CQER-32. Randomized Hadamard quantization is
+prior art, and the current Python implementation has no fused-kernel, latency,
+peak-memory, cross-model, or independent external-reproduction result. See the
+[full Stage-B result](research/EXPERIMENT_009_STAGE_B_RESULT.md),
+[verification receipt](research/EXPERIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md),
+and
+[machine-readable release manifest](evidence/experiment009-rht-cqer-stage-b-result-manifest.json).
+
## Scope
The supported public surface is deliberately narrow:
@@ -226,9 +267,12 @@ the held-out confirmation and beat all three tested same-byte random placements.
That is a confirmed case study, not proof of novelty or general superiority.
Q-Mamba already studies 4-bit persistent Mamba2 states, Quamba2 quantizes cached
SSM states, and other mixed-precision and replay systems overlap parts of this
-design space. RecurQuant currently has no fused packed kernel or measured speed
-claim. I therefore do not present this release as a breakthrough, a whole-model
-memory reduction, or a cross-model result. See the
+design space. Experiment 009 adds a positive 32-task development result for a
+known right-RHT codec composed with CQER-32, but it is not a new confirmation
+result or evidence that Hadamard quantization is new. RecurQuant currently has
+no fused packed kernel or measured speed claim. I therefore do not present this
+release as a breakthrough, a whole-model memory reduction, or a cross-model
+result. See the
[claim boundary](research/CLAIM_BOUNDARY.md) and
[prior-art review](research/PRIOR_ART.md) for the exact comparison.
@@ -244,6 +288,12 @@ memory reduction, or a cross-model result. See the
- [MBPP development report](research/DEVELOPMENT_002.md)
- [Current research status](research/STATUS.md)
- [CORA-C2 development result](research/EXPERIMENT_008_RESULT.md)
+- [Experiment 009 frozen protocol](research/EXPERIMENT_009_RHT_CQER_PROTOCOL.md)
+- [Experiment 009 Stage-A result](research/EXPERIMENT_009_STAGE_A_RESULT.md)
+- [Experiment 009 Stage-B identity freeze](research/EXPERIMENT_009_STAGE_B_IDENTITY.md)
+- [Experiment 009 Stage-B result](research/EXPERIMENT_009_STAGE_B_RESULT.md)
+- [Experiment 009 verification receipt](research/EXPERIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md)
+- [Experiment 009 release manifest](evidence/experiment009-rht-cqer-stage-b-result-manifest.json)
- [Claim boundary](research/CLAIM_BOUNDARY.md) and
[prior-art review](research/PRIOR_ART.md)
- [Failed proxy signals and empirical-sensitivity pivot](research/EXPERIMENT_001_SIGNAL_PIVOT.md)
diff --git a/assets/experiment009-stage-b-overview.svg b/assets/experiment009-stage-b-overview.svg
new file mode 100644
index 0000000..1711c2a
--- /dev/null
+++ b/assets/experiment009-stage-b-overview.svg
@@ -0,0 +1,96 @@
+
+
diff --git a/assets/experiment009-stage-b-paired.svg b/assets/experiment009-stage-b-paired.svg
new file mode 100644
index 0000000..c5dc875
--- /dev/null
+++ b/assets/experiment009-stage-b-paired.svg
@@ -0,0 +1,192 @@
+
+
diff --git a/evidence/experiment009-rht-cqer-stage-b-result-manifest.json b/evidence/experiment009-rht-cqer-stage-b-result-manifest.json
new file mode 100644
index 0000000..11ee796
--- /dev/null
+++ b/evidence/experiment009-rht-cqer-stage-b-result-manifest.json
@@ -0,0 +1,121 @@
+{
+ "artifact_kind": "recurquant_experiment009_stage_b_release_manifest",
+ "schema_version": 1,
+ "release": {
+ "repository": "Labeeb2339/recurquant",
+ "tag": "experiment009-stage-b-cdc603b",
+ "url": "https://github.com/Labeeb2339/recurquant/releases/tag/experiment009-stage-b-cdc603b",
+ "assets": {
+ "result_zip": {
+ "filename": "experiment009-rht-cqer-stage-b-result-cdc603b.json.zip",
+ "bytes": 11646686,
+ "sha256": "e0d4d6fbf6eb308660715365f76e90f9d22d8f7605dcd16be6388b878c6e9350",
+ "url": "https://github.com/Labeeb2339/recurquant/releases/download/experiment009-stage-b-cdc603b/experiment009-rht-cqer-stage-b-result-cdc603b.json.zip"
+ },
+ "checksums": {
+ "filename": "SHA256SUMS.txt",
+ "bytes": 238,
+ "sha256": "0675292507bcc8754ee895482710b670299a576f246aa7ad82cd4bb2d4eed9fe",
+ "url": "https://github.com/Labeeb2339/recurquant/releases/download/experiment009-stage-b-cdc603b/SHA256SUMS.txt"
+ }
+ }
+ },
+ "result": {
+ "artifact_kind": "recurquant_rht_cqer32_stage_b_development",
+ "raw_filename": "experiment009-rht-cqer-stage-b-result-cdc603b.json",
+ "raw_bytes": 167987192,
+ "raw_sha256": "57b341d37871a52977b1ff89709864f3e6e0927154e5b2b9275b6f374953fe05",
+ "canonical_evidence_sha256": "2b15c732e894510f0421a22fcca9435e035dd15c4d3b50e2fcb733c0d1df58a8",
+ "created_at_utc": "2026-07-26T05:46:49.671275+00:00",
+ "frozen_source_commit": "cdc603b6b8462e42e98495c5ec0610faa9473721",
+ "evaluation_commit": "8168c469b252bc9e707e51feaeccc3f940f190bb",
+ "verifier_fix_commit": "2075154e642c39a14432adcc8ec32da679b534d3",
+ "identity_artifact": "evidence/experiment009-rht-cqer-stage-b-identity-cdc603b.json",
+ "identity_file_sha256": "f94e60adb6d9ab51b5894e3ad8b3c0064a8e69721e3df24f90a81f0b4009fe19",
+ "identity_canonical_evidence_sha256": "4074db6860d3f36dff1a13b7945d0c5c5d619ee208f0fdb35108defb9512c343"
+ },
+ "verification": {
+ "strict_loader_passed": true,
+ "canonical_round_trip": true,
+ "integrity_passed": true,
+ "advancement_passed": true,
+ "advancement_check_count": 8,
+ "task_count": 32,
+ "bootstrap_samples": 10000,
+ "bootstrap_seed": 2339,
+ "verification_receipt": "research/EXPERIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md"
+ },
+ "graph_assets": {
+ "source_artifact_sha256": "57b341d37871a52977b1ff89709864f3e6e0927154e5b2b9275b6f374953fe05",
+ "canonical_evidence_sha256": "2b15c732e894510f0421a22fcca9435e035dd15c4d3b50e2fcb733c0d1df58a8",
+ "original_result_commit": "8168c469b252bc9e707e51feaeccc3f940f190bb",
+ "verifier_fix_commit": "2075154e642c39a14432adcc8ec32da679b534d3",
+ "artifact_kind": "recurquant_rht_cqer32_stage_b_development",
+ "integrity_passed": true,
+ "advancement_gate_passed": true,
+ "assets": {
+ "assets/experiment009-stage-b-overview.svg": {
+ "bytes": 7471,
+ "sha256": "8ce3a6d4a0976382831060d3f20c5826384b0e7d813984b9fbcbb0f94dc14af0",
+ "chart": "experiment009-stage-b-overview"
+ },
+ "assets/experiment009-stage-b-paired.svg": {
+ "bytes": 18692,
+ "sha256": "b16d0e3304cbf534f27819b68c0b66c4c4037edbf60e7d7165db2f886e94c594",
+ "chart": "experiment009-stage-b-paired-cqer-minus-rht"
+ }
+ }
+ },
+ "graph_data": {
+ "macro_aligned_excess_nll": [
+ {
+ "method": "target_directional_fisher_difference_int4",
+ "label": "Static Fisher",
+ "value": 0.41796037927269936
+ },
+ {
+ "method": "adaptive_mse_target_directional_fisher_quota",
+ "label": "Adaptive MSE",
+ "value": 0.4453618936240673
+ },
+ {
+ "method": "query_ema32_weighted_mse_target_fisher_quota",
+ "label": "CQER-32",
+ "value": 0.3239440377801657
+ },
+ {
+ "method": "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+ "label": "RHT-CQER-32",
+ "value": 0.15312867239117622
+ }
+ ],
+ "cqer_vs_rht": {
+ "macro_excess_nll_relative_reduction": 0.5272989944791263,
+ "paired_mean_improvement": 0.17081536538898945,
+ "paired_95pct_confidence_interval": [
+ 0.11608229021076114,
+ 0.22943802918307482
+ ],
+ "rht_task_wins": 27,
+ "ties": 0,
+ "aggregate_state_sse": {
+ "cqer32": 36409.363072871,
+ "rht_cqer32": 15345.844948473503,
+ "relative_reduction": 0.5785192694044171
+ },
+ "macro_mean_kl": {
+ "cqer32": 0.32888971641659737,
+ "rht_cqer32": 0.19350104196928442
+ },
+ "macro_cvar95_kl": {
+ "cqer32": 2.046657746657729,
+ "rht_cqer32": 1.335989330895245
+ },
+ "macro_top1_agreement": {
+ "cqer32": 0.8260002993047237,
+ "rht_cqer32": 0.8794985339045525
+ }
+ }
+ },
+ "claim_boundary": "This is authenticated 32-task development evidence for one frozen method, pinned model, and MBPP window. It is not confirmation, novelty, speed, state-of-the-art, deployment, or breakthrough evidence."
+}
diff --git a/research/CLAIM_BOUNDARY.md b/research/CLAIM_BOUNDARY.md
index 7856b1b..285ee5f 100644
--- a/research/CLAIM_BOUNDARY.md
+++ b/research/CLAIM_BOUNDARY.md
@@ -92,12 +92,25 @@ it as a contribution.
Experiment 009 freezes RHT-CQER-32, a deterministic right-side randomized
Hadamard codec composed with CQER-32. Its one-task Stage-A screen passed every
frozen gate, reducing state SSE by `59.97%` and aligned excess NLL by `58.59%`
-at equal packed-state and selector bytes. That result authorizes a new
-development run; it does not establish generalization or confirmation. The
-codec regenerates SHA-256-derived signs and materializes FP32 transform
-workspaces in the current Python path. The result does not establish novelty or
-speed because randomized Hadamard and rotation quantizers are prior art and the
-implementation has no fused-kernel benchmark.
+at equal packed-state and selector bytes.
+
+Its separately authenticated 32-task Stage-B development run passed all eight
+frozen advancement checks. Relative to CQER-32, task-macro aligned excess NLL
+fell from `0.323944` to `0.153129` (`52.73%`), the paired 95% interval for
+CQER-minus-RHT improvement was `[0.116082, 0.229438]`, and RHT-CQER-32 won 27
+of 32 strict task comparisons. Aggregate local recurrent-state reconstruction
+SSE fell from `36,409.363073` to `15,345.844948` (`57.85%`). Macro mean KL and
+CVaR95 KL were lower and top-1 agreement was higher. Both candidates retained
+the exact `2,564,096` packed-state bytes and `2,711,552` selector-aware
+resident bytes.
+
+That is a positive development result for one method, model revision, dataset
+construction, and ranked MBPP window. It is not held-out confirmation for
+RHT-CQER-32, cross-model evidence, generated-code correctness, or an
+end-to-end systems result. The codec regenerates SHA-256-derived signs and
+materializes FP32 transform workspaces in the current Python path. The result
+does not establish novelty or speed because randomized Hadamard and rotation
+quantizers are prior art and the implementation has no fused-kernel benchmark.
## Claims prohibited without new evidence
diff --git a/research/EXPERIMENT_009_STAGE_B_IDENTITY.md b/research/EXPERIMENT_009_STAGE_B_IDENTITY.md
index e975ef5..c69f638 100644
--- a/research/EXPERIMENT_009_STAGE_B_IDENTITY.md
+++ b/research/EXPERIMENT_009_STAGE_B_IDENTITY.md
@@ -99,9 +99,14 @@ artifact creation. The successful invocation used the exact Stage-A runtime
listed above. No dependency, seed, threshold, task window, selector, or source
file was changed after the rejection.
-## Next decision
+## Historical authorization
-This identity authorizes one frozen Stage-B development evaluation. The result
-must be preserved whether the eight advancement gates pass or fail. No
-threshold, seed, method, task, or source file may be changed after observing
-the result.
+At the time of this freeze, the identity authorized one Stage-B development
+evaluation whose result had to be preserved whether the eight advancement
+gates passed or failed. No threshold, seed, method, task, or source file could
+be changed after observing the result.
+
+That evaluation is now complete. The authenticated outcome is recorded in the
+[Stage-B result](EXPERIMENT_009_STAGE_B_RESULT.md), and the immutable-artifact
+audit is recorded in the
+[verification receipt](EXPERIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md).
diff --git a/research/EXPERIMENT_009_STAGE_B_RESULT.md b/research/EXPERIMENT_009_STAGE_B_RESULT.md
new file mode 100644
index 0000000..1f98c21
--- /dev/null
+++ b/research/EXPERIMENT_009_STAGE_B_RESULT.md
@@ -0,0 +1,126 @@
+# Experiment 009 Stage-B result: RHT-CQER-32 advances
+
+> **Status: all eight frozen Stage-B development gates passed.**
+>
+> On the authenticated 32-task MBPP development window, RHT-CQER-32 lowered
+> task-macro aligned excess NLL by `52.73%` and aggregate local
+> recurrent-state reconstruction SSE by `57.85%` relative to CQER-32 at the
+> exact same packed-state and selector byte counts. This is development
+> evidence for one pinned model and task window. It is not confirmation,
+> novelty, a speed result, state-of-the-art evidence, or a breakthrough claim.
+
+Date recorded: 2026-07-26
+
+## Authenticated artifact
+
+I preserved the complete raw result as a compressed GitHub release asset
+instead of adding 168 MB of repeated state-error records to Git history. The
+small committed
+[release manifest](../evidence/experiment009-rht-cqer-stage-b-result-manifest.json)
+binds the downloadable artifact, its checksums, the frozen identity, the
+evaluation commit, and the verifier receipt.
+
+| Field | Value |
+| --- | --- |
+| Artifact kind | `recurquant_rht_cqer32_stage_b_development` |
+| Raw artifact | `experiment009-rht-cqer-stage-b-result-cdc603b.json` |
+| Raw bytes | `167,987,192` |
+| Raw file SHA-256 | `57b341d37871a52977b1ff89709864f3e6e0927154e5b2b9275b6f374953fe05` |
+| Canonical evidence SHA-256 | `2b15c732e894510f0421a22fcca9435e035dd15c4d3b50e2fcb733c0d1df58a8` |
+| Created at | `2026-07-26T05:46:49.671275+00:00` |
+| Frozen evaluation commit | `8168c469b252bc9e707e51feaeccc3f940f190bb` |
+| Corrected verifier commit | `2075154e642c39a14432adcc8ec32da679b534d3` |
+| Model | `Qwen/Qwen3.5-0.8B-Base` at `dc7cdfe2ee4154fa7e30f5b51ca41bfa40174e68` |
+| Development identity | ranked MBPP window `[32, 64)`, 32 tasks |
+| Primary scored tokens | 1,956 aligned code tokens |
+
+The artifact's repository commit, source hashes, runtime, model revision,
+ordered task identity, token manifest, selector artifacts, row plan, sign
+schedule, methods, thresholds, storage contract, per-task results, raw state
+records, aggregate metrics, bootstrap interval, integrity decision, and eight
+advancement checks all passed strict semantic validation. The
+[verification receipt](EXPERIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md) records
+the interrupted attempts and the post-write verifier correction without
+rewriting the artifact or rerunning the model.
+
+## Primary result
+
+The primary metric is the unweighted mean of each task's aligned excess
+next-token NLL above its matched FP32 recurrent-state reference.
+
+| Metric | CQER-32 | RHT-CQER-32 | Change |
+| --- | ---: | ---: | ---: |
+| Task-macro aligned excess NLL | `0.323944` | `0.153129` | **52.73% lower** |
+| Task-macro mean KL | `0.328890` | `0.193501` | lower |
+| Task-macro CVaR95 KL | `2.046658` | `1.335989` | lower |
+| Task-macro top-1 agreement | `0.826000` | `0.879499` | `+0.053498` |
+| Aggregate local state SSE | `36,409.363073` | `15,345.844948` | **57.85% lower** |
+
+
+
+The paired task-macro improvement was `0.170815` nats/token. A 10,000-sample
+paired task bootstrap with frozen seed `2339` produced a two-sided 95%
+equal-tailed interval of `[0.116082, 0.229438]`. RHT-CQER-32 had strictly lower
+excess NLL on 27 of 32 tasks, with no ties.
+
+
+
+Five tasks favored CQER-32. The largest RHT-minus-CQER task disadvantage was
+`0.077088` nats/token on task `607`, below the frozen `0.25` ceiling. The
+paired chart keeps those negative cases visible instead of hiding them behind
+the aggregate.
+
+## Frozen gate decision
+
+| Frozen advancement check | Required | Observed | Result |
+| --- | ---: | ---: | :---: |
+| Macro excess-NLL reduction | at least 20% | `52.7299%` | pass |
+| Paired 95% lower bound | above 0 | `0.116082` | pass |
+| Strict task-level wins | at least 20 of 32 | `27/32`, 0 ties | pass |
+| Macro mean KL | lower | `0.328890 -> 0.193501` | pass |
+| Macro CVaR95 KL | no higher | `2.046658 -> 1.335989` | pass |
+| Macro top-1 disadvantage | at most 0.005 | `-0.053498` | pass |
+| Maximum task NLL disadvantage | at most 0.25 | `0.077088` | pass |
+| Aggregate local state-SSE reduction | at least 50% | `57.8519%` | pass |
+
+All eight advancement checks and every prerequisite integrity check passed.
+Under the frozen protocol, RHT-CQER-32 advances beyond this development stage.
+The result does not authorize retuning the transform seed, thresholds, task
+window, selector, or method name.
+
+## Exact storage and numerical checks
+
+CQER-32 and RHT-CQER-32 both used the same 1,976 promoted Q8 rows:
+
+| Component | Bytes |
+| --- | ---: |
+| Q4/Q8 payloads | 2,485,760 |
+| FP16 scales | 73,728 |
+| precision masks | 4,608 |
+| **packed recurrent state** | **2,564,096** |
+| FP32 query-energy selector | 147,456 |
+| **resident bytes including selector** | **2,711,552** |
+
+The state-SSE comparison sums local codec reconstruction error over 35,784
+matched recurrent-state records and 9,380,560,896 elements per method. It is a
+write-micro reconstruction metric against each method's own pre-pack source
+state, not an end-to-end peak-memory or latency measurement.
+
+The independent dense NumPy reference matched the production right-RHT encode
+within `9.5367e-7`, matched physical packing exactly, derived the exact frozen
+sign schedule, and passed its preregistered thresholds. The production inverse
+relative L2 was `1.1468e-7`, below `3e-7`.
+
+## Decision boundary
+
+This 32-task result is a positive, authenticated development result. It does
+not replace the separate 500-task held-out v0.2 confirmation, and it is not a
+new held-out confirmation for RHT-CQER-32. Ranked MBPP window `[8, 16)` stayed
+outside application-level content, tokenization, model, and evaluation access.
+
+Randomized Hadamard and rotation quantizers are established prior art. The
+current Python implementation regenerates signs and materializes FP32
+transform workspaces; it has no fused-kernel, latency, throughput, peak-memory,
+long-context, cross-model, or independent external reproduction result. I
+therefore report exactly the frozen development finding and no broader
+novelty, deployment, state-of-the-art, speed, or breakthrough claim.
diff --git a/research/EXPERIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md b/research/EXPERIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md
new file mode 100644
index 0000000..a71fee9
--- /dev/null
+++ b/research/EXPERIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md
@@ -0,0 +1,112 @@
+# Experiment 009 Stage-B verification receipt
+
+> **Status: the original Stage-B artifact is immutable and passes the
+> corrected strict semantic verifier.**
+>
+> The correction changed only the validator's interpretation of canonical
+> manifest order. It did not change the artifact, method, data, model run,
+> metrics, thresholds, bootstrap, or gate decision.
+
+Recorded: 2026-07-26
+
+## Artifact under verification
+
+```text
+raw artifact:
+experiment009-rht-cqer-stage-b-result-cdc603b.json
+
+raw file SHA-256:
+57b341d37871a52977b1ff89709864f3e6e0927154e5b2b9275b6f374953fe05
+
+canonical evidence SHA-256:
+2b15c732e894510f0421a22fcca9435e035dd15c4d3b50e2fcb733c0d1df58a8
+
+evaluation commit:
+8168c469b252bc9e707e51feaeccc3f940f190bb
+
+corrected verifier commit:
+2075154e642c39a14432adcc8ec32da679b534d3
+```
+
+The
+[release manifest](../evidence/experiment009-rht-cqer-stage-b-result-manifest.json)
+binds these identifiers to the compressed public artifact and its checksum.
+
+## Run and interruption record
+
+I kept three non-result events separate from the authenticated result:
+
+1. An initial invocation used the wrong local Python environment. The frozen
+ runtime contract rejected it before dataset access, tokenizer/model loading,
+ or artifact creation.
+2. A later shell invocation had a 14-second terminal timeout, which terminated
+ the partial evaluator process. I verified that no Python process remained,
+ no output artifact existed, and no quality metric had been exposed. I then
+ restarted the identical frozen command as a hidden background process.
+3. The completed evaluator atomically wrote the result artifact, then its
+ post-write strict loader falsely rejected the valid canonical content
+ manifest. The artifact already existed at the raw and canonical hashes
+ above. I did not rerun the model or alter that artifact.
+
+The wrong-runtime rejection and timed-out partial process revealed no result
+that could be used for tuning or retry selection. The successful model
+evaluation ran against the committed identity and exact frozen source at
+commit `8168c469b252bc9e707e51feaeccc3f940f190bb`.
+
+## Validator finding and correction
+
+The artifact carries two intentional orders:
+
+- task result records stay in the exact frozen ranked-window order; and
+- the canonical content-manifest rows are sorted by integer task ID before
+ hashing.
+
+The original post-write loader incorrectly expected the canonical manifest in
+ranked-window order. That contradicted the resolver's canonicalization rule
+and caused a false rejection after a valid artifact had already been written.
+
+Commit `2075154e642c39a14432adcc8ec32da679b534d3` corrected that one validator
+assumption. The loader now independently requires:
+
+- exact ranked-window order for task records;
+- exact task-ID-sorted order for canonical manifest rows;
+- exact `(task_id, row_sha256)` projection between those two representations;
+- exact content-manifest, token-manifest, and ordered-identity hashes; and
+- rejection of missing, duplicate, extra, reordered, or hash-mutated rows.
+
+The fix therefore narrows acceptance to the protocol's actual canonical form;
+it does not relax identity authentication.
+
+## Independent audit
+
+The corrected verifier authenticated the immutable artifact without executing
+another model forward pass. The audit:
+
+- recomputed the canonical wrapper hash and complete production schema;
+- authenticated the Stage-A and Stage-B identity artifacts;
+- compared every one of the 37 recorded source-file hashes with the exact file
+ bytes at evaluation commit `8168c469b252bc9e707e51feaeccc3f940f190bb`;
+- authenticated all imported repository modules and the clean, stable
+ evaluation commit;
+- revalidated the runtime, model revision, dataset access boundary, ordered
+ tasks, token counts, row plan, selector bindings, sign schedule, physical
+ storage, quotas, and state-record coverage;
+- recomputed task and macro metrics, the 10,000-sample paired bootstrap, local
+ state-SSE aggregates, all integrity checks, and all eight advancement checks;
+ and
+- passed the focused canonical-order and tamper test suite.
+
+The strict loader accepts the original raw file SHA-256
+`57b341d37871a52977b1ff89709864f3e6e0927154e5b2b9275b6f374953fe05`
+and canonical evidence SHA-256
+`2b15c732e894510f0421a22fcca9435e035dd15c4d3b50e2fcb733c0d1df58a8`.
+No evidence field was reconstructed, deleted, reordered, or rewritten to make
+the artifact pass.
+
+## Verification boundary
+
+This receipt establishes that the published artifact matches the frozen
+Experiment 009 Stage-B protocol and that its positive gate decision is
+recomputable from its recorded evidence. It does not turn a 32-task
+development result into confirmation, establish novelty, measure speed, or
+support a state-of-the-art, deployment, or breakthrough claim.
diff --git a/research/STATUS.md b/research/STATUS.md
index efc92fd..ef9939a 100644
--- a/research/STATUS.md
+++ b/research/STATUS.md
@@ -43,22 +43,36 @@ result is recorded in [`EXPERIMENT_008_RESULT.md`](EXPERIMENT_008_RESULT.md).
The independent verifier was not reached and ranked `[8, 16)` remains
protected.
-Experiment 009 now freezes RHT-CQER-32. Stage A is a one-task falsification
-screen on already-open task 666. It composes CQER-32 with a deterministic
+Experiment 009 tested RHT-CQER-32, which composes CQER-32 with a deterministic
orthonormal right-side Hadamard codec while preserving the exact Q4/Q8 packed
-state and selector byte counts. Stage A passed all nine frozen checks:
-closed-loop state SSE fell `59.97%`, aligned excess NLL fell `58.59%`, and
-aligned mean KL fell `31.19%` relative to CQER-32 while top-1 agreement and
-bytes were unchanged. The authenticated result is in
+state and selector byte counts. Its one-task Stage-A falsification screen on
+already-open task 666 passed all nine frozen checks: closed-loop state SSE
+fell `59.97%`, aligned excess NLL fell `58.59%`, and aligned mean KL fell
+`31.19%` relative to CQER-32 while top-1 agreement and bytes were unchanged.
+The authenticated screen is in
[`EXPERIMENT_009_STAGE_A_RESULT.md`](EXPERIMENT_009_STAGE_A_RESULT.md).
-This pass authorizes identity resolution for the still-unopened `[32, 64)`
-development window.
-The protocol is in
-[`EXPERIMENT_009_RHT_CQER_PROTOCOL.md`](EXPERIMENT_009_RHT_CQER_PROTOCOL.md).
-The public-stream application-level access boundary is fixed in
-[`EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md`](EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md)
-before Stage-B identity resolution.
-No Stage-B quality result exists yet, and `[8, 16)` remains protected.
+
+The separately frozen 32-task Stage-B development run then passed all eight
+advancement checks. Relative to CQER-32, task-macro aligned excess NLL fell
+from `0.323944` to `0.153129` (`52.73%`), with 27 of 32 strict task wins and a
+paired 95% bootstrap interval of `[0.116082, 0.229438]`. Aggregate local
+recurrent-state reconstruction SSE fell from `36,409.363073` to
+`15,345.844948` (`57.85%`). Mean KL and CVaR95 KL were lower, top-1 agreement
+was higher, and the exact `2,564,096` packed-state bytes plus `147,456`
+selector bytes were unchanged.
+
+The frozen protocol, committed identity, authenticated result, post-write
+verification record, and compact release manifest are:
+
+- [`EXPERIMENT_009_RHT_CQER_PROTOCOL.md`](EXPERIMENT_009_RHT_CQER_PROTOCOL.md)
+- [`EXPERIMENT_009_STAGE_B_IDENTITY.md`](EXPERIMENT_009_STAGE_B_IDENTITY.md)
+- [`EXPERIMENT_009_STAGE_B_RESULT.md`](EXPERIMENT_009_STAGE_B_RESULT.md)
+- [`EXPERIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md`](EXPERIMENT_009_STAGE_B_VERIFICATION_RECEIPT.md)
+- [`../evidence/experiment009-rht-cqer-stage-b-result-manifest.json`](../evidence/experiment009-rht-cqer-stage-b-result-manifest.json)
+
+The public-stream application-level access boundary remains fixed in
+[`EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md`](EXPERIMENT_009_DATA_ACCESS_CLARIFICATION.md).
+Ranked MBPP window `[8, 16)` remained protected.
In parallel, the repository now contains a correctness-first physical Q4/Q6/Q8
packer and an exact dynamic-programming allocator. Its corrected two-bit
@@ -73,9 +87,10 @@ rotation quantizers. CQER-32 cannot be described as the first query-aware
mixed-precision method, and RHT-CQER-32 cannot be described as the first
rotation-based quantizer.
-Stage A supports only a one-task development signal over CQER-32. No
-generalized v0.3 improvement, novelty, speed, or breakthrough claim is
-supported.
+Stage B supports a scoped positive development result for one frozen method,
+pinned model, and 32-task MBPP window. It is not held-out confirmation for
+RHT-CQER-32 and does not support a generalized v0.3, novelty, speed,
+state-of-the-art, deployment, or breakthrough claim.
## v0.2 confirmed release
diff --git a/scripts/generate_readme_assets.py b/scripts/generate_readme_assets.py
index c1042ea..e0c4d95 100644
--- a/scripts/generate_readme_assets.py
+++ b/scripts/generate_readme_assets.py
@@ -1,4 +1,4 @@
-"""Generate deterministic README charts from committed RecurQuant evidence.
+"""Generate deterministic README charts from authenticated RecurQuant evidence.
The script deliberately parses the source records instead of duplicating their
numbers. Run it without arguments to update the SVG files, or with ``--check``
@@ -14,6 +14,7 @@
import hashlib
import html
import json
+import math
import re
import sys
import xml.etree.ElementTree as ET
@@ -24,8 +25,33 @@
SOURCE = ROOT / "research" / "EXPERIMENT_002_SCALE_CORRECTION.md"
DEVELOPMENT_SOURCE = ROOT / "evidence" / "mbpp-v02-development.json"
CONFIRMATION_SOURCE = ROOT / "evidence" / "mbpp-v02-confirmation.json"
+STAGE_B_SOURCE = ROOT / "artifacts" / "experiment009-rht-cqer-stage-b-result-cdc603b.json"
+STAGE_B_MANIFEST = ROOT / "evidence" / "experiment009-rht-cqer-stage-b-result-manifest.json"
ASSETS = ROOT / "assets"
+STAGE_B_ARTIFACT_KIND = "recurquant_rht_cqer32_stage_b_development"
+STAGE_B_ARTIFACT_SHA256 = "57b341d37871a52977b1ff89709864f3e6e0927154e5b2b9275b6f374953fe05"
+STAGE_B_CANONICAL_SHA256 = "2b15c732e894510f0421a22fcca9435e035dd15c4d3b50e2fcb733c0d1df58a8"
+STAGE_B_RESULT_COMMIT = "8168c469b252bc9e707e51feaeccc3f940f190bb"
+STAGE_B_VERIFIER_FIX_COMMIT = "2075154e642c39a14432adcc8ec32da679b534d3"
+STAGE_B_RELEASE_DOWNLOAD = (
+ "https://github.com/Labeeb2339/recurquant/releases/download/"
+ "experiment009-stage-b-cdc603b/"
+ "experiment009-rht-cqer-stage-b-result-cdc603b.json.zip"
+)
+STAGE_B_GRAPH_ASSETS = {
+ "assets/experiment009-stage-b-overview.svg": ("experiment009-stage-b-overview"),
+ "assets/experiment009-stage-b-paired.svg": ("experiment009-stage-b-paired-cqer-minus-rht"),
+}
+STAGE_B_METHODS = (
+ "target_directional_fisher_difference_int4",
+ "adaptive_mse_target_directional_fisher_quota",
+ "query_ema32_weighted_mse_target_fisher_quota",
+ "right_rht_query_ema32_weighted_mse_target_fisher_quota",
+)
+STAGE_B_CQER_METHOD = "query_ema32_weighted_mse_target_fisher_quota"
+STAGE_B_RHT_METHOD = "right_rht_query_ema32_weighted_mse_target_fisher_quota"
+
def _capture(source: str, pattern: str, label: str) -> tuple[str, ...]:
match = re.search(pattern, source, flags=re.MULTILINE)
@@ -802,7 +828,650 @@ def _confirmation_svg(data: dict[str, object]) -> str:
"""
-def _outputs() -> dict[Path, str]:
+def _load_validated_stage_b_result(
+ path: Path,
+) -> tuple[dict[str, object], dict[str, object]]:
+ """Load Stage B through its strict canonical and semantic verifier."""
+
+ root_string = str(ROOT)
+ if root_string not in sys.path:
+ sys.path.insert(0, root_string)
+ from scripts.evaluate_rht_cqer_stage_b import ( # noqa: PLC0415
+ load_and_validate_stage_b_result_artifact,
+ )
+
+ return load_and_validate_stage_b_result_artifact(path)
+
+
+def _stage_b_data() -> dict[str, object]:
+ if not STAGE_B_SOURCE.is_file():
+ raise FileNotFoundError(
+ "The authenticated Experiment 009 Stage-B raw result is required to "
+ "generate its README assets. Download "
+ f"{STAGE_B_RELEASE_DOWNLOAD}, verify SHA256 "
+ f"{STAGE_B_ARTIFACT_SHA256}, and extract the JSON to "
+ f"{STAGE_B_SOURCE.relative_to(ROOT)}. A clean clone can still run "
+ "`python scripts/generate_readme_assets.py --check` against the "
+ "tracked release manifest."
+ )
+ # This call is intentionally first: no chart field is read until the complete
+ # canonical and semantic audit has succeeded.
+ evidence, verification = _load_validated_stage_b_result(STAGE_B_SOURCE)
+
+ expected_verification = {
+ "passed": True,
+ "integrity_passed": True,
+ "advancement_passed": True,
+ "task_count": 32,
+ "bootstrap_samples": 10_000,
+ "bootstrap_seed": 2339,
+ "advancement_check_count": 8,
+ "artifact_sha256": STAGE_B_ARTIFACT_SHA256,
+ "canonical_evidence_sha256": STAGE_B_CANONICAL_SHA256,
+ "canonical_round_trip": True,
+ }
+ if verification != expected_verification:
+ raise ValueError("Experiment 009 Stage-B verification record drifted")
+ if evidence.get("artifact_kind") != STAGE_B_ARTIFACT_KIND:
+ raise ValueError("Unexpected Experiment 009 Stage-B artifact kind")
+ if evidence.get("methods") != list(STAGE_B_METHODS):
+ raise ValueError("Experiment 009 Stage-B method order drifted")
+
+ repository = evidence.get("repository")
+ if not isinstance(repository, dict):
+ raise ValueError("Experiment 009 Stage-B repository record is missing")
+ if (
+ repository.get("commit") != STAGE_B_RESULT_COMMIT
+ or repository.get("stable_commit") is not True
+ ):
+ raise ValueError("Experiment 009 Stage-B result commit drifted")
+
+ integrity = evidence.get("stage_b_integrity")
+ gate = evidence.get("stage_b_gate")
+ if not isinstance(integrity, dict) or integrity.get("passed") is not True:
+ raise ValueError("Experiment 009 Stage-B integrity did not pass")
+ if not isinstance(gate, dict) or gate.get("passed") is not True:
+ raise ValueError("Experiment 009 Stage-B advancement gate did not pass")
+
+ dataset = evidence.get("dataset")
+ if not isinstance(dataset, dict) or not isinstance(dataset.get("identity"), dict):
+ raise ValueError("Experiment 009 Stage-B identity is missing")
+ ordered_task_ids = dataset["identity"].get("ordered_task_ids")
+ if (
+ not isinstance(ordered_task_ids, list)
+ or len(ordered_task_ids) != 32
+ or any(type(task_id) is not int for task_id in ordered_task_ids)
+ ):
+ raise ValueError("Experiment 009 Stage-B frozen task order drifted")
+
+ aggregates = evidence.get("aggregates")
+ per_task = evidence.get("per_task")
+ if (
+ not isinstance(aggregates, dict)
+ or set(aggregates) != set(STAGE_B_METHODS)
+ or not isinstance(per_task, dict)
+ or set(per_task) != set(STAGE_B_METHODS)
+ ):
+ raise ValueError("Experiment 009 Stage-B metrics do not match frozen methods")
+
+ macro_delta_nll: dict[str, float] = {}
+ for method in STAGE_B_METHODS:
+ aggregate = aggregates[method]
+ rows = per_task[method]
+ if not isinstance(aggregate, dict) or not isinstance(rows, list):
+ raise ValueError(f"Experiment 009 Stage-B {method} metrics are malformed")
+ if [row.get("task_id") for row in rows] != ordered_task_ids:
+ raise ValueError(f"Experiment 009 Stage-B {method} task order drifted")
+ value = aggregate.get("macro_delta_nll")
+ if type(value) not in {float, int} or not math.isfinite(float(value)):
+ raise ValueError(f"Experiment 009 Stage-B {method} macro NLL is invalid")
+ macro_delta_nll[method] = float(value)
+
+ state_error = evidence.get("state_error")
+ if not isinstance(state_error, dict) or not isinstance(
+ state_error.get("aggregates"),
+ dict,
+ ):
+ raise ValueError("Experiment 009 Stage-B state-error aggregates are missing")
+ state_aggregates = state_error["aggregates"]
+ if set(state_aggregates) != {STAGE_B_CQER_METHOD, STAGE_B_RHT_METHOD}:
+ raise ValueError("Experiment 009 Stage-B state-error method set drifted")
+ state_sse: dict[str, float] = {}
+ for method in (STAGE_B_CQER_METHOD, STAGE_B_RHT_METHOD):
+ record = state_aggregates[method]
+ if not isinstance(record, dict):
+ raise ValueError(f"Experiment 009 Stage-B {method} state error is malformed")
+ value = record.get("aggregate_state_sse")
+ if type(value) not in {float, int} or not math.isfinite(float(value)):
+ raise ValueError(f"Experiment 009 Stage-B {method} state SSE is invalid")
+ state_sse[method] = float(value)
+
+ cqer_rows = per_task[STAGE_B_CQER_METHOD]
+ rht_rows = per_task[STAGE_B_RHT_METHOD]
+ paired = []
+ for task_id, cqer_row, rht_row in zip(
+ ordered_task_ids,
+ cqer_rows,
+ rht_rows,
+ strict=True,
+ ):
+ cqer_value = float(cqer_row["delta_nll"])
+ rht_value = float(rht_row["delta_nll"])
+ improvement = cqer_value - rht_value
+ paired.append(
+ {
+ "task_id": task_id,
+ "cqer_delta_nll": cqer_value,
+ "rht_delta_nll": rht_value,
+ "cqer_minus_rht_delta_nll": improvement,
+ "outcome": ("win" if improvement > 0 else "loss" if improvement < 0 else "tie"),
+ }
+ )
+
+ wins = sum(point["outcome"] == "win" for point in paired)
+ ties = sum(point["outcome"] == "tie" for point in paired)
+ losses = sum(point["outcome"] == "loss" for point in paired)
+ bootstrap = evidence.get("paired_bootstrap_cqer_minus_rht_aligned_delta_nll")
+ if not isinstance(bootstrap, dict):
+ raise ValueError("Experiment 009 Stage-B paired bootstrap is missing")
+ mean_improvement = math.fsum(
+ float(point["cqer_minus_rht_delta_nll"]) for point in paired
+ ) / len(paired)
+ if (
+ bootstrap.get("paired_examples") != 32
+ or bootstrap.get("bootstrap_samples") != 10_000
+ or bootstrap.get("seed") != 2339
+ or bootstrap.get("confidence") != 0.95
+ or not math.isclose(
+ float(bootstrap.get("mean_improvement", math.nan)),
+ mean_improvement,
+ rel_tol=0,
+ abs_tol=1e-15,
+ )
+ ):
+ raise ValueError("Experiment 009 Stage-B paired bootstrap drifted")
+ confidence_interval = bootstrap.get("confidence_interval")
+ if (
+ not isinstance(confidence_interval, list)
+ or len(confidence_interval) != 2
+ or not all(
+ type(value) in {float, int} and math.isfinite(float(value))
+ for value in confidence_interval
+ )
+ ):
+ raise ValueError("Experiment 009 Stage-B paired interval is invalid")
+
+ win_check = gate.get("advancement_checks", {}).get(
+ "at_least_20_task_level_excess_nll_wins",
+ {},
+ )
+ if (
+ win_check.get("rht_wins") != wins
+ or win_check.get("ties") != ties
+ or wins + ties + losses != 32
+ ):
+ raise ValueError("Experiment 009 Stage-B paired outcomes drifted")
+
+ return {
+ "artifact_kind": STAGE_B_ARTIFACT_KIND,
+ "artifact_sha256": STAGE_B_ARTIFACT_SHA256,
+ "canonical_evidence_sha256": STAGE_B_CANONICAL_SHA256,
+ "result_commit": STAGE_B_RESULT_COMMIT,
+ "verifier_fix_commit": STAGE_B_VERIFIER_FIX_COMMIT,
+ "verification": verification,
+ "integrity_passed": True,
+ "gate_passed": True,
+ "claim_boundary": evidence["claim_boundary"],
+ "ordered_task_ids": ordered_task_ids,
+ "macro_delta_nll": macro_delta_nll,
+ "state_sse": state_sse,
+ "paired": paired,
+ "wins": wins,
+ "ties": ties,
+ "losses": losses,
+ "bootstrap": bootstrap,
+ }
+
+
+def _stage_b_metadata(
+ data: dict[str, object],
+ *,
+ chart: str,
+ values: object,
+) -> str:
+ return _metadata(
+ {
+ "chart": chart,
+ "artifact_kind": data["artifact_kind"],
+ "source_artifact_sha256": data["artifact_sha256"],
+ "canonical_evidence_sha256": data["canonical_evidence_sha256"],
+ "original_result_commit": data["result_commit"],
+ "verifier_fix_commit": data["verifier_fix_commit"],
+ "integrity_passed": data["integrity_passed"],
+ "advancement_gate_passed": data["gate_passed"],
+ "semantic_verification": data["verification"],
+ "claim_boundary": data["claim_boundary"],
+ "values": values,
+ },
+ source_document=("artifacts/experiment009-rht-cqer-stage-b-result-cdc603b.json"),
+ )
+
+
+def _stage_b_overview_svg(data: dict[str, object]) -> str:
+ macro = data["macro_delta_nll"]
+ state_sse = data["state_sse"]
+ assert isinstance(macro, dict)
+ assert isinstance(state_sse, dict)
+
+ method_rows = (
+ ("Directional Fisher INT4", STAGE_B_METHODS[0], "baseline"),
+ ("Adaptive MSE quota", STAGE_B_METHODS[1], "baseline"),
+ ("CQER-32", STAGE_B_CQER_METHOD, "cqer"),
+ ("right-RHT + CQER-32", STAGE_B_RHT_METHOD, "rht"),
+ )
+ macro_axis_max = Decimal("0.5")
+ macro_x = Decimal(215)
+ macro_width = Decimal(330)
+ macro_rows = []
+ for index, (label, method, css_class) in enumerate(method_rows):
+ value = Decimal(str(macro[method]))
+ y = Decimal(132 + index * 66)
+ width = value / macro_axis_max * macro_width
+ macro_rows.append(
+ f'''
+ {html.escape(label)}
+
+
+ {html.escape(label)}: {value:.6f} task-macro aligned excess NLL
+
+ {value:.4f}
+ '''
+ )
+
+ cqer_sse = Decimal(str(state_sse[STAGE_B_CQER_METHOD]))
+ rht_sse = Decimal(str(state_sse[STAGE_B_RHT_METHOD]))
+ state_axis_max = Decimal("40000")
+ state_x = Decimal(665)
+ state_width = Decimal(240)
+ state_rows = []
+ for label, value, css_class, y in (
+ ("CQER-32", cqer_sse, "cqer", Decimal(160)),
+ ("right-RHT + CQER-32", rht_sse, "rht", Decimal(250)),
+ ):
+ width = value / state_axis_max * state_width
+ state_rows.append(
+ f'''
+ {html.escape(label)}
+
+
+ {html.escape(label)}: {value:.6f} aggregate local codec state SSE
+
+ {value:,.0f}
+ '''
+ )
+
+ macro_reduction = (
+ Decimal(1)
+ - Decimal(str(macro[STAGE_B_RHT_METHOD])) / Decimal(str(macro[STAGE_B_CQER_METHOD]))
+ ) * Decimal(100)
+ state_reduction = (Decimal(1) - rht_sse / cqer_sse) * Decimal(100)
+ values = {
+ "macro_delta_nll": macro,
+ "state_sse": state_sse,
+ "cqer_to_rht_macro_delta_nll_reduction": float(macro_reduction / Decimal(100)),
+ "cqer_to_rht_state_sse_reduction": float(state_reduction / Decimal(100)),
+ }
+ metadata = _stage_b_metadata(
+ data,
+ chart="experiment009-stage-b-overview",
+ values=values,
+ )
+ description = (
+ "Experiment 009 Stage B compares four frozen methods on 32 MBPP development "
+ f"tasks. CQER-32 has task-macro aligned excess NLL "
+ f"{Decimal(str(macro[STAGE_B_CQER_METHOD])):.6f}; composing it with a "
+ f"right randomized Hadamard transform has {Decimal(str(macro[STAGE_B_RHT_METHOD])):.6f}, "
+ f"{macro_reduction:.2f} percent lower. Aggregate local codec state SSE falls "
+ f"from {cqer_sse:.6f} to {rht_sse:.6f}, {state_reduction:.2f} percent lower. "
+ "All eight frozen development advancement gates passed. This is not "
+ "confirmation, novelty, speed, deployment, or breakthrough evidence."
+ )
+ return f"""
+
+"""
+
+
+def _stage_b_paired_svg(data: dict[str, object]) -> str:
+ points = data["paired"]
+ bootstrap = data["bootstrap"]
+ assert isinstance(points, list)
+ assert isinstance(bootstrap, dict)
+
+ plot_x = Decimal(62)
+ plot_width = Decimal(854)
+ plot_top = Decimal(164)
+ plot_height = Decimal(286)
+ domain_min = Decimal("-0.1")
+ domain_max = Decimal("0.6")
+
+ def y_position(value: Decimal) -> Decimal:
+ return plot_top + (domain_max - value) / (domain_max - domain_min) * plot_height
+
+ zero_y = y_position(Decimal(0))
+ step = plot_width / Decimal(len(points))
+ bar_width = Decimal(15)
+ bars = []
+ labels = []
+ for index, point in enumerate(points):
+ assert isinstance(point, dict)
+ value = Decimal(str(point["cqer_minus_rht_delta_nll"]))
+ center = plot_x + (Decimal(index) + Decimal("0.5")) * step
+ value_y = y_position(value)
+ rect_y = min(value_y, zero_y)
+ height = abs(zero_y - value_y)
+ if height == 0:
+ height = Decimal("1")
+ outcome = str(point["outcome"])
+ bars.append(
+ f'''
+ Task {point["task_id"]}: CQER minus right-RHT delta NLL {value:+.6f}; {outcome}
+ '''
+ )
+ labels.append(
+ f""" {point["task_id"]}"""
+ )
+
+ grid = []
+ for tick_tenths in range(-1, 7):
+ value = Decimal(tick_tenths) / Decimal(10)
+ y = y_position(value)
+ css_class = "zero" if tick_tenths == 0 else "grid"
+ grid.append(
+ f'''
+ {value:+.1f}'''
+ )
+
+ mean = Decimal(str(bootstrap["mean_improvement"]))
+ ci_low, ci_high = (Decimal(str(value)) for value in bootstrap["confidence_interval"])
+ mean_y = y_position(mean)
+ ci_axis_x = Decimal(62)
+ ci_axis_width = Decimal(300)
+ ci_axis_max = Decimal("0.25")
+
+ def ci_x(value: Decimal) -> Decimal:
+ return ci_axis_x + value / ci_axis_max * ci_axis_width
+
+ values = {
+ "ordered_points": points,
+ "wins": data["wins"],
+ "ties": data["ties"],
+ "losses": data["losses"],
+ "paired_bootstrap": bootstrap,
+ }
+ metadata = _stage_b_metadata(
+ data,
+ chart="experiment009-stage-b-paired-cqer-minus-rht",
+ values=values,
+ )
+ description = (
+ "In frozen task order, the paired CQER-32 minus right-RHT plus CQER-32 "
+ f"aligned excess NLL difference is positive on {data['wins']} tasks, zero "
+ f"on {data['ties']}, and negative on {data['losses']}. Positive values favor "
+ f"right-RHT. The mean improvement is {mean:.6f} nats per token; the paired "
+ f"10,000-sample bootstrap 95 percent interval is {ci_low:.6f} to "
+ f"{ci_high:.6f}. This is authenticated development evidence, not confirmation."
+ )
+ return f"""
+
+"""
+
+
+def _stage_b_graph_metadata(content: str, *, path: Path) -> dict[str, object]:
+ _validate_svg(content, path)
+ root = ET.fromstring(content)
+ metadata = root.find("{http://www.w3.org/2000/svg}metadata")
+ if metadata is None or metadata.text is None:
+ raise ValueError(f"{path.name} has no RecurQuant provenance metadata")
+ try:
+ record = json.loads(metadata.text, parse_constant=_reject_non_finite)
+ except json.JSONDecodeError as error:
+ raise ValueError(f"{path.name} has invalid provenance JSON") from error
+ if not isinstance(record, dict):
+ raise ValueError(f"{path.name} provenance must be a JSON object")
+ return record
+
+
+def _validate_stage_b_graph_assets_from_manifest() -> None:
+ """Validate tracked Stage-B SVG receipts when the raw release asset is absent."""
+
+ try:
+ manifest_raw = STAGE_B_MANIFEST.read_bytes()
+ except FileNotFoundError as error:
+ raise ValueError(
+ f"tracked Stage-B release manifest is missing: {STAGE_B_MANIFEST.relative_to(ROOT)}"
+ ) from error
+ try:
+ manifest = json.loads(
+ manifest_raw.decode("utf-8"),
+ parse_constant=_reject_non_finite,
+ )
+ except (UnicodeDecodeError, json.JSONDecodeError) as error:
+ raise ValueError("tracked Stage-B release manifest is not strict UTF-8 JSON") from error
+ if not isinstance(manifest, dict):
+ raise ValueError("tracked Stage-B release manifest must be a JSON object")
+
+ result = manifest.get("result")
+ verification = manifest.get("verification")
+ graph_assets = manifest.get("graph_assets")
+ if (
+ manifest.get("artifact_kind") != "recurquant_experiment009_stage_b_release_manifest"
+ or manifest.get("schema_version") != 1
+ or not isinstance(result, dict)
+ or not isinstance(verification, dict)
+ or not isinstance(graph_assets, dict)
+ ):
+ raise ValueError("tracked Stage-B release manifest schema drifted")
+
+ if (
+ result.get("artifact_kind") != STAGE_B_ARTIFACT_KIND
+ or result.get("raw_filename") != STAGE_B_SOURCE.name
+ or result.get("raw_sha256") != STAGE_B_ARTIFACT_SHA256
+ or result.get("canonical_evidence_sha256") != STAGE_B_CANONICAL_SHA256
+ or result.get("evaluation_commit") != STAGE_B_RESULT_COMMIT
+ or result.get("verifier_fix_commit") != STAGE_B_VERIFIER_FIX_COMMIT
+ ):
+ raise ValueError("tracked Stage-B result provenance drifted")
+ if (
+ verification.get("strict_loader_passed") is not True
+ or verification.get("canonical_round_trip") is not True
+ or verification.get("integrity_passed") is not True
+ or verification.get("advancement_passed") is not True
+ or verification.get("advancement_check_count") != 8
+ or verification.get("task_count") != 32
+ or verification.get("bootstrap_samples") != 10_000
+ or verification.get("bootstrap_seed") != 2339
+ ):
+ raise ValueError("tracked Stage-B verification receipt drifted")
+
+ expected_graph_provenance = {
+ "source_artifact_sha256": STAGE_B_ARTIFACT_SHA256,
+ "canonical_evidence_sha256": STAGE_B_CANONICAL_SHA256,
+ "original_result_commit": STAGE_B_RESULT_COMMIT,
+ "verifier_fix_commit": STAGE_B_VERIFIER_FIX_COMMIT,
+ "artifact_kind": STAGE_B_ARTIFACT_KIND,
+ "integrity_passed": True,
+ "advancement_gate_passed": True,
+ }
+ if {
+ key: graph_assets.get(key) for key in expected_graph_provenance
+ } != expected_graph_provenance:
+ raise ValueError("tracked Stage-B graph provenance drifted")
+
+ asset_receipts = graph_assets.get("assets")
+ if not isinstance(asset_receipts, dict) or set(asset_receipts) != set(STAGE_B_GRAPH_ASSETS):
+ raise ValueError("tracked Stage-B graph asset set drifted")
+
+ expected_semantic_verification = {
+ "passed": True,
+ "integrity_passed": True,
+ "advancement_passed": True,
+ "task_count": 32,
+ "bootstrap_samples": 10_000,
+ "bootstrap_seed": 2339,
+ "advancement_check_count": 8,
+ "artifact_sha256": STAGE_B_ARTIFACT_SHA256,
+ "canonical_evidence_sha256": STAGE_B_CANONICAL_SHA256,
+ "canonical_round_trip": True,
+ }
+ for relative_path, chart in STAGE_B_GRAPH_ASSETS.items():
+ receipt = asset_receipts[relative_path]
+ if not isinstance(receipt, dict) or set(receipt) != {
+ "bytes",
+ "sha256",
+ "chart",
+ }:
+ raise ValueError(f"tracked graph receipt schema drifted for {relative_path}")
+ if receipt.get("chart") != chart:
+ raise ValueError(f"tracked graph chart identity drifted for {relative_path}")
+ expected_bytes = receipt.get("bytes")
+ expected_sha256 = receipt.get("sha256")
+ if (
+ type(expected_bytes) is not int
+ or expected_bytes <= 0
+ or not isinstance(expected_sha256, str)
+ or re.fullmatch(r"[0-9a-f]{64}", expected_sha256) is None
+ ):
+ raise ValueError(f"tracked graph byte receipt is invalid for {relative_path}")
+
+ path = ROOT / Path(relative_path)
+ try:
+ raw = path.read_bytes()
+ except FileNotFoundError as error:
+ raise ValueError(f"tracked Stage-B graph is missing: {relative_path}") from error
+ actual_sha256 = hashlib.sha256(raw).hexdigest()
+ if len(raw) != expected_bytes or actual_sha256 != expected_sha256:
+ raise ValueError(
+ f"tracked Stage-B graph bytes drifted for {relative_path}: "
+ f"expected {expected_bytes} bytes sha256={expected_sha256}, "
+ f"got {len(raw)} bytes sha256={actual_sha256}"
+ )
+ try:
+ content = raw.decode("utf-8")
+ except UnicodeDecodeError as error:
+ raise ValueError(f"{relative_path} is not UTF-8 SVG") from error
+ metadata = _stage_b_graph_metadata(content, path=path)
+ expected_metadata = {
+ "generated_by": "scripts/generate_readme_assets.py",
+ "source_document": ("artifacts/experiment009-rht-cqer-stage-b-result-cdc603b.json"),
+ "chart": chart,
+ **expected_graph_provenance,
+ }
+ if {key: metadata.get(key) for key in expected_metadata} != expected_metadata:
+ raise ValueError(f"embedded graph provenance drifted for {relative_path}")
+ if metadata.get("semantic_verification") != expected_semantic_verification:
+ raise ValueError(f"embedded semantic verification drifted for {relative_path}")
+ if "values" not in metadata or "claim_boundary" not in metadata:
+ raise ValueError(f"embedded graph evidence is incomplete for {relative_path}")
+
+
+def _legacy_outputs() -> dict[Path, str]:
data = _source_data()
development_data = _development_data()
confirmation_data = _confirmation_data()
@@ -814,6 +1483,18 @@ def _outputs() -> dict[Path, str]:
}
+def _outputs() -> dict[Path, str]:
+ outputs = _legacy_outputs()
+ stage_b_data = _stage_b_data()
+ outputs.update(
+ {
+ ASSETS / "experiment009-stage-b-overview.svg": _stage_b_overview_svg(stage_b_data),
+ ASSETS / "experiment009-stage-b-paired.svg": _stage_b_paired_svg(stage_b_data),
+ }
+ )
+ return outputs
+
+
def _validate_svg(content: str, path: Path) -> None:
try:
ET.fromstring(content)
@@ -830,7 +1511,16 @@ def main() -> int:
)
args = parser.parse_args()
- outputs = _outputs()
+ stage_b_source_available = STAGE_B_SOURCE.is_file()
+ if not args.check and not stage_b_source_available:
+ try:
+ _stage_b_data()
+ except FileNotFoundError as error:
+ print(str(error), file=sys.stderr)
+ return 2
+ raise AssertionError("missing Stage-B source check did not fail")
+
+ outputs = _outputs() if stage_b_source_available else _legacy_outputs()
stale = []
for path, content in outputs.items():
_validate_svg(content, path)
@@ -843,12 +1533,28 @@ def main() -> int:
digest = hashlib.sha256(content.encode("utf-8")).hexdigest()
print(f"wrote {path.relative_to(ROOT)} sha256={digest}")
+ manifest_error = None
+ if args.check and not stage_b_source_available:
+ try:
+ _validate_stage_b_graph_assets_from_manifest()
+ except ValueError as error:
+ manifest_error = str(error)
+
if stale:
for path in stale:
print(f"stale: {path}", file=sys.stderr)
+ if manifest_error is not None:
+ print(f"invalid Stage-B graph receipt: {manifest_error}", file=sys.stderr)
+ if stale or manifest_error is not None:
return 1
if args.check:
- print("README assets are up to date and valid XML.")
+ if stage_b_source_available:
+ print("README assets are up to date and valid XML.")
+ else:
+ print(
+ "README assets are up to date; Stage-B SVG bytes and provenance "
+ "match the tracked release manifest."
+ )
return 0
diff --git a/tests/test_generate_readme_assets.py b/tests/test_generate_readme_assets.py
new file mode 100644
index 0000000..ff129ea
--- /dev/null
+++ b/tests/test_generate_readme_assets.py
@@ -0,0 +1,387 @@
+from __future__ import annotations
+
+import hashlib
+import json
+import math
+import sys
+import xml.etree.ElementTree as ET
+from pathlib import Path
+
+import pytest
+
+from scripts import generate_readme_assets as assets
+
+
+def _synthetic_stage_b() -> tuple[dict[str, object], dict[str, object]]:
+ task_ids = list(range(700, 732))
+ improvements = [0.1] * 27 + [-0.05] * 5
+ per_task: dict[str, list[dict[str, object]]] = {}
+ macro = {
+ assets.STAGE_B_METHODS[0]: 0.42,
+ assets.STAGE_B_METHODS[1]: 0.45,
+ assets.STAGE_B_CQER_METHOD: 0.3,
+ assets.STAGE_B_RHT_METHOD: 0.2234375,
+ }
+ for method in assets.STAGE_B_METHODS:
+ if method == assets.STAGE_B_CQER_METHOD:
+ values = [0.3] * 32
+ elif method == assets.STAGE_B_RHT_METHOD:
+ values = [0.3 - improvement for improvement in improvements]
+ else:
+ values = [macro[method]] * 32
+ per_task[method] = [
+ {"task_id": task_id, "delta_nll": value}
+ for task_id, value in zip(task_ids, values, strict=True)
+ ]
+
+ mean = math.fsum(improvements) / len(improvements)
+ evidence: dict[str, object] = {
+ "artifact_kind": assets.STAGE_B_ARTIFACT_KIND,
+ "methods": list(assets.STAGE_B_METHODS),
+ "repository": {
+ "commit": assets.STAGE_B_RESULT_COMMIT,
+ "stable_commit": True,
+ },
+ "stage_b_integrity": {"passed": True},
+ "stage_b_gate": {
+ "passed": True,
+ "advancement_checks": {
+ "at_least_20_task_level_excess_nll_wins": {
+ "rht_wins": 27,
+ "ties": 0,
+ }
+ },
+ },
+ "dataset": {"identity": {"ordered_task_ids": task_ids}},
+ "aggregates": {method: {"macro_delta_nll": value} for method, value in macro.items()},
+ "per_task": per_task,
+ "state_error": {
+ "aggregates": {
+ assets.STAGE_B_CQER_METHOD: {
+ "aggregate_state_sse": 36_000.0,
+ },
+ assets.STAGE_B_RHT_METHOD: {
+ "aggregate_state_sse": 15_000.0,
+ },
+ }
+ },
+ "paired_bootstrap_cqer_minus_rht_aligned_delta_nll": {
+ "bootstrap_samples": 10_000,
+ "confidence": 0.95,
+ "confidence_interval": [0.04, 0.11],
+ "mean_improvement": mean,
+ "paired_examples": 32,
+ "seed": 2339,
+ },
+ "claim_boundary": "Frozen development evidence only.",
+ }
+ verification: dict[str, object] = {
+ "passed": True,
+ "integrity_passed": True,
+ "advancement_passed": True,
+ "task_count": 32,
+ "bootstrap_samples": 10_000,
+ "bootstrap_seed": 2339,
+ "advancement_check_count": 8,
+ "artifact_sha256": assets.STAGE_B_ARTIFACT_SHA256,
+ "canonical_evidence_sha256": assets.STAGE_B_CANONICAL_SHA256,
+ "canonical_round_trip": True,
+ }
+ return evidence, verification
+
+
+def _metadata(svg: str) -> dict[str, object]:
+ root = ET.fromstring(svg)
+ metadata = root.find("{http://www.w3.org/2000/svg}metadata")
+ assert metadata is not None
+ assert metadata.text is not None
+ return json.loads(metadata.text)
+
+
+def test_stage_b_assets_use_strict_loader_and_embed_authenticated_provenance(
+ monkeypatch: pytest.MonkeyPatch,
+ tmp_path: Path,
+) -> None:
+ evidence, verification = _synthetic_stage_b()
+ calls: list[Path] = []
+ source = tmp_path / "stage-b-result.json"
+ source.write_bytes(b"strict loader owns these bytes")
+
+ def load(path: Path) -> tuple[dict[str, object], dict[str, object]]:
+ calls.append(path)
+ return evidence, verification
+
+ monkeypatch.setattr(assets, "STAGE_B_SOURCE", source)
+ monkeypatch.setattr(assets, "_load_validated_stage_b_result", load)
+ data = assets._stage_b_data()
+
+ assert calls == [source]
+ assert data["wins"] == 27
+ assert data["ties"] == 0
+ assert data["losses"] == 5
+ assert [
+ point["task_id"]
+ for point in data["paired"] # type: ignore[index]
+ ] == list(range(700, 732))
+
+ overview = assets._stage_b_overview_svg(data)
+ paired = assets._stage_b_paired_svg(data)
+ assets._validate_svg(
+ overview,
+ assets.ASSETS / "experiment009-stage-b-overview.svg",
+ )
+ assets._validate_svg(
+ paired,
+ assets.ASSETS / "experiment009-stage-b-paired.svg",
+ )
+ assert overview == assets._stage_b_overview_svg(data)
+ assert paired == assets._stage_b_paired_svg(data)
+
+ for record in (_metadata(overview), _metadata(paired)):
+ assert record["artifact_kind"] == assets.STAGE_B_ARTIFACT_KIND
+ assert record["source_artifact_sha256"] == assets.STAGE_B_ARTIFACT_SHA256
+ assert record["canonical_evidence_sha256"] == assets.STAGE_B_CANONICAL_SHA256
+ assert record["original_result_commit"] == assets.STAGE_B_RESULT_COMMIT
+ assert record["verifier_fix_commit"] == assets.STAGE_B_VERIFIER_FIX_COMMIT
+ assert record["integrity_passed"] is True
+ assert record["advancement_gate_passed"] is True
+
+
+def test_stage_b_data_rejects_verification_drift(
+ monkeypatch: pytest.MonkeyPatch,
+ tmp_path: Path,
+) -> None:
+ evidence, verification = _synthetic_stage_b()
+ verification["artifact_sha256"] = "0" * 64
+ source = tmp_path / "stage-b-result.json"
+ source.write_bytes(b"strict loader owns these bytes")
+ monkeypatch.setattr(assets, "STAGE_B_SOURCE", source)
+ monkeypatch.setattr(
+ assets,
+ "_load_validated_stage_b_result",
+ lambda _path: (evidence, verification),
+ )
+
+ with pytest.raises(
+ ValueError,
+ match="verification record drifted",
+ ):
+ assets._stage_b_data()
+
+
+def test_check_detects_tampered_stage_b_asset(
+ monkeypatch: pytest.MonkeyPatch,
+ tmp_path: Path,
+) -> None:
+ output = tmp_path / "assets" / "experiment009-stage-b-overview.svg"
+ output.parent.mkdir()
+ expected = '\n'
+ output.write_text(expected, encoding="utf-8", newline="\n")
+ source = tmp_path / "stage-b-result.json"
+ source.write_bytes(b"present")
+ monkeypatch.setattr(assets, "ROOT", tmp_path)
+ monkeypatch.setattr(assets, "STAGE_B_SOURCE", source)
+ monkeypatch.setattr(assets, "_outputs", lambda: {output: expected})
+ monkeypatch.setattr(sys, "argv", ["generate_readme_assets.py", "--check"])
+
+ assert assets.main() == 0
+
+ output.write_text(expected.replace("authenticated", "tampered"), encoding="utf-8")
+ assert assets.main() == 1
+
+
+def _write_clean_clone_fixture(
+ monkeypatch: pytest.MonkeyPatch,
+ tmp_path: Path,
+) -> tuple[Path, Path, dict[str, object]]:
+ evidence, verification = _synthetic_stage_b()
+ generation_source = tmp_path / "generation-source.json"
+ generation_source.write_bytes(b"strict loader owns these bytes")
+ monkeypatch.setattr(assets, "STAGE_B_SOURCE", generation_source)
+ monkeypatch.setattr(
+ assets,
+ "_load_validated_stage_b_result",
+ lambda _path: (evidence, verification),
+ )
+ data = assets._stage_b_data()
+ rendered = {
+ "assets/experiment009-stage-b-overview.svg": (
+ assets._stage_b_overview_svg(data),
+ "experiment009-stage-b-overview",
+ ),
+ "assets/experiment009-stage-b-paired.svg": (
+ assets._stage_b_paired_svg(data),
+ "experiment009-stage-b-paired-cqer-minus-rht",
+ ),
+ }
+
+ graph_receipts: dict[str, dict[str, object]] = {}
+ for relative_path, (content, chart) in rendered.items():
+ raw = content.encode("utf-8")
+ path = tmp_path / relative_path
+ path.parent.mkdir(parents=True, exist_ok=True)
+ path.write_bytes(raw)
+ graph_receipts[relative_path] = {
+ "bytes": len(raw),
+ "sha256": hashlib.sha256(raw).hexdigest(),
+ "chart": chart,
+ }
+
+ manifest: dict[str, object] = {
+ "artifact_kind": "recurquant_experiment009_stage_b_release_manifest",
+ "schema_version": 1,
+ "result": {
+ "artifact_kind": assets.STAGE_B_ARTIFACT_KIND,
+ "raw_filename": "experiment009-rht-cqer-stage-b-result-cdc603b.json",
+ "raw_sha256": assets.STAGE_B_ARTIFACT_SHA256,
+ "canonical_evidence_sha256": assets.STAGE_B_CANONICAL_SHA256,
+ "evaluation_commit": assets.STAGE_B_RESULT_COMMIT,
+ "verifier_fix_commit": assets.STAGE_B_VERIFIER_FIX_COMMIT,
+ },
+ "verification": {
+ "strict_loader_passed": True,
+ "canonical_round_trip": True,
+ "integrity_passed": True,
+ "advancement_passed": True,
+ "advancement_check_count": 8,
+ "task_count": 32,
+ "bootstrap_samples": 10_000,
+ "bootstrap_seed": 2339,
+ },
+ "graph_assets": {
+ "source_artifact_sha256": assets.STAGE_B_ARTIFACT_SHA256,
+ "canonical_evidence_sha256": assets.STAGE_B_CANONICAL_SHA256,
+ "original_result_commit": assets.STAGE_B_RESULT_COMMIT,
+ "verifier_fix_commit": assets.STAGE_B_VERIFIER_FIX_COMMIT,
+ "artifact_kind": assets.STAGE_B_ARTIFACT_KIND,
+ "integrity_passed": True,
+ "advancement_gate_passed": True,
+ "assets": graph_receipts,
+ },
+ }
+ manifest_path = tmp_path / "evidence" / "experiment009-rht-cqer-stage-b-result-manifest.json"
+ manifest_path.parent.mkdir(parents=True, exist_ok=True)
+ manifest_path.write_text(
+ json.dumps(manifest, indent=2) + "\n",
+ encoding="utf-8",
+ newline="\n",
+ )
+
+ legacy = tmp_path / "assets" / "legacy.svg"
+ legacy_content = '\n'
+ legacy.write_text(legacy_content, encoding="utf-8", newline="\n")
+ monkeypatch.setattr(assets, "ROOT", tmp_path)
+ monkeypatch.setattr(assets, "STAGE_B_MANIFEST", manifest_path)
+ monkeypatch.setattr(
+ assets,
+ "STAGE_B_SOURCE",
+ tmp_path / "artifacts" / "experiment009-rht-cqer-stage-b-result-cdc603b.json",
+ )
+ monkeypatch.setattr(assets, "_legacy_outputs", lambda: {legacy: legacy_content})
+ monkeypatch.setattr(sys, "argv", ["generate_readme_assets.py", "--check"])
+ return (
+ tmp_path / "assets" / "experiment009-stage-b-overview.svg",
+ manifest_path,
+ manifest,
+ )
+
+
+def test_clean_clone_check_uses_manifest_and_rejects_tampered_bytes(
+ monkeypatch: pytest.MonkeyPatch,
+ tmp_path: Path,
+) -> None:
+ overview, _manifest_path, _manifest = _write_clean_clone_fixture(
+ monkeypatch,
+ tmp_path,
+ )
+
+ assert assets.main() == 0
+
+ overview.write_text(
+ overview.read_text(encoding="utf-8").replace(
+ "Stage B development",
+ "Stage B tampered",
+ 1,
+ ),
+ encoding="utf-8",
+ newline="\n",
+ )
+ assert assets.main() == 1
+
+
+def test_clean_clone_check_rejects_tampered_metadata_even_with_new_byte_receipt(
+ monkeypatch: pytest.MonkeyPatch,
+ tmp_path: Path,
+) -> None:
+ overview, manifest_path, manifest = _write_clean_clone_fixture(
+ monkeypatch,
+ tmp_path,
+ )
+ raw = overview.read_bytes().replace(
+ assets.STAGE_B_RESULT_COMMIT.encode(),
+ ("0" * 40).encode(),
+ 1,
+ )
+ overview.write_bytes(raw)
+ graph_assets = manifest["graph_assets"]
+ assert isinstance(graph_assets, dict)
+ receipts = graph_assets["assets"]
+ assert isinstance(receipts, dict)
+ overview_receipt = receipts["assets/experiment009-stage-b-overview.svg"]
+ assert isinstance(overview_receipt, dict)
+ overview_receipt["bytes"] = len(raw)
+ overview_receipt["sha256"] = hashlib.sha256(raw).hexdigest()
+ manifest_path.write_text(
+ json.dumps(manifest, indent=2) + "\n",
+ encoding="utf-8",
+ newline="\n",
+ )
+
+ assert assets.main() == 1
+
+
+def test_clean_clone_check_rejects_missing_manifest(
+ monkeypatch: pytest.MonkeyPatch,
+ tmp_path: Path,
+) -> None:
+ _write_clean_clone_fixture(monkeypatch, tmp_path)
+ monkeypatch.setattr(
+ assets,
+ "STAGE_B_MANIFEST",
+ tmp_path / "evidence" / "missing-manifest.json",
+ )
+
+ assert assets.main() == 1
+
+
+def test_clean_clone_check_rejects_missing_graph_asset(
+ monkeypatch: pytest.MonkeyPatch,
+ tmp_path: Path,
+) -> None:
+ overview, _manifest_path, _manifest = _write_clean_clone_fixture(
+ monkeypatch,
+ tmp_path,
+ )
+ overview.unlink()
+
+ assert assets.main() == 1
+
+
+def test_generation_without_raw_stage_b_source_fails_with_download_instruction(
+ monkeypatch: pytest.MonkeyPatch,
+ tmp_path: Path,
+ capsys: pytest.CaptureFixture[str],
+) -> None:
+ monkeypatch.setattr(assets, "ROOT", tmp_path)
+ monkeypatch.setattr(
+ assets,
+ "STAGE_B_SOURCE",
+ tmp_path / "artifacts" / "experiment009-rht-cqer-stage-b-result-cdc603b.json",
+ )
+ monkeypatch.setattr(sys, "argv", ["generate_readme_assets.py"])
+
+ assert assets.main() == 2
+ error = capsys.readouterr().err
+ assert assets.STAGE_B_RELEASE_DOWNLOAD in error
+ assert assets.STAGE_B_ARTIFACT_SHA256 in error
+ assert "extract the JSON to" in error
diff --git a/tests/test_transition_observer.py b/tests/test_transition_observer.py
index 84ad86e..1d79993 100644
--- a/tests/test_transition_observer.py
+++ b/tests/test_transition_observer.py
@@ -541,7 +541,11 @@ def update_recurrent_state(
def test_real_tiny_qwen_runs_prefill_cached_chunk_and_decode() -> None:
- device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
+ device = (
+ torch.device("cuda", torch.cuda.current_device())
+ if torch.cuda.is_available()
+ else torch.device("cpu")
+ )
config = tiny_config()
model = Qwen3_5ForCausalLM._from_config(
config,
From ec7d1c734a3b0cd364db1a82da7a323e6890f5d3 Mon Sep 17 00:00:00 2001
From: HiddenTrojan <93521146+Labeeb2339@users.noreply.github.com>
Date: Sun, 26 Jul 2026 14:45:03 +0800
Subject: [PATCH 22/22] ci: fetch history for evidence ancestry checks
---
.github/workflows/ci.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3d685ea..6ccd138 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,6 +15,10 @@ jobs:
timeout-minutes: 20
steps:
- uses: actions/checkout@v7.0.1
+ with:
+ # Historical evidence authentication checks recorded commits against
+ # HEAD, so the test job needs the complete ancestry graph.
+ fetch-depth: 0
- uses: actions/setup-python@v7.0.0
with:
python-version: "3.11"