From 86e1575f4dcc50b552e652ac0c734b48474bc93c Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Mon, 23 Mar 2020 09:06:27 +0300 Subject: [PATCH] face recognition test --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f5de13b..d0ce363 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ result = DeepFace.verify("img1.jpg", "img2.jpg") print("Is verified: ", result["verified"]) ``` -

+

Each call of verification function builds a face recognition model from scratch and this is a costly operation. If you are going to verify multiple faces sequentially, then you should pass an array of faces to verification function to speed the operation up. In this way, complex face recognition models will be built once.