File size: 1,126 Bytes
e282385
b0dbd3f
e282385
b0dbd3f
 
e282385
b0dbd3f
 
 
 
b1ee544
787a96f
b0dbd3f
 
 
 
 
533ccbd
b0dbd3f
 
 
d45983a
 
 
 
787a96f
 
 
b0dbd3f
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import gradio as gr
import hopsworks

project = hopsworks.login()
fs = project.get_feature_store()

dataset_api = project.get_dataset_api()

dataset_api.download("Resources/images/latest_wine.png")
dataset_api.download("Resources/images/actual_wine.png")
dataset_api.download("Resources/images/df_recent_wine.png")
dataset_api.download("Resources/images/confusion_matrix_wine.png")

with gr.Blocks() as demo:
    with gr.Row():
      with gr.Column():
          gr.Label("Today's Predicted Wine")
          input_img = gr.Image("latest_wine.png", elem_id="predicted-img")
      with gr.Column():          
          gr.Label("Today's Actual Wine")
          input_img = gr.Image("actual_wine.png", elem_id="actual-img")        
    with gr.Row():
      with gr.Column():
          gr.Label("Recent Prediction History")
          input_img = gr.Image("df_recent_wine.png", elem_id="recent-predictions")
      with gr.Column():          
          gr.Label("Confusion Maxtrix with Historical Prediction Performance")
          input_img = gr.Image("confusion_matrix_wine.png", elem_id="confusion-matrix")        

demo.launch()