reab5555 commited on
Commit
ea0afd1
·
verified ·
1 Parent(s): a1b8066

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -76,6 +76,8 @@ with gr.Blocks() as iface:
76
  mse_features_hist = gr.Plot(label="MSE Distribution: Facial Features")
77
  mse_features_heatmap = gr.Plot(label="MSE Heatmap: Facial Features")
78
  anomaly_frames_features = gr.Gallery(label="Anomaly Frames (Facial Features)", columns=6, rows=2, height="auto")
 
 
79
 
80
  with gr.Tab("Body Posture"):
81
  mse_posture_plot = gr.Plot(label="MSE: Body Posture")
@@ -83,10 +85,6 @@ with gr.Blocks() as iface:
83
  mse_posture_heatmap = gr.Plot(label="MSE Heatmap: Body Posture")
84
  anomaly_frames_posture = gr.Gallery(label="Anomaly Frames (Body Posture)", columns=6, rows=2, height="auto")
85
 
86
- with gr.Tab("Face Samples"):
87
- face_samples_most_frequent = gr.Gallery(label="Most Frequent Person Samples (Target)", columns=6, rows=2, height="auto")
88
- face_samples_others = gr.Gallery(label="Other Samples", columns=6, rows=1, height="auto")
89
-
90
  df_store = gr.State()
91
  mse_features_store = gr.State()
92
  mse_posture_store = gr.State()
 
76
  mse_features_hist = gr.Plot(label="MSE Distribution: Facial Features")
77
  mse_features_heatmap = gr.Plot(label="MSE Heatmap: Facial Features")
78
  anomaly_frames_features = gr.Gallery(label="Anomaly Frames (Facial Features)", columns=6, rows=2, height="auto")
79
+ face_samples_most_frequent = gr.Gallery(label="Most Frequent Person Samples (Target)", columns=6, rows=2, height="auto")
80
+ face_samples_others = gr.Gallery(label="Other Samples", columns=6, rows=1, height="auto")
81
 
82
  with gr.Tab("Body Posture"):
83
  mse_posture_plot = gr.Plot(label="MSE: Body Posture")
 
85
  mse_posture_heatmap = gr.Plot(label="MSE Heatmap: Body Posture")
86
  anomaly_frames_posture = gr.Gallery(label="Anomaly Frames (Body Posture)", columns=6, rows=2, height="auto")
87
 
 
 
 
 
88
  df_store = gr.State()
89
  mse_features_store = gr.State()
90
  mse_posture_store = gr.State()