mmmapms commited on
Commit
9d2161a
1 Parent(s): 263de36

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -187,7 +187,7 @@ else:
187
 
188
  fig.update_layout(xaxis_title="Date", yaxis_title="Price [EUR/MWh]")
189
  st.plotly_chart(fig, use_container_width=True)
190
- st.write("The graph presented here illustrates the day-ahead electricity price forecasts for Belgium, covering the period from one week ago up to tomorrow. It incorporates predictions from three distinct models: a Neural Network, a Regularized Linear Model, and Persistence, alongside the actual electricity prices up until today.")
191
 
192
 
193
  if not selected_variables:
@@ -230,7 +230,7 @@ else:
230
  if start_date_pred and end_date_pred:
231
  st.header("Accuracy Metrics")
232
  #st.write(f"The accuracy metrics are calculated from {start_date_pred} to {end_date_pred}, this intervale can be changed in the sidebar.")
233
- st.write(f"The accuracy metrics are calculated from **{start_date_pred}** to **{end_date_pred}**. This interval can be changed in the sidebar. Evaluate the forecasting accuracy of our models with key performance indicators. The table summarizes the Mean Absolute Error (MAE), Symmetric Mean Absolute Percentage Error (SMAPE), and Root Mean Square Error (RMSE) for the selected models over your selected date range. Lower values indicate higher precision and reliability of the forecasts.")
234
  filtered_df = df_filtered[(df_filtered['Date'] >= pd.Timestamp(start_date_pred)) & (df_filtered['Date'] <= pd.Timestamp(end_date_pred))]
235
 
236
  # List of models for convenience
 
187
 
188
  fig.update_layout(xaxis_title="Date", yaxis_title="Price [EUR/MWh]")
189
  st.plotly_chart(fig, use_container_width=True)
190
+ st.write("The graph presented here illustrates the day-ahead electricity price forecasts for Belgium, covering the period from one week ago up to tomorrow.")
191
 
192
 
193
  if not selected_variables:
 
230
  if start_date_pred and end_date_pred:
231
  st.header("Accuracy Metrics")
232
  #st.write(f"The accuracy metrics are calculated from {start_date_pred} to {end_date_pred}, this intervale can be changed in the sidebar.")
233
+ st.write(f"The accuracy metrics are calculated from **{start_date_pred}** to **{end_date_pred}**. This interval can be changed in the sidebar.")
234
  filtered_df = df_filtered[(df_filtered['Date'] >= pd.Timestamp(start_date_pred)) & (df_filtered['Date'] <= pd.Timestamp(end_date_pred))]
235
 
236
  # List of models for convenience