bshepp commited on
Commit
be26f7c
·
verified ·
1 Parent(s): 74202b7

Publish curated, controls-verified results

Browse files
README.md CHANGED
@@ -58,7 +58,7 @@ positive into a correct negative.
58
  ## Dataset Description
59
 
60
  This dataset is the distilled, **verified evidence** from a learnability
61
- instrument built on top of the [`bfl-asic`](#reproduction) toolkit (a
62
  codebase for a Butterfly Labs BF0005G "Jalapeno" SHA-256 mining ASIC,
63
  which also contains a numpy-vectorized, `hashlib`-anchored round-reduced
64
  SHA-256 and a controls-gated train/eval harness).
@@ -266,17 +266,27 @@ are hosted. The results above were produced by the `bfl-asic` toolkit's
266
  TinyCNN/linear-probe distinguishers, a controls-gated harness), run on
267
  Hugging Face Jobs (`cpu-xl`, ~16 CPU-hours total).
268
 
 
 
269
  ```bash
270
- pip install "bfl-asic[ml]" # PyTorch is isolated behind [ml]
 
 
271
 
272
  # Regenerate the spine (one seed, scaled down for a laptop):
273
  bfl-asic ml run sweep --seed 0 --n 20000 --epochs 10
274
  bfl-asic ml report runs/ml/<timestamp>/sweep_seed0.json
275
 
276
- # Rebuild these exact Parquet tables from the synced run JSON:
 
277
  python dataset/build_dataset.py # deps: pandas, pyarrow
278
  ```
279
 
 
 
 
 
 
280
  The harness is deterministic: the same seed reproduces the same curve.
281
  The `dynamics_validated` table is the output of the *fixed* harness
282
  (real Clopper–Pearson CI + permuted-label control); the earlier
@@ -310,10 +320,11 @@ honest record of the false positive that the control corrected.
310
  author = {Sheppard, B.},
311
  year = {2026},
312
  publisher = {Hugging Face},
313
- url = {https://huggingface.co/datasets/bshepp/round-reduced-sha256-learnability}
 
314
  }
315
  ```
316
 
317
  ## License
318
 
319
- MIT.
 
58
  ## Dataset Description
59
 
60
  This dataset is the distilled, **verified evidence** from a learnability
61
+ instrument built on top of the [`bfl-asic`](https://github.com/bshepp/bfl-asic) toolkit (a
62
  codebase for a Butterfly Labs BF0005G "Jalapeno" SHA-256 mining ASIC,
63
  which also contains a numpy-vectorized, `hashlib`-anchored round-reduced
64
  SHA-256 and a controls-gated train/eval harness).
 
266
  TinyCNN/linear-probe distinguishers, a controls-gated harness), run on
267
  Hugging Face Jobs (`cpu-xl`, ~16 CPU-hours total).
268
 
269
+ **Source code:** [github.com/bshepp/bfl-asic](https://github.com/bshepp/bfl-asic) (MIT) — the `bfl_asic/ml/` subsystem and `dataset/build_dataset.py`.
270
+
271
  ```bash
272
+ git clone https://github.com/bshepp/bfl-asic
273
+ cd bfl-asic
274
+ pip install -e ".[ml]" # PyTorch is isolated behind [ml]
275
 
276
  # Regenerate the spine (one seed, scaled down for a laptop):
277
  bfl-asic ml run sweep --seed 0 --n 20000 --epochs 10
278
  bfl-asic ml report runs/ml/<timestamp>/sweep_seed0.json
279
 
280
+ # Rebuild these exact Parquet tables from the shipped source JSON
281
+ # (dataset/source/ travels with the repo — no external data needed):
282
  python dataset/build_dataset.py # deps: pandas, pyarrow
283
  ```
284
 
285
+ This HF dataset repo is itself self-contained: `git clone` it, `pip
286
+ install pandas pyarrow`, run `python build_dataset.py`, and the four
287
+ Parquet rebuild from the bundled `source/` JSON — no external data, no
288
+ GitHub checkout required.
289
+
290
  The harness is deterministic: the same seed reproduces the same curve.
291
  The `dynamics_validated` table is the output of the *fixed* harness
292
  (real Clopper–Pearson CI + permuted-label control); the earlier
 
320
  author = {Sheppard, B.},
321
  year = {2026},
322
  publisher = {Hugging Face},
323
+ url = {https://huggingface.co/datasets/bshepp/round-reduced-sha256-learnability},
324
+ note = {Code: https://github.com/bshepp/bfl-asic}
325
  }
326
  ```
327
 
328
  ## License
329
 
330
+ MIT — see the [`bfl-asic` repository](https://github.com/bshepp/bfl-asic/blob/master/LICENSE).
build_dataset.py CHANGED
@@ -3,8 +3,11 @@
3
 
4
  Mirrors the convention of the author's other HF dataset
5
  (`bshepp/pairwise-poisson-algebras`): a deterministic script that reads
6
- the raw result JSON and emits one Parquet table per config, sitting next
7
- to the dataset card (README.md) in this directory.
 
 
 
8
 
9
  Only *verified* results go in (controls passed, or — for the dynamics
10
  negative — the permuted-label control actively fired). The synthetic
@@ -24,7 +27,7 @@ from pathlib import Path
24
  import pandas as pd
25
 
26
  SCRIPT_DIR = Path(__file__).resolve().parent
27
- HF = SCRIPT_DIR.parent / "hf_results"
28
  _Z = 1.959963984540054 # 97.5th pct of N(0,1); matches the harness
29
 
30
 
 
3
 
4
  Mirrors the convention of the author's other HF dataset
5
  (`bshepp/pairwise-poisson-algebras`): a deterministic script that reads
6
+ the curated result JSON shipped in `source/` and emits one Parquet
7
+ table per config, sitting next to the dataset card (README.md) in this
8
+ directory. The `source/` JSON is the exact, verified output of the HF
9
+ runs that produced the published numbers — it travels with the repo so
10
+ this script runs on a fresh clone with no external data.
11
 
12
  Only *verified* results go in (controls passed, or — for the dynamics
13
  negative — the permuted-label control actively fired). The synthetic
 
27
  import pandas as pd
28
 
29
  SCRIPT_DIR = Path(__file__).resolve().parent
30
+ HF = SCRIPT_DIR / "source" # curated run JSON shipped with the repo
31
  _Z = 1.959963984540054 # 97.5th pct of N(0,1); matches the harness
32
 
33
 
publish_dataset.py CHANGED
@@ -5,9 +5,12 @@ Mirrors `bfl_asic/ml/publish.py` (HfApi.create_repo + upload_folder) but
5
  with `repo_type="dataset"` and public-by-default, matching the author's
6
  existing HF dataset convention (`bshepp/pairwise-poisson-algebras`).
7
 
8
- Uploads only the curated card + Parquet + the two build/publish scripts
9
- (no synced run JSON, no payloads). Auth comes from the already-configured
10
- `hf` CLI token (HF_TOKEN env var or `~/.cache/huggingface/token`).
 
 
 
11
 
12
  Usage:
13
  python dataset/publish_dataset.py # default repo, public
@@ -18,23 +21,35 @@ Usage:
18
  from __future__ import annotations
19
 
20
  import argparse
 
21
  from pathlib import Path
22
 
23
  DEFAULT_REPO = "bshepp/round-reduced-sha256-learnability"
24
- ALLOW = ["README.md", "*.parquet", "build_dataset.py", "publish_dataset.py"]
 
 
 
 
 
 
25
 
26
 
27
  def publish(repo_id: str, *, private: bool, dry_run: bool) -> str:
28
  folder = Path(__file__).resolve().parent
29
  url = f"https://huggingface.co/datasets/{repo_id}"
 
 
30
  files = sorted(
31
- p.name
32
- for p in folder.iterdir()
33
- if p.suffix in (".parquet", ".md", ".py")
 
 
34
  )
35
  if dry_run:
36
  print(f"[dry-run] would create dataset repo {repo_id} "
37
- f"(private={private}) and upload from {folder}:")
 
38
  for f in files:
39
  print(f" + {f}")
40
  print(f"[dry-run] -> {url}")
 
5
  with `repo_type="dataset"` and public-by-default, matching the author's
6
  existing HF dataset convention (`bshepp/pairwise-poisson-algebras`).
7
 
8
+ Uploads a self-contained dataset: the curated card + Parquet + the
9
+ build/publish scripts + the shipped `source/` run JSON, so the HF repo
10
+ rebuilds via `python build_dataset.py` with no external data (no HF
11
+ payloads/buckets). The card's `configs:` pin the four .parquet, so the
12
+ source JSON is inert to the Dataset Viewer / `load_dataset`. Auth comes
13
+ from the configured `hf` CLI token (HF_TOKEN or ~/.cache/huggingface/token).
14
 
15
  Usage:
16
  python dataset/publish_dataset.py # default repo, public
 
21
  from __future__ import annotations
22
 
23
  import argparse
24
+ import fnmatch
25
  from pathlib import Path
26
 
27
  DEFAULT_REPO = "bshepp/round-reduced-sha256-learnability"
28
+ ALLOW = [
29
+ "README.md",
30
+ "*.parquet",
31
+ "build_dataset.py",
32
+ "publish_dataset.py",
33
+ "source/*", # fnmatch '*' spans '/', so this is recursive under source/
34
+ ]
35
 
36
 
37
  def publish(repo_id: str, *, private: bool, dry_run: bool) -> str:
38
  folder = Path(__file__).resolve().parent
39
  url = f"https://huggingface.co/datasets/{repo_id}"
40
+ # Mirror huggingface_hub's allow_patterns matching exactly (fnmatch
41
+ # on the repo-relative posix path) so the dry-run is honest.
42
  files = sorted(
43
+ rel
44
+ for p in folder.rglob("*")
45
+ if p.is_file()
46
+ and any(fnmatch.fnmatch(rel := p.relative_to(folder).as_posix(),
47
+ pat) for pat in ALLOW)
48
  )
49
  if dry_run:
50
  print(f"[dry-run] would create dataset repo {repo_id} "
51
+ f"(private={private}) and upload {len(files)} files "
52
+ f"from {folder}:")
53
  for f in files:
54
  print(f" + {f}")
55
  print(f"[dry-run] -> {url}")
source/bfl-ml-tierA/full_structure_seed0.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2026-05-16T09:51:12.022788+00:00",
3
+ "experiment": "full_structure_seed0",
4
+ "feature": "per-hash",
5
+ "model": "multi",
6
+ "points": [
7
+ {
8
+ "rounds": 64,
9
+ "accuracy": 0.5007625,
10
+ "advantage": 0.0015249999999999986,
11
+ "auc": null,
12
+ "accuracy_ci": [
13
+ 0.49830942764154007,
14
+ 0.5032155447256841
15
+ ],
16
+ "min_detectable_advantage": 0.004899909961350135,
17
+ "model": "tiny_cnn"
18
+ },
19
+ {
20
+ "rounds": 64,
21
+ "accuracy": 0.4991125,
22
+ "advantage": -0.001774999999999971,
23
+ "auc": null,
24
+ "accuracy_ci": [
25
+ 0.4966594585498896,
26
+ 0.5015655736128495
27
+ ],
28
+ "min_detectable_advantage": 0.004899909961350135,
29
+ "model": "linear_probe"
30
+ }
31
+ ],
32
+ "controls": {
33
+ "positive_accuracy": 1.0,
34
+ "positive_ok": true,
35
+ "negative_ci": [
36
+ 0.49830942764154007,
37
+ 0.5032155447256841
38
+ ],
39
+ "negative_ok": true
40
+ },
41
+ "bounded_null": {
42
+ "best_model": "tiny_cnn",
43
+ "accuracy": 0.5007625,
44
+ "accuracy_ci": [
45
+ 0.49830942764154007,
46
+ 0.5032155447256841
47
+ ],
48
+ "advantage": 0.0015249999999999986,
49
+ "min_detectable_advantage": 0.004899909961350135,
50
+ "controls_ok": true,
51
+ "conclusion": "no structure detected above the detection floor"
52
+ }
53
+ }
source/bfl-ml-tierA/full_structure_seed1.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2026-05-16T10:33:36.555551+00:00",
3
+ "experiment": "full_structure_seed1",
4
+ "feature": "per-hash",
5
+ "model": "multi",
6
+ "points": [
7
+ {
8
+ "rounds": 64,
9
+ "accuracy": 0.499125,
10
+ "advantage": -0.0017500000000000293,
11
+ "auc": null,
12
+ "accuracy_ci": [
13
+ 0.49667195821544186,
14
+ 0.501578073494301
15
+ ],
16
+ "min_detectable_advantage": 0.004899909961350135,
17
+ "model": "tiny_cnn"
18
+ },
19
+ {
20
+ "rounds": 64,
21
+ "accuracy": 0.500275,
22
+ "advantage": 0.0005500000000000504,
23
+ "auc": null,
24
+ "accuracy_ci": [
25
+ 0.4978219339967231,
26
+ 0.5027280560373577
27
+ ],
28
+ "min_detectable_advantage": 0.004899909961350135,
29
+ "model": "linear_probe"
30
+ }
31
+ ],
32
+ "controls": {
33
+ "positive_accuracy": 0.99823125,
34
+ "positive_ok": true,
35
+ "negative_ci": [
36
+ 0.49667195821544186,
37
+ 0.501578073494301
38
+ ],
39
+ "negative_ok": true
40
+ },
41
+ "bounded_null": {
42
+ "best_model": "linear_probe",
43
+ "accuracy": 0.500275,
44
+ "accuracy_ci": [
45
+ 0.4978219339967231,
46
+ 0.5027280560373577
47
+ ],
48
+ "advantage": 0.0005500000000000504,
49
+ "min_detectable_advantage": 0.004899909961350135,
50
+ "controls_ok": true,
51
+ "conclusion": "no structure detected above the detection floor"
52
+ }
53
+ }
source/bfl-ml-tierA/full_structure_seed2.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2026-05-16T11:15:57.238584+00:00",
3
+ "experiment": "full_structure_seed2",
4
+ "feature": "per-hash",
5
+ "model": "multi",
6
+ "points": [
7
+ {
8
+ "rounds": 64,
9
+ "accuracy": 0.499225,
10
+ "advantage": -0.0015500000000000513,
11
+ "auc": null,
12
+ "accuracy_ci": [
13
+ 0.4967719555949829,
14
+ 0.5016780724907892
15
+ ],
16
+ "min_detectable_advantage": 0.004899909961350135,
17
+ "model": "tiny_cnn"
18
+ },
19
+ {
20
+ "rounds": 64,
21
+ "accuracy": 0.50099375,
22
+ "advantage": 0.001987500000000031,
23
+ "auc": null,
24
+ "accuracy_ci": [
25
+ 0.4985406754413102,
26
+ 0.5034467885454819
27
+ ],
28
+ "min_detectable_advantage": 0.004899909961350135,
29
+ "model": "linear_probe"
30
+ }
31
+ ],
32
+ "controls": {
33
+ "positive_accuracy": 1.0,
34
+ "positive_ok": true,
35
+ "negative_ci": [
36
+ 0.4966282093927081,
37
+ 0.5015343239025218
38
+ ],
39
+ "negative_ok": true
40
+ },
41
+ "bounded_null": {
42
+ "best_model": "linear_probe",
43
+ "accuracy": 0.50099375,
44
+ "accuracy_ci": [
45
+ 0.4985406754413102,
46
+ 0.5034467885454819
47
+ ],
48
+ "advantage": 0.001987500000000031,
49
+ "min_detectable_advantage": 0.004899909961350135,
50
+ "controls_ok": true,
51
+ "conclusion": "no structure detected above the detection floor"
52
+ }
53
+ }
source/bfl-ml-tierA/indistinguishability.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2026-05-16T11:54:28.796744+00:00",
3
+ "experiment": "indistinguishability",
4
+ "feature": "per-hash",
5
+ "model": "tiny_cnn",
6
+ "points": [
7
+ {
8
+ "rounds": 64,
9
+ "accuracy": 0.5007625,
10
+ "advantage": 0.0015249999999999986,
11
+ "auc": null,
12
+ "accuracy_ci": [
13
+ 0.49830942764154007,
14
+ 0.5032155447256841
15
+ ],
16
+ "min_detectable_advantage": 0.004899909961350135
17
+ }
18
+ ],
19
+ "controls": {
20
+ "positive_accuracy": 1.0,
21
+ "positive_ok": true,
22
+ "negative_ci": [
23
+ 0.49830942764154007,
24
+ 0.5032155447256841
25
+ ],
26
+ "negative_ok": true
27
+ },
28
+ "bounded_null": {}
29
+ }
source/bfl-ml-tierA/sweep_seed0.json ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2026-05-16T07:34:49.576047+00:00",
3
+ "experiment": "sweep_seed0",
4
+ "feature": "per-hash",
5
+ "model": "tiny_cnn",
6
+ "points": [
7
+ {
8
+ "rounds": 1,
9
+ "accuracy": 0.99995,
10
+ "advantage": 0.9999,
11
+ "auc": null,
12
+ "accuracy_ci": [
13
+ 0.9998193946037771,
14
+ 0.9999939447106779
15
+ ],
16
+ "min_detectable_advantage": 0.00979981992270027
17
+ },
18
+ {
19
+ "rounds": 2,
20
+ "accuracy": 1.0,
21
+ "advantage": 1.0,
22
+ "auc": null,
23
+ "accuracy_ci": [
24
+ 0.9999077822659638,
25
+ 1.0
26
+ ],
27
+ "min_detectable_advantage": 0.00979981992270027
28
+ },
29
+ {
30
+ "rounds": 3,
31
+ "accuracy": 0.999975,
32
+ "advantage": 0.9999499999999999,
33
+ "auc": null,
34
+ "accuracy_ci": [
35
+ 0.9998607168748304,
36
+ 0.9999993670550007
37
+ ],
38
+ "min_detectable_advantage": 0.00979981992270027
39
+ },
40
+ {
41
+ "rounds": 4,
42
+ "accuracy": 0.500475,
43
+ "advantage": 0.0009500000000000064,
44
+ "auc": null,
45
+ "accuracy_ci": [
46
+ 0.4955627069332437,
47
+ 0.5053872240970375
48
+ ],
49
+ "min_detectable_advantage": 0.00979981992270027
50
+ },
51
+ {
52
+ "rounds": 6,
53
+ "accuracy": 0.4994,
54
+ "advantage": -0.0011999999999999789,
55
+ "auc": null,
56
+ "accuracy_ci": [
57
+ 0.4944877862946945,
58
+ 0.5043123008249503
59
+ ],
60
+ "min_detectable_advantage": 0.00979981992270027
61
+ },
62
+ {
63
+ "rounds": 8,
64
+ "accuracy": 0.50295,
65
+ "advantage": 0.005900000000000016,
66
+ "auc": null,
67
+ "accuracy_ci": [
68
+ 0.49803761031634497,
69
+ 0.5078619613453772
70
+ ],
71
+ "min_detectable_advantage": 0.00979981992270027
72
+ },
73
+ {
74
+ "rounds": 12,
75
+ "accuracy": 0.50155,
76
+ "advantage": 0.0031000000000001027,
77
+ "auc": null,
78
+ "accuracy_ci": [
79
+ 0.4966376502202616,
80
+ 0.5064621247206528
81
+ ],
82
+ "min_detectable_advantage": 0.00979981992270027
83
+ },
84
+ {
85
+ "rounds": 16,
86
+ "accuracy": 0.5032,
87
+ "advantage": 0.006399999999999961,
88
+ "auc": null,
89
+ "accuracy_ci": [
90
+ 0.4982876072329792,
91
+ 0.5081119281288841
92
+ ],
93
+ "min_detectable_advantage": 0.00979981992270027
94
+ },
95
+ {
96
+ "rounds": 24,
97
+ "accuracy": 0.50225,
98
+ "advantage": 0.0044999999999999485,
99
+ "auc": null,
100
+ "accuracy_ci": [
101
+ 0.49733762546654603,
102
+ 0.5071620478347755
103
+ ],
104
+ "min_detectable_advantage": 0.00979981992270027
105
+ },
106
+ {
107
+ "rounds": 32,
108
+ "accuracy": 0.50025,
109
+ "advantage": 0.0004999999999999449,
110
+ "auc": null,
111
+ "accuracy_ci": [
112
+ 0.49533772166968126,
113
+ 0.5051622420304669
114
+ ],
115
+ "min_detectable_advantage": 0.00979981992270027
116
+ },
117
+ {
118
+ "rounds": 48,
119
+ "accuracy": 0.50265,
120
+ "advantage": 0.005300000000000082,
121
+ "auc": null,
122
+ "accuracy_ci": [
123
+ 0.49773761563333563,
124
+ 0.5075619995882157
125
+ ],
126
+ "min_detectable_advantage": 0.00979981992270027
127
+ },
128
+ {
129
+ "rounds": 64,
130
+ "accuracy": 0.502025,
131
+ "advantage": 0.004050000000000109,
132
+ "auc": null,
133
+ "accuracy_ci": [
134
+ 0.49711263237578385,
135
+ 0.5069370735954074
136
+ ],
137
+ "min_detectable_advantage": 0.00979981992270027
138
+ }
139
+ ],
140
+ "controls": {
141
+ "positive_accuracy": 1.0,
142
+ "positive_ok": true,
143
+ "negative_ci": [
144
+ 0.49643765905663984,
145
+ 0.5062621449241573
146
+ ],
147
+ "negative_ok": true
148
+ },
149
+ "bounded_null": {}
150
+ }
source/bfl-ml-tierA/sweep_seed1.json ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2026-05-16T08:16:58.741310+00:00",
3
+ "experiment": "sweep_seed1",
4
+ "feature": "per-hash",
5
+ "model": "tiny_cnn",
6
+ "points": [
7
+ {
8
+ "rounds": 1,
9
+ "accuracy": 0.999925,
10
+ "advantage": 0.9998499999999999,
11
+ "auc": null,
12
+ "accuracy_ci": [
13
+ 0.9997808339737771,
14
+ 0.9999845329298606
15
+ ],
16
+ "min_detectable_advantage": 0.00979981992270027
17
+ },
18
+ {
19
+ "rounds": 2,
20
+ "accuracy": 0.99995,
21
+ "advantage": 0.9999,
22
+ "auc": null,
23
+ "accuracy_ci": [
24
+ 0.9998193946037771,
25
+ 0.9999939447106779
26
+ ],
27
+ "min_detectable_advantage": 0.00979981992270027
28
+ },
29
+ {
30
+ "rounds": 3,
31
+ "accuracy": 0.999975,
32
+ "advantage": 0.9999499999999999,
33
+ "auc": null,
34
+ "accuracy_ci": [
35
+ 0.9998607168748304,
36
+ 0.9999993670550007
37
+ ],
38
+ "min_detectable_advantage": 0.00979981992270027
39
+ },
40
+ {
41
+ "rounds": 4,
42
+ "accuracy": 0.498775,
43
+ "advantage": -0.002449999999999952,
44
+ "auc": null,
45
+ "accuracy_ci": [
46
+ 0.49386284284674964,
47
+ 0.5036873350225266
48
+ ],
49
+ "min_detectable_advantage": 0.00979981992270027
50
+ },
51
+ {
52
+ "rounds": 6,
53
+ "accuracy": 0.50565,
54
+ "advantage": 0.011300000000000088,
55
+ "auc": null,
56
+ "accuracy_ci": [
57
+ 0.500737641843862,
58
+ 0.5105615377793082
59
+ ],
60
+ "min_detectable_advantage": 0.00979981992270027
61
+ },
62
+ {
63
+ "rounds": 8,
64
+ "accuracy": 0.49815,
65
+ "advantage": -0.0037000000000000366,
66
+ "auc": null,
67
+ "accuracy_ci": [
68
+ 0.4932379070545073,
69
+ 0.5030623615644031
70
+ ],
71
+ "min_detectable_advantage": 0.00979981992270027
72
+ },
73
+ {
74
+ "rounds": 12,
75
+ "accuracy": 0.495,
76
+ "advantage": -0.010000000000000009,
77
+ "auc": null,
78
+ "accuracy_ci": [
79
+ 0.49008834719199657,
80
+ 0.49991237880516426
81
+ ],
82
+ "min_detectable_advantage": 0.00979981992270027
83
+ },
84
+ {
85
+ "rounds": 16,
86
+ "accuracy": 0.49775,
87
+ "advantage": -0.0044999999999999485,
88
+ "auc": null,
89
+ "accuracy_ci": [
90
+ 0.4928379521652245,
91
+ 0.502662374533454
92
+ ],
93
+ "min_detectable_advantage": 0.00979981992270027
94
+ },
95
+ {
96
+ "rounds": 24,
97
+ "accuracy": 0.5028,
98
+ "advantage": 0.005600000000000049,
99
+ "auc": null,
100
+ "accuracy_ci": [
101
+ 0.4978876127543479,
102
+ 0.5077119806872891
103
+ ],
104
+ "min_detectable_advantage": 0.00979981992270027
105
+ },
106
+ {
107
+ "rounds": 32,
108
+ "accuracy": 0.497825,
109
+ "advantage": -0.004349999999999965,
110
+ "auc": null,
111
+ "accuracy_ci": [
112
+ 0.49291294346810305,
113
+ 0.5027373723406188
114
+ ],
115
+ "min_detectable_advantage": 0.00979981992270027
116
+ },
117
+ {
118
+ "rounds": 48,
119
+ "accuracy": 0.49795,
120
+ "advantage": -0.0040999999999999925,
121
+ "auc": null,
122
+ "accuracy_ci": [
123
+ 0.4930379292178877,
124
+ 0.5028623684409066
125
+ ],
126
+ "min_detectable_advantage": 0.00979981992270027
127
+ },
128
+ {
129
+ "rounds": 64,
130
+ "accuracy": 0.4992,
131
+ "advantage": -0.0016000000000000458,
132
+ "auc": null,
133
+ "accuracy_ci": [
134
+ 0.4942878035584158,
135
+ 0.504112312601111
136
+ ],
137
+ "min_detectable_advantage": 0.00979981992270027
138
+ }
139
+ ],
140
+ "controls": {
141
+ "positive_accuracy": 0.99995,
142
+ "positive_ok": true,
143
+ "negative_ci": [
144
+ 0.4927629609725905,
145
+ 0.5025873766160448
146
+ ],
147
+ "negative_ok": true
148
+ },
149
+ "bounded_null": {}
150
+ }
source/bfl-ml-tierA/sweep_seed2.json ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2026-05-16T09:08:34.034602+00:00",
3
+ "experiment": "sweep_seed2",
4
+ "feature": "per-hash",
5
+ "model": "tiny_cnn",
6
+ "points": [
7
+ {
8
+ "rounds": 1,
9
+ "accuracy": 0.999975,
10
+ "advantage": 0.9999499999999999,
11
+ "auc": null,
12
+ "accuracy_ci": [
13
+ 0.9998607168748304,
14
+ 0.9999993670550007
15
+ ],
16
+ "min_detectable_advantage": 0.00979981992270027
17
+ },
18
+ {
19
+ "rounds": 2,
20
+ "accuracy": 1.0,
21
+ "advantage": 1.0,
22
+ "auc": null,
23
+ "accuracy_ci": [
24
+ 0.9999077822659638,
25
+ 1.0
26
+ ],
27
+ "min_detectable_advantage": 0.00979981992270027
28
+ },
29
+ {
30
+ "rounds": 3,
31
+ "accuracy": 0.9998,
32
+ "advantage": 0.9996,
33
+ "auc": null,
34
+ "accuracy_ci": [
35
+ 0.999605958510213,
36
+ 0.9999136503678103
37
+ ],
38
+ "min_detectable_advantage": 0.00979981992270027
39
+ },
40
+ {
41
+ "rounds": 4,
42
+ "accuracy": 0.50335,
43
+ "advantage": 0.006699999999999928,
44
+ "auc": null,
45
+ "accuracy_ci": [
46
+ 0.49843760597094716,
47
+ 0.5082619076110002
48
+ ],
49
+ "min_detectable_advantage": 0.00979981992270027
50
+ },
51
+ {
52
+ "rounds": 6,
53
+ "accuracy": 0.501375,
54
+ "advantage": 0.00275000000000003,
55
+ "auc": null,
56
+ "accuracy_ci": [
57
+ 0.49646265790922056,
58
+ 0.5062871424415913
59
+ ],
60
+ "min_detectable_advantage": 0.00979981992270027
61
+ },
62
+ {
63
+ "rounds": 8,
64
+ "accuracy": 0.49895,
65
+ "advantage": -0.0020999999999999908,
66
+ "auc": null,
67
+ "accuracy_ci": [
68
+ 0.49403782624048226,
69
+ 0.5038623262188968
70
+ ],
71
+ "min_detectable_advantage": 0.00979981992270027
72
+ },
73
+ {
74
+ "rounds": 12,
75
+ "accuracy": 0.503325,
76
+ "advantage": 0.006650000000000045,
77
+ "auc": null,
78
+ "accuracy_ci": [
79
+ 0.49841260615066135,
80
+ 0.5082369110612721
81
+ ],
82
+ "min_detectable_advantage": 0.00979981992270027
83
+ },
84
+ {
85
+ "rounds": 16,
86
+ "accuracy": 0.496075,
87
+ "advantage": -0.007850000000000024,
88
+ "auc": null,
89
+ "accuracy_ci": [
90
+ 0.4911631751262332,
91
+ 0.5009873947815012
92
+ ],
93
+ "min_detectable_advantage": 0.00979981992270027
94
+ },
95
+ {
96
+ "rounds": 24,
97
+ "accuracy": 0.500225,
98
+ "advantage": 0.00045000000000006146,
99
+ "auc": null,
100
+ "accuracy_ci": [
101
+ 0.49531272336830834,
102
+ 0.5051372439618249
103
+ ],
104
+ "min_detectable_advantage": 0.00979981992270027
105
+ },
106
+ {
107
+ "rounds": 32,
108
+ "accuracy": 0.49975,
109
+ "advantage": -0.0004999999999999449,
110
+ "auc": null,
111
+ "accuracy_ci": [
112
+ 0.49483775796953317,
113
+ 0.5046622783303187
114
+ ],
115
+ "min_detectable_advantage": 0.00979981992270027
116
+ },
117
+ {
118
+ "rounds": 48,
119
+ "accuracy": 0.502275,
120
+ "advantage": 0.004550000000000054,
121
+ "auc": null,
122
+ "accuracy_ci": [
123
+ 0.4973626247600997,
124
+ 0.5071870449112362
125
+ ],
126
+ "min_detectable_advantage": 0.00979981992270027
127
+ },
128
+ {
129
+ "rounds": 64,
130
+ "accuracy": 0.500275,
131
+ "advantage": 0.0005500000000000504,
132
+ "auc": null,
133
+ "accuracy_ci": [
134
+ 0.4953627199833032,
135
+ 0.5051872400868596
136
+ ],
137
+ "min_detectable_advantage": 0.00979981992270027
138
+ }
139
+ ],
140
+ "controls": {
141
+ "positive_accuracy": 1.0,
142
+ "positive_ok": true,
143
+ "negative_ci": [
144
+ 0.49708763320472354,
145
+ 0.5069120763964532
146
+ ],
147
+ "negative_ok": true
148
+ },
149
+ "bounded_null": {}
150
+ }
source/bfl-ml-tierB/sweep_seed0.json ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2026-05-16T15:40:23.083515+00:00",
3
+ "experiment": "sweep_seed0",
4
+ "feature": "per-hash",
5
+ "model": "tiny_cnn",
6
+ "points": [
7
+ {
8
+ "rounds": 1,
9
+ "accuracy": 1.0,
10
+ "advantage": 1.0,
11
+ "auc": null,
12
+ "accuracy_ci": [
13
+ 0.9999631118858421,
14
+ 1.0
15
+ ],
16
+ "min_detectable_advantage": 0.006197950323045616
17
+ },
18
+ {
19
+ "rounds": 2,
20
+ "accuracy": 0.99999,
21
+ "advantage": 0.9999800000000001,
22
+ "auc": null,
23
+ "accuracy_ci": [
24
+ 0.9999442848396523,
25
+ 0.9999997468219523
26
+ ],
27
+ "min_detectable_advantage": 0.006197950323045616
28
+ },
29
+ {
30
+ "rounds": 3,
31
+ "accuracy": 0.99999,
32
+ "advantage": 0.9999800000000001,
33
+ "auc": null,
34
+ "accuracy_ci": [
35
+ 0.9999442848396523,
36
+ 0.9999997468219523
37
+ ],
38
+ "min_detectable_advantage": 0.006197950323045616
39
+ },
40
+ {
41
+ "rounds": 4,
42
+ "accuracy": 0.49862,
43
+ "advantage": -0.0027599999999999847,
44
+ "auc": null,
45
+ "accuracy_ci": [
46
+ 0.49551611432120896,
47
+ 0.5017239657314021
48
+ ],
49
+ "min_detectable_advantage": 0.006197950323045616
50
+ },
51
+ {
52
+ "rounds": 5,
53
+ "accuracy": 0.49797,
54
+ "advantage": -0.0040599999999999525,
55
+ "auc": null,
56
+ "accuracy_ci": [
57
+ 0.49486614691167463,
58
+ 0.5010739708468777
59
+ ],
60
+ "min_detectable_advantage": 0.006197950323045616
61
+ },
62
+ {
63
+ "rounds": 6,
64
+ "accuracy": 0.4979,
65
+ "advantage": -0.0041999999999999815,
66
+ "auc": null,
67
+ "accuracy_ci": [
68
+ 0.49479615073379235,
69
+ 0.5010039710853998
70
+ ],
71
+ "min_detectable_advantage": 0.006197950323045616
72
+ },
73
+ {
74
+ "rounds": 8,
75
+ "accuracy": 0.49807,
76
+ "advantage": -0.0038599999999999746,
77
+ "auc": null,
78
+ "accuracy_ci": [
79
+ 0.4949661415568716,
80
+ 0.5011739704007666
81
+ ],
82
+ "min_detectable_advantage": 0.006197950323045616
83
+ },
84
+ {
85
+ "rounds": 10,
86
+ "accuracy": 0.49994,
87
+ "advantage": -0.00012000000000000899,
88
+ "auc": null,
89
+ "accuracy_ci": [
90
+ 0.49683606425438664,
91
+ 0.5030439392261616
92
+ ],
93
+ "min_detectable_advantage": 0.006197950323045616
94
+ },
95
+ {
96
+ "rounds": 12,
97
+ "accuracy": 0.49789,
98
+ "advantage": -0.0042200000000000015,
99
+ "auc": null,
100
+ "accuracy_ci": [
101
+ 0.49478615128476744,
102
+ 0.5009939711145162
103
+ ],
104
+ "min_detectable_advantage": 0.006197950323045616
105
+ },
106
+ {
107
+ "rounds": 16,
108
+ "accuracy": 0.4955,
109
+ "advantage": -0.009000000000000008,
110
+ "auc": null,
111
+ "accuracy_ci": [
112
+ 0.49239631852025956,
113
+ 0.4986039425208842
114
+ ],
115
+ "min_detectable_advantage": 0.006197950323045616
116
+ },
117
+ {
118
+ "rounds": 20,
119
+ "accuracy": 0.49895,
120
+ "advantage": -0.0020999999999999908,
121
+ "auc": null,
122
+ "accuracy_ci": [
123
+ 0.4958460997796744,
124
+ 0.5020539611299208
125
+ ],
126
+ "min_detectable_advantage": 0.006197950323045616
127
+ },
128
+ {
129
+ "rounds": 24,
130
+ "accuracy": 0.49973,
131
+ "advantage": -0.0005399999999999849,
132
+ "auc": null,
133
+ "accuracy_ci": [
134
+ 0.49662607077485327,
135
+ 0.502833944887614
136
+ ],
137
+ "min_detectable_advantage": 0.006197950323045616
138
+ },
139
+ {
140
+ "rounds": 32,
141
+ "accuracy": 0.49817,
142
+ "advantage": -0.0036599999999999966,
143
+ "auc": null,
144
+ "accuracy_ci": [
145
+ 0.49506613632602714,
146
+ 0.5012739698306969
147
+ ],
148
+ "min_detectable_advantage": 0.006197950323045616
149
+ },
150
+ {
151
+ "rounds": 40,
152
+ "accuracy": 0.49779,
153
+ "advantage": -0.0044199999999999795,
154
+ "auc": null,
155
+ "accuracy_ci": [
156
+ 0.49468615686269696,
157
+ 0.5008939713375008
158
+ ],
159
+ "min_detectable_advantage": 0.006197950323045616
160
+ },
161
+ {
162
+ "rounds": 48,
163
+ "accuracy": 0.49853,
164
+ "advantage": -0.0029400000000000537,
165
+ "auc": null,
166
+ "accuracy_ci": [
167
+ 0.49542611852136115,
168
+ 0.5016339667520726
169
+ ],
170
+ "min_detectable_advantage": 0.006197950323045616
171
+ },
172
+ {
173
+ "rounds": 56,
174
+ "accuracy": 0.49797,
175
+ "advantage": -0.0040599999999999525,
176
+ "auc": null,
177
+ "accuracy_ci": [
178
+ 0.49486614691167463,
179
+ 0.5010739708468777
180
+ ],
181
+ "min_detectable_advantage": 0.006197950323045616
182
+ },
183
+ {
184
+ "rounds": 64,
185
+ "accuracy": 0.50157,
186
+ "advantage": 0.0031399999999999206,
187
+ "auc": null,
188
+ "accuracy_ci": [
189
+ 0.4984660322316088,
190
+ 0.5046738766940436
191
+ ],
192
+ "min_detectable_advantage": 0.006197950323045616
193
+ }
194
+ ],
195
+ "controls": {
196
+ "positive_accuracy": 0.99999,
197
+ "positive_ok": true,
198
+ "negative_ci": [
199
+ 0.4951061342683978,
200
+ 0.5013139695679607
201
+ ],
202
+ "negative_ok": true
203
+ },
204
+ "bounded_null": {}
205
+ }
source/bfl-ml-tierB/sweep_seed1.json ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "timestamp": "2026-05-16T18:36:44.901723+00:00",
3
+ "experiment": "sweep_seed1",
4
+ "feature": "per-hash",
5
+ "model": "tiny_cnn",
6
+ "points": [
7
+ {
8
+ "rounds": 1,
9
+ "accuracy": 0.99995,
10
+ "advantage": 0.9999,
11
+ "auc": null,
12
+ "accuracy_ci": [
13
+ 0.9998833205695797,
14
+ 0.999983764943183
15
+ ],
16
+ "min_detectable_advantage": 0.006197950323045616
17
+ },
18
+ {
19
+ "rounds": 2,
20
+ "accuracy": 0.99999,
21
+ "advantage": 0.9999800000000001,
22
+ "auc": null,
23
+ "accuracy_ci": [
24
+ 0.9999442848396523,
25
+ 0.9999997468219523
26
+ ],
27
+ "min_detectable_advantage": 0.006197950323045616
28
+ },
29
+ {
30
+ "rounds": 3,
31
+ "accuracy": 1.0,
32
+ "advantage": 1.0,
33
+ "auc": null,
34
+ "accuracy_ci": [
35
+ 0.9999631118858421,
36
+ 1.0
37
+ ],
38
+ "min_detectable_advantage": 0.006197950323045616
39
+ },
40
+ {
41
+ "rounds": 4,
42
+ "accuracy": 0.49701,
43
+ "advantage": -0.005979999999999985,
44
+ "auc": null,
45
+ "accuracy_ci": [
46
+ 0.4939062046248662,
47
+ 0.5001139688224632
48
+ ],
49
+ "min_detectable_advantage": 0.006197950323045616
50
+ },
51
+ {
52
+ "rounds": 5,
53
+ "accuracy": 0.50168,
54
+ "advantage": 0.0033600000000000296,
55
+ "auc": null,
56
+ "accuracy_ci": [
57
+ 0.4985760312568294,
58
+ 0.5047838712878174
59
+ ],
60
+ "min_detectable_advantage": 0.006197950323045616
61
+ },
62
+ {
63
+ "rounds": 6,
64
+ "accuracy": 0.49809,
65
+ "advantage": -0.0038200000000000456,
66
+ "auc": null,
67
+ "accuracy_ci": [
68
+ 0.494986140500786,
69
+ 0.5011939702966695
70
+ ],
71
+ "min_detectable_advantage": 0.006197950323045616
72
+ },
73
+ {
74
+ "rounds": 8,
75
+ "accuracy": 0.49898,
76
+ "advantage": -0.0020400000000000418,
77
+ "auc": null,
78
+ "accuracy_ci": [
79
+ 0.49587609852465336,
80
+ 0.5020839606446676
81
+ ],
82
+ "min_detectable_advantage": 0.006197950323045616
83
+ },
84
+ {
85
+ "rounds": 10,
86
+ "accuracy": 0.49701,
87
+ "advantage": -0.005979999999999985,
88
+ "auc": null,
89
+ "accuracy_ci": [
90
+ 0.4939062046248662,
91
+ 0.5001139688224632
92
+ ],
93
+ "min_detectable_advantage": 0.006197950323045616
94
+ },
95
+ {
96
+ "rounds": 12,
97
+ "accuracy": 0.4997,
98
+ "advantage": -0.0006000000000000449,
99
+ "auc": null,
100
+ "accuracy_ci": [
101
+ 0.49659607175097265,
102
+ 0.5028039456517687
103
+ ],
104
+ "min_detectable_advantage": 0.006197950323045616
105
+ },
106
+ {
107
+ "rounds": 16,
108
+ "accuracy": 0.50064,
109
+ "advantage": 0.0012799999999999478,
110
+ "auc": null,
111
+ "accuracy_ci": [
112
+ 0.497536046467494,
113
+ 0.5037439164066575
114
+ ],
115
+ "min_detectable_advantage": 0.006197950323045616
116
+ },
117
+ {
118
+ "rounds": 20,
119
+ "accuracy": 0.49974,
120
+ "advantage": -0.0005199999999999649,
121
+ "auc": null,
122
+ "accuracy_ci": [
123
+ 0.49663607045195934,
124
+ 0.5028439446304165
125
+ ],
126
+ "min_detectable_advantage": 0.006197950323045616
127
+ },
128
+ {
129
+ "rounds": 24,
130
+ "accuracy": 0.50222,
131
+ "advantage": 0.0044399999999999995,
132
+ "auc": null,
133
+ "accuracy_ci": [
134
+ 0.4991160286470185,
135
+ 0.5053238425726923
136
+ ],
137
+ "min_detectable_advantage": 0.006197950323045616
138
+ },
139
+ {
140
+ "rounds": 32,
141
+ "accuracy": 0.49701,
142
+ "advantage": -0.005979999999999985,
143
+ "auc": null,
144
+ "accuracy_ci": [
145
+ 0.4939062046248662,
146
+ 0.5001139688224632
147
+ ],
148
+ "min_detectable_advantage": 0.006197950323045616
149
+ },
150
+ {
151
+ "rounds": 40,
152
+ "accuracy": 0.49701,
153
+ "advantage": -0.005979999999999985,
154
+ "auc": null,
155
+ "accuracy_ci": [
156
+ 0.4939062046248662,
157
+ 0.5001139688224632
158
+ ],
159
+ "min_detectable_advantage": 0.006197950323045616
160
+ },
161
+ {
162
+ "rounds": 48,
163
+ "accuracy": 0.5002,
164
+ "advantage": 0.00039999999999995595,
165
+ "auc": null,
166
+ "accuracy_ci": [
167
+ 0.4970960569387984,
168
+ 0.5033039314593739
169
+ ],
170
+ "min_detectable_advantage": 0.006197950323045616
171
+ },
172
+ {
173
+ "rounds": 56,
174
+ "accuracy": 0.49856,
175
+ "advantage": -0.0028799999999999937,
176
+ "auc": null,
177
+ "accuracy_ci": [
178
+ 0.4954561171101542,
179
+ 0.5016639664230054
180
+ ],
181
+ "min_detectable_advantage": 0.006197950323045616
182
+ },
183
+ {
184
+ "rounds": 64,
185
+ "accuracy": 0.49865,
186
+ "advantage": -0.0027000000000000357,
187
+ "auc": null,
188
+ "accuracy_ci": [
189
+ 0.49554611294347056,
190
+ 0.5017539653688663
191
+ ],
192
+ "min_detectable_advantage": 0.006197950323045616
193
+ }
194
+ ],
195
+ "controls": {
196
+ "positive_accuracy": 0.99999,
197
+ "positive_ok": true,
198
+ "negative_ci": [
199
+ 0.4939062046248662,
200
+ 0.5001139688224632
201
+ ],
202
+ "negative_ok": true
203
+ },
204
+ "bounded_null": {}
205
+ }
source/dynamics_validated_seed0.json ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "config": {
3
+ "seed": 0,
4
+ "n": 20000,
5
+ "epochs": 25,
6
+ "trunc_widths": [
7
+ 1,
8
+ 2,
9
+ 3,
10
+ 4
11
+ ],
12
+ "n_bins": 4
13
+ },
14
+ "elapsed_s": 2124.1,
15
+ "points": [
16
+ {
17
+ "rounds": 1,
18
+ "accuracy": 0.3535,
19
+ "advantage": 0.10349999999999998,
20
+ "auc": null,
21
+ "accuracy_ci": [
22
+ 0.33867165024339485,
23
+ 0.3685426437655393
24
+ ],
25
+ "min_detectable_advantage": 0.013418956077878678,
26
+ "chance": 0.25
27
+ },
28
+ {
29
+ "rounds": 2,
30
+ "accuracy": 0.249,
31
+ "advantage": -0.0010000000000000009,
32
+ "auc": null,
33
+ "accuracy_ci": [
34
+ 0.23566118455531623,
35
+ 0.26270639218531416
36
+ ],
37
+ "min_detectable_advantage": 0.013418956077878678,
38
+ "chance": 0.25
39
+ },
40
+ {
41
+ "rounds": 3,
42
+ "accuracy": 0.249,
43
+ "advantage": -0.0010000000000000009,
44
+ "auc": null,
45
+ "accuracy_ci": [
46
+ 0.23566118455531623,
47
+ 0.26270639218531416
48
+ ],
49
+ "min_detectable_advantage": 0.013418956077878678,
50
+ "chance": 0.25
51
+ },
52
+ {
53
+ "rounds": 4,
54
+ "accuracy": 0.24275,
55
+ "advantage": -0.0072500000000000064,
56
+ "auc": null,
57
+ "accuracy_ci": [
58
+ 0.22953001188344008,
59
+ 0.25634675686691016
60
+ ],
61
+ "min_detectable_advantage": 0.013418956077878678,
62
+ "chance": 0.25
63
+ }
64
+ ],
65
+ "controls": {
66
+ "positive_accuracy": 0.3535,
67
+ "positive_ci": [
68
+ 0.33867165024339485,
69
+ 0.3685426437655393
70
+ ],
71
+ "positive_ok": true,
72
+ "permuted_label_accuracy": 0.3535,
73
+ "permuted_label_ci": [
74
+ 0.33867165024339485,
75
+ 0.3685426437655393
76
+ ],
77
+ "negative_ok": false,
78
+ "note": "knob=truncation width (bytes); chance=1/n_bins; advantage=accuracy-chance; positive_ok = CI lower bound > chance; negative_ok = permuted-label model CI lower bound <= chance (no setup/dataset artifact)."
79
+ }
80
+ }