yuragoithf commited on
Commit
cc1d35d
·
1 Parent(s): cb61aec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -82,8 +82,8 @@ def fig2img(fig):
82
  return img
83
 
84
 
85
- description = """Object Detection"""
86
- title = """Upload an image and get the predicted classes"""
87
  image_in = gr.components.Image(label="Upload an image")
88
  image_out = gr.components.Image()
89
  prob_threshold_slider = gr.components.Slider(
@@ -95,9 +95,11 @@ classes_to_show = gr.components.Textbox(
95
  label="Classes to filter (leave empty to detect all classes)",
96
  )
97
 
 
 
98
  gr.Interface(fn=model_inference,
99
- inputs=[image_in, prob_threshold_slider, classes_to_show],
100
  outputs=image_out,
101
  title=title,
102
- # examples=["./00_plane.jpg", "./01_car.jpg"],
103
  description=description).launch()
 
82
  return img
83
 
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(
 
95
  label="Classes to filter (leave empty to detect all classes)",
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
+ examples=["CTH.png", "carplane.webp"],
105
  description=description).launch()