paco-dev #2

Merged
pgoze-ensae merged 39 commits from paco-dev into main 2026-04-13 21:51:04 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 53668dd6ee - Show all commits

View File

@ -801,13 +801,13 @@ def export_results(scores_history, mapping_history, surgery_log, all_months, out
# ───────────────────────────────────────────── # ─────────────────────────────────────────────
# 8. PIPELINE PRINCIPAL # 8. PIPELINE PRINCIPAL
# ───────────────────────────────────────────── # ─────────────────────────────────────────────
def run_pipeline(aum_path, flows_path, broken_months_path="carmignac_broken_months.csv"): def run_pipeline(broken_months_path="alpha_5%/carmignac_broken_months.csv"):
print("=" * 60) print("=" * 60)
print("CARMIGNAC — Pipeline de réparation des Registrar IDs") print("CARMIGNAC — Pipeline de réparation des Registrar IDs")
print("=" * 60) print("=" * 60)
# Chargement # Chargement
aum, flows = load_data(aum_path, flows_path) aum, flows = load_data()
# Broken months (optional — produced by carmignac_diagnostics.py) # Broken months (optional — produced by carmignac_diagnostics.py)
broken_months, lag_months = load_broken_months(broken_months_path) broken_months, lag_months = load_broken_months(broken_months_path)