best_emotion_detection / config.json
mark1316's picture
Add emotion classification model
6601396 verified
raw
history blame contribute delete
424 Bytes
{
"model_type": "resnet18",
"num_labels": 8,
"id2label": {
"0": "anger",
"1": "content",
"2": "disgust",
"3": "fear",
"4": "happy",
"5": "neutral",
"6": "sad",
"7": "surprise"
},
"label2id": {
"anger": 0,
"content": 1,
"disgust": 2,
"fear": 3,
"happy": 4,
"neutral": 5,
"sad": 6,
"surprise": 7
},
"image_size": 224,
"framework": "torchvision"
}