yuragoithf commited on
Commit
2280f66
·
1 Parent(s): aa83c9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -10
app.py CHANGED
@@ -1,4 +1,5 @@
1
  import io
 
2
  import torch
3
  import numpy as np
4
  import gradio as gr
@@ -85,18 +86,14 @@ def fig2img(fig):
85
  description = """Upload an image and get the predicted classes"""
86
  title = """Object Detection"""
87
 
88
- classes_to_show = gr.components.Textbox(
89
- placeholder="e.g. car, dog",
90
- label="Classes to filter (leave empty to detect all classes)",
91
- )
92
- prob_threshold_slider = gr.components.Slider(minimum=0, maximum=1.0, step=0.01, value=0.7, label="Probability Threshold")
93
 
94
  image_in = gr.components.Image(label="Upload an image")
95
  image_out = gr.components.Image()
96
-
97
-
98
-
99
-
100
  inputs = [image_in, prob_threshold_slider, classes_to_show]
101
 
102
  gr.Interface(fn=model_inference,
@@ -104,5 +101,5 @@ gr.Interface(fn=model_inference,
104
  outputs=image_out,
105
  title=title,
106
  description=description,
107
- # examples=["CTH.png", "carplane.webp"]
108
  ).launch()
 
1
  import io
2
+ import os
3
  import torch
4
  import numpy as np
5
  import gradio as gr
 
86
  description = """Upload an image and get the predicted classes"""
87
  title = """Object Detection"""
88
 
89
+ # Create examples list from "examples/" directory
90
+ example_list = [["examples/" + example] for example in os.listdir("examples")]
91
+
 
 
92
 
93
  image_in = gr.components.Image(label="Upload an image")
94
  image_out = gr.components.Image()
95
+ classes_to_show = gr.components.Textbox(placeholder="e.g. car, dog", label="Classes to filter (leave empty to detect all classes)")
96
+ prob_threshold_slider = gr.components.Slider(minimum=0, maximum=1.0, step=0.01, value=0.7, label="Probability Threshold")
 
 
97
  inputs = [image_in, prob_threshold_slider, classes_to_show]
98
 
99
  gr.Interface(fn=model_inference,
 
101
  outputs=image_out,
102
  title=title,
103
  description=description,
104
+ examples=example_list
105
  ).launch()