Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
from deepface import DeepFace
|
3 |
|
4 |
-
db_path='https://huggingface.co/spaces/ipvikas/ImageProcessing/blob/main/MyPhotos'
|
|
|
|
|
5 |
|
6 |
#from datasets import load_dataset
|
7 |
#db_path= load_dataset("imagefolder", data_files="https://huggingface.co/spaces/ipvikas/ImageProcessing/blob/main/PhotoDataSet.zip")
|
@@ -10,8 +12,11 @@ db_path='https://huggingface.co/spaces/ipvikas/ImageProcessing/blob/main/MyPhoto
|
|
10 |
import pandas as pd
|
11 |
def get_deepface(image):
|
12 |
df = DeepFace.find(img_path=image, db_path=db_path)
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
15 |
description = "Deepface is a lightweight face recognition and facial attribute analysis (age, gender, emotion and race) framework for python. It is a hybrid face recognition framework wrapping state-of-the-art models: VGG-Face, Google FaceNet, OpenFace, Facebook DeepFace, DeepID, ArcFace and Dlib."
|
16 |
|
17 |
facial_attribute_demo = gr.Interface(
|
|
|
1 |
import gradio as gr
|
2 |
from deepface import DeepFace
|
3 |
|
4 |
+
#db_path='https://huggingface.co/spaces/ipvikas/ImageProcessing/blob/main/MyPhotos'
|
5 |
+
|
6 |
+
db_path='https://huggingface.co/spaces/ipvikas/ImageProcessing/commit/c65e002550d4c148da1bb94c114373b2272f4d88#d2h-994579'
|
7 |
|
8 |
#from datasets import load_dataset
|
9 |
#db_path= load_dataset("imagefolder", data_files="https://huggingface.co/spaces/ipvikas/ImageProcessing/blob/main/PhotoDataSet.zip")
|
|
|
12 |
import pandas as pd
|
13 |
def get_deepface(image):
|
14 |
df = DeepFace.find(img_path=image, db_path=db_path)
|
15 |
+
d = DeepFace.analyze(img_path=image)
|
16 |
+
new_list = zip(d.keys(), d.values())
|
17 |
+
new_list = list(new_list)
|
18 |
+
return new_list
|
19 |
+
|
20 |
description = "Deepface is a lightweight face recognition and facial attribute analysis (age, gender, emotion and race) framework for python. It is a hybrid face recognition framework wrapping state-of-the-art models: VGG-Face, Google FaceNet, OpenFace, Facebook DeepFace, DeepID, ArcFace and Dlib."
|
21 |
|
22 |
facial_attribute_demo = gr.Interface(
|