DHEIVER commited on
Commit
bab25bc
·
1 Parent(s): 3089a96

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -65,10 +65,21 @@ def master(file):
65
  df_test_value = normalize_data(data)
66
  # plot input test data
67
  plot1 = plot_test_data(df_test_value)
 
 
 
 
 
 
 
 
68
  # predict
69
  anomalies = get_anomalies(df_test_value)
70
- #plot anomalous data points
 
71
  plot2 = plot_anomalies(df_test_value, data, anomalies)
 
 
72
  return plot2
73
 
74
  outputs = gr.outputs.Image()
 
65
  df_test_value = normalize_data(data)
66
  # plot input test data
67
  plot1 = plot_test_data(df_test_value)
68
+
69
+ # Update Gradio interface to show progress message
70
+ iface.set_interface_inline("""
71
+ <div style="text-align: center;">
72
+ <h3>Anomaly detection in progress...</h3>
73
+ </div>
74
+ """)
75
+
76
  # predict
77
  anomalies = get_anomalies(df_test_value)
78
+
79
+ # plot anomalous data points
80
  plot2 = plot_anomalies(df_test_value, data, anomalies)
81
+
82
+ # Update Gradio interface to show the resulting plot
83
  return plot2
84
 
85
  outputs = gr.outputs.Image()