diff --git a/README.md b/README.md index 38e6a99..386bebf 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ result = DeepFace.verify(img1_path = "img1.jpg", img2_path = "img2.jpg") ```python -dfs = DeepFace.find(img_path = "img1.jpg", db_path = "C:/workspace/my_db") +dfs = DeepFace.find(img_path = "img1.jpg", db_path = "C:/my_db") ```

@@ -125,7 +125,7 @@ models = [ result = DeepFace.verify(img1_path = "img1.jpg", img2_path = "img2.jpg", model_name = models[0]) #face recognition -dfs = DeepFace.find(img_path = "img1.jpg", db_path = "C:/workspace/my_db", model_name = models[1]) +dfs = DeepFace.find(img_path = "img1.jpg", db_path = "C:/my_db", model_name = models[1]) #embeddings embeddings = DeepFace.represent(img_path = "img.jpg", model_name = models[2])