Instructions to use KostiuchenkoArtem/bart_large_small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use KostiuchenkoArtem/bart_large_small with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("KostiuchenkoArtem/bart_large_small") model = AutoModelForSeq2SeqLM.from_pretrained("KostiuchenkoArtem/bart_large_small") - Notebooks
- Google Colab
- Kaggle
File size: 280 Bytes
f0aaddd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | {
"bos_token": "<s>",
"cls_token": "<s>",
"eos_token": "</s>",
"mask_token": {
"content": "<mask>",
"lstrip": true,
"normalized": false,
"rstrip": false,
"single_word": false
},
"pad_token": "<pad>",
"sep_token": "</s>",
"unk_token": "<unk>"
}
|