Line | |
---|
1 | %MNIST8 70000 normalised digits given by 8x8 pixels (features) in 10 classes |
---|
2 | % |
---|
3 | % A = MNIST8 |
---|
4 | % |
---|
5 | % Load the dataset in A. These are the original MNIST digits, normalised |
---|
6 | % such that they fit exactly in images of 8x8 pixels. The first 60000 are |
---|
7 | % the original training set, the last 10000 are the original test set. |
---|
8 | % |
---|
9 | % REFERENCE |
---|
10 | % <a href="http://yann.lecun.com/exdb/mnist/" The MNIST website</a> |
---|
11 | % |
---|
12 | % See also DATASETS, PRDATASETS |
---|
13 | |
---|
14 | % Copyright: R.P.W. Duin, r.p.w.duin@prtools.org |
---|
15 | % Faculty EWI, Delft University of Technology |
---|
16 | % P.O. Box 5031, 2600 GA Delft, The Netherlands |
---|
17 | |
---|
18 | function a = mnist8 |
---|
19 | |
---|
20 | prdatasets(mfilename,1); |
---|
21 | a = pr_dataset('mnist8'); |
---|
22 | a = setname(a,'MNIST8'); |
---|
23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.