Skip to content
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

Duration of synthesis output is very short #219

Open
hplanmuc opened this issue Dec 5, 2023 · 0 comments
Open

Duration of synthesis output is very short #219

hplanmuc opened this issue Dec 5, 2023 · 0 comments

Comments

@hplanmuc
Copy link

hplanmuc commented Dec 5, 2023

Train the model according to the tutorial provided by git(LJSpeech), I encountered this problem during training. shown below, the left side is the result of pre-training, and the right side is the result of my training. Have you encountered it before?

Before this problem, I also encountered a problem like this(#105), so I Annotation "model = nn.DataParallel(model)" in train.py and modify
"
torch.save(
{
"model": model.module.state_dict(),
"optimizer": optimizer._optimizer.state_dict(),
}
"
to
"
torch.save(
{
"model": model.state_dict(),
"optimizer": optimizer._optimizer.state_dict(),
}
"

屏幕截图 2023-12-05 103744 屏幕截图 2023-12-01 105134
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant