Instructions to use wza/llama-65b-qlora-fin-2epoch with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use wza/llama-65b-qlora-fin-2epoch with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("/workspace/text-generation-webui/models/huggyllama_llama-65b") model = PeftModel.from_pretrained(base_model, "wza/llama-65b-qlora-fin-2epoch") - Notebooks
- Google Colab
- Kaggle