File size: 509 Bytes
f572924 f2f0b37 f572924 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
{
"model_type": "sentiment-head",
"architectures": [
"TextEmbedding3SmallSentimentHead"
],
"input_dim": 1536,
"hidden_dim": 256,
"dropout": 0.2,
"num_labels": 3,
"id2label": {
"0": "negative",
"1": "neutral",
"2": "positive"
},
"label2id": {
"negative": 0,
"neutral": 1,
"positive": 2
},
"auto_map": {
"AutoConfig": "modeling_te3s_head.TextEmbedding3SmallSentimentHeadConfig",
"AutoModel": "modeling_te3s_head.TextEmbedding3SmallSentimentHead"
}
} |