Instructions to use orrenius/test_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use orrenius/test_model with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("ybelkada/falcon-7b-sharded-bf16") model = PeftModel.from_pretrained(base_model, "orrenius/test_model") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#1
by librarian-bot - opened
README.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- en
|
|
|
|
| 4 |
tags:
|
| 5 |
- test
|
| 6 |
pipeline_tag: text-generation
|
| 7 |
-
|
| 8 |
-
---
|
|
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
+
library_name: peft
|
| 5 |
tags:
|
| 6 |
- test
|
| 7 |
pipeline_tag: text-generation
|
| 8 |
+
base_model: ybelkada/falcon-7b-sharded-bf16
|
| 9 |
+
---
|