Line | |
---|
1 | %OPTDIGITS Optical Recognition of Handwritten Digits
|
---|
2 | %PRTools UCI dataset import, 3823+1797 objects, 64 integer features, 10 classes
|
---|
3 | %
|
---|
4 | % [TRAIN,TEST] = OPTDIGITS
|
---|
5 | % TRAIN_TEST = OPTDIGITS
|
---|
6 | %
|
---|
7 | %DESCRIPTION
|
---|
8 | %This command downloads one of the UCI data sets, converts it into PRTools
|
---|
9 | %format and stores it locally for future use. Consult the <a href="http://archive.ics.uci.edu/ml/datasets/Optical+Recognition+of+Handwritten+Digits">related website</a>
|
---|
10 | %for further information. Please make the appropriate references in
|
---|
11 | %publications that make use of this dataset.
|
---|
12 | %
|
---|
13 | %SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
|
---|
14 | %PRTOOLS, DATASETS, SETFEATDOM, FEATTYPES, CAT2REAL
|
---|
15 |
|
---|
16 | % Copyright: R.P.W. Duin
|
---|
17 |
|
---|
18 | function [a,b] = optdigits
|
---|
19 |
|
---|
20 | [a,b] = pr_download_uci('Optical+Recognition+of+Handwritten+Digits',{'optdigits.tra','optdigits.tes'});
|
---|
21 | a = setname(a,'Optical Digit Recognition');
|
---|
22 | b = setname(b,'Optical Digits');
|
---|
23 | if nargout < 2, a = [a;b]; end
|
---|
24 |
|
---|
25 |
|
---|
26 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.