Download Dataset from my kaggle profile
In the project, we will be working with a specified dataset of images. we will then explore the data and try the statistical learning approaches that we have covered in this course to tackle the task associated with the dataset. The statistical approaches should cover both conventional machine learning (i.e. not deep learning), from the first half of the unit, and deep learning from the second half. A goal of the project is to explore the approaches we've leant, or perhaps beyond those, in order to build a high-performing system.
├── Facial Expression Recognition Deep Learning
| ├── dataset - this folder contains training & testing data.
| │ ├── PrivateTest_data_images.npy
| | ├── PublicTest_data_images.npy
| | ├── Training_data_images.npy (Omitted Because > 25 MB)
| | └── Training_data_labels.npy
| │
└────── Facial Expression Recognition.ipynb
In the project, we will be working with a specified dataset of images. we will then explore the data and try the statistical learning approaches that we have covered in this course to tackle the task associated with the dataset. The statistical approaches should cover both conventional machine learning (i.e. not deep learning), from the first half of the unit, and deep learning from the second half. A goal of the project is to explore the approaches we've leant, or perhaps beyond those, in order to build a high-performing system.
The goal of this project is to predict the expression on the face. The expression labels are standard ones used in psychology research: angry, disgusted, fearful, happy, sad, surprised, neutral.
We will using the ML/DL models in the analysis which are stated below as:
- Support Vector Machines (SVM)
- Light Gradient Boosting Machine (LGBM)
- Convolutional Neural Network (Part 1)
- Convolutional Neural Network (Part 2)
The dataset have images of the faces which have the expressions or 7 classes as angry, disgusted, fearful, happy, sad, surprised, neutral.The Images pixel size is 48 x 48 grey scaled.
Train data - (9328, 48, 48)
Public Test data - (1136, 48, 48)
Private Test data - (1153, 48, 48)
1.0.0
- Rahul Gaikwad - Initial work and development
I welcome your questions. Write to [email protected]