KAHRAMAN42 commited on
Commit
1bc2e23
1 Parent(s): 61064f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -17,9 +17,10 @@ def fonk(img_path):
17
  return img
18
 
19
  demo = gr.Interface(fonk,
20
- inputs= gr.Image(type="filepath"),
21
- outputs=gr.Image(),
22
- #examples= "images.jpeg"
 
23
  )
24
  demo.launch()
25
-
 
17
  return img
18
 
19
  demo = gr.Interface(fonk,
20
+ inputs= gr.Image(type="filepath", label= "Input image"),
21
+ outputs=gr.Image(label= "Output image"),
22
+ examples= [["images.jpeg"],["Screenshot from 2024-02-12 23-14-36.png"]]
23
+ title= "Detection Cattle from Image"
24
  )
25
  demo.launch()
26
+