Instructions to use sunminyu/KE-Blender with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sunminyu/KE-Blender with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("sunminyu/KE-Blender") model = AutoModelForSeq2SeqLM.from_pretrained("sunminyu/KE-Blender") - Notebooks
- Google Colab
- Kaggle
Upload special_tokens_map.json
Browse files- special_tokens_map.json +1 -0
special_tokens_map.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"bos_token": "__start__", "eos_token": "__end__", "unk_token": "__unk__", "pad_token": "__null__", "additional_special_tokens": ["__defi__", "__hype__", "[MASK]"]}
|