Spaces:
Runtime error
Runtime error
SebastianoMeneghin
commited on
Commit
•
22553a4
1
Parent(s):
55ef68a
Update app.py
Browse files
app.py
CHANGED
@@ -11,8 +11,8 @@ dataset_api = project.get_dataset_api()
|
|
11 |
|
12 |
dataset_api.download("Resources/images/latest_iris.png")
|
13 |
dataset_api.download("Resources/images/actual_iris.png")
|
14 |
-
dataset_api.download("Resources/images/
|
15 |
-
dataset_api.download("Resources/images/
|
16 |
|
17 |
with gr.Blocks() as demo:
|
18 |
with gr.Row():
|
@@ -25,9 +25,9 @@ with gr.Blocks() as demo:
|
|
25 |
with gr.Row():
|
26 |
with gr.Column():
|
27 |
gr.Label("Recent Prediction History")
|
28 |
-
input_img = gr.Image("
|
29 |
with gr.Column():
|
30 |
gr.Label("Confusion Maxtrix with Historical Prediction Performance")
|
31 |
-
input_img = gr.Image("
|
32 |
|
33 |
demo.launch()
|
|
|
11 |
|
12 |
dataset_api.download("Resources/images/latest_iris.png")
|
13 |
dataset_api.download("Resources/images/actual_iris.png")
|
14 |
+
dataset_api.download("Resources/images/df_recent_iris.png")
|
15 |
+
dataset_api.download("Resources/images/confusion_matrix_iris.png")
|
16 |
|
17 |
with gr.Blocks() as demo:
|
18 |
with gr.Row():
|
|
|
25 |
with gr.Row():
|
26 |
with gr.Column():
|
27 |
gr.Label("Recent Prediction History")
|
28 |
+
input_img = gr.Image("df_recent_iris.png", elem_id="recent-predictions")
|
29 |
with gr.Column():
|
30 |
gr.Label("Confusion Maxtrix with Historical Prediction Performance")
|
31 |
+
input_img = gr.Image("confusion_matrix_iris.png", elem_id="confusion-matrix")
|
32 |
|
33 |
demo.launch()
|