Update app.py
Browse files
app.py
CHANGED
|
@@ -77,10 +77,11 @@ def main():
|
|
| 77 |
st.plotly_chart(fig2)
|
| 78 |
|
| 79 |
st.subheader('Performance Metrics')
|
| 80 |
-
|
| 81 |
-
st.write('
|
| 82 |
-
st.write('
|
| 83 |
-
st.write('
|
|
|
|
| 84 |
|
| 85 |
actual = df['y']
|
| 86 |
predicted = forecast['yhat'][:len(df)]
|
|
|
|
| 77 |
st.plotly_chart(fig2)
|
| 78 |
|
| 79 |
st.subheader('Performance Metrics')
|
| 80 |
+
|
| 81 |
+
st.write('The metrics below provide a quantitative measure of the model’s accuracy.')
|
| 82 |
+
st.write('Mean Absolute Error (MAE): A lower value indicates better performance.')
|
| 83 |
+
st.write('Mean Squared Error (MSE): A lower value indicates better performance, and it penalizes larger errors more than MAE.')
|
| 84 |
+
st.write('Root Mean Squared Error (RMSE): A lower value indicates better performance, similar to MSE, but in the same units as the target variable.')
|
| 85 |
|
| 86 |
actual = df['y']
|
| 87 |
predicted = forecast['yhat'][:len(df)]
|