diff --git a/README.md b/README.md index 7a8c014..869cdd0 100644 --- a/README.md +++ b/README.md @@ -79,10 +79,7 @@ Deepface also offers facial attribute analysis including [`age`](https://sefiks. from deepface import DeepFace demography = DeepFace.analyze("img4.jpg", actions = ['age', 'gender', 'race', 'emotion']) #demographies = DeepFace.analyze(["img1.jpg", "img2.jpg", "img3.jpg"]) #analyzing multiple faces same time -print("Age: ", demography["age"]) -print("Gender: ", demography["gender"]) -print("Emotion: ", demography["dominant_emotion"]) -print("Race: ", demography["dominant_race"]) +print("This is ", demography["age"]," years old ",demography["dominant_race"]," ",demography["gender"]," in ",demography["dominant_emotion"]," mood") ```