Spaces:
Sleeping
Sleeping
Commit
·
542fd56
1
Parent(s):
77aa42d
update to app.py
Browse files
app.py
CHANGED
|
@@ -109,12 +109,12 @@ def cal_result(alpha, month):
|
|
| 109 |
|
| 110 |
with gr.Blocks() as demo:
|
| 111 |
gr.Markdown("""There are two models with the difference with the damped parameter. Why are there two models? Why do we use damping?
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
|
| 119 |
with gr.Row():
|
| 120 |
alpha = gr.Dropdown(choices=["0.1", "0.05", "0.01"], label="Significance level", info="The significance level for the confidence intervals.", value="0.05")
|
|
|
|
| 109 |
|
| 110 |
with gr.Blocks() as demo:
|
| 111 |
gr.Markdown("""There are two models with the difference with the damped parameter. Why are there two models? Why do we use damping?
|
| 112 |
+
|
| 113 |
+
**Realistic Forecasts**: In many real-world scenarios, it's unlikely for a trend to continue indefinitely at the same rate. For example, if sales of a product are increasing, they might not keep increasing forever at the same rate. After a certain point, the growth might slow down. Damping takes this into account.
|
| 114 |
+
|
| 115 |
+
**Avoid Over-optimistic or Pessimistic Predictions**: Without damping, the model could make overly optimistic (for upward trends) or overly pessimistic (for downward trends) predictions for long-term forecasts.
|
| 116 |
+
|
| 117 |
+
**Stability**: Damped models often provide more stable long-term forecasts, especially when the data has some inherent variability or noise.""")
|
| 118 |
|
| 119 |
with gr.Row():
|
| 120 |
alpha = gr.Dropdown(choices=["0.1", "0.05", "0.01"], label="Significance level", info="The significance level for the confidence intervals.", value="0.05")
|