Instructions to use transZ/BartPho_repara with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use transZ/BartPho_repara with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("transZ/BartPho_repara") model = AutoModelForSeq2SeqLM.from_pretrained("transZ/BartPho_repara") - Notebooks
- Google Colab
- Kaggle
File size: 279 Bytes
93b5c1e | 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": true,
"rstrip": false,
"single_word": false
},
"pad_token": "<pad>",
"sep_token": "</s>",
"unk_token": "<unk>"
}
|