Files
codestable__codestable/experiments/cs-learning-transfer-001/preflight/refactor-events-naive.py
T
dafang eed9f55056 feat(eval): add paired project learning transfer
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.
2026-08-02 05:21:37 +08:00

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")