filip_praca commited on
Commit
b4737ab
1 Parent(s): f0e49fc
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -22,12 +22,12 @@ with gr.Blocks() as demo:
22
  with gr.Column():
23
  gr.Label("Today's Actual Image")
24
  input_img = gr.components.Image("actual_iris.png", elem_id="actual-img")
25
- # with gr.Row():
26
- # with gr.Column():
27
- # gr.Label("Recent Prediction History")
28
- # input_img = gr.components.Image("df_recent.png", elem_id="recent-predictions")
29
- # with gr.Column():
30
- # gr.Label("Confusion Maxtrix with Historical Prediction Performance")
31
- # input_img = gr.components.Image("confusion_matrix.png", elem_id="confusion-matrix")
32
 
33
  demo.launch()
 
22
  with gr.Column():
23
  gr.Label("Today's Actual Image")
24
  input_img = gr.components.Image("actual_iris.png", elem_id="actual-img")
25
+ with gr.Row():
26
+ with gr.Column():
27
+ gr.Label("Recent Prediction History")
28
+ input_img = gr.components.Image("df_recent.png", elem_id="recent-predictions")
29
+ with gr.Column():
30
+ gr.Label("Confusion Maxtrix with Historical Prediction Performance")
31
+ input_img = gr.components.Image("confusion_matrix.png", elem_id="confusion-matrix")
32
 
33
  demo.launch()