modernBERT-large-claim-agent / tokenizer_config.json
Inabia-AI's picture
Fix tokenizer_class (TokenizersBackend -> PreTrainedTokenizerFast) and drop save-time junk keys so the model loads in inference containers
70e6f67 verified
Raw
History Blame Contribute Delete
308 Bytes
{
"clean_up_tokenization_spaces": true,
"cls_token": "[CLS]",
"mask_token": "[MASK]",
"model_input_names": [
"input_ids",
"attention_mask"
],
"model_max_length": 8192,
"pad_token": "[PAD]",
"sep_token": "[SEP]",
"tokenizer_class": "PreTrainedTokenizerFast",
"unk_token": "[UNK]"
}