File size: 1,306 Bytes
e51a42c
 
 
 
 
 
 
d9b0f6e
22ab0fc
e51a42c
69284bb
e51a42c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86052de
 
14435a9
86052de
 
 
69284bb
 
cbff620
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
license: apache-2.0
language:
- th
---
# My first TTS

[Finetune colab](https://colab.research.google.com/drive/1FdCg-fjwiwrkAHXXqYGWq--Lmz_J10NI?usp=sharing)


## Example Code

```python
import torch
from transformers import VitsTokenizer, VitsModel, set_seed
import scipy.io.wavfile

device = "cuda" if torch.cuda.is_available() else "cpu"

model = VitsModel.from_pretrained("meguscx/VITS-TH-Model").to(device)
tokenizer = VitsTokenizer.from_pretrained("meguscx/VITS-TH-Model")

text = "การเรียนรู้ภาษาใหม่ช่วยเปิดโลกทัศน์ให้กว้างขึ้น"

inputs = tokenizer(text=text, return_tensors="pt").to(device)

set_seed(456)

with torch.no_grad():
    outputs = model(**inputs)

waveform = outputs.waveform[0].cpu().numpy()

scipy.io.wavfile.write(
    "test.wav",
    rate=model.config.sampling_rate,
    data=waveform
)

print("Saved successfully.")
```

this model train 6 hr with only 1094 voice data (single speaker)  
so voice maybe not too good and sometimes sound weird or unnatural  
because dataset is small ;-;


## Sample Audio
<audio controls>
  <source src="https://huggingface.co/meguscx/VITS-TH-Model/resolve/main/test.wav" type="audio/wav">
  Your browser does not support the audio element.
</audio>