Spaces:
Sleeping
Sleeping
Commit
·
c8241d3
1
Parent(s):
b3851d4
Update app
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ dataset_api = project.get_dataset_api()
|
|
10 |
dataset_api.download("Resources/images/latest_iris.png", overwrite=True)
|
11 |
dataset_api.download("Resources/images/actual_iris.png", overwrite=True)
|
12 |
dataset_api.download("Resources/images/df_recent.png", overwrite=True)
|
13 |
-
|
14 |
|
15 |
with gr.Blocks() as demo:
|
16 |
with gr.Row():
|
@@ -24,8 +24,8 @@ with gr.Blocks() as demo:
|
|
24 |
with gr.Column():
|
25 |
gr.Label("Recent Prediction History")
|
26 |
input_img = gr.Image("df_recent.png", elem_id="recent-predictions")
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
|
31 |
demo.launch()
|
|
|
10 |
dataset_api.download("Resources/images/latest_iris.png", overwrite=True)
|
11 |
dataset_api.download("Resources/images/actual_iris.png", overwrite=True)
|
12 |
dataset_api.download("Resources/images/df_recent.png", overwrite=True)
|
13 |
+
dataset_api.download("Resources/images/confusion_matrix.png")
|
14 |
|
15 |
with gr.Blocks() as demo:
|
16 |
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")
|
30 |
|
31 |
demo.launch()
|