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
Commit ·
f049f54
1
Parent(s): ccb3c10
Create requirements.txt
Browse files- requirements.txt +7 -0
requirements.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
bitsandbytes
|
| 2 |
+
datasets
|
| 3 |
+
accelerate
|
| 4 |
+
loralib
|
| 5 |
+
gradio
|
| 6 |
+
git+https://github.com/huggingface/peft.git
|
| 7 |
+
git+https://github.com/huggingface/transformers.git@main
|