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

Makefile « mnist « examples - github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26f6555439975e4efd8970c68ef9200011493393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: all clean download

all: download

download: train-images-idx3-ubyte train-labels-idx1-ubyte t10k-images-idx3-ubyte t10k-labels-idx1-ubyte

%-ubyte: %-ubyte.gz
	gzip -d < $^ > $@

%-ubyte.gz:
	wget http://yann.lecun.com/exdb/mnist/$*.gz -O $@

clean:
	rm -f *.gz