Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -23,9 +23,9 @@ with gr.Blocks() as demo:
|
|
| 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("
|
| 30 |
|
| 31 |
demo.launch()
|
|
|
|
| 23 |
with gr.Row():
|
| 24 |
with gr.Column():
|
| 25 |
gr.Label("Recent Prediction History")
|
| 26 |
+
input_img = gr.Image("df_recent_iris.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_iris.png", elem_id="confusion-matrix")
|
| 30 |
|
| 31 |
demo.launch()
|