Instructions to use bilkultheek/ColdLLamaLite with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use bilkultheek/ColdLLamaLite with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("ahxt/LiteLlama-460M-1T") model = PeftModel.from_pretrained(base_model, "bilkultheek/ColdLLamaLite") - Notebooks
- Google Colab
- Kaggle
File size: 446 Bytes
4ba2f26 | 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 | {
"bos_token": {
"content": "<|endoftext|>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
},
"eos_token": {
"content": "#",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
},
"pad_token": "#",
"unk_token": {
"content": "<|endoftext|>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
}
}
|