File size: 435 Bytes
a1e97d6 9b60b61 2bd7eba 9b60b61 2bd7eba 9b60b61 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
---
language: ko
tags:
- text-to-speech
- VITS
license: mit
---
# Model Card for VITS Model
## Model Description
This model is a Variational Inference Text-to-Speech (VITS) model trained on Korean datasets.
## Usage
To use this model with the Huggingface Inference API, follow the steps below:
### Inference API
```python
from transformers import pipeline
tts = pipeline(model="path_to_your_model")
output = tts("์๋
ํ์ธ์") |