Update app.py
Browse files
app.py
CHANGED
|
@@ -16,14 +16,14 @@ 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("
|
| 20 |
with gr.Column():
|
| 21 |
gr.Label("Today's Actual Image")
|
| 22 |
-
input_img = gr.Image("
|
| 23 |
with gr.Row():
|
| 24 |
with gr.Column():
|
| 25 |
gr.Label("Recent Prediction History")
|
| 26 |
-
input_img = gr.Image("
|
| 27 |
with gr.Column():
|
| 28 |
gr.Label("Confusion Maxtrix with Historical Prediction Performance")
|
| 29 |
input_img = gr.Image("confusion_matrix.png", elem_id="confusion-matrix")
|
|
|
|
| 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():
|
| 25 |
gr.Label("Recent Prediction History")
|
| 26 |
+
input_img = gr.Image("df_recent.png", elem_id="recent-predictions")
|
| 27 |
with gr.Column():
|
| 28 |
gr.Label("Confusion Maxtrix with Historical Prediction Performance")
|
| 29 |
input_img = gr.Image("confusion_matrix.png", elem_id="confusion-matrix")
|