onipot commited on
Commit
cf58338
1 Parent(s): 611c38a

update description

Browse files
Files changed (1) hide show
  1. app.py +25 -31
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
- <p>A fully automated system based on YOLOv5 and EfficientNet to perform face detection and age estimation in real-time. </p>
67
-
68
- <p><b>Links</b></p>
69
- <ul>
70
- <li>
71
- <a href='https://link.springer.com/chapter/10.1007/978-3-030-89131-2_25'>Springer</a>
72
- </li>
73
- <li>
74
- <a href='https://www.researchgate.net/publication/355777953_Real-Time_Age_Estimation_from_Facial_Images_Using_YOLO_and_EfficientNet'>Paper</a>
75
- </li>
76
- <li>
77
- <a href='https://github.com/ai-hazard/AgeGuesser-train'>Github</a>
78
- </li>
79
- </ul>
80
-
81
- <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>
82
-
83
- <p>Credits to my dear professors and the <a href='https://sites.google.com/site/cilabuniba/'>CILAB</a> research group</p>
84
- <ul>
85
- <li>
86
- <a href='https://sites.google.com/site/cilabuniba/people/giovanna-castellano'>Prof. Giovanna Castellano</a>
87
- </li>
88
- <li>
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'], ]