代码搜索:classifier
找到约 4,824 项符合「classifier」的源代码
代码结果 4,824
www.eeworm.com/read/299984/7140334
m roc.m
%ROC Receiver-Operator Curve
%
% E = ROC(A,W,C,N)
% E = ROC(B,C,N)
%
% INPUT
% A Dataset
% W Trained classifier, or
% B Classification result, B = A*W*CLASSC
% C Index of desired clas
www.eeworm.com/read/460435/7250487
m bpxnc.m
%BPXNC Back-propagation trained feed-forward neural net classifier
%
% [W,HIST] = BPXNC (A,UNITS,ITER,W_INI,T,FID)
%
% INPUT
% A Dataset
% UNITS Array indicating number of units in each h
www.eeworm.com/read/460435/7250809
m roc.m
%ROC Receiver-Operator Curve
%
% E = ROC(A,W,C,N)
% E = ROC(B,C,N)
%
% INPUT
% A Dataset
% W Trained classifier, or
% B Classification result, B = A*W*CLASSC
% C Index of desired clas
www.eeworm.com/read/450608/7480129
m bpxnc.m
%BPXNC Back-propagation trained feed-forward neural net classifier
%
% [W,HIST] = BPXNC (A,UNITS,ITER,W_INI,T,FID)
%
% INPUT
% A Dataset
% UNITS Array indicating number of units in each h
www.eeworm.com/read/450608/7480390
m roc.m
%ROC Receiver-Operator Curve
%
% E = ROC(A,W,C,N)
% E = ROC(B,C,N)
%
% INPUT
% A Dataset
% W Trained classifier, or
% B Classification result, B = A*W*CLASSC
% C Index of desired clas
www.eeworm.com/read/441245/7672693
m bpxnc.m
%BPXNC Back-propagation trained feed-forward neural net classifier
%
% [W,HIST] = BPXNC (A,UNITS,ITER,W_INI,T,FID)
%
% INPUT
% A Dataset
% UNITS Array indicating number of units in each h
www.eeworm.com/read/441245/7673023
m roc.m
%ROC Receiver-Operator Curve
%
% E = ROC(A,W,C,N)
% E = ROC(B,C,N)
%
% INPUT
% A Dataset
% W Trained classifier, or
% B Classification result, B = A*W*CLASSC
% C Index of desired clas
www.eeworm.com/read/439468/7708172
m mil_run.m
function run = MIL_Run(classifier)
warning('off','MATLAB:colon:operandsNotRealScalar');
% clear global preprocess;
global preprocess;
global temp_train_file temp_test_file temp_output_file te
www.eeworm.com/read/397115/8066850
m knn.m
function [C,P]=knn(d, Cp, K)
%KNN K-Nearest Neighbor classifier using an arbitrary distance matrix
%
% [C,P]=knn(d, Cp, [K])
%
% Input and output arguments ([]'s are optional):
% d (matrix)
www.eeworm.com/read/397106/8067765
m svmtrain.m
function net = svmtrain(net, X, Y, alpha0, dodisplay)
% SVMTRAIN - Train a Support Vector Machine classifier
%
% NET = SVMTRAIN(NET, X, Y)
% Train the SVM given by NET using the training data X wi