ipvikas commited on
Commit
35972d5
·
1 Parent(s): a6ffd08

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -17,13 +17,13 @@ def get_deepface(image):
17
 
18
  df = DeepFace.find(img_path=image, db_path=db_path)
19
  #print(df.head())
20
- return DeepFace.analyze(img_path=img1_path))
21
 
22
 
23
  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."
24
 
25
  facial_attribute_demo = gr.Interface(
26
- fn=process_document,
27
  inputs="image",
28
  outputs="json",
29
  title="face recognition and facial attribute analysis (age, gender, emotion and race) framework",
 
17
 
18
  df = DeepFace.find(img_path=image, db_path=db_path)
19
  #print(df.head())
20
+ return DeepFace.analyze(img_path=image)
21
 
22
 
23
  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."
24
 
25
  facial_attribute_demo = gr.Interface(
26
+ fn=get_deepface,
27
  inputs="image",
28
  outputs="json",
29
  title="face recognition and facial attribute analysis (age, gender, emotion and race) framework",