Home >Backend Development >Python Tutorial >Project Mata Kuliah Artificial Intelligence - Face Expression Recognition
The "Face Expression Recognition" project aims to recognize human facial expressions using the Convolutional Neural Network (CNN) method. The CNN algorithm is applied to analyze visual data such as facial images in grayscale format, which are then classified into seven basic expression categories: happy, sad, angry, surprised, afraid, disgusted, and neutral. This model was trained using the FER2013 dataset and managed to achieve an accuracy of 91.67% after training for 500 epochs.
This "Face Expression Recognition" project is the final project of the Artificial Intelligence course where in this project there are achievements that must be achieved including:
The problem of differences in lighting which affects the level of accuracy.
Lighting variations can affect model accuracy. To overcome this, data normalization is carried out to ensure that the lighting in the image is more uniform so that patterns in facial images can be recognized better.
Similar complexity of expressions.
Some expressions, such as “scared” and “surprised,” have similar characteristics that are difficult for the model to differentiate. The solution implemented is to carry out data augmentation such as rotation, zooming, flipping, and contrast changes to increase the generalization ability of the model to new data.
Quite limited dataset
The FER2013 dataset, although quite large, does not cover the full range of face variations globally. To enrich the dataset, I used data augmentation techniques and added data from other relevant sources to create a better representation of facial expressions.
This project provides deep insight into how artificial intelligence-based systems can be used to recognize facial expressions. The development process shows the importance of:
By overcoming existing challenges, this project succeeded in building a facial expression recognition model that can be applied to various applications such as human-computer interaction, emotion analysis, and psychological monitoring.
The above is the detailed content of Project Mata Kuliah Artificial Intelligence - Face Expression Recognition. For more information, please follow other related articles on the PHP Chinese website!