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
For anyone who is getting errors while downloading CIFAR-10, you can use this trick
## by turning off SSL verification import ssl ssl._create_default_https_context = ssl._create_unverified_context from torchvision import datasets, transforms data_path = '../data-unversioned/p1ch7/' cifar10 = datasets.CIFAR10( data_path, train=True, download=True, transform=transforms.Compose([ transforms.ToTensor(), transforms.Normalize((0.4915, 0.4823, 0.4468), (0.2470, 0.2435, 0.2616)) ]))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For anyone who is getting errors while downloading CIFAR-10, you can use this trick
The text was updated successfully, but these errors were encountered: