Skip to content

Instantly share code, notes, and snippets.

@wayofnumbers
Created October 22, 2019 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wayofnumbers/28b1c9e0582e33994243a1e6934c7473 to your computer and use it in GitHub Desktop.
Save wayofnumbers/28b1c9e0582e33994243a1e6934c7473 to your computer and use it in GitHub Desktop.
FMNIST-Data
# Use standard FashionMNIST dataset
train_set = torchvision.datasets.FashionMNIST(
root = './data/FashionMNIST',
train = True,
download = True,
transform = transforms.Compose([
transforms.ToTensor()
])
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment