Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoman Grundkiewicz <rgrundkiewicz@gmail.com>2021-03-19 16:16:10 +0300
committerGitHub <noreply@github.com>2021-03-19 16:16:10 +0300
commitdb2a5e4d66e92dbed7711ace8393f3fd618b89f4 (patch)
tree5fb36c93f2d3791ccf413713bca0dce5633f40ff /src
parent571634a2c05b9bc2de206b1061fbc39a6e97087a (diff)
Fix broken links to MNIST data sets (#838)
Diffstat (limited to 'src')
-rw-r--r--src/examples/mnist/download.sh9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/examples/mnist/download.sh b/src/examples/mnist/download.sh
index 54436c75..d9e091c9 100644
--- a/src/examples/mnist/download.sh
+++ b/src/examples/mnist/download.sh
@@ -5,9 +5,6 @@ if [ `ls -1 *-ubyte 2>/dev/null | wc -l ` == 4 ]; then
exit;
fi
-wget http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz
-wget http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz
-wget http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz
-wget http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz
-
-gzip -d *-ubyte.gz
+wget https://romang.blob.core.windows.net/mariandev/regression-tests/data/exdb_mnist.tar.gz
+tar zxvf exdb_mnist.tar.gz
+mv exdb_mnist/*-ubyte .