File size: 337 Bytes
a3682cf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """
Compatibility shim for the corrected experiment runner.
The benchmark logic now lives in `experiments/run_all.py`, which implements:
- strict prefix evaluation
- shuffled-chronology causal ablation
- aligned XGBoost baseline
- multi-seed aggregation
"""
from experiments.run_all import main
if __name__ == "__main__":
main()
|