A deep neural net toolkit for emotion analysis via Facial Expression Recognition (FER)
Project description
EmoPy
EmoPy is a python toolkit with deep neural net classes which accurately predict emotions given images of people's faces.
Figure from @Chen2014FacialER
The aim of this project is to make accurate Facial Expression Recognition (FER) models free, open, easy to use, and easy to integrate into different projects.
The developers of EmoPy have written two guides you may find useful:
- Recognizing human facial expressions with machine learning
- EmoPy: a machine learning toolkit for emotional expression
We aim to expand our development community, and we are open to suggestions and contributions. Please contact us to discuss.
Overview
EmoPy includes several modules that are plugged together to build a trained FER prediction model.
fermodel.py
neuralnets.py
dataset.py
data_loader.py
csv_data_loader.py
directory_data_loader.py
data_generator.py
The fermodel.py
module uses pretrained models for FER prediction, making it the easiest entry point to get a trained model up and running quickly.
Each of the modules contains one class, except for neuralnets.py
, which has one interface and four subclasses. Each of these subclasses implements a different neural net architecture using the Keras framework with Tensorflow backend, allowing you to experiment and see which one performs best for your needs.
The EmoPy documentation contains detailed information on the classes and their interactions. Also, an overview of the different neural nets included in this project is included below.
Datasets
Try out the system using your own dataset or a small dataset we have provided in the examples/image_data subdirectory. The sample datasets we provide will not yield good results due to their small size, but they serve as a great way to get started.
Predictions ideally perform well on a diversity of datasets, illumination conditions, and subsets of the standard 7 emotion labels (happiness, anger, fear, surprise, disgust, sadness, calm/neutral) seen in FER research. Some good example public datasets are the Extended Cohn-Kanade and FER+.
Environment Setup
EmoPy runs using Python 3.6, theoretically on any Python-compatible OS. We tested EmoPy using Python 3.6.6 on OSX. You can install Python 3.6.6 from the Python website.
Please note that this is not the most current version of Python, but the TensorFlow package doesn't work with Python 3.7 yet, so EmoPy cannot run with Python 3.7.
Python is compatible with multiple operating systems. If you would like to use EmoPy on another OS, please convert these instructions to match your target environment. Let us know how you get on, and we will try to support you and share you results.
If you do not have Homebrew installed run this command to install:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
GraphViz is required for visualisation functions.
brew install graphviz
The next step is to set up a virtual environment using virtualenv. Install virtualenv with sudo.
sudo pip install virtualenv
Create and activate the virtual environment. Run:
python3.6 -m venv venv
where the second venv
is the name of your virtual environment. To activate, run from the same directory:
source venv/bin/activate
Your terminal command line should now be prefixed with (venv)
.
(To deactivate the virtual environment run deactivate
in the command line. You'll know it has been deactivated when the prefix (venv)
disappears.)
Installation
From PyPi
Once the virtual environment is activated, you may install EmoPy using
pip install EmoPy
From the source
Clone the directory and open it in your terminal.
git clone https://github.com/thoughtworksarts/EmoPy.git
cd EmoPy
Install the remaining dependencies using pip.
pip install -r requirements.txt
Now you're ready to go!
Running the examples
You can find example code to run each of the current neural net classes in examples. You may either download the example directory to a location of your choice on your machine, or find the example directory included in the installation.
If you choose to use the installed package, you can find the examples directory by starting in the virtual environment directory you created and typing:
cd lib/python3.6/site-packages/EmoPy/examples
The best place to start is the FERModel example. Here is a listing of that code:
from EmoPy.src.fermodel import FERModel
from pkg_resources import resource_filename
target_emotions = ['calm', 'anger', 'happiness']
model = FERModel(target_emotions, verbose=True)
print('Predicting on happy image...')
model.predict(resource_filename('EmoPy.examples','image_data/sample_happy_image.png'))
print('Predicting on disgust image...')
model.predict(resource_filename('EmoPy.examples','image_data/sample_disgust_image.png'))
print('Predicting on anger image...')
model.predict(resource_filename('EmoPy.examples','image_data/sample_anger_image2.png'))
The code above loads a pre-trained model and then predicts an emotion on a sample image. As you can see, all you have to supply with this example is a set of target emotions and a sample image.
Once you have completed the installation, you can run this example from the examples folder by running the example script.
python fermodel_example.py
The first thing the example does is load and initialize the model. Next it prints out emotion probabilities for each sample image its given. It should look like this:
To train your own neural net, use one of our FER neural net classes to get started. You can try the convolutional_model.py example:
python convolutional_example.py
The example first initializes the model. A summary of the model architecture will be printed out. This includes a list of all the neural net layers and the shape of their output. Our models are built using the Keras framework, which offers this visualization function.
You will see the training and validation accuracies of the model being updated as it is trained on each sample image. The validation accuracy will be very low since we are only using three images for training and validation. It should look something like this:
Comparison of neural network models
ConvolutionalNN
Convolutional Neural Networks (CNNs) are currently considered the go-to neural networks for Image Classification, because they pick up on patterns in small parts of an image, such as the curve of an eyebrow. EmoPy's ConvolutionalNN is trained on still images.
TimeDelayConvNN
The Time-Delayed 3D-Convolutional Neural Network model is inspired by the work described in this paper written by Dr. Hongying Meng of Brunel University, London. It uses temporal information as part of its training samples. Instead of using still images as training samples, it uses past images from a series for additional context. One training sample will contain n number of images from a series and its emotion label will be that of the most recent image. The idea is to capture the progression of a facial expression leading up to a peak emotion.
Facial expression image sequence in Cohn-Kanade database from @Jia2014
ConvolutionalLstmNN
The Convolutional Long Short Term Memory neural net is a convolutional and recurrent neural network hybrid. Convolutional NNs use kernels, or filters, to find patterns in smaller parts of an image. Recurrent NNs (RNNs) take into account previous training examples, similar to the Time-Delay Neural Network, for context. This model is able to both extract local data from images and use temporal context.
The Time-Delay model and this model differ in how they use temporal context. The former only takes context from within video clips of a single face as shown in the figure above. The ConvolutionLstmNN is given still images that have no relation to each other. It looks for pattern differences between past image samples and the current sample as well as their labels. It isn’t necessary to have a progression of the same face, simply different faces to compare.
Figure from @vanGent2016
TransferLearningNN
This model uses a technique known as Transfer Learning, where pre-trained deep neural net models are used as starting points. The pre-trained models it uses are trained on images to classify objects. The model then retrains the pre-trained models using facial expression images with emotion classifications rather than object classifications. It adds a couple top layers to the original model to match the number of target emotions we want to classify and reruns the training algorithm with a set of facial expression images. It only uses still images, no temporal context.
Performance
Currently the ConvolutionalLstmNN model is performing best when classifying 7 emotions with a validation accuracy of 47.5%. The table below shows accuracy values of this model and the TransferLearningNN model when trained on all seven standard emotions and on a subset of three emotions (fear, happiness, neutral). They were trained on 5,000 images from the FER+ dataset.
Neural Net Model | 7 emotions | 3 emotions | ||
---|---|---|---|---|
Training Accuracy | Validation Accuracy | Training Accuracy | Validation Accuracy | |
ConvolutionalLstmNN | 0.6187 | 0.4751 | 0.9148 | 0.6267 |
TransferLearningNN | 0.5358 | 0.2933 | 0.7393 | 0.4840 |
Both models are overfitting, meaning that training accuracies are much higher than validation accuracies. This means that the models are doing a really good job of recognizing and classifying patterns in the training images, but are overgeneralizing. They are less accurate when predicting emotions for new images.
If you would like to experiment with different parameters using our neural net classes, we recommend you use FloydHub, a platform for training and deploying deep learning models in the cloud. Let us know how your models are doing! The goal is to optimize the performance and generalizability of all the FERPython models.
Guiding Principles
These are the principals we use to guide development and contributions to the project:
-
FER for Good. FER applications have the potential to be used for malicious purposes. We want to build EmoPy with a community that champions integrity, transparency, and awareness and hope to instill these values throughout development while maintaining an accessible, quality toolkit.
-
User Friendliness. EmoPy prioritizes user experience and is designed to be as easy as possible to get an FER prediction model up and running by minimizing the total user requirements for basic use cases.
-
Experimentation to Maximize Performance. Optimal performance in FER prediction is a primary goal. The deep neural net classes are designed to easily modify training parameters, image pre-processing options, and feature extraction methods in the hopes that experimentation in the open-source community will lead to high-performing FER prediction.
-
Modularity. EmoPy contains four base modules (
fermodel
,neuralnets
,imageprocessor
, andfeatureextractor
) that can be easily used together with minimal restrictions.
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
This is a new library that has a lot of room for growth. Check out the list of open issues that we need help addressing!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file EmoPy-0.0.5.tar.gz
.
File metadata
- Download URL: EmoPy-0.0.5.tar.gz
- Upload date:
- Size: 15.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 422e204b374942fbf7b71c6fe882235a660d27e1bf1ef81d2a930a8f46064fa7 |
|
MD5 | fb8238ee4cdd8dccc3633c0f5a9869f0 |
|
BLAKE2b-256 | 26f9c4744b02be585bdf753547efbbf9b24b51f07e10256f710ab419feba5d59 |
File details
Details for the file EmoPy-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: EmoPy-0.0.5-py3-none-any.whl
- Upload date:
- Size: 15.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be72da13b68ad7db97d778a56f7b66174b461977d0239a1bd8975366ff425d28 |
|
MD5 | d543f7c777622f5fde0504860108f60a |
|
BLAKE2b-256 | 53363c33149c382fb549c29a255cdbeca59c15bb1fa39d8a321836acb3a4c056 |