Skip to content

Commit c76ac7f

Browse files
jaesunysoumith
authored andcommitted
Fix the url to download EMNIST (#450)
The URL to download EMNIST seems to have changed. I fixed this.
1 parent fa377c4 commit c76ac7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torchvision/datasets/mnist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ class EMNIST(MNIST):
195195
target_transform (callable, optional): A function/transform that takes in the
196196
target and transforms it.
197197
"""
198-
url = 'http://biometrics.nist.gov/cs_links/EMNIST/gzip.zip'
198+
url = 'http://www.itl.nist.gov/iaui/vip/cs_links/EMNIST/gzip.zip'
199199
splits = ('byclass', 'bymerge', 'balanced', 'letters', 'digits', 'mnist')
200200

201201
def __init__(self, root, split, **kwargs):

0 commit comments

Comments
 (0)