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

setup.sh « mnist « examples « tests - github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8dead6a30efad44a5aea19d77dee7f16835c8651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

# Exit on error
set -e

# Setup code goes here
test -e $MRT_MARIAN/mnist_example

(( $(ls -1 *-ubyte 2>/dev/null | wc -l) == 4 )) && exit 0

wget -nc http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz
wget -nc http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz
wget -nc http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz
wget -nc http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz

gzip -d *-ubyte.gz

# Exit with success code
exit 0