Text-to-Speech
ONNX
Catalan
phoonnx
vits
Jarbas commited on
Commit
4331ad1
·
verified ·
1 Parent(s): bd7ef54

docs: full model card (ownership, usage, datasets)

Browse files
Files changed (1) hide show
  1. README.md +72 -4
README.md CHANGED
@@ -1,9 +1,77 @@
1
  ---
2
- datasets:
3
- - TigreGotico/tts_vc_LaFrescat-ca-ES-central_miro
4
  language:
5
  - ca
 
 
 
 
6
  base_model:
7
  - OpenVoiceOS/phoonnx_an_miro_unicode
8
- pipeline_tag: text-to-speech
9
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
 
2
  language:
3
  - ca
4
+ license: cc-by-nc-nd-4.0
5
+ pipeline_tag: text-to-speech
6
+ datasets:
7
+ - TigreGotico/tts_vc_LaFrescat-ca-ES-central_miro
8
  base_model:
9
  - OpenVoiceOS/phoonnx_an_miro_unicode
10
+ tags:
11
+ - phoonnx
12
+ - onnx
13
+ - vits
14
+ - text-to-speech
15
+ - ca
16
+ ---
17
+
18
+ # phoonnx_ca_miro_espeak
19
+
20
+ This is a text-to-speech voice model for **Catalan**. The voice is **Miro**, a male voice. It uses the phoonnx VITS architecture with espeak-ng for phonemization, exported to ONNX for CPU inference. It was built by voice conversion from the base voice `phoonnx_an_miro_unicode`.
21
+
22
+ ## How to use
23
+
24
+ Install [phoonnx](https://github.com/TigreGotico/phoonnx) and run:
25
+
26
+ ```python
27
+ import wave
28
+ from phoonnx.config import SynthesisConfig
29
+ from phoonnx.voice import TTSVoice
30
+
31
+ voice = TTSVoice.from_hf("OpenVoiceOS/phoonnx_ca_miro_espeak")
32
+
33
+ synthesis_config = SynthesisConfig(noise_scale=0.667, length_scale=1.0, noise_w_scale=0.8)
34
+
35
+ with wave.open("output.wav", "wb") as wav_file:
36
+ voice.synthesize_wav("Bon dia, com estàs?", wav_file, synthesis_config)
37
+ ```
38
+
39
+ You can also use this model in OVOS with
40
+ [ovos-tts-plugin-phoonnx](https://github.com/OpenVoiceOS/ovos-tts-plugin-phoonnx):
41
+
42
+ ```json
43
+ {
44
+ "tts": {
45
+ "module": "ovos-tts-plugin-phoonnx",
46
+ "ovos-tts-plugin-phoonnx": {
47
+ "voice": "OpenVoiceOS/phoonnx_ca_miro_espeak"
48
+ }
49
+ }
50
+ }
51
+ ```
52
+
53
+ ## Training data
54
+
55
+ Trained on [TigreGotico/tts_vc_LaFrescat-ca-ES-central_miro](https://huggingface.co/datasets/TigreGotico/tts_vc_LaFrescat-ca-ES-central_miro).
56
+
57
+ ## Related links
58
+
59
+ - Training-data collection: https://huggingface.co/collections/TigreGotico/synthetic-tts-datasets
60
+ - phoonnx: https://github.com/TigreGotico/phoonnx
61
+ - voiceclonnx: https://github.com/TigreGotico/voiceclonnx
62
+ - TigreGotico: https://tigregotico.pt
63
+
64
+ ## Ownership and licensing
65
+
66
+ Miro and Dii are the recorded voices of two real people. The voices, the
67
+ training data, and this model belong to TigreGotico Lda
68
+ (https://tigregotico.pt).
69
+
70
+ This model is licensed under Creative Commons
71
+ Attribution-NonCommercial-NoDerivatives 4.0 (CC BY-NC-ND 4.0). You may use
72
+ and share this model for non-commercial purposes only. Give attribution to
73
+ TigreGotico Lda. Do not modify, adapt, or build new models from this model.
74
+ Do not use the voice identity to create derivative voices.
75
+
76
+ For commercial use, for derivative models, or for any other license of the
77
+ Miro or Dii voice identity, contact TigreGotico Lda.