BERT-LSTM-based-ABSA / config.json
trek90s
add model
617dc35
raw
history blame contribute delete
No virus
628 Bytes
{
"architectures": [
"BertLSTMForSequenceClassification"
],
"auto_map": {
"AutoConfig": "configuration.BertABSAConfig",
"AutoModelForSequenceClassification": "model.BertLSTMForSequenceClassification"
},
"dropout_rate": 0.1,
"embed_dim": 768,
"fc_hidden": 256,
"hidden_dim_lstm": 128,
"id2label": {
"0": "negative",
"1": "positive",
"2": "neutral"
},
"label2id": {
"negative": 0,
"neutral": 2,
"positive": 1
},
"model_type": "BertABSAForSequenceClassification",
"num_classes": 3,
"num_layers": 12,
"torch_dtype": "float32",
"transformers_version": "4.20.1"
}