Skip to content

Commit b5c9acb

Browse files
committed
Include KD experiments in aggregation script
- Load from both results/raw and results/raw_kd directories - Fixes missing 49 KD experiments in analysis (Phase 2, 2.5, 4) - Total experiments now: 112 (was 63)
1 parent d341ba6 commit b5c9acb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

analysis/aggregate_results.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ def save_aggregated(df: pd.DataFrame, output_path: str = "results/processed/aggr
107107

108108

109109
if __name__ == "__main__":
110-
df = load_results()
110+
# Load from both raw/ and raw_kd/ directories
111+
df = load_results(["results/raw", "results/raw_kd"])
111112
print(f"Loaded {len(df)} experiment results")
112113
print(df.head())
113114

0 commit comments

Comments
 (0)