diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-07-21 08:53:20 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-07-21 08:53:20 -0500 |
| commit | 65fdc3dfd67b1ac61f977fafa363e7a89ed0da57 (patch) | |
| tree | 0b89e14a3776066b6233d932be210488fda9f8d9 | |
| parent | 262c6d9ef3f0461218c1a5e632fc7dd6357e0a20 (diff) | |
analysis: include exact EP architecture match
| -rwxr-xr-x | experiments/analyze_verified.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/experiments/analyze_verified.py b/experiments/analyze_verified.py index 50863b5..da3c923 100755 --- a/experiments/analyze_verified.py +++ b/experiments/analyze_verified.py @@ -141,6 +141,7 @@ def print_ep_match(root): records = read_many([ os.path.join(root, "ep_original_v2_*.json"), os.path.join(root, "ep_match_v1_*.json"), + os.path.join(root, "ep_archmatch_v1_*.json"), ]) groups = {} for record in records: @@ -167,6 +168,7 @@ def provenance_audit(root): os.path.join(root, "baseline_budget_v1_mnist_ff_*.json"), os.path.join(root, "ep_original_v2_*.json"), os.path.join(root, "ep_match_v1_*.json"), + os.path.join(root, "ep_archmatch_v1_*.json"), ]) dirty = [r["_path"] for r in records if r.get("provenance", {}).get("git_dirty") is not False] print(f"\n\nProvenance: {len(records)} files audited; {len(dirty)} dirty or unknown.") |
