Instructions to use prelington/CodexTrouter with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- fastText
How to use prelington/CodexTrouter with fastText:
from huggingface_hub import hf_hub_download import fasttext model = fasttext.load_model(hf_hub_download("prelington/CodexTrouter", "model.bin")) - Notebooks
- Google Colab
- Kaggle
Create tokenizer_config.json
Browse files- tokenizer_config.json +7 -0
tokenizer_config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_lower_case": false,
|
| 3 |
+
"unk_token": "<unk>",
|
| 4 |
+
"pad_token": "<pad>",
|
| 5 |
+
"bos_token": "<s>",
|
| 6 |
+
"eos_token": "</s>"
|
| 7 |
+
}
|