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
Maybe I'm not understanding something but with the following code summary throws an error:
import torch from torchvision import models from torchsummary import summary device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') model = models.segmentation.deeplabv3_resnet50(pretrained=True).eval().to(device) summary(model, (3, 224, 224))
Actual: Throws 'collections.OrderedDict' object has no attribute 'size'
'collections.OrderedDict' object has no attribute 'size'
Expected: Show the architecture
The text was updated successfully, but these errors were encountered:
This issue has been fixed. Please refer to this pull request.
Sorry, something went wrong.
No branches or pull requests
Maybe I'm not understanding something but with the following code summary throws an error:
Actual:
Throws
'collections.OrderedDict' object has no attribute 'size'
Expected:
Show the architecture
The text was updated successfully, but these errors were encountered: