代码搜索:Classify
找到约 2,639 项符合「Classify」的源代码
代码结果 2,639
www.eeworm.com/read/357874/10199092
m ada_boost.m
function [test_targets, E] = ada_boost(train_patterns, train_targets, test_patterns, params)
% Classify using the AdaBoost algorithm
% Inputs:
% train_patterns - Train patterns
% train_targets
www.eeworm.com/read/357874/10199139
m local_polynomial.m
function test_targets = Local_Polynomial(train_patterns, train_targets, test_patterns, Nlp)
% Classify using the local polynomial fitting
% Inputs:
% train_patterns - Train patterns
% train_tar
www.eeworm.com/read/357874/10199210
m ml_ii.m
function test_targets = ML_II(train_patterns, train_targets, test_patterns, Ngaussians)
% Classify using the ML-II algorithm. This function accepts as inputs the maximum number
% of Gaussians per
www.eeworm.com/read/349842/10796742
m nddf.m
function [D, g0, g1] = NDDF(train_features, train_targets, cost, region, test_feature)
% Classify using the normal density discriminant function
% Inputs:
% features - Train features
% target
www.eeworm.com/read/451547/7462016
m dd_label.m
function z = dd_label(x,w,realoutput)
%DD_LABEL classify the dataset and put labels in the dataset
%
% Z = DD_LABEL(X,W)
%
% Compute the output labels of objects X by mapping through mapping W
% and
www.eeworm.com/read/444452/7612555
cpp rule.cpp
/*!
*
*
* sharat@mit.edu
*/
#include "rule.h"
double rule::classify(const vector &ftr)
{
double res = bias;
int sz = ftr.size();
for(int i=0;i
www.eeworm.com/read/399996/7816563
m ls.m
function [test_targets, w] = LS(train_patterns, train_targets, test_patterns, weights)
% Classify using the least-squares algorithm
% Inputs:
% train_patterns - Train patterns
% train_targets
www.eeworm.com/read/399996/7816599
m nearest_neighbor.m
function test_targets = Nearest_Neighbor(train_patterns, train_targets, test_patterns, Knn)
% Classify using the Nearest neighbor algorithm
% Inputs:
% train_patterns - Train patterns
% train_t
www.eeworm.com/read/399996/7816726
m ada_boost.m
function [test_targets, E] = ada_boost(train_patterns, train_targets, test_patterns, params)
% Classify using the AdaBoost algorithm
% Inputs:
% train_patterns - Train patterns
% train_targets
www.eeworm.com/read/399996/7816882
m local_polynomial.m
function test_targets = Local_Polynomial(train_patterns, train_targets, test_patterns, Nlp)
% Classify using the local polynomial fitting
% Inputs:
% train_patterns - Train patterns
% train_tar