You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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(),
}
"
The text was updated successfully, but these errors were encountered:
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(),
}
"
The text was updated successfully, but these errors were encountered: