Update app.py
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ def predict_image(img, conf_threshold, iou_threshold):
|
|
24 |
|
25 |
return im
|
26 |
|
27 |
-
example_list = [["examples/" + example] for example in os.listdir("examples")]
|
28 |
iface = gr.Interface(
|
29 |
fn=predict_image,
|
30 |
inputs=[
|
|
|
24 |
|
25 |
return im
|
26 |
|
27 |
+
example_list = [["examples/" + example, 0.25, 0.45] for example in os.listdir("examples")]
|
28 |
iface = gr.Interface(
|
29 |
fn=predict_image,
|
30 |
inputs=[
|