First of all you need to be added as contributor, you will need a github account for that ;) .
git clone git@github.com:tonca/emotion_recognition.git
-
Verify that the code works
-
Verify which files have been changed
git status -
Add the changes to the git repository
git add . -
Commit changes
git commit -m "COMMIT DESCRIPTION" -
Update the local repository
git pull -
Update the remote repository
git push
This folder is not loaded in the repository (this is autoatically managed by the .gitignore file).
This means that when you clone the repo you will have to add manually the data files that you will need.
Put all the heavy data files into this directory.
This file contains the following informations:
img_name: name of the image in the CK+ datasetAU**_r: Action units from the OpenFace regressor (values [0,5])AU**_c: Action units from the OpenFace classifier (values {0,1})emotion: true emotion label from the datasettrue_AU**: true FACS labels from the dataset
true_AU** reference:
| Value | Meaning |
|---|---|
| 0 | not activated |
| ( 0, 5 ] | intensity value |
| -1 | activated, unknown intensity |
The scripts in this directory are not meant to be executed and you won't need to. I put this folder just to share what we did, so if you have some code that you want to share, you can put it into this folder.
Here is where we will put out jupyter notebooks.