Sanan commited on
Commit
3f09e0c
·
1 Parent(s): 7b6b3db

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -18,8 +18,7 @@ inputs = gr.inputs.Image(type='pil', label="Original Image")
18
  outputs = gr.outputs.Image(type="pil", label="Output Image")
19
 
20
  title = "Object detection from Infrared image using YOLOv5n"
21
- description = "YOLOv5 Gradio demo for object detection. Upload an image or click an example image to use."
22
 
23
- gr.Interface(yolo, inputs, outputs, title=title, description=description, article=article, theme="huggingface").launch(
24
- debug=True)
25
 
 
18
  outputs = gr.outputs.Image(type="pil", label="Output Image")
19
 
20
  title = "Object detection from Infrared image using YOLOv5n"
 
21
 
22
+
23
+ gr.Interface(im, inputs, outputs, title=title, theme="huggingface").launch(debug=True)
24