Changeset 140
- Timestamp:
- 12/22/19 17:46:08 (5 years ago)
- Location:
- prdatasets
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
prdatasets/Contents.m
r118 r140 8 8 %arrhythmia 420 278 2 presence or absence of cardia arrhythmia 9 9 %auto_mpg 398 6 2 car/miles-per-gallon 10 %malaysia 291 8 20 segment features in utility symbols11 10 %biomed 194 5 2 various patient indicators 12 11 %breast 683 9 2 Wisconsion breast cancer dataset 12 %car 1728 6 4 Car evaluation database 13 13 %cbands 12000 30 24 chromosome banding patterns 14 14 %chromo 1143 8 24 chromosome blob features … … 17 17 %glass 214 9 4 glass types from chemical components 18 18 %heart 297 13 2 heart disease dataset 19 %hepatitis 112 19 2 hepatitis database 19 20 %imox 192 8 4 radial distances of characters 20 21 %ionosphere 351 34 2 radar data 21 22 %iris 150 4 3 Fisher's Iris dataset 22 23 %liver 345 6 2 liver disorder 24 %malaysia 291 8 20 segment features in utility symbols 23 25 %satellite 6435 36 6 spectral data 24 26 %sonar 208 60 2 rock / metal sonar features … … 34 36 %mfeat_zer 2000 53 10 Zernike moments in digits dataset 35 37 %mfeat_mor 2000 6 10 morphological features in digits dataset 38 %mfeat 2000 649 10 combined features of the mfeat datasets 36 39 % 37 40 %Multi-band images (pixels are objects, bands are features) … … 47 50 %name images pixels classes 48 51 %kimia 216 64*64 18 resampled Kimia dataset of silhouettes 49 %mnist8 70000 8*8 10 Normalized MNIST digits 50 %nist16 2000 16*16 10 Normalized NIST digits 52 %mnist8 70000 8*8 10 normalized MNIST digits 53 %nist16 2000 16*16 10 normalized NIST digits 54 %nist32 5000 32*32 10 resemapled MNIST digits -
prdatasets/glass.m
r137 r140 22 22 function a = glass 23 23 24 a = pr_getdata ('http://prtools.tudelft.nl/prdatasets/glass.mat',1);24 a = pr_getdata; 25 25 a = setname(a,'Glass Identification Dataset'); 26 26 a = setlablist(a,char('BuildingFloat','BuildingNonFloat','Car','Other')); -
prdatasets/mnist8.m
r138 r140 19 19 function [a,b] = mnist8 20 20 21 a = pr_getdata ;21 a = pr_getdata([],30); 22 22 if nargout == 2 23 23 b = a(60001:end,:); -
prdatasets/pr_getdata.m
r137 r140 36 36 % ddir : becomes full path of dataset 37 37 name = pr_callername; 38 argin = setdefaults(varargin,[],[],[],[], true);38 argin = setdefaults(varargin,[],[],[],[],[]); 39 39 [url,size,dset,field,ask] = deal(argin{:}); 40 if isempty(ask) 41 if isempty(size) 42 ask = false; 43 else 44 ask = true; 45 end 46 end 40 47 41 48 if isempty(url) … … 62 69 if isempty(out) 63 70 if ask 64 ask_download( size)71 ask_download(name,size) 65 72 end 66 73 % download in dir of dset … … 88 95 end 89 96 90 function ask_download( size)97 function ask_download(name,size) 91 98 92 99 global ASK … … 101 108 siz = ''; 102 109 end 103 q = input(['Dataset is not available, OK to download ' siz ' [y]/n ?'],'s');110 q = input(['Dataset ' name ' is not available, OK to download ' siz ' [y]/n ?'],'s'); 104 111 if ~isempty(q) && ~strcmp(q,'y') 105 112 error('Dataset not found') -
prdatasets/x80.m
r137 r140 24 24 function a = x80 25 25 26 a = pr_getdata('http://prtools.tudelft.nl/prdatasets/80x.mat' ,1);26 a = pr_getdata('http://prtools.tudelft.nl/prdatasets/80x.mat'); 27 27 a = setname(a,'80X Dataset'); 28 28 a = setlablist(a,char('8','0','X'));
Note: See TracChangeset
for help on using the changeset viewer.