Instructions to use JakeOh/gpt2-tokenizer-bert-processing with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use JakeOh/gpt2-tokenizer-bert-processing with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("JakeOh/gpt2-tokenizer-bert-processing", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 381 Bytes
13d8551 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | {
"bos_token": "<|endoftext|>",
"eos_token": "<|endoftext|>",
"mask_token": {
"content": "<|mask|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"pad_token": {
"content": "<|pad|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"unk_token": "<|endoftext|>"
}
|