sentiment-transformer / config.json
Impulse2000's picture
Upload sentiment-transformer model
21035f8 verified
{
"architectures": [
"SentimentTransformerForSequenceClassification"
],
"dtype": "float32",
"hidden_dropout_prob": 0.1,
"hidden_size": 256,
"id2label": {
"0": "NEGATIVE",
"1": "NEUTRAL",
"2": "POSITIVE"
},
"intermediate_size": 1024,
"label2id": {
"NEGATIVE": 0,
"NEUTRAL": 1,
"POSITIVE": 2
},
"max_position_embeddings": 256,
"model_type": "sentiment-transformer",
"num_attention_heads": 8,
"num_hidden_layers": 6,
"pad_token_id": 0,
"problem_type": "single_label_classification",
"transformers_version": "5.5.0",
"vocab_size": 16000,
"auto_map": {
"AutoConfig": "configuration_sentiment_transformer.SentimentTransformerConfig",
"AutoModelForSequenceClassification": "modeling_sentiment_transformer.SentimentTransformerForSequenceClassification"
}
}