"...git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "8d14edf27ff28a5a37cdb19927579a2d590a7af2"
Commit 6ddda3ae authored by Philip Meier's avatar Philip Meier Committed by Francisco Massa
Browse files

Fix EMNSIT download URL (#1318)

* fix url

* update comment
parent fe234fc8
...@@ -226,8 +226,11 @@ class EMNIST(MNIST): ...@@ -226,8 +226,11 @@ class EMNIST(MNIST):
target_transform (callable, optional): A function/transform that takes in the target_transform (callable, optional): A function/transform that takes in the
target and transforms it. target and transforms it.
""" """
# Updated URL from https://www.westernsydney.edu.au/bens/home/reproducible_research/emnist # Updated URL from https://www.nist.gov/node/1298471/emnist-dataset since the
url = 'https://cloudstor.aarnet.edu.au/plus/s/ZNmuFiuQTqZlu9W/download' # _official_ download link
# https://cloudstor.aarnet.edu.au/plus/s/ZNmuFiuQTqZlu9W/download
# is (currently) unavailable
url = 'http://www.itl.nist.gov/iaui/vip/cs_links/EMNIST/gzip.zip'
splits = ('byclass', 'bymerge', 'balanced', 'letters', 'digits', 'mnist') splits = ('byclass', 'bymerge', 'balanced', 'letters', 'digits', 'mnist')
def __init__(self, root, split, **kwargs): def __init__(self, root, split, **kwargs):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment