torch.hub.load
loads the model onto the CPU so there is no need to push it to the CPU again.
The seek
error is raised, since waveglow
is an object of the nn.Module
type and not a file (which is seek’able).
torch.hub.load
loads the model onto the CPU so there is no need to push it to the CPU again.
The seek
error is raised, since waveglow
is an object of the nn.Module
type and not a file (which is seek’able).