Instructions to use SurgeGlobal/open-llama-v2-lamini-qlora-checkpoint with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use SurgeGlobal/open-llama-v2-lamini-qlora-checkpoint with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("openlm-research/open_llama_3b_v2") model = PeftModel.from_pretrained(base_model, "SurgeGlobal/open-llama-v2-lamini-qlora-checkpoint") - Notebooks
- Google Colab
- Kaggle
File size: 72 Bytes
cf790a1 | 1 2 3 4 5 6 | {
"bos_token": "<s>",
"eos_token": "</s>",
"unk_token": "<unk>"
}
|