source: birds/birdsexp.m @ 111

Last change on this file since 111 was 65, checked in by dtax, 11 years ago

Rearrange stuff.

File size: 420 bytes
RevLine 
[65]1load birds_7D;
2a = makemillabeled(a,2);
3
4u = {...
5   scalem([],'variance')*milproxm([],'meanmin')*loglc2;
6   scalem([],'variance')*miles([],0.1);
7   };
8nrfolds = 10;
9
10nru = size(u,1);
11I = nrfolds;
12e = zeros(nru,nrfolds);
13for f = 1:nrfolds
14   f
15   [x,z,I] = milcrossval(a,I);
16   for i=1:nru
17      w = x*u{i};
18      e(i,f) = dd_auc(z*w*milroc);
19   end
20end
21R = results(e,getwnames(u),nrfolds);
22show(average(100*R),'max1');
Note: See TracBrowser for help on using the repository browser.