Instructions to use rewicks/baseline_en-de_32k_ep38 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use rewicks/baseline_en-de_32k_ep38 with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("rewicks/baseline_en-de_32k_ep38") model = AutoModelForSeq2SeqLM.from_pretrained("rewicks/baseline_en-de_32k_ep38") - Notebooks
- Google Colab
- Kaggle
Upload special_tokens_map.json with huggingface_hub
Browse files- special_tokens_map.json +9 -0
special_tokens_map.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<s>"
|
| 4 |
+
],
|
| 5 |
+
"bos_token": "<s>",
|
| 6 |
+
"eos_token": "</s>",
|
| 7 |
+
"pad_token": "<pad>",
|
| 8 |
+
"unk_token": "<unk>"
|
| 9 |
+
}
|