File size: 788 Bytes
adb27f7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
{
"model_type": "bert",
"vocab_size": 32000,
"type_vocab_size": 2,
"padding_id": 0,
"unk_id": 1,
"cls_id": 2,
"sep_id": 3,
"mask_id": 4,
"normalizer": null,
"pretokenizer": {
"type": "ByteLevel",
"add_prefix_space": true
},
"postprocessor": {
"type": "TemplateProcessing",
"single": {
"template": "{input} </s>",
"special_tokens": [
{
"id": 2,
"content": "</s>"
}
]
},
"pair": {
"template": "{pair} </s>",
"special_tokens": [
{
"id": 2,
"content": "</s>"
}
]
}
}
} |