From 72919d95f416e2e501166a8194542bd764ca5111 Mon Sep 17 00:00:00 2001 From: galthran-wq Date: Tue, 11 Feb 2025 13:27:13 +0000 Subject: [PATCH] typo --- deepface/modules/representation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepface/modules/representation.py b/deepface/modules/representation.py index f0fb1db..a017114 100644 --- a/deepface/modules/representation.py +++ b/deepface/modules/representation.py @@ -150,7 +150,7 @@ def represent( batch_confidences.append(confidence) # Convert list of images to a numpy array for batch processing - batch_images = np.concat(batch_images) + batch_images = np.concatenate(batch_images, axis=0) # Forward pass through the model for the entire batch embeddings = model.forward(batch_images)