Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -11,15 +11,7 @@ def detect(img, threshold):
|
|
11 |
|
12 |
demo = gr.Interface(fn=detect,
|
13 |
title='Foot Detection',
|
14 |
-
description="
|
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> [](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,
|