filip_praca commited on
Commit
16a8608
1 Parent(s): cc5ccea
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -10,16 +10,16 @@ fs = project.get_feature_store()
10
 
11
  dataset_api = project.get_dataset_api()
12
 
13
- dataset_api.download("Resources/images/df_recent.png")
14
- dataset_api.download("Resources/images/confusion_matrix.png")
15
 
16
  with gr.Blocks() as demo:
17
  with gr.Row():
18
  with gr.Column():
19
  gr.Label("Recent Prediction History")
20
- input_img = gr.components.Image("df_recent.png", elem_id="recent-predictions")
21
  with gr.Column():
22
  gr.Label("Confusion Maxtrix with Historical Prediction Performance")
23
- input_img = gr.components.Image("confusion_matrix.png", elem_id="confusion-matrix")
24
 
25
  demo.launch()
 
10
 
11
  dataset_api = project.get_dataset_api()
12
 
13
+ dataset_api.download("Resources/images/wine_df_recent.png")
14
+ dataset_api.download("Resources/images/wine_confusion_matrix.png")
15
 
16
  with gr.Blocks() as demo:
17
  with gr.Row():
18
  with gr.Column():
19
  gr.Label("Recent Prediction History")
20
+ input_img = gr.components.Image("wine_df_recent.png", elem_id="wine_recent-predictions")
21
  with gr.Column():
22
  gr.Label("Confusion Maxtrix with Historical Prediction Performance")
23
+ input_img = gr.components.Image("wine_confusion_matrix.png", elem_id="wine_confusion-matrix")
24
 
25
  demo.launch()