Instructions to use maya-research/maya1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use maya-research/maya1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="maya-research/maya1")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("maya-research/maya1") model = AutoModelForCausalLM.from_pretrained("maya-research/maya1") - Notebooks
- Google Colab
- Kaggle
[FLAW] Model cannot pronounciate seperate characters correctly
#26
by simzhou - opened
Description text:
casual random speaker, casual talk, male 30s.
Target text:
ECO mode
It should be pronounced as either 'E C O' seperately or /iː.kəʊ-/
Welcome to no phonemes TTS. Suffer!
Normalization is something common between all TTS models. Use regex to improve that part, or maybe try reducing the temperature of the generation for more stable generation. Regex takes up hardly 5ms.
bharathkumarK changed discussion status to closed
Normalization is something common between all TTS models. Use regex to improve that part, or maybe try reducing the temperature of the generation for more stable generation. Regex takes up hardly 5ms.
Could you elaborate on this please? It is still unclear how regex should be used in that case. Thank you!