Instructions to use Se00n00/TinyLM-2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Se00n00/TinyLM-2 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Se00n00/TinyLM-2", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 571 Bytes
dbbf4f3 1f1299e dbbf4f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | {
"add_prefix_space": false,
"backend": "tokenizers",
"bos_token": "<|START|>",
"eos_token": "<|END|>",
"errors": "replace",
"extra_special_tokens": [
"<|THINK|>",
"<|/THINK|>",
"<|AVAILABLE_TOOLS|>",
"<|/AVAILABLE_TOOLS|>",
"<|TOOL_CALLS|>",
"<|/TOOL_CALLS|>",
"<|TOOL_RESULTS|>",
"<|/TOOL_RESULTS|>",
"<|ASSISTANT|>",
"<|USER|>",
"<|SYSTEM|>"
],
"is_local": false,
"local_files_only": false,
"model_max_length": 30000,
"pad_token": null,
"tokenizer_class": "GPT2Tokenizer",
"unk_token": "<|UNK|>"
}
|