Update app.py
Browse files
app.py
CHANGED
|
@@ -264,7 +264,9 @@ elif app_section == "Model Performance & Diagnostics":
|
|
| 264 |
if not perf_df.empty and not y_test.empty:
|
| 265 |
st.subheader("Performance Degradation over 5 Days")
|
| 266 |
st.markdown("Hiệu suất mô hình thay đổi như thế nào khi dự báo xa hơn.")
|
| 267 |
-
|
|
|
|
|
|
|
| 268 |
# 1. Biểu đồ suy giảm hiệu suất (RMSE & R2)
|
| 269 |
|
| 270 |
# --- TÙY CHỈNH ---
|
|
|
|
| 264 |
if not perf_df.empty and not y_test.empty:
|
| 265 |
st.subheader("Performance Degradation over 5 Days")
|
| 266 |
st.markdown("Hiệu suất mô hình thay đổi như thế nào khi dự báo xa hơn.")
|
| 267 |
+
|
| 268 |
+
MODEL_NAME = 'Champion (Stacking)'
|
| 269 |
+
champion_perf_df = perf_df[perf_df['Model'] == MODEL_NAME].copy()
|
| 270 |
# 1. Biểu đồ suy giảm hiệu suất (RMSE & R2)
|
| 271 |
|
| 272 |
# --- TÙY CHỈNH ---
|