Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -174,7 +174,6 @@ output = gr.Image(type="pil")
|
|
174 |
examples=[["Examples/img-300_jpg.rf.6b7b035dff1cda092ce3dc22be8d0135.jpg",'Image1']]
|
175 |
|
176 |
io=gr.Interface(fn=Custom_detect, inputs=inp, outputs=output, title='Pot Hole Detection With Custom YOLOv7 ',
|
177 |
-
examples=examples
|
178 |
-
)
|
179 |
-
io.launch(debug=True,share=False)
|
180 |
|
|
|
174 |
examples=[["Examples/img-300_jpg.rf.6b7b035dff1cda092ce3dc22be8d0135.jpg",'Image1']]
|
175 |
|
176 |
io=gr.Interface(fn=Custom_detect, inputs=inp, outputs=output, title='Pot Hole Detection With Custom YOLOv7 ',
|
177 |
+
examples=examples)
|
178 |
+
io.launch()
|
|
|
179 |
|