From d09c946bd888df5e3ef2db1489b24ef2887c3b43 Mon Sep 17 00:00:00 2001 From: Mark Kors Date: Thu, 13 Nov 2025 22:17:58 +0100 Subject: [PATCH] pad aanpassing linux --- voorspel_advanced_linux.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/voorspel_advanced_linux.py b/voorspel_advanced_linux.py index 4889767..8a5278d 100644 --- a/voorspel_advanced_linux.py +++ b/voorspel_advanced_linux.py @@ -18,10 +18,11 @@ from email.mime.image import MIMEImage plt.switch_backend('Agg') # --- CONFIGURATIE --- -MODEL_FILE = 'price_forecast_model_1.5.linux.json' # Linux-specifiek model +PROJECT_MAP = '/volume1/web/energy_price_model_prediction' +MODEL_FILE = f'{PROJECT_MAP}/price_forecast_model_1.5.linux.json' # Linux-specifiek model TARGET = 'gemiddelde_prijs' AANTAL_UUR_VOORSPELLEN = 72 -GRAFIEK_BESTAND = 'prijs_voorspelling_linux.png' # Linux-specifiek bestand +GRAFIEK_BESTAND = f'{PROJECT_MAP}/prijs_voorspelling_graph.png' # Linux-specifiek bestand # --- NIEUW: E-mail Configuratie --- # (Overgenomen uit je Windows-voorbeeld)