Last active
August 24, 2019 17:57
-
-
Save omarsar/4f660c2b2f3e4f284c112fc6324989a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## test the model with 1 batch | |
model = MyModel() | |
for images, labels in trainloader: | |
print("batch size:", images.shape) | |
out = model(images) | |
print(out.shape) | |
break |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment