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
The pre-trained model weights could not be loaded to the current model definition. I changed the model to
self.encoder = nn.Sequential( nn.Conv2d(3, 32, 4, stride=2, padding=1), # [batch, 12, 16, 16] nn.ReLU(), nn.Conv2d(32, 48, 3, stride=2, padding=1), # [batch, 24, 8, 8] nn.ReLU(), ) self.decoder = nn.Sequential( nn.ConvTranspose2d(48, 32, 3, stride=2, padding=1), # [batch, 24, 8, 8] nn.ReLU(), nn.ConvTranspose2d(32, 3, 4, stride=2, padding=1), # [batch, 12, 16, 16] nn.ReLU(), )
Now the code works, but the reconstruction is quite bad.
Do you have a different pre-trained model that can be used? Thanks!
The text was updated successfully, but these errors were encountered:
I have the same question too!It seems that the author didn't provides the right weights?
Sorry, something went wrong.
Have you solved the problem yet
I just retrained the model 😅
I got the same problem
No branches or pull requests
The pre-trained model weights could not be loaded to the current model definition. I changed the model to
Now the code works, but the reconstruction is quite bad.

Do you have a different pre-trained model that can be used? Thanks!
The text was updated successfully, but these errors were encountered: