代码搜索:classifiers
找到约 2,305 项符合「classifiers」的源代码
代码结果 2,305
www.eeworm.com/read/439513/7707454
txt readme.txt
README
--------
Directory contains the following files.
1. ADABOOST_te.m
2. ADABOOST_tr.m
3. demo.m
4. likelihood2class.m
5. threshold_te.m
6. threshold_tr.m
The aim of the project is to provide
www.eeworm.com/read/397102/8067972
m medianc.m
%MEDIANC Median combining classifier
%
% W = medianc(V)
% W = V*medianc
%
% If V = [V1,V2,V3, ... ] is a set of classifiers trained on the
% same classes and W is the median combiner: it selects
www.eeworm.com/read/397102/8067991
m minc.m
%MINC Minimum combining classifier
%
% W = minc(V)
% W = V*minc
%
% If V = [V1,V2,V3, ... ] is a set of classifiers trained on the
% same classes and W is the minimum combiner: it selects the cla
www.eeworm.com/read/397102/8068034
m prodc.m
%PRODC Product combining classifier
%
% W = prodc(V)
% W = V*prodc
%
% If V = [V1,V2,V3, ... ] is a set of classifiers trained on the
% same classes and W is the product combiner: it selects the
www.eeworm.com/read/397102/8068264
m meanc.m
%MEANC Averaging combining classifier
%
% W = meanc(V)
% W = V*meanc
%
% If V = [V1,V2,V3, ... ] is a set of classifiers trained on the
% same classes and W is the mean combiner: it selects the c
www.eeworm.com/read/246671/12713818
changelog-3-2
2001-03-13 16:52 mhall
* weka/: classifiers/MultiClassClassifier.java (1.22),
classifiers/neural/NeuralNetwork.java (1.3),
core/converters/AbstractLoader.java (1.2),
core/converters/ArffLoader.