Created
March 11, 2018 19:40
-
-
Save c0nn3r/4080e2dfdab9c973bfe91496a314d84e to your computer and use it in GitHub Desktop.
This file contains 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
(setv train_loader (torch.utils.data.DataLoader | |
(datasets.MNIST "./data" :train True :download True | |
:transform (transforms.Compose (list | |
((transforms.ToTensor) | |
(transforms.Normalize :std 0.1307 :mean 0.3081)) | |
))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment