Instructions to use googcheng/recipe with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use googcheng/recipe with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("NousResearch/Llama-2-7b-hf") model = PeftModel.from_pretrained(base_model, "googcheng/recipe") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#1
by librarian-bot - opened
README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
|
|
|
| 3 |
---
|
| 4 |
## title
|
| 5 |
a recipe classify from https://github.com/OpenPipe/OpenPipe
|
|
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
| 3 |
+
base_model: NousResearch/Llama-2-7b-hf
|
| 4 |
---
|
| 5 |
## title
|
| 6 |
a recipe classify from https://github.com/OpenPipe/OpenPipe
|