diff --git a/README.md b/README.md index 1090705..2c4731f 100644 --- a/README.md +++ b/README.md @@ -56,18 +56,13 @@ result = DeepFace.verify(img1_path = "img1.jpg", img2_path = "img2.jpg") **Face recognition** - [`Demo`](https://youtu.be/Hrjp-EStM_s) -[Face recognition](https://sefiks.com/2020/05/25/large-scale-face-recognition-for-deep-learning/) requires applying face verification many times. Herein, deepface has an out-of-the-box find function to handle this action. +[Face recognition](https://sefiks.com/2020/05/25/large-scale-face-recognition-for-deep-learning/) requires applying face verification many times. Herein, deepface has an out-of-the-box find function to handle this action. It's going to look for the identity of input image in the database path and it will return pandas data frame as output. + ```python df = DeepFace.find(img_path = "img1.jpg", db_path = "C:/workspace/my_db") ``` -It's going to look for the identity of input image in the database path and it will return pandas data frame as output. - -```python -assert isinstance(df, pd.DataFrame) -``` -