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: 1d0221f547bf979a97f6abaad5f94a06d37f0476 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# Exit on error
set -e

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

test -e $MRT_DATA/exdb_mnist/train-images-idx3-ubyte
test -e $MRT_DATA/exdb_mnist/train-labels-idx1-ubyte
test -e $MRT_DATA/exdb_mnist/t10k-images-idx3-ubyte
test -e $MRT_DATA/exdb_mnist/t10k-labels-idx1-ubyte

test -e *-ubyte || cp $MRT_DATA/exdb_mnist/*-ubyte .

# Exit with success code
exit 0