source: prdatasets/optdigits.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 1.0 KB
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
18function [a,b] = optdigits
19
20[a,b] = pr_download_uci('Optical+Recognition+of+Handwritten+Digits',{'optdigits.tra','optdigits.tes'});
21a = setname(a,'Optical Digit Recognition');
22b = setname(b,'Optical Digits');
23if nargout < 2, a = [a;b]; end
24
25
26
Note: See TracBrowser for help on using the repository browser.