Transformers
PyTorch
TensorFlow
JAX
English
blenderbot-small
text2text-generation
convAI
conversational
facebook
Instructions to use facebook/blenderbot_small-90M with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/blenderbot_small-90M with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("facebook/blenderbot_small-90M") model = AutoModelForSeq2SeqLM.from_pretrained("facebook/blenderbot_small-90M") - Notebooks
- Google Colab
- Kaggle
Updates incorrect tokenizer configuration file
#5
by lysandre HF Staff - opened
- tokenizer_config.json +1 -1
tokenizer_config.json
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"unk_token": "__unk__", "bos_token": "__start__", "eos_token": "__end__", "pad_token": "__null__", "special_tokens_map_file": null, "tokenizer_file": null, "name_or_path": "facebook/blenderbot_small-90M"}
|
|
|
|
| 1 |
+
{"unk_token": "__unk__", "bos_token": "__start__", "eos_token": "__end__", "pad_token": "__null__", "special_tokens_map_file": null, "tokenizer_file": null, "name_or_path": "facebook/blenderbot_small-90M", "model_max_length": 512}
|