mirror of
https://github.com/codestable/CodeStable.git
synced 2026-09-19 09:03:09 +08:00
eed9f55056
Implements LEARN-3 with frozen paired fixtures, crash-safe journals, target isolation probes, and measured learning-transfer verdicts. Supersedes local checkpoints 3022df5, 715c831, 9fb5d0f, and fe635f1; those attestations were invalidated and never used for real model runs.
11 lines
272 B
Python
11 lines
272 B
Python
#!/usr/bin/env python3
|
|
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
EXPERIMENT = Path(__file__).resolve().parents[1]
|
|
sys.path.insert(0, str(EXPERIMENT))
|
|
from _asset_mutations import apply_preflight # noqa: E402
|
|
|
|
apply_preflight(Path(sys.argv[1]).resolve(), "grouping", "naive")
|