Instructions to use shahvatsalm/Vatsals_LLM_TextGeneration_marketing with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use shahvatsalm/Vatsals_LLM_TextGeneration_marketing with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("bigscience/bloom-1b7") model = PeftModel.from_pretrained(base_model, "shahvatsalm/Vatsals_LLM_TextGeneration_marketing") - Notebooks
- Google Colab
- Kaggle
Librarian Bot: Add base_model information to model
#1
by librarian-bot - opened
README.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
| 1 |
---
|
| 2 |
-
library_name: peft
|
| 3 |
-
license: apache-2.0
|
| 4 |
language:
|
| 5 |
- en
|
|
|
|
|
|
|
| 6 |
metrics:
|
| 7 |
- bleu
|
| 8 |
pipeline_tag: text-generation
|
| 9 |
-
-
|
|
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
library_name: peft
|
| 6 |
metrics:
|
| 7 |
- bleu
|
| 8 |
pipeline_tag: text-generation
|
| 9 |
+
base_model: bigscience/bloom-1b7
|
| 10 |
+
---
|