Saiga 7B finetuned for function calling
Based on IlyaGusev/saiga_7b_lora.
This is an adapter-only version.
Usage
- Downloads last month
- 3
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
Model tree for korotkov/saiga-7b-function-calling
Base model
huggyllama/llama-7b
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("huggyllama/llama-7b") model = PeftModel.from_pretrained(base_model, "korotkov/saiga-7b-function-calling")