ayberkuckun commited on
Commit
3ab5fc5
1 Parent(s): 6e31d8b
Files changed (3) hide show
  1. .gitignore +1 -0
  2. app.py +30 -0
  3. requirements.txt +2 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .idea/
app.py ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import hopsworks
3
+
4
+ project = hopsworks.login()
5
+ fs = project.get_feature_store()
6
+
7
+ dataset_api = project.get_dataset_api()
8
+
9
+ dataset_api.download("Resources/images/latest_titanic.png")
10
+ dataset_api.download("Resources/images/actual_titanic.png")
11
+ dataset_api.download("Resources/images/df_recent.png")
12
+ dataset_api.download("Resources/images/confusion_matrix.png")
13
+
14
+ with gr.Blocks() as demo:
15
+ with gr.Row():
16
+ with gr.Column():
17
+ gr.Label("Passenger's Predicted Outcome")
18
+ input_img = gr.Image("latest_titanic.png", elem_id="predicted-img")
19
+ with gr.Column():
20
+ gr.Label("Passenger's Actual Outcome")
21
+ input_img = gr.Image("actual_titanic.png", elem_id="actual-img")
22
+ with gr.Row():
23
+ with gr.Column():
24
+ gr.Label("Recent Prediction History")
25
+ input_img = gr.Image("df_recent.png", elem_id="recent-predictions")
26
+ with gr.Column():
27
+ gr.Label("Confusion Maxtrix with Historical Prediction Performance")
28
+ input_img = gr.Image("confusion_matrix.png", elem_id="confusion-matrix")
29
+
30
+ demo.launch()
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ hopsworks
2
+ gradio