Last change
on this file since 150 was
142,
checked in by bduin, 5 years ago
|
Updated collection of datasets
|
File size:
732 bytes
|
Rev | Line | |
---|
[142] | 1 | datasetdir = fileparts(which('isolet'));
|
---|
| 2 | files = cellstr(ls([datasetdir '/*.m']));
|
---|
| 3 | nocheck = {'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 |
|
---|
| 9 | global ASK
|
---|
| 10 | ASK = false;
|
---|
| 11 |
|
---|
| 12 | for 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
|
---|
| 23 | end
|
---|
| 24 |
|
---|
| 25 |
|
---|
| 26 |
|
---|
| 27 |
|
---|
| 28 |
|
---|
| 29 | |
---|
Note: See
TracBrowser
for help on using the repository browser.