Spaces:
Sleeping
Sleeping
the winner takes it all, the loser is standing small
Browse files
app.py
CHANGED
|
@@ -97,7 +97,8 @@ with gr.Blocks(title="Time series anomaly detection with Chronos2") as demo:
|
|
| 97 |
detect_button.click(
|
| 98 |
lambda file, timestamp_question, timestamp_column: dataProcessing(file, timestamp_column if timestamp_question == "Yes" else None),
|
| 99 |
inputs=[file_input, timestamp_question, timestamp_column_input],
|
| 100 |
-
outputs=[plot_output, download_output, errorHandler]
|
|
|
|
| 101 |
)
|
| 102 |
|
| 103 |
|
|
|
|
| 97 |
detect_button.click(
|
| 98 |
lambda file, timestamp_question, timestamp_column: dataProcessing(file, timestamp_column if timestamp_question == "Yes" else None),
|
| 99 |
inputs=[file_input, timestamp_question, timestamp_column_input],
|
| 100 |
+
outputs=[plot_output, download_output, errorHandler],
|
| 101 |
+
show_progress=True
|
| 102 |
)
|
| 103 |
|
| 104 |
|