quretec / model_config.json
giguru's picture
Replaced "label_map" with "id2label" and "label2id"
24ccf83
raw
history blame contribute delete
332 Bytes
{
"bert_model": "bert-large-uncased",
"do_lower": true,
"max_seq_length": 300,
"num_labels": 5,
"id2label": {
"0": "[PAD]",
"1": "O",
"2": "REL",
"3": "[CLS]",
"4": "[SEP]"
},
"label2id": {
"[PAD]": 0,
"O": 1,
"REL": 2,
"[CLS]": 3,
"[SEP]": 4
},
"hidden_dropout_prob": 0.4
}