From 9bb6b7ac5733af4b76bd1d4eb3319e684098939e Mon Sep 17 00:00:00 2001 From: itsubaki <1759459+itsubaki@users.noreply.github.com> Date: Thu, 30 May 2024 12:23:40 +0000 Subject: [PATCH] Update mnist dataset url --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index c9538fb..390cd07 100644 --- a/Makefile +++ b/Makefile @@ -41,10 +41,10 @@ seq2seq_attention: datasetdl: mnistdl ptbdl additiondl datedl mnistdl: - curl -fs -o testdata/train-images-idx3-ubyte.gz http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz - curl -fs -o testdata/train-labels-idx1-ubyte.gz http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz - curl -fs -o testdata/t10k-images-idx3-ubyte.gz http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz - curl -fs -o testdata/t10k-labels-idx1-ubyte.gz http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz + curl -fs -o testdata/train-images-idx3-ubyte.gz https://storage.googleapis.com/cvdf-datasets/mnist/train-images-idx3-ubyte.gz + curl -fs -o testdata/train-labels-idx1-ubyte.gz https://storage.googleapis.com/cvdf-datasets/mnist/train-labels-idx1-ubyte.gz + curl -fs -o testdata/t10k-images-idx3-ubyte.gz https://storage.googleapis.com/cvdf-datasets/mnist/t10k-images-idx3-ubyte.gz + curl -fs -o testdata/t10k-labels-idx1-ubyte.gz https://storage.googleapis.com/cvdf-datasets/mnist/t10k-labels-idx1-ubyte.gz # https://github.com/zalandoresearch/fashion-mnist fashiondl: