From 103a6af39e3f313e32fc395375c5e72c98484748 Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Sun, 21 Jun 2020 23:30:04 +0300 Subject: [PATCH] verify simplified --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index b3c377e..ab5c060 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,8 @@ Verification function under the DeepFace interface offers a single face recognit ```python from deepface import DeepFace result = DeepFace.verify("img1.jpg", "img2.jpg") +#results = DeepFace.verify([['img1.jpg', 'img2.jpg'], ['img1.jpg', 'img3.jpg']]) print("Is verified: ", result["verified"]) - -results = DeepFace.verify([['img1.jpg', 'img2.jpg'], ['img1.jpg', 'img3.jpg']]) -print(results) ```