Instructions to use TheAIchemist13/test-tiny-gpt2-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use TheAIchemist13/test-tiny-gpt2-lora with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("TheAIchemist13/test-tiny-gpt2-lora", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 515 Bytes
92373f5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | {
"add_bos_token": false,
"add_prefix_space": false,
"added_tokens_decoder": {
"50256": {
"content": "<|endoftext|>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false,
"special": true
}
},
"bos_token": "<|endoftext|>",
"clean_up_tokenization_spaces": false,
"eos_token": "<|endoftext|>",
"errors": "replace",
"model_max_length": 1024,
"pad_token": null,
"tokenizer_class": "GPT2Tokenizer",
"unk_token": "<|endoftext|>"
}
|