Instructions to use korotkov/saiga-7b-function-calling with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use korotkov/saiga-7b-function-calling with PEFT:
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") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,4 +9,10 @@ base_model: huggyllama/llama-7b
|
|
| 9 |
|
| 10 |
# Saiga 7B finetuned for function calling
|
| 11 |
|
| 12 |
-
Based on [IlyaGusev/saiga_7b_lora](https://huggingface.co/IlyaGusev/saiga_7b_lora).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
# Saiga 7B finetuned for function calling
|
| 11 |
|
| 12 |
+
Based on [IlyaGusev/saiga_7b_lora](https://huggingface.co/IlyaGusev/saiga_7b_lora).
|
| 13 |
+
|
| 14 |
+
This is an adapter-only version.
|
| 15 |
+
|
| 16 |
+
# Usage
|
| 17 |
+
|
| 18 |
+
[Google Colab notebook with example usage](https://colab.research.google.com/drive/1Uagjh6utTUD0s0crqVuhi8mPSwbP1rof?usp=sharing)
|