代码搜索:classifier

找到约 4,824 项符合「classifier」的源代码

代码结果 4,824
www.eeworm.com/read/312163/13617100

html cerror.html

Contents.m
www.eeworm.com/read/312163/13617121

html contents.html

Contents.m
www.eeworm.com/read/312163/13617130

html contents.html

Contents.m
www.eeworm.com/read/312163/13617460

m~ cerror.m~

function error=cerror(y1,y2,label) % CERROR Computes classification error. % % Synopsis: % error = cerror(y1,y2) % error = cerror(y1,y2,label) % % Description: % error = cerror(y1,y2) returns clas
www.eeworm.com/read/312163/13617461

m cerror.m

function error=cerror(y1,y2,label) % CERROR Computes classification error. % % Synopsis: % error = cerror(ypred,ytrue) % error = cerror(ypred,ytrue,label) % % Description: % error = cerror(ypred,y
www.eeworm.com/read/312163/13617610

m~ contents.m~

% Statistical Pattern Recognition Toolbox (STPRtool). % Version 2.07 17-Jun-2007 % % Bayesian classification. % bayescls - Bayesian classifier with reject option. % bayesdf
www.eeworm.com/read/310776/13644119

cpp scs.cpp

/****************************************************************************/ /* 基本遗传学习分类系统 SCS.CPP */ /* A Simple Classifier System based on G
www.eeworm.com/read/310621/13648612

m weaklearner.m

function [H,epsilon,R]=WeakLearner(X,Y,C,W,WLearner,Y_predict) % Train weak classifiers for every feature and select the one that % performs best i.e. correspondent ot the best feature to use for
www.eeworm.com/read/310621/13648613

m adaboostclassify.m

function [Y]=AdaBoostClassify(H,alpha,X) % AdaBoost classify T=size(alpha,2); Thresh=sum(alpha)/2; Yres=0; for t=1:T %find weak classifier decision Label=WeakClassify(X,H{t},'ROC');
www.eeworm.com/read/307278/13724614

cpp scs.cpp

/****************************************************************************/ /* 基本遗传学习分类系统 SCS.CPP */ /* A Simple Classifier System based on G