From e9f9512bbc479a1fcff1f2113d51302b34a22d29 Mon Sep 17 00:00:00 2001 From: Jason Park Date: Tue, 20 Mar 2018 21:06:40 +0900 Subject: [PATCH] Fix the url to download EMNIST The URL to download EMNIST seems to have changed. I fixed this. --- torchvision/datasets/mnist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torchvision/datasets/mnist.py b/torchvision/datasets/mnist.py index a467ebee554..7f4463eff64 100644 --- a/torchvision/datasets/mnist.py +++ b/torchvision/datasets/mnist.py @@ -195,7 +195,7 @@ class EMNIST(MNIST): target_transform (callable, optional): A function/transform that takes in the target and transforms it. """ - url = 'http://biometrics.nist.gov/cs_links/EMNIST/gzip.zip' + url = 'http://www.itl.nist.gov/iaui/vip/cs_links/EMNIST/gzip.zip' splits = ('byclass', 'bymerge', 'balanced', 'letters', 'digits', 'mnist') def __init__(self, root, split, **kwargs):