We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How do I solve this error when executing the last cell?
AttributeError Traceback (most recent call last) in () 10 os.makedirs('results') 11 ---> 12 model = build_model().to(device) 13 checkpoint = torch.load("/content/SpeechSplit/checkpoint_step001000000_ema.pth") 14 model.load_state_dict(checkpoint["state_dict"])
/root/wavenet_vocoder/autovc/synthesis.py in build_model()
AttributeError: 'HParams' object has no attribute 'builder'
The text was updated successfully, but these errors were encountered:
The wavenet vocoder has its own hparams. Please refer to the vocoder part in Autovc for details.
Sorry, something went wrong.
@molo32 did you pass this stage?
#28
No branches or pull requests
How do I solve this error when executing the last cell?
AttributeError Traceback (most recent call last)
in ()
10 os.makedirs('results')
11
---> 12 model = build_model().to(device)
13 checkpoint = torch.load("/content/SpeechSplit/checkpoint_step001000000_ema.pth")
14 model.load_state_dict(checkpoint["state_dict"])
/root/wavenet_vocoder/autovc/synthesis.py in build_model()
AttributeError: 'HParams' object has no attribute 'builder'
The text was updated successfully, but these errors were encountered: