We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcbfbb1 commit 6bc82c8Copy full SHA for 6bc82c8
python/paddle/v2/dataset/mnist.py
@@ -2,17 +2,16 @@
2
import subprocess
3
import numpy
4
5
+__all__ = ['train', 'test']
6
+
7
URL_PREFIX = 'http://yann.lecun.com/exdb/mnist/'
8
9
TEST_IMAGE_URL = URL_PREFIX + 't10k-images-idx3-ubyte.gz'
10
TEST_IMAGE_MD5 = '25e3cc63507ef6e98d5dc541e8672bb6'
-
11
TEST_LABEL_URL = URL_PREFIX + 't10k-labels-idx1-ubyte.gz'
12
TEST_LABEL_MD5 = '4e9511fe019b2189026bd0421ba7b688'
13
TRAIN_IMAGE_URL = URL_PREFIX + 'train-images-idx3-ubyte.gz'
14
TRAIN_IMAGE_MD5 = 'f68b3c2dcbeaaa9fbdd348bbdeb94873'
15
16
TRAIN_LABEL_URL = URL_PREFIX + 'train-labels-idx1-ubyte.gz'
17
TRAIN_LABEL_MD5 = 'd53e105ee54ea40749a09fcbcd1e9432'
18
0 commit comments