FDSC Trainable Feature based Dissimilarity Space Classifier
W = FDSC(A,R,FEATMAP,TYPE,P,CLASSF)
DescriptionThis routine builds a classifier in feature space based on a dissimilarity representation defined by the representation set R and the dissimilarities found by A*FEATMAP*PROXM(R*FEATMAP,TYPE,P). FEATMAP is a preprocessing in feature space, e.g. scaling (SCALEM([],'variance') or pre-whitening (KLMS). R can either be explicitely given, or by a fraction of A. In the latter case the part of A that is randomly generated to create the representation set R is excluded from the training set. New objects in feature space can be classified by D = B*W or by D = PRMAP(B,W). Labels can be found by LAB = D*LABELD or LAB = LABELD(D). Example(s)
a = gendatb([100 100]); % training set of 200 objects
See alsodatasets, mappings, scalem, klms, proxm, labeld, kernelc, logmlc,
|