docs: full model card (ownership, usage, datasets)
Browse files
README.md
CHANGED
|
@@ -1,35 +1,27 @@
|
|
| 1 |
---
|
| 2 |
-
datasets:
|
| 3 |
-
- TigreGotico/tts_vc_mcv-scripted-v23.0_ast_dii
|
| 4 |
language:
|
| 5 |
- ast
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
base_model:
|
| 7 |
- OpenVoiceOS/phoonnx_gl-ES_dii_unicode
|
| 8 |
-
pipeline_tag: text-to-speech
|
| 9 |
tags:
|
| 10 |
-
- vits
|
| 11 |
- phoonnx
|
| 12 |
- onnx
|
| 13 |
-
-
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
-
#
|
| 17 |
|
| 18 |
-
|
| 19 |
-
architecture, exported to ONNX for efficient CPU inference. The voice
|
| 20 |
-
persona is **Dii** — a female speaker adapted via voice conversion from a
|
| 21 |
-
Galician base model (`phoonnx_gl-ES_dii_unicode`).
|
| 22 |
|
| 23 |
-
##
|
| 24 |
-
|
| 25 |
-
Trained on
|
| 26 |
-
[TigreGotico/tts\_vc\_mcv-scripted-v23.0\_ast\_dii](https://huggingface.co/datasets/TigreGotico/tts_vc_mcv-scripted-v23.0_ast_dii),
|
| 27 |
-
a synthetic voice-conversion dataset derived from Mozilla Common Voice
|
| 28 |
-
scripted prompts (release 23.0). Audio was synthesised with a donor TTS
|
| 29 |
-
voice and then converted to the Dii speaker identity using voice-conversion
|
| 30 |
-
techniques, producing a multi-hour single-speaker corpus for Asturian.
|
| 31 |
|
| 32 |
-
|
| 33 |
|
| 34 |
```python
|
| 35 |
import wave
|
|
@@ -44,7 +36,8 @@ with wave.open("output.wav", "wb") as wav_file:
|
|
| 44 |
voice.synthesize_wav("Bones díes, ¿cómo tas?", wav_file, synthesis_config)
|
| 45 |
```
|
| 46 |
|
| 47 |
-
|
|
|
|
| 48 |
|
| 49 |
```json
|
| 50 |
{
|
|
@@ -57,6 +50,28 @@ Or via the OVOS TTS plugin:
|
|
| 57 |
}
|
| 58 |
```
|
| 59 |
|
| 60 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
|
| 62 |
-
|
|
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
language:
|
| 3 |
- ast
|
| 4 |
+
license: cc-by-nc-nd-4.0
|
| 5 |
+
pipeline_tag: text-to-speech
|
| 6 |
+
datasets:
|
| 7 |
+
- TigreGotico/tts_vc_mcv-scripted-v23.0_ast_dii
|
| 8 |
base_model:
|
| 9 |
- OpenVoiceOS/phoonnx_gl-ES_dii_unicode
|
|
|
|
| 10 |
tags:
|
|
|
|
| 11 |
- phoonnx
|
| 12 |
- onnx
|
| 13 |
+
- vits
|
| 14 |
+
- text-to-speech
|
| 15 |
+
- ast
|
| 16 |
---
|
| 17 |
|
| 18 |
+
# phoonnx_ast_dii_unicode
|
| 19 |
|
| 20 |
+
This is a text-to-speech voice model for **Asturian**. The voice is **Dii**, a female voice. It uses the phoonnx VITS architecture with a unicode character-based phonemizer, exported to ONNX for CPU inference. It was built by voice conversion from the base voice `phoonnx_gl-ES_dii_unicode`.
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
+
## How to use
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
+
Install [phoonnx](https://github.com/TigreGotico/phoonnx) and run:
|
| 25 |
|
| 26 |
```python
|
| 27 |
import wave
|
|
|
|
| 36 |
voice.synthesize_wav("Bones díes, ¿cómo tas?", 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 |
{
|
|
|
|
| 50 |
}
|
| 51 |
```
|
| 52 |
|
| 53 |
+
## Training data
|
| 54 |
+
|
| 55 |
+
Trained on [TigreGotico/tts_vc_mcv-scripted-v23.0_ast_dii](https://huggingface.co/datasets/TigreGotico/tts_vc_mcv-scripted-v23.0_ast_dii).
|
| 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.
|