From f12157487213baacf89ff1ce7e05ad52b8cbdb73 Mon Sep 17 00:00:00 2001 From: Jiarui Li Date: Wed, 14 Jan 2026 11:17:31 +0800 Subject: [PATCH] Update DEFAULT_EVAL_HORIZONS to include a broader range of evaluation timeframes --- evaluate_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evaluate_models.py b/evaluate_models.py index b506558..1e15dcc 100644 --- a/evaluate_models.py +++ b/evaluate_models.py @@ -23,7 +23,7 @@ from model import DelphiFork, SapDelphi, SimpleHead # Constants / defaults (aligned with evaluate_prompt.md) # ============================================================ DEFAULT_BIN_EDGES = [0.0, 0.24, 0.72, 1.61, 3.84, 10.0, 31.0, float("inf")] -DEFAULT_EVAL_HORIZONS = [0.72, 1.61, 3.84, 10.0] +DEFAULT_EVAL_HORIZONS = [0.25, 0.5, 1.0, 2.0, 5.0, 10.0] DAYS_PER_YEAR = 365.25 DEFAULT_DEATH_CAUSE_ID = 1256