Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ def process_and_show_completion(video_input_path, anomaly_threshold_input, fps,
|
|
54 |
return [error_message] + [None] * 27
|
55 |
|
56 |
def show_results(outputs):
|
57 |
-
return gr.Group(visible=True)
|
58 |
|
59 |
with gr.Blocks() as iface:
|
60 |
gr.Markdown("""
|
@@ -99,7 +99,7 @@ with gr.Blocks() as iface:
|
|
99 |
combined_mse_plot = gr.Plot(label="Combined MSE Plot")
|
100 |
correlation_heatmap_plot = gr.Plot(label="Correlation Heatmap")
|
101 |
|
102 |
-
with gr.
|
103 |
with gr.TabItem("Description"):
|
104 |
gr.Markdown("""
|
105 |
# Multimodal Behavioral Anomalies Detection
|
|
|
54 |
return [error_message] + [None] * 27
|
55 |
|
56 |
def show_results(outputs):
|
57 |
+
return gr.Group(visible=True)
|
58 |
|
59 |
with gr.Blocks() as iface:
|
60 |
gr.Markdown("""
|
|
|
99 |
combined_mse_plot = gr.Plot(label="Combined MSE Plot")
|
100 |
correlation_heatmap_plot = gr.Plot(label="Correlation Heatmap")
|
101 |
|
102 |
+
with gr.Group(visible=True) as results_group2:
|
103 |
with gr.TabItem("Description"):
|
104 |
gr.Markdown("""
|
105 |
# Multimodal Behavioral Anomalies Detection
|