Ahsen Khaliq
commited on
Commit
·
ae57c29
1
Parent(s):
41bb552
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,9 @@
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
from deepface import DeepFace
|
3 |
|
|
|
4 |
def inference(image1,image2):
|
5 |
result = DeepFace.verify(img1_path = image1, img2_path = image2)
|
6 |
if result["verified"]:
|
|
|
1 |
+
import os
|
2 |
+
os.system("pip freeze")
|
3 |
import gradio as gr
|
4 |
from deepface import DeepFace
|
5 |
|
6 |
+
|
7 |
def inference(image1,image2):
|
8 |
result = DeepFace.verify(img1_path = image1, img2_path = image2)
|
9 |
if result["verified"]:
|