Instructions to use artificial-feelings/bark-forked with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use artificial-feelings/bark-forked with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="artificial-feelings/bark-forked")# Load model directly from transformers import AutoProcessor, AutoModelForTextToWaveform processor = AutoProcessor.from_pretrained("artificial-feelings/bark-forked") model = AutoModelForTextToWaveform.from_pretrained("artificial-feelings/bark-forked", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
73419ab
1
Parent(s): 9daf9d5
Upload requirements.txt
Browse files- requirements.txt +2 -1
requirements.txt
CHANGED
|
@@ -1,2 +1,3 @@
|
|
| 1 |
transformers==4.31.0
|
| 2 |
-
sentencepiece
|
|
|
|
|
|
| 1 |
transformers==4.31.0
|
| 2 |
+
sentencepiece
|
| 3 |
+
accelerate==0.21.0
|