Vasi001 commited on
Commit
176dd0d
·
1 Parent(s): e4e2bc6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -12,16 +12,16 @@ with gr.Blocks() as demo:
12
  with gr.Row():
13
  with gr.Column():
14
  gr.Label("Today's Predicted Titanic Survival")
15
- input_img = gr.Image("latest_titanic.png", elem_id="predicted-img")
16
  with gr.Column():
17
  gr.Label("Today's Actual Titanic Survival")
18
- input_img = gr.Image("actual_titanic.png", elem_id="actual-img")
19
  with gr.Row():
20
  with gr.Column():
21
  gr.Label("Recent Prediction History")
22
- input_img = gr.Image("df_titanic_recent.png", elem_id="recent-predictions")
23
  with gr.Column():
24
  gr.Label("Confusion Maxtrix with Historical Prediction Performance")
25
- input_img = gr.Image("titanic_confusion_matrix.png", elem_id="confusion-matrix")
26
 
27
  demo.launch()
 
12
  with gr.Row():
13
  with gr.Column():
14
  gr.Label("Today's Predicted Titanic Survival")
15
+
16
  with gr.Column():
17
  gr.Label("Today's Actual Titanic Survival")
18
+
19
  with gr.Row():
20
  with gr.Column():
21
  gr.Label("Recent Prediction History")
22
+
23
  with gr.Column():
24
  gr.Label("Confusion Maxtrix with Historical Prediction Performance")
25
+
26
 
27
  demo.launch()