Created
August 31, 2019 14:12
-
-
Save omarsar/3fda2df70f09982f36157f8dd06d4b87 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