代码搜索:classifier
找到约 4,824 项符合「classifier」的源代码
代码结果 4,824
www.eeworm.com/read/286180/8784198
m u_lindemo.m
echo off
%LINDEMO demonstration for using linear SVM classifier.
echo on;
clc
%LINDEMO demonstration for using linear SVM classifier.
%#########################################################
www.eeworm.com/read/286180/8784201
m c_clademo.m
echo off
% CLADEMO demonstration for using a contructed SVM classifier to classify
% input patterns
echo on;
%
%
% NOTICE: please first run any of the first three demonstrations before
%
www.eeworm.com/read/286180/8784231
m svmclass.m
function [Labels, DecisionValue]= SVMClass(Samples, AlphaY, SVs, Bias, Parameters, nSV, nLabel)
% Usages:
% [Labels, DecisionValue]= SVMClass(Samples, AlphaY, SVs, Bias);
% [Labels, DecisionValu
www.eeworm.com/read/384944/8827759
m auroc.m
function A = auroc(tp, fp)
%
% AUROC - area under ROC curve
%
% An ROC (receiver operator characteristic) curve is a plot of the true
% positive rate as a function of the false positive rate of
www.eeworm.com/read/428849/8833339
m contents.m
% Bayesian classification.
%
% bayescls - Bayesian classifier with reject option.
% bayesdf - Computes decision boundary of Bayesian classifier.
% bayeserr - Computes Bayesian risk for 1D case with G
www.eeworm.com/read/428849/8834583
m contents.m
% Visualization for pattern recognition.
%
% pandr - Visualizes solution of the Generalized Anderson's task.
% pboundary - Plots decision boundary of given classifier in 2D.
% pgauss
www.eeworm.com/read/428849/8834598
m pandr.m
function varargout = pandr(model,distrib)
% PANDR Visualizes solution of the Generalized Anderson's task.
%
% Synopsis:
% h = pandr(model)
%
% Description:
% It vizualizes solution of the Gen
www.eeworm.com/read/428849/8834613
m svmclass.m
function [y,dfce] = svmclass(X,model)
% SVMCLASS Support Vector Machines Classifier.
%
% Synopsis:
% [y,dfce] = svmclass( X, model )
%
% Description:
% [y,dfce] = svmclass( X, model ) classifies inp
www.eeworm.com/read/283653/9000599
m c_poldemo.m
echo off
%POLDEMO demonstration for using nonlinear SVM classifier with a
% polynomial keneral.
echo on;
clc
%POLDEMO demonstration for using nonlinear SVM classifier with a
% polynomial ke
www.eeworm.com/read/283653/9000600
m c_svcdemo.m
% ------- OSU C-SVM CLASSIFIER TOOLBOX Demonstrations---
%
% 1) Construct a linear SVM Classifier and test it
% 2) Construct a nonlinear SVM Classifier (polynomial kernel) and t