view analysis/calcLoss.m @ 33:74d123779d3b

create analysis script to prune and write the relevant features for each level - including an 80% classification threshold on the tree - perhaps this can be addressed
author DaveM
date Wed, 15 Mar 2017 16:33:54 +0000
parents
children
line wrap: on
line source
function [l,se] = calcLoss(linkList,featureList, row)

classList = traceLinkageToBinary(linkList,row);
X = data(classList>0,featureList{row,1});
Y = classList(classList>0);
[l,se] = loss(featureList{row,3},X,Y);
end