代码搜索:classifier
找到约 4,824 项符合「classifier」的源代码
代码结果 4,824
www.eeworm.com/read/418695/10935510
m getreject.m
%GETREJECT Get classifier reject value
function r = getreject(w)
r = w.r;
return
www.eeworm.com/read/418695/10935616
m prtools.m
%Pattern Recognition Tools (PRTOOLS 3.1.7)
% Version 1 February 2002 (after PRSD course)
%
%Datasets and Mappings
%---------------------
%dataset Define and retrieve dataset from datamatrix and la
www.eeworm.com/read/418695/10935624
m maxc.m
%MAXC Maximum combining classifier
%
% W = maxc(V)
% W = V*maxc
%
% If V = [V1,V2,V3, ... ] is a set of classifiers trained on the
% same classes and W is the maximum combiner: it selects the cla
www.eeworm.com/read/418695/10935630
m fisherc.m
%FISHERC Fisher's Least Square Linear Classifier
%
% W = fisherc(A,mode,n)
%
% Finds the linear discriminant function between the classes in the
% dataset A by minimizing the errors in the least s
www.eeworm.com/read/417741/10977093
java cvlearningcurve.java
package ir.classifiers;
import java.io.*;
import java.util.*;
import ir.vsr.*;
import ir.utilities.*;
/**
* Gives learning curves with K-fold cross validation for a classifier.
*
* @author
www.eeworm.com/read/299984/7139928
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/299984/7139999
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/299984/7140009
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/299984/7140022
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
www.eeworm.com/read/299984/7140033
m contents.m
% Pattern Recognition Tools
% Version 4.1.3 06-Apr-2008
%
%Datasets and Mappings (just most important routines)
%---------------------
%dataset Define dataset from datamatrix and labels
%datasets