FarhadMadadzade commited on
Commit
49062f9
·
1 Parent(s): b3a6b4d

fixed top label

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -15,10 +15,13 @@ dataset_api.download("Resources/images/confusion_wine_matrix.png")
15
  with gr.Blocks() as demo:
16
  with gr.Row():
17
  with gr.Column():
18
- gr.Label("Today's Predicted Image")
 
 
 
19
  input_img = gr.Image("latest_wine.png", elem_id="predicted-img")
20
  with gr.Column():
21
- gr.Label("Today's Actual Image")
22
  input_img = gr.Image("actual_wine.png", elem_id="actual-img")
23
  with gr.Row():
24
  with gr.Column():
 
15
  with gr.Blocks() as demo:
16
  with gr.Row():
17
  with gr.Column():
18
+ gr.Label("Quality scores. Scores are given on a scale of 1-3 glasses.")
19
+ with gr.Row():
20
+ with gr.Column():
21
+ gr.Label("Today's Predicted Quality (1-3)")
22
  input_img = gr.Image("latest_wine.png", elem_id="predicted-img")
23
  with gr.Column():
24
+ gr.Label("Today's Actual Quality (1-3)")
25
  input_img = gr.Image("actual_wine.png", elem_id="actual-img")
26
  with gr.Row():
27
  with gr.Column():