tonyassi commited on
Commit
1a33c90
·
verified ·
1 Parent(s): 94f2df3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -11,7 +11,11 @@ def detect(img, threshold):
11
 
12
  demo = gr.Interface(fn=detect,
13
  title='Foot Detection',
14
- description="by [Tony Assi](https://www.tonyassi.com/)<br><br> [![Model](https://img.shields.io/badge/%F0%9F%A4%97-Models-yellow)](https://huggingface.co/tonyassi/foot-detection) <br><br> A lightweight Python module for detecting feet or shoes in images using a fine-tuned Faster R-CNN model, PyTorch + Torchvision.",
 
 
 
 
15
  inputs=[gr.Image(label='Input', type='pil'), gr.Slider(label='Threshold', minimum=0.0, maximum=1.0, value=0.3)],
16
  outputs=gr.Image(label='Result', type='pil'),
17
  cache_examples=True,
 
11
 
12
  demo = gr.Interface(fn=detect,
13
  title='Foot Detection',
14
+ description="""by [Tony Assi](https://www.tonyassi.com/)
15
+
16
+ [Model](https://huggingface.co/tonyassi/foot-detection) [Github](https://github.com/TonyAssi/foot-detection)
17
+
18
+ A lightweight Python module for detecting feet or shoes in images using a fine-tuned Faster R-CNN model (PyTorch + Torchvision).""",
19
  inputs=[gr.Image(label='Input', type='pil'), gr.Slider(label='Threshold', minimum=0.0, maximum=1.0, value=0.3)],
20
  outputs=gr.Image(label='Result', type='pil'),
21
  cache_examples=True,