This commit is contained in:
Sefik Ilkin Serengil 2020-12-04 18:23:37 +03:00 committed by GitHub
parent afa4378b01
commit a763b2e7d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
```