Instructions to use SebastianS/function_calling-llama_7b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use SebastianS/function_calling-llama_7b with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-2-7b-chat-hf") model = PeftModel.from_pretrained(base_model, "SebastianS/function_calling-llama_7b") - Notebooks
- Google Colab
- Kaggle
Commit ·
fc23d8e
1
Parent(s): 1251f24
readme metadata
Browse files
README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
## Training procedure
|
| 5 |
|
|
@@ -18,4 +21,4 @@ The following `bitsandbytes` quantization config was used during training:
|
|
| 18 |
### Framework versions
|
| 19 |
|
| 20 |
|
| 21 |
-
- PEFT 0.4.0
|
|
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
| 3 |
+
tags:
|
| 4 |
+
- conversational
|
| 5 |
+
pipeline_tag: conversational
|
| 6 |
---
|
| 7 |
## Training procedure
|
| 8 |
|
|
|
|
| 21 |
### Framework versions
|
| 22 |
|
| 23 |
|
| 24 |
+
- PEFT 0.4.0
|