From a763b2e7d1b5119c0868cc2c9c7a56a56899911e Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Fri, 4 Dec 2020 18:23:37 +0300 Subject: [PATCH] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad60c39..939ae50 100644 --- a/README.md +++ b/README.md @@ -177,7 +177,7 @@ for model_name in models: models = {} actions = ['Age', 'Gender', 'Emotion', 'Race'] for action in actions: - models[action.lower()] = DeepFace.build_model(action) + models[action.lower()] = DeepFace.build_model(action) DeepFace.analyze("img1.jpg", models=models) ```