Spaces:
Runtime error
Runtime error
Hope-Liang
commited on
Commit
·
4cc11f6
1
Parent(s):
f259433
update;
Browse files- README.md +4 -4
- app.py +31 -0
- requirements.txt +1 -0
README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
colorTo: pink
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version: 3.
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: apache-2.0
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Iris Monitoring
|
| 3 |
+
emoji: 💻
|
| 4 |
+
colorFrom: blue
|
| 5 |
colorTo: pink
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 3.8.2
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: apache-2.0
|
app.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
from PIL import Image
|
| 3 |
+
import hopsworks
|
| 4 |
+
|
| 5 |
+
project = hopsworks.login()
|
| 6 |
+
fs = project.get_feature_store()
|
| 7 |
+
|
| 8 |
+
dataset_api = project.get_dataset_api()
|
| 9 |
+
|
| 10 |
+
dataset_api.download("Resources/images-titanic/latest_survived.png")
|
| 11 |
+
dataset_api.download("Resources/images-titanic/actual_survived.png")
|
| 12 |
+
dataset_api.download("Resources/images-titanic/df_recent.png")
|
| 13 |
+
dataset_api.download("Resources/images-titanic/confusion_matrix.png")
|
| 14 |
+
|
| 15 |
+
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("latest_survived.png", elem_id="predicted-img")
|
| 20 |
+
with gr.Column():
|
| 21 |
+
gr.Label("Today's Actual Image")
|
| 22 |
+
input_img = gr.Image("actual_survived.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")
|
| 30 |
+
|
| 31 |
+
demo.launch()
|
requirements.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
hopsworks
|