File size: 332 Bytes
24ccf83 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
{
"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
} |