Changeset 140


Ignore:
Timestamp:
12/22/19 17:46:08 (5 years ago)
Author:
bduin
Message:
 
Location:
prdatasets
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • prdatasets/Contents.m

    r118 r140  
    88%arrhythmia  420    278       2    presence or absence of cardia arrhythmia
    99%auto_mpg        398      6       2    car/miles-per-gallon
    10 %malaysia    291      8      20    segment features in utility symbols
    1110%biomed      194      5       2    various patient indicators
    1211%breast      683      9       2    Wisconsion breast cancer dataset
     12%car        1728      6       4    Car evaluation database
    1313%cbands    12000     30      24    chromosome banding patterns
    1414%chromo     1143      8      24    chromosome blob features
     
    1717%glass       214      9       4    glass types from chemical components
    1818%heart       297     13       2    heart disease dataset
     19%hepatitis   112     19       2    hepatitis database
    1920%imox        192      8       4    radial distances of characters
    2021%ionosphere  351     34       2    radar data
    2122%iris        150      4       3    Fisher's Iris dataset
    2223%liver       345      6       2    liver disorder
     24%malaysia    291      8      20    segment features in utility symbols
    2325%satellite  6435     36       6    spectral data
    2426%sonar       208     60       2    rock / metal sonar features
     
    3436%mfeat_zer  2000     53      10    Zernike moments in digits dataset
    3537%mfeat_mor  2000      6      10    morphological features in digits dataset
     38%mfeat      2000    649      10    combined features of the mfeat datasets
    3639%
    3740%Multi-band images (pixels are objects, bands are features)
     
    4750%name   images  pixels  classes
    4851%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  
    2222function a = glass
    2323
    24 a = pr_getdata('http://prtools.tudelft.nl/prdatasets/glass.mat',1);
     24a = pr_getdata;
    2525a = setname(a,'Glass Identification Dataset');
    2626a = setlablist(a,char('BuildingFloat','BuildingNonFloat','Car','Other'));
  • prdatasets/mnist8.m

    r138 r140  
    1919function [a,b] = mnist8
    2020
    21 a = pr_getdata;
     21a = pr_getdata([],30);
    2222if nargout == 2
    2323  b = a(60001:end,:);
  • prdatasets/pr_getdata.m

    r137 r140  
    3636%  ddir  : becomes full path of dataset
    3737name = pr_callername;
    38 argin = setdefaults(varargin,[],[],[],[],true);
     38argin = setdefaults(varargin,[],[],[],[],[]);
    3939[url,size,dset,field,ask] = deal(argin{:});
     40if isempty(ask)
     41  if isempty(size)
     42    ask = false;
     43  else
     44    ask = true;
     45  end
     46end
    4047
    4148if isempty(url)
     
    6269if isempty(out)
    6370  if ask
    64     ask_download(size)
     71    ask_download(name,size)
    6572  end
    6673  % download in dir of dset
     
    8895end
    8996 
    90 function ask_download(size)
     97function ask_download(name,size)
    9198
    9299  global ASK
     
    101108      siz = '';
    102109    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');
    104111    if ~isempty(q) && ~strcmp(q,'y')
    105112      error('Dataset not found')
  • prdatasets/x80.m

    r137 r140  
    2424function a = x80
    2525
    26 a = pr_getdata('http://prtools.tudelft.nl/prdatasets/80x.mat',1);
     26a = pr_getdata('http://prtools.tudelft.nl/prdatasets/80x.mat');
    2727a = setname(a,'80X Dataset');
    2828a = setlablist(a,char('8','0','X'));
Note: See TracChangeset for help on using the changeset viewer.