代码搜索:Classify

找到约 2,639 项符合「Classify」的源代码

代码结果 2,639
www.eeworm.com/read/474600/6813404

m parzen.m

function test_targets = parzen(train_patterns, train_targets, test_patterns, hn) % Classify using the Parzen windows algorithm % Inputs: % train_patterns - Train patterns % train_targets - Trai
www.eeworm.com/read/474600/6813416

m discrete_bayes.m

function test_targets = Discrete_Bayes(train_patterns, train_targets, test_patterns, cost) % Classify discrete patterns using the Bayes decision theory % Inputs: % train_patterns - Train pattern
www.eeworm.com/read/474600/6813437

m perceptron_voted.m

function test_targets = Perceptron_Voted(train_patterns, train_targets, test_patterns, params) % Classify using the Perceptron algorithm % Inputs: % train_patterns - Train patterns % train_targ
www.eeworm.com/read/474600/6813462

m projection_pursuit.m

function [test_targets, V, Wo] = Projection_Pursuit(train_patterns, train_targets, test_patterns, Ncomponents) % Classify using projection pursuit regression % Inputs: % train_patterns - Train p
www.eeworm.com/read/474600/6813511

m balanced_winnow.m

function [test_targets, a_plus, a_minus] = Balanced_Winnow(train_patterns, train_targets, test_patterns, params) % Classify using the balanced Winnow algorithm % Inputs: % training_patterns -
www.eeworm.com/read/474600/6813524

m store_grabbag.m

function test_targets = Store_Grabbag(train_patterns, train_targets, test_patterns, Knn) % Classify using the store-grabbag algorithm (an improvement on the nearest neighbor) % Inputs: % train_p
www.eeworm.com/read/474600/6813548

m pnn.m

function test_targets = PNN(train_patterns, train_targets, test_patterns, sigma) % Classify using a probabilistic neural network % Inputs: % train_patterns - Train patterns % train_targets - Tr
www.eeworm.com/read/474600/6813557

m em.m

function [test_targets, param_struct] = EM(train_patterns, train_targets, test_patterns, Ngaussians) % Classify using the expectation-maximization algorithm % Inputs: % train_patterns - Train pa
www.eeworm.com/read/474600/6813558

m rbf_network.m

function [test_targets, mu, Wo] = RBF_Network(train_patterns, train_targets, test_patterns, Nh) % Classify using a backpropagation network with a batch learning algorithm % Inputs: % train_patte
www.eeworm.com/read/474600/6813573

asv parzen.asv

function test_targets = parzen(train_patterns, train_targets, test_patterns, hn) % Classify using the Parzen windows algorithm % Inputs: % train_patterns - Train patterns % train_targets - Trai