Instructions to use sajjadamjad/ghostwrite_v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use sajjadamjad/ghostwrite_v3 with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("NousResearch/Llama-2-7b-hf") model = PeftModel.from_pretrained(base_model, "sajjadamjad/ghostwrite_v3") - Notebooks
- Google Colab
- Kaggle
Commit ·
dad7991
1
Parent(s): fe561b9
Create requirements.txt
Browse files- requirements.txt +4 -0
requirements.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
peft
|
| 2 |
+
accelerate
|
| 3 |
+
bitsandbytes
|
| 4 |
+
transformers
|