Update README.md
Browse files
README.md
CHANGED
|
@@ -1,8 +1,22 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
language:
|
| 4 |
-
- ko
|
| 5 |
-
pipeline_tag: text-to-speech
|
| 6 |
tags:
|
|
|
|
| 7 |
- VITS
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language: ko
|
|
|
|
|
|
|
|
|
|
| 3 |
tags:
|
| 4 |
+
- text-to-speech
|
| 5 |
- VITS
|
| 6 |
+
license: mit
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# Model Card for VITS Model
|
| 10 |
+
|
| 11 |
+
## Model Description
|
| 12 |
+
This model is a Variational Inference Text-to-Speech (VITS) model trained on Korean datasets.
|
| 13 |
+
|
| 14 |
+
## Usage
|
| 15 |
+
To use this model with the Huggingface Inference API, follow the steps below:
|
| 16 |
+
|
| 17 |
+
### Inference API
|
| 18 |
+
```python
|
| 19 |
+
from transformers import pipeline
|
| 20 |
+
|
| 21 |
+
tts = pipeline(model="path_to_your_model")
|
| 22 |
+
output = tts("안녕하세요")
|