source: prdatasets/check_prdatasets.m @ 148

Last change on this file since 148 was 142, checked in by bduin, 5 years ago

Updated collection of datasets

File size: 732 bytes
Line 
1datasetdir = fileparts(which('isolet'));
2files = cellstr(ls([datasetdir '/*.m']));
3nocheck = {'pr_dataset','pr_download','pr_download_uci', ...
4  'pr_callername','pr_cell2dset','pr_getdata', ...
5  'mfeat_all', 'pr_readdataset','pr_dset_align', ...
6  'pr_loadmatfile','check_prdatasets','Contents', ...
7  'pr_readdataset', 'pr_savematfile'};
8
9global ASK
10ASK = false;
11 
12for n=36:numel(files)
13  [dummy,file] = fileparts(files{n});
14  if isempty(strmatch(file,nocheck,'exact'))
15    disp(file)
16    a = feval(file)
17    a = setprior(a,getprior(a,0));
18    %disp(prcrossval(setprior(a,getprior(a,0)),nmc,2))
19    if getsize(a,3) > 1
20      disp(prcrossval(a,remclass*nmc,2,[],testd))
21    end
22  end
23end
24
25
26 
27 
28 
29 
Note: See TracBrowser for help on using the repository browser.