Sa-m commited on
Commit
929e161
1 Parent(s): 663bfbc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -23,7 +23,9 @@ inp = gr.inputs.Image(type="filepath", label="Input")
23
  output = gr.outputs.Image(type="filepath", label="Output")
24
  #.outputs.Textbox()
25
 
26
- io=gr.Interface(fn=detect, inputs=inp, outputs=output, title='Pot Hole Detection With Custom YOLOv7 ',examples=[["Examples/img-300_jpg.rf.6b7b035dff1cda092ce3dc22be8d0135.jpg"]])
 
 
27
  #,examples=["Examples/img-300_jpg.rf.6b7b035dff1cda092ce3dc22be8d0135.jpg"]
28
  io.launch(debug=True,share=False)
29
 
 
23
  output = gr.outputs.Image(type="filepath", label="Output")
24
  #.outputs.Textbox()
25
 
26
+ io=gr.Interface(fn=detect, inputs=inp, outputs=output, title='Pot Hole Detection With Custom YOLOv7 ',
27
+ #examples=[["Examples/img-300_jpg.rf.6b7b035dff1cda092ce3dc22be8d0135.jpg"]]
28
+ )
29
  #,examples=["Examples/img-300_jpg.rf.6b7b035dff1cda092ce3dc22be8d0135.jpg"]
30
  io.launch(debug=True,share=False)
31