1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#!/usr/bin/env python3
"""Apply the frozen A2a selector to convolutional apical-screen records."""
import argparse
import glob
import json
import math
import os
MODES = ("spatial_template", "channel_gated")
EXPECTED_SCALES = (0.0, 1.0)
EXPECTED_RATES = (0.001, 0.01, 0.1)
def load(path):
with open(path) as handle:
record = json.load(handle)
args = record["args"]
if record["provenance"]["git_tracked_dirty"]:
raise ValueError(f"tracked-dirty result: {path}")
expected = {
"mode": "sdil", "depth": 20, "width": 16, "seed": 0,
"epochs": 0, "train_limit": 10000, "val_examples": 5000,
"a_warmup_steps": 100, "pert_directions": 1, "pert_every": 4,
"normalization": "batchnorm",
}
for key, value in expected.items():
if args.get(key) != value:
raise ValueError(f"{path}: {key}={args.get(key)!r}, expected {value!r}")
if record["split"]["validation_index_sha256"] != (
"8328b206a97c420e49e54e3eca4abe3274c4756b084355784ea3fb8059e4515b"):
raise ValueError(f"split drift: {path}")
diagnostics = record.get("diagnostics")
warmup = record.get("apical_warmup", {}).get("last")
if diagnostics is None or warmup is None:
raise ValueError(f"missing diagnostics/warmup: {path}")
values = diagnostics["teaching_negative_gradient_cosine"]
early_count = max(1, len(values) // 3)
metrics = {
"early_third_alignment": sum(values[:early_count]) / early_count,
"all_layer_alignment": sum(values) / len(values),
"calibration_mse": warmup["calibration_mse"],
"prediction_target_cosine": warmup["prediction_target_cosine"],
}
finite = (record["final"]["finite"]
and all(math.isfinite(value) for value in metrics.values()))
return {
"path": path,
"source_commit": record["provenance"]["git_commit"],
"vectorizer_mode": args["vectorizer_mode"],
"a_scale": float(args["a_scale"]),
"eta_A": float(args["eta_A"]),
"metrics": metrics,
"eligible": finite and metrics["early_third_alignment"] > 0.0,
"vectorizer_parameters": record["architecture"]["vectorizer_parameters"],
}
def main():
parser = argparse.ArgumentParser()
parser.add_argument("--input", default="results/oral_a_apical_screen")
parser.add_argument("--out", default="results/oral_a_apical_selection.json")
args = parser.parse_args()
paths = sorted(glob.glob(os.path.join(args.input, "*.json")))
rows = [load(path) for path in paths]
observed = {(row["vectorizer_mode"], row["a_scale"], row["eta_A"])
for row in rows}
expected = {(mode, scale, rate) for mode in MODES
for scale in EXPECTED_SCALES for rate in EXPECTED_RATES}
if observed != expected or len(rows) != len(expected):
raise ValueError(f"incomplete A2a grid: missing={expected-observed}, extra={observed-expected}")
if len({row["source_commit"] for row in rows}) != 1:
raise ValueError("A2a source commits differ")
selected = {}
for mode in MODES:
eligible = [row for row in rows
if row["vectorizer_mode"] == mode and row["eligible"]]
if eligible:
eligible.sort(key=lambda row: (
-row["metrics"]["early_third_alignment"],
-row["metrics"]["all_layer_alignment"],
row["eta_A"], row["a_scale"]))
selected[mode] = eligible[0]
output = {
"protocol": "oral_a_A2a_v1",
"status": ("selected" if len(selected) == len(MODES)
else "failed_no_eligible_family"),
"rows": rows,
"selected": selected,
"confirmation_test_seeds_touched": False,
}
os.makedirs(os.path.dirname(os.path.abspath(args.out)), exist_ok=True)
with open(args.out, "w") as handle:
json.dump(output, handle, indent=2, sort_keys=True)
handle.write("\n")
print(json.dumps({"status": output["status"], "selected": selected}, indent=2))
if __name__ == "__main__":
main()
|