Instructions to use Akhil2507/sample-bloom-3b-LoRA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Akhil2507/sample-bloom-3b-LoRA with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("bigscience/bloom-3b") model = PeftModel.from_pretrained(base_model, "Akhil2507/sample-bloom-3b-LoRA") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#1
by librarian-bot - opened
README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
| 3 |
pipeline_tag: question-answering
|
|
|
|
| 4 |
---
|
| 5 |
## Training procedure
|
| 6 |
|
|
|
|
| 1 |
---
|
| 2 |
library_name: peft
|
| 3 |
pipeline_tag: question-answering
|
| 4 |
+
base_model: bigscience/bloom-3b
|
| 5 |
---
|
| 6 |
## Training procedure
|
| 7 |
|