Replies: 1 comment
-
This can be made a part of the regular training script with little effort, by matching the tts model name and dataset language, we can automagically load a pretrained model from the zoo for warmup start. (this is slightly different from restore model) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Load the models using the TTS models (eg. Vits(...)). This script is helpful to load the already pretrained wieghts in the model zoo and use them.
Now if you have a pretrained model, without speaker encoder, but you want to transfer the weights to a new model which uses speaker encoder, a few layers will be different here and there. Some might have name mismatches and some might have shape mismatches. The code below will help anyone to load the pretrained weights into appropriate layers and help kick start the training. Any questions, please ask.
Beta Was this translation helpful? Give feedback.
All reactions