Instructions to use suno/bark with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use suno/bark with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="suno/bark")# Load model directly from transformers import AutoProcessor, AutoModelForTextToWaveform processor = AutoProcessor.from_pretrained("suno/bark") model = AutoModelForTextToWaveform.from_pretrained("suno/bark") - Notebooks
- Google Colab
- Kaggle
Update license
#16
by sanchit-gandhi - opened
README.md
CHANGED
|
@@ -16,7 +16,7 @@ language:
|
|
| 16 |
thumbnail: >-
|
| 17 |
https://user-images.githubusercontent.com/5068315/230698495-cbb1ced9-c911-4c9a-941d-a1a4a1286ac6.png
|
| 18 |
library: bark
|
| 19 |
-
license:
|
| 20 |
tags:
|
| 21 |
- bark
|
| 22 |
- audio
|
|
@@ -188,4 +188,8 @@ We anticipate that this model's text to audio capabilities can be used to improv
|
|
| 188 |
While we hope that this release will enable users to express their creativity and build applications that are a force
|
| 189 |
for good, we acknowledge that any text to audio model has the potential for dual use. While it is not straightforward
|
| 190 |
to voice clone known people with Bark, it can still be used for nefarious purposes. To further reduce the chances of unintended use of Bark,
|
| 191 |
-
we also release a simple classifier to detect Bark-generated audio with high accuracy (see notebooks section of the main repository).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
thumbnail: >-
|
| 17 |
https://user-images.githubusercontent.com/5068315/230698495-cbb1ced9-c911-4c9a-941d-a1a4a1286ac6.png
|
| 18 |
library: bark
|
| 19 |
+
license: mit
|
| 20 |
tags:
|
| 21 |
- bark
|
| 22 |
- audio
|
|
|
|
| 188 |
While we hope that this release will enable users to express their creativity and build applications that are a force
|
| 189 |
for good, we acknowledge that any text to audio model has the potential for dual use. While it is not straightforward
|
| 190 |
to voice clone known people with Bark, it can still be used for nefarious purposes. To further reduce the chances of unintended use of Bark,
|
| 191 |
+
we also release a simple classifier to detect Bark-generated audio with high accuracy (see notebooks section of the main repository).
|
| 192 |
+
|
| 193 |
+
## License
|
| 194 |
+
|
| 195 |
+
Bark is licensed under the [MIT License](https://github.com/suno-ai/bark/blob/main/LICENSE), meaning it's available for commercial use.
|