인과 GT leg 엔진·drawdown tier·train 캘리브레이션, Phase 2 Go/No-Go 및 시뮬 리포트를 반영한다. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
358 B
Python
12 lines
358 B
Python
#!/usr/bin/env python3
|
|
"""인과 GT leg 엔진 파라미터 캘리브레이션 (Option C +300% 경로)."""
|
|
import runpy
|
|
from pathlib import Path
|
|
|
|
runpy.run_path(str(Path(__file__).resolve().parent / "_bootstrap.py"))
|
|
|
|
from deepcoin.ground_truth.causal_gt_calibrate import run_causal_gt_calibration
|
|
|
|
if __name__ == "__main__":
|
|
run_causal_gt_calibration()
|