extra_keras_datasets
extra_keras_datasets copied to clipboard
"http://www.itl.nist.gov/iaui/vip/cs_links/EMNIST/" \n "matlab.zip" Doesn't download the right file
#Load data
path = get_file(
path, origin=("http://www.itl.nist.gov/iaui/vip/cs_links/EMNIST/"
"matlab.zip")
)
this part of the code doesn't work correctly for me. It downloads this kind of file: emnist_matlab.npz while the program expects emnist_matlab.zip In the browser link works, but slow as hell. I mean the file retrieving from the link. After it gave me the file to download, the downloading process was quick. (depending on the internet) I had to manually download the file place it inside the folder and write my path:
path = "/path to file/ emnist_matlab.zip"