Spaces:
Sleeping
Sleeping
File size: 274 Bytes
b20cbbf |
1 2 3 4 5 6 7 8 9 10 11 12 |
def map_to_mood(label):
mapping = {
'joy': 'Happy',
'neutral': 'Neutral',
'sadness': 'Sad',
'anger': 'Angry',
'disgust': 'Angry',
'fear': 'Sad',
'surprise': 'Neutral'
}
return mapping.get(label, 'Neutral')
|