代码搜索:classifier
找到约 4,824 项符合「classifier」的源代码
代码结果 4,824
www.eeworm.com/read/137160/13342361
m tree_map.m
%TREE_MAP Map a dataset by binary decision tree
%
% F = TREE_MAP(A,W)
%
% INPUT
% A Dataset
% W Decision tree mapping
%
% OUTPUT
% F Posterior probabilities
%
% DESCRIPTION
% Maps the dataset
www.eeworm.com/read/137160/13342579
m testn.m
%TESTN Error estimate of discriminant for normal distribution.
%
% E = TESTN(W,U,G,N)
%
% INPUT
% W Trained classifier mapping
% U C x K dataset with C class means, labels and priors (default
www.eeworm.com/read/137160/13342603
m prtestc.m
%PRTESTC Test routine for the PRTOOLS classifier
%
% This script tests a given, untrained classifier w, defined in the
% workspace, e.g. w = my_classifier. The goal is to find out whether
% w fulfill
www.eeworm.com/read/137160/13342614
m prtools.m
% Pattern Recognition Tools
% Version 4.0.14 04-Mar-2005
%
%Datasets and Mappings (just most important routines)
%---------------------
%dataset Define and retrieve dataset from datamatrix and lab
www.eeworm.com/read/318947/13466001
m roc.m
function [AREA,SE,RESULT_S,FPR_ROC,TPR_ROC,TNa,TPa,FNa,FPa]=roc(RESULT,CLASS,fig)
% Receiver Operating Characteristic (ROC) curve of a binary classifier
%
% >> [area, se, deltab, oneMinusSpec, sen
www.eeworm.com/read/316944/13514034
m roc.m
function [AREA,SE,RESULT_S,FPR_ROC,TPR_ROC,TNa,TPa,FNa,FPa]=roc(RESULT,CLASS,fig)
% Receiver Operating Characteristic (ROC) curve of a binary classifier
%
% >> [area, se, deltab, oneMinusSpec, sen
www.eeworm.com/read/314653/13562201
m medianc.m
%MEDIANC Median combining classifier
%
% W = MEDIANC(V)
% W = V*MEDIANC
%
% INPUT
% V Set of classifiers
%
% OUTPUT
% W Median combining classifier on V
%
% DESCRIPTION
% If V = [V
www.eeworm.com/read/314653/13562245
m knn_map.m
%KNN_MAP Map a dataset on a K-NN classifier
%
% F = KNN_MAP(A,W)
%
% INPUT
% A Dataset
% W K-NN classifier trained by KNNC
%
% OUTPUT
% F Posterior probabilities
%
% DESCRIPTION
% Maps t
www.eeworm.com/read/314653/13562254
m classc.m
%CLASSC Convert mapping to classifier
%
% W = CLASSC(W)
% W = W*CLASSC
%
% INPUT
% W Any mapping or dataset
%
% OUTPUT
% W Classifier mapping or normalized dataset: outputs/features sum to 1
%
www.eeworm.com/read/314653/13562263
m prodc.m
%PRODC Product combining classifier
%
% W = PRODC(V)
% W = V*PRODC
%
% INPUT
% V Set of classifiers trained on the same classes
%
% OUTPUT
% W Product combiner
%
% DESCRIPTION
% It def