Spaces:
Build error
Build error
onipot
commited on
Commit
·
cf58338
1
Parent(s):
611c38a
update description
Browse files
app.py
CHANGED
|
@@ -61,37 +61,31 @@ outputs = gr.outputs.Image(type="pil", label="Output Image")
|
|
| 61 |
|
| 62 |
title = "AgeGuesser"
|
| 63 |
description = "Guess the age of a person from a facial image!"
|
| 64 |
-
article = """
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
<a href='https://sites.google.com/view/gennaro-vessio/home-page'>Prof. Gennaro Vessio</a>
|
| 90 |
-
</li>
|
| 91 |
-
|
| 92 |
-
</ul>
|
| 93 |
-
|
| 94 |
-
|
| 95 |
"""
|
| 96 |
|
| 97 |
examples = [['images/1.jpg'], ['images/2.jpg'], ['images/3.jpg'], ['images/4.jpg'], ['images/5.jpg'], ]
|
|
|
|
| 61 |
|
| 62 |
title = "AgeGuesser"
|
| 63 |
description = "Guess the age of a person from a facial image!"
|
| 64 |
+
article = """<p>A fully automated system based on YOLOv5 and EfficientNet to perform face detection and age estimation in real-time.</p>
|
| 65 |
+
<p><b>Links</b></p>
|
| 66 |
+
<ul>
|
| 67 |
+
<li>
|
| 68 |
+
<a href='https://link.springer.com/chapter/10.1007/978-3-030-89131-2_25'>Springer</a>
|
| 69 |
+
</li>
|
| 70 |
+
<li>
|
| 71 |
+
<a href='https://www.researchgate.net/publication/355777953_Real-Time_Age_Estimation_from_Facial_Images_Using_YOLO_and_EfficientNet'>Paper</a>
|
| 72 |
+
</li>
|
| 73 |
+
<li>
|
| 74 |
+
<a href='https://github.com/ai-hazard/AgeGuesser-train'>Github</a>
|
| 75 |
+
</li>
|
| 76 |
+
</ul>
|
| 77 |
+
|
| 78 |
+
<p>Credits to my dear colleague <a href='https://www.linkedin.com/in/nicola-marvulli-904270136/'>Dott. Nicola Marvulli</a>, we've developed AgeGuesser together as part of two university exams. (Computer Vision + Deep Learning)</p>
|
| 79 |
+
|
| 80 |
+
<p>Credits to my dear professors and the <a href='https://sites.google.com/site/cilabuniba/'>CILAB</a> research group</p>
|
| 81 |
+
<ul>
|
| 82 |
+
<li>
|
| 83 |
+
<a href='https://sites.google.com/site/cilabuniba/people/giovanna-castellano'>Prof. Giovanna Castellano</a>
|
| 84 |
+
</li>
|
| 85 |
+
<li>
|
| 86 |
+
<a href='https://sites.google.com/view/gennaro-vessio/home-page'>Prof. Gennaro Vessio</a>
|
| 87 |
+
</li>
|
| 88 |
+
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 89 |
"""
|
| 90 |
|
| 91 |
examples = [['images/1.jpg'], ['images/2.jpg'], ['images/3.jpg'], ['images/4.jpg'], ['images/5.jpg'], ]
|