Instructions to use fluxions/vui with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Vui
How to use fluxions/vui with Vui:
# !pip install git+https://github.com/fluxions-ai/vui import torchaudio from vui.inference import render from vui.model import Vui, model = Vui.from_pretrained().cuda() waveform = render( model, "Hey, here is some random stuff, usually something quite long as the shorter the text the less likely the model can cope!", ) print(waveform.shape) torchaudio.save("out.opus", waveform[0], 22050) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -6,6 +6,8 @@ pipeline_tag: text-to-speech
|
|
| 6 |
---
|
| 7 |
# vui
|
| 8 |
|
|
|
|
|
|
|
| 9 |
Small Conversational speech models that can run on device
|
| 10 |
|
| 11 |
# Installation
|
|
|
|
| 6 |
---
|
| 7 |
# vui
|
| 8 |
|
| 9 |
+
https://github.com/fluxions-ai/vui
|
| 10 |
+
|
| 11 |
Small Conversational speech models that can run on device
|
| 12 |
|
| 13 |
# Installation
|