Spaces:
Build error
Build error
lade till cm
Browse files
app.py
CHANGED
@@ -10,6 +10,7 @@ dataset_api = project.get_dataset_api()
|
|
10 |
dataset_api.download("Resources/images/latest_prediction.gif")
|
11 |
dataset_api.download("Resources/images/correct_prediction.gif")
|
12 |
dataset_api.download("Resources/images/df_recent.png")
|
|
|
13 |
# dataset_api.download("resources/images/confusion_matrix.png")
|
14 |
|
15 |
with gr.Blocks() as demo:
|
@@ -24,8 +25,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_prediction.gif")
|
11 |
dataset_api.download("Resources/images/correct_prediction.gif")
|
12 |
dataset_api.download("Resources/images/df_recent.png")
|
13 |
+
dataset_api.download("Resources/images/confusion_matrix.png")
|
14 |
# dataset_api.download("resources/images/confusion_matrix.png")
|
15 |
|
16 |
with gr.Blocks() as demo:
|
|
|
25 |
with gr.Column():
|
26 |
gr.Label("Recent Prediction History")
|
27 |
input_img = gr.Image("df_recent.png", elem_id="recent-predictions")
|
28 |
+
with gr.Column():
|
29 |
+
gr.Label("Confusion Maxtrix with Historical Prediction Performance")
|
30 |
+
input_img = gr.Image("confusion_matrix.png", elem_id="confusion-matrix")
|
31 |
|
32 |
demo.launch()
|