Akjava commited on
Commit
12e69b4
·
verified ·
1 Parent(s): fc8efb1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -1
README.md CHANGED
@@ -14,4 +14,25 @@ https://commonvoice.mozilla.org/en/datasets
14
  I called Corps 1 of audios 42da7f26(head-audio-id)_290(files) EN001
15
 
16
  Train with IPA(this folk)
17
- https://github.com/akjava/Matcha-TTS-Japanese
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  I called Corps 1 of audios 42da7f26(head-audio-id)_290(files) EN001
15
 
16
  Train with IPA(this folk)
17
+ https://github.com/akjava/Matcha-TTS-Japanese
18
+ ## Files
19
+ ### checkpoints
20
+ Matcha-TTS checkpoint - epoch seems big but train with only 290 audios
21
+ ### ONNX
22
+
23
+ onnx simplified
24
+ ```
25
+ from onnxsim import simplify
26
+ import onnx
27
+
28
+ model = onnx.load("en001_6399_T2.onnx")
29
+ model_simp, check = simplify(model)
30
+
31
+ onnx.save(model_simp, "en001_6399_T2_simplify.onnx")
32
+ ```
33
+ - T2 means Vocoder is hifigan_T2_v1
34
+ - Unif means Voder is hifigan_univ_v1
35
+
36
+ To use onnx need something,I'll add sample code later
37
+ ### Audio
38
+ I cut with VAD tools and denoise with resemble-enhance