Update app.py
Browse files
app.py
CHANGED
@@ -67,8 +67,9 @@ Deepface is a lightweight face recognition and facial attribute analysis (age, g
|
|
67 |
Experiments show that human beings have 97.53% accuracy on facial recognition tasks whereas those models already reached and passed that accuracy level.
|
68 |
Please click on the Github link for more information: [DeepFace](https://github.com/serengil/deepface)
|
69 |
|
70 |
-
This space captures facial verification which determines if 2 facial images are the same person and the facial attribute analysis which predicts age,gender, emotion and race. The attribute analysis for age and race is a hit and miss based on my personal experience and the reported test accuracy is 68% for race prediction
|
71 |
-
|
|
|
72 |
"""
|
73 |
|
74 |
models = ["VGG-Face", "Facenet", "Facenet512", "OpenFace", "DeepFace", "DeepID", "ArcFace", "Dlib", "SFace"]
|
|
|
67 |
Experiments show that human beings have 97.53% accuracy on facial recognition tasks whereas those models already reached and passed that accuracy level.
|
68 |
Please click on the Github link for more information: [DeepFace](https://github.com/serengil/deepface)
|
69 |
|
70 |
+
This space captures facial verification which determines if 2 facial images are the same person and the facial attribute analysis which predicts age,gender, emotion and race. The attribute analysis for age and race is a hit and miss based on my personal experience and the reported test accuracy from the Github page is 68% for race prediction. The age prediction model got ± 4.65 MAE.
|
71 |
+
|
72 |
+
The prediction models work better with images that mainly show the face.
|
73 |
"""
|
74 |
|
75 |
models = ["VGG-Face", "Facenet", "Facenet512", "OpenFace", "DeepFace", "DeepID", "ArcFace", "Dlib", "SFace"]
|