Instructions to use arjuntheprogrammer/trained-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use arjuntheprogrammer/trained-model with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("codellama/CodeLlama-7b-hf") model = PeftModel.from_pretrained(base_model, "arjuntheprogrammer/trained-model") - Notebooks
- Google Colab
- Kaggle
File size: 196 Bytes
681585b | 1 2 3 4 5 6 7 8 9 10 11 12 13 | {
"additional_special_tokens": [
"▁<PRE>",
"▁<MID>",
"▁<SUF>",
"▁<EOT>"
],
"bos_token": "<s>",
"eos_token": "</s>",
"pad_token": "</s>",
"unk_token": "<unk>"
}
|