Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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
|
19 |
with gr.Column():
|
20 |
-
gr.Label("Today's Actual Quality
|
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")
|