ipvikas commited on
Commit
a6ffd08
·
1 Parent(s): 936c454

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +36 -0
app.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #IMPORTANT PART ONLY
2
+ #!pip install deepface
3
+ import gradio as gr
4
+
5
+ from deepface import DeepFace
6
+ #from google.colab import drive
7
+ #drive.mount('/content/drive')
8
+ #img1_path = '/content/drive/My Drive/Colab Notebooks/DeepLearning/FaceRecognition/PhotoDataSet/10Jan_1.jpeg'
9
+ import zipfile
10
+ with zipfile.ZipFile("PhotoDataSet.zip","r") as zip_ref:
11
+ zip_ref.extractall("db_path")
12
+
13
+ #db_path='/content/drive/My Drive/Colab Notebooks/DeepLearning/FaceRecognition/PhotoDataSet/'
14
+
15
+ import pandas as pd
16
+ 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",
30
+ description=description,
31
+
32
+ enable_queue=True,
33
+ examples=[["10Jan_1.jpeg"]],
34
+ cache_examples=False)
35
+
36
+ facial_attribute_demo .launch()