explorall commited on
Commit
621d854
·
1 Parent(s): 4bb25a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,9 +15,9 @@ dataset_api.download("Resources/images/wine_confusion_matrix.png")
15
  with gr.Blocks() as demo:
16
  with gr.Row():
17
  with gr.Column():
18
- gr.Label("Today's Predicted Quality\n" + open("latest_wine.txt","r").readline())
19
  with gr.Column():
20
- gr.Label("Today's Actual Quality\n" + open("actual_wine.txt","r").readline())
21
  with gr.Row():
22
  with gr.Column():
23
  gr.Label("Recent Prediction History")
 
15
  with gr.Blocks() as demo:
16
  with gr.Row():
17
  with gr.Column():
18
+ gr.Label("Today's Predicted Quality: " + open("latest_wine.txt","r").readline())
19
  with gr.Column():
20
+ gr.Label("Today's Actual Quality: " + open("actual_wine.txt","r").readline())
21
  with gr.Row():
22
  with gr.Column():
23
  gr.Label("Recent Prediction History")