Cannot synthesize with fine-tuned model #1178
-
|
Hi, I've just got my first fine-tuned model based on Exp3 (en, pt, fr) VITS model. I want to generate a sample so I run But instead I got
` So can I still test my model with the new voice I added ? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I could synthesize text with my own model after providing a speaker name that I got from running So to get speaker name : And then using that speaker name (not number even if it's called idx) :
` Please note that ithere is no typo : |
Beta Was this translation helpful? Give feedback.
I could synthesize text with my own model after providing a speaker name that I got from running
ttswithlist_speaker_idxparameter AND (what I forgot initialy) the--config_path.So to get speaker name :
tts --model_path "{modelDir}{checkpointName}" --config_path "{modelDir}config.json" --list_language_idxs --list_speaker_idxsAnd then using that speaker name (not number even if it's called idx) :
`
`
Please note that ithere is no typo :
speaker_idxhas the same name as the…