extra_keras_datasets icon indicating copy to clipboard operation
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

Open gugo2808 opened this issue 1 year ago • 0 comments

#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"

gugo2808 avatar Jul 05 '24 15:07 gugo2808