From 16d37711d5d31daf152c0dbef7496472fa6aa1f2 Mon Sep 17 00:00:00 2001 From: Vincent STRAGIER Date: Fri, 23 Jun 2023 20:33:47 +0200 Subject: [PATCH] Remove unwanted line returns. --- deepface/DeepFace.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/deepface/DeepFace.py b/deepface/DeepFace.py index 3c33b4121..2167ab9c2 100644 --- a/deepface/DeepFace.py +++ b/deepface/DeepFace.py @@ -96,7 +96,6 @@ def verify( align=True, normalization="base", ): - """ This function verifies an image pair is same person or different persons. In the background, verification function represents facial images as vectors and then calculates the similarity @@ -235,7 +234,6 @@ def analyze( align=True, silent=False, ): - """ This function analyzes facial attributes including age, gender, emotion and race. In the background, analysis function builds convolutional neural network models to @@ -410,7 +408,6 @@ def find( normalization="base", silent=False, ): - """ This function applies verification several times and find the identities in a database @@ -628,7 +625,6 @@ def represent( align=True, normalization="base", ): - """ This function represents facial images as vectors. The function uses convolutional neural networks models to generate vector embeddings. @@ -722,7 +718,6 @@ def stream( time_threshold=5, frame_threshold=5, ): - """ This function applies real time face recognition and facial attribute analysis @@ -777,7 +772,6 @@ def extract_faces( align=True, grayscale=False, ): - """ This function applies pre-processing stages of a face recognition pipeline including detection and alignment