Changeset 138
- Timestamp:
- 12/20/19 22:38:48 (5 years ago)
- Location:
- prdatasets
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
prdatasets/arrhythmia.m
r137 r138 21 21 a = pr_loadmatfile; 22 22 if isempty(a) 23 opt.delimeter = ' ,';23 opt.delimeter = ' '; 24 24 opt.labfeat = 280; 25 25 fl = {'age' 'sex' 'height' 'weight' 'QRS duration' 'P-R interval' ... -
prdatasets/biomed.m
r137 r138 32 32 opt.desc = 'The purpose of the analysis is to develop a screening procedure to detect carriers and to describe its effectiveness. '; 33 33 opt.link = 'http://lib.stat.cmu.edu/datasets/'; 34 opt.dsetname = 'Biomed'; 34 35 a = pr_download('http://prtools.tudelft.nl/prdatasets/biomed.dat',[],opt); 35 36 end -
prdatasets/car.m
r137 r138 25 25 opt.desc = 'The purpose of the analysis is to develop a screening procedure to detect carriers and to describe its effectiveness. '; 26 26 opt.link = 'http://lib.stat.cmu.edu/datasets/'; 27 opt.dsetname = 'Car ';27 opt.dsetname = 'Car dataset'; 28 28 a = pr_download('http://prtools.tudelft.nl/prdatasets/car.data',[],opt); 29 29 end -
prdatasets/diabetes.m
r137 r138 20 20 opt.link = 'ftp://ftp.ics.uci.edu/pub/machine-learning-databases/pima-indians-diabetes/'; 21 21 opt.desc = 'The Pima Indians Diabetes Database from UCI.'; 22 opt.dsetname = 'Diabetes'; 22 23 a = pr_download('http://prtools.tudelft.nl/prdatasets/diabetes.dat',[],opt); 23 24 end -
prdatasets/iris.m
r137 r138 15 15 opt.desc = 'Iris Plant database from UCI. A classic dataset in the pattern recognition literature. The original dataset is a multiclass classification problem, introduced by R.A. Fisher, The use of multiple measurements in taxonomic problems. Ann Eugenics, 7:179--188, 1936.'; 16 16 opt.link = 'ftp://ftp.ics.uci.edu/pub/machine-learning-databases/iris/'; 17 opt.dsetname = 'Iris ';17 opt.dsetname = 'Iris Dataset'; 18 18 a = pr_download('http://prtools.tudelft.nl/prdatasets/iris.dat',[],opt); 19 19 end -
prdatasets/mnist8.m
r137 r138 22 22 if nargout == 2 23 23 b = a(60001:end,:); 24 b = setname(b,' mnist8_test');25 a = setname(a(1:60000,:),' mnist8_train');24 b = setname(b,'MNIST8_Test'); 25 a = setname(a(1:60000,:),'MNIST8_Train'); 26 26 else 27 a = setname(a,' mnist8');27 a = setname(a,'MNIST8 Reduced Digits'); 28 28 end 29 29 -
prdatasets/sonar.m
r137 r138 16 16 opt.desc = 'The Sonar dataset from the undocumented databases from UCI. The task is to train a network to discriminate between sonar signals bounced off a metal cylinder and those bounced off a roughly cylindrical rock.'; 17 17 opt.link = 'ftp://ftp.ics.uci.edu/pub/machine-learning-databases/undocumented/connectionist-bench/sonar'; 18 opt.dsetname = 'Sonar dataset'; 18 19 a = pr_download('http://prtools.tudelft.nl/prdatasets/sonar.dat',[],opt); 19 20 end
Note: See TracChangeset
for help on using the changeset viewer.