Instructions to use reach-vb/musicgen-large-endpoint with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use reach-vb/musicgen-large-endpoint with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-audio", model="reach-vb/musicgen-large-endpoint")# Load model directly from transformers import AutoProcessor, AutoModelForTextToWaveform processor = AutoProcessor.from_pretrained("reach-vb/musicgen-large-endpoint") model = AutoModelForTextToWaveform.from_pretrained("reach-vb/musicgen-large-endpoint") - Notebooks
- Google Colab
- Kaggle
Vaibhav Srivastav commited on
Commit ·
973e88f
1
Parent(s): 79d1c7f
up
Browse files- requirements.txt +1 -1
requirements.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
| 1 |
-
transformers
|
| 2 |
accelerate
|
|
|
|
| 1 |
+
transformers==4.31.0
|
| 2 |
accelerate
|