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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -9
app.py CHANGED
@@ -11,15 +11,7 @@ def detect(img, threshold):
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)
17
-
18
- A lightweight Python module for detecting feet or shoes in images using a fine-tuned Faster R-CNN model, PyTorch + Torchvision.
19
-
20
- [hello?](https://www.google.com/)
21
-
22
- hello?""",
23
  inputs=[gr.Image(label='Input', type='pil'), gr.Slider(label='Threshold', minimum=0.0, maximum=1.0, value=0.3)],
24
  outputs=gr.Image(label='Result', type='pil'),
25
  cache_examples=True,
 
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,