Instructions to use Magjot/Second_test_LLM_3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Magjot/Second_test_LLM_3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-audio", model="Magjot/Second_test_LLM_3")# Load model directly from transformers import AutoProcessor, AutoModelForTextToSpectrogram processor = AutoProcessor.from_pretrained("Magjot/Second_test_LLM_3") model = AutoModelForTextToSpectrogram.from_pretrained("Magjot/Second_test_LLM_3", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update requirements.txt
Browse files- requirements.txt +6 -5
requirements.txt
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
protobuf>=3.20.0
|
| 4 |
-
peft>=0.10.0
|
| 5 |
-
accelerate>=0.30.0
|
|
|
|
|
|
| 1 |
+
torch>=2.2.0
|
| 2 |
+
transformers>=4.40.0
|
| 3 |
+
protobuf>=3.20.0
|
| 4 |
+
peft>=0.10.0
|
| 5 |
+
accelerate>=0.30.0
|
| 6 |
+
|