fix typo
Browse files
app.py
CHANGED
|
@@ -117,7 +117,7 @@ with gr.Blocks() as demo:
|
|
| 117 |
|
| 118 |
## Steps
|
| 119 |
|
| 120 |
-
1. Click **Upload** to upload your data and visualize it or select one of the example
|
| 121 |
2. Click **Run**
|
| 122 |
- This app will then train an estimator and show its predictions as well as evaluation metrics.
|
| 123 |
"""
|
|
@@ -144,7 +144,7 @@ with gr.Blocks() as demo:
|
|
| 144 |
upload_btn.upload(
|
| 145 |
fn=preprocess,
|
| 146 |
inputs=[upload_btn, prediction_length, windows],
|
| 147 |
-
outputs=plot,
|
| 148 |
)
|
| 149 |
train_btn.click(
|
| 150 |
fn=train_and_forecast,
|
|
|
|
| 117 |
|
| 118 |
## Steps
|
| 119 |
|
| 120 |
+
1. Click **Upload** to upload your data and visualize it **or** select one of the example CSV files.
|
| 121 |
2. Click **Run**
|
| 122 |
- This app will then train an estimator and show its predictions as well as evaluation metrics.
|
| 123 |
"""
|
|
|
|
| 144 |
upload_btn.upload(
|
| 145 |
fn=preprocess,
|
| 146 |
inputs=[upload_btn, prediction_length, windows],
|
| 147 |
+
outputs=[plot],
|
| 148 |
)
|
| 149 |
train_btn.click(
|
| 150 |
fn=train_and_forecast,
|