Views
No views yet
| Emotion | Precision | Recall | F1-Score |
|---|---|---|---|
| Happy | 0.66 | 0.80 | 0.72 |
| Surprise | 0.68 | 0.71 | 0.70 |
| Disgust | 0.71 | 0.50 | 0.59 |
| Neutral | 0.41 | 0.48 | 0.44 |
| Angry | 0.40 | 0.41 | 0.41 |
| Fear | 0.38 | 0.27 | 0.32 |
| Sad | 0.32 | 0.30 | 0.31 |
browInnerUp, mouthSmileLeft). This makes the model robust to different lighting conditions and head poses.class_weight='balanced' to ensure fair representation of rare emotions like Disgust.skops library:1import skops.io as sio
2
3# Load the model
4model = sio.load("model.skops", trusted=True)
5
6# Expects an array of 52 blendshape scores
7# prediction = model.predict([blendshape_list])