From beedf2f94cbe0d1c2aa90fc6620989ac2b32f0c5 Mon Sep 17 00:00:00 2001 From: Timon Date: Thu, 15 Jan 2026 08:23:52 +0100 Subject: [PATCH] wip --- python_app/22_harvest_baseline_prediction.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_app/22_harvest_baseline_prediction.py b/python_app/22_harvest_baseline_prediction.py index 7a3a1e2..572b140 100644 --- a/python_app/22_harvest_baseline_prediction.py +++ b/python_app/22_harvest_baseline_prediction.py @@ -107,9 +107,9 @@ def main(): # [3/4] Run model predictions with two-step detection print("\n[3/4] Running two-step harvest detection...") - print(" (Using threshold=0.45, consecutive_days=2 - tuned for Model 307 output)") + print(" (Using threshold=0.5, consecutive_days=3 - tuned for Model 307 output)") refined_results = run_two_step_refinement(ci_data, model, config, scalers, device=device, - phase1_threshold=0.45, phase1_consecutive=2) + phase1_threshold=0.5, phase1_consecutive=3) # Build and export print("\nBuilding production harvest table...")