MNIST dataset을 제공해주던 LeCun's website에서 오류가 발생하여 데이터셋 다운로드가 안되고 있다.
(urlib.error.HTTPError: HTTP Error 503: Service Unavailable 발생!)
이를 해결하는 여러 방법이 있지만, 수동으로 해결하는 방법을 적어보겠다.
(다른 방법은 하단 링크 참조)
train_dataset = torchvision.datasets.MNIST(root='./data', train=True, transform=transforms.ToTensor(), download=True)
test_dataset = torchvision.datasets.MNIST(root='./data', train=False, transform=transforms.ToTensor())
위 코드와 같이 MNIST 데이터셋을 넣어 줄 폴더를 정하게 되는데, 이 폴더에 아래 파일 4개를 모두 넣어주면 된다.
(MNIST 데이터셋 파일)
문제 해결~!
다른방법으로 문제 해결하는 법 참고
stackoverflow.com/questions/66467005/torchvision-mnist-httperror-http-error-403-forbidden
torchvision MNIST HTTPError: HTTP Error 403: Forbidden
I am trying to replicate this experiment presented in this webpage https://adversarial-ml-tutorial.org/adversarial_examples/ I got the jupyter notebook and loaded in my localhost and open it using
stackoverflow.com
github.com/pytorch/vision/issues/3500
Download dataset return 403 · Issue #3500 · pytorch/vision
🐛 Bug To Reproduce Steps to reproduce the behavior: import torch.backends.cudnn import torch.utils.data import torchvision # prepare parameters n_epochs = 1 # 3 batch_size_train = 64 batch_size_tes...
github.com
HTTP Error 503: Service Unavailable whan trying to download MNIST data
I'm trying to run code that I wrote a week ago on Google Colab (and it worked), but I'm getting this error now for some reason. #libraries import torch import torchvision from torchvision import da...
stackoverflow.com
discuss.pytorch.org/t/mnist-server-down/114433/15
MNIST server down
Manually download mnist files from yann lecun 's homepage. Replace class MNIST with code below(class MNIST_local). It works for me. import torch from torchvision.datasets import MNIST from torchvision.datasets.mnist import read_image_file,read_label_file f
discuss.pytorch.org
'각종공부 > 파이썬 오류 해결 & 팁' 카테고리의 다른 글
[파이썬] Tensorflow 2.0 session / placeholder 오류 해결 방법 (2) | 2020.07.04 |
---|---|
[파이썬] 행렬에 행 추가 & 행 합치기 하는 방법(numpy.vstack) (0) | 2020.06.27 |
[파이썬] xlwings 모듈 com_error: (-2147352570, '알 수 없는 이름입니다.', None, None) 오류 해결 방법 (0) | 2020.01.07 |
[파이썬] 데이터프레임에서 해당 열의 값을 그룹별로 행의 갯수를 세는 방법 (0) | 2020.01.06 |
[파이썬] csv 데이터프레임에서 문자열 분리 & 특정 위치 문자열 추출하는 방법 (0) | 2020.01.05 |
댓글