-
Notifications
You must be signed in to change notification settings - Fork 321
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Add VITS-2 #1510
[WIP] Add VITS-2 #1510
Conversation
Does |
For now, I am getting
Debugging as we speak Edit: The previous crash happened at epoch 918. I think it might come from the transformer layer I am adding |
What is the output of
|
|
As a last attempt, could you replace
with
I just searched for the new error, and found Not sure if |
@csukuangfj Thanks for your help, I have replaced by:
and it seems to run. It takes ~ 24h on my machine to train a model for 1000 epochs. I will let you know once the training is done |
xa, xb = x.split(x.size(1) // 2, dim=1) | ||
|
||
x_trans_mask = make_pad_mask(torch.sum(x_mask, dim=[1, 2]).type(torch.int64)) | ||
xa_ = self.pre_transformer( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@csukuangfj I will try to debug more, but I think the issue might comes from there
@csukuangfj I tried with the fix that you proposed and with the new tokenization, both throw the same error. |
Could you check that
? If it is empty, could you find why it is empty? |
@csukuangfj The training works fine. The quality is not optimal for the moment, so I am playing a bit with the parameters and will let you know |
@csukuangfj I am still having issues to train a model. I will close this PR and re-open one once I have a more stable branch. |
Add VITS-2 Recipe for LJSpeech.
For the moment, I am facing a bug tracked here :
#1508
I will add the License etc later on, once the PR work