amineHorseman / facial-expression-recognition-using-cnn

Deep facial expressions recognition using Opencv and Tensorflow. Recognizing facial expressions from images or camera stream
GNU General Public License v3.0
445 stars 141 forks source link

3 expression training #22

Closed cuongdothe closed 4 years ago

cuongdothe commented 4 years ago

I have try to train 3 expression, 3,4,6: Sad,Happy and Neutral. But why i run predict a certain image, it predicts "Angry". Can i change image_height and image_width to 256 x 256 to improve the accuracy. image_height = 48 image_width = 48 What should i do to improve accuracy?

Thanks for your great works.

amineHorseman commented 4 years ago

Unfortunately, this model is not as accurate as state of art models, it's a small 5-layers model and it doesn't generalize well especially for mislabelled data (like the case in the Fer2013 dataset).

Those are just few ideas

cuongdothe commented 4 years ago

great tip. thank for your time.