yuragoithf commited on
Commit
43005c7
·
1 Parent(s): d3e12ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -84,6 +84,7 @@ def fig2img(fig):
84
 
85
  description = """Upload an image and get the predicted classes"""
86
  title = """Object Detection"""
 
87
  image_in = gr.components.Image(label="Upload an image")
88
  image_out = gr.components.Image()
89
  prob_threshold_slider = gr.components.Slider(
@@ -96,11 +97,12 @@ classes_to_show = gr.components.Textbox(
96
  )
97
 
98
  inputs = [image_in, prob_threshold_slider, classes_to_show]
 
99
 
100
  gr.Interface(fn=model_inference,
101
  inputs=inputs,
102
  outputs=image_out,
103
  title=title,
104
  description=description,
105
- # examples=[['CTH.png']]
106
  ).launch()
 
84
 
85
  description = """Upload an image and get the predicted classes"""
86
  title = """Object Detection"""
87
+
88
  image_in = gr.components.Image(label="Upload an image")
89
  image_out = gr.components.Image()
90
  prob_threshold_slider = gr.components.Slider(
 
97
  )
98
 
99
  inputs = [image_in, prob_threshold_slider, classes_to_show]
100
+ examples='/examples'
101
 
102
  gr.Interface(fn=model_inference,
103
  inputs=inputs,
104
  outputs=image_out,
105
  title=title,
106
  description=description,
107
+ examples=examples
108
  ).launch()