-
Notifications
You must be signed in to change notification settings - Fork 0
/
benchmark_wer_ca.py
24 lines (21 loc) · 1.14 KB
/
benchmark_wer_ca.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from benchmark_wer import benchmark_wer
if __name__ == "__main__":
LANG = "ca"
# Define plugins
PLUGINS = [
# ("plugin_name", TTS_plugin_instance, voice, langs)
("ovos-tts-plugin-coqui", 'tts_models/ca/custom/vits', [LANG]),
("ovos-tts-plugin-edge-tts", 'ca-ES-JoanaNeural', [LANG]),
("ovos-tts-plugin-edge-tts", 'ca-ES-EnricNeural', [LANG]),
("ovos-tts-plugin-google-tx", "google", [LANG]),
("ovos-tts-plugin-espeak", "robot", [LANG]),
("ovos-tts-plugin-matxa-multispeaker-cat", "central/grau", [LANG]),
("ovos-tts-plugin-matxa-multispeaker-cat", "central/elia", [LANG]),
("ovos-tts-plugin-matxa-multispeaker-cat", "balear/quim", [LANG]),
("ovos-tts-plugin-matxa-multispeaker-cat", "balear/olga", [LANG]),
("ovos-tts-plugin-matxa-multispeaker-cat", "valencia/lluc", [LANG]),
("ovos-tts-plugin-matxa-multispeaker-cat", "valencia/gina", [LANG]),
("ovos-tts-plugin-matxa-multispeaker-cat", "nord-occidental/pere", [LANG]),
("ovos-tts-plugin-matxa-multispeaker-cat", "nord-occidental/emma", [LANG]),
]
benchmark_wer(LANG, PLUGINS)