Instructions to use mazenlhm/MarketingModel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use mazenlhm/MarketingModel with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("bigscience/bloom-1b7") model = PeftModel.from_pretrained(base_model, "mazenlhm/MarketingModel") - 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 |
-
|
|
|
|
| 3 |
license: openrail
|
|
|
|
| 4 |
datasets:
|
| 5 |
- mazenlhm/FourthBrainDataset
|
| 6 |
-
language:
|
| 7 |
-
- en
|
| 8 |
pipeline_tag: text-generation
|
| 9 |
-
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
license: openrail
|
| 5 |
+
library_name: peft
|
| 6 |
datasets:
|
| 7 |
- mazenlhm/FourthBrainDataset
|
|
|
|
|
|
|
| 8 |
pipeline_tag: text-generation
|
| 9 |
+
base_model: bigscience/bloom-1b7
|
| 10 |
+
---
|