Nuzz23 commited on
Commit
64b00c1
·
1 Parent(s): 086fdf8

the winner takes it all, the loser is standing small

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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