代码搜索:kernel
找到约 10,000 项符合「kernel」的源代码
代码结果 10,000
www.eeworm.com/read/389274/8536710
m fwd.m
function y = fwd(net,x)
w = repmat(net.w, size(x,1), 1);
y = sum((w.*evaluate(net.kernel,x,net.sv))') - net.bias;
y = y';
www.eeworm.com/read/188490/8536835
license
Unless otherwise stated, the source code distributed with this book
can be redistributed in source or binary form so long as an
acknowledgment appears in derived source files. The c
www.eeworm.com/read/389274/8537017
c evaluate.c
/******************************************************************************
File : @rbf/evaluate.c
Date : Saturday 18th March 2000
Author : Dr Gavin C. Cawley
Descr
www.eeworm.com/read/389274/8537308
cpp smosvctrain.cpp
/******************************************************************************
File : smotrain.c
Date : Wednesday 13th September 2000
Author : Dr Gavin C. Cawley
Descri
www.eeworm.com/read/289488/8548194
m exoneclasssvm.m
%
%
% One-Class SVM example
%
clear all
close all
randn('seed',0)
nu=0.9;
n=1000;
sigma=0.5;
[xapp,yapp]=datasets('gaussian',n,0,sigma);
xapp=xapp(find(yapp==1),:);
n=size(xapp,1);
www.eeworm.com/read/289488/8548217
m exsvmroc1.m
%
% Example on toy problem of
% WMW / AUC optimisation with linear hypothesis
% on a toy problem
clear all
close all
tic
n=4000;
sigma=0.5;
[x,y]=datasets('gaussian',n,0,sigma);
nbtrain=10
www.eeworm.com/read/289488/8548265
m exmulticlassall.m
%
%
% example of multiclass SVM using M-SVM
%
%
% 06/01/2003 Alain Rakotomamonjy
close all
clear all
%--------------------------------------------------
n=10;
sigma=1;
x1=
www.eeworm.com/read/289488/8548323
m exmulticlass2.m
%
% example of multiclass problem
%
%
%
% 22/08/2002 AR
clear all
close all
n=50; % examples per class
nbtest=50; %examples per class
nbiter=1;
classmeanvar=[-0.2 0.5;0.2 0.2 ; 1 0.
www.eeworm.com/read/289488/8548342
m exnlrlpsvm.m
%
%
% Examples of Non linear Robust linear program SVM
%
%
%
% min C sum nu_j + sum s_j
%
% st y_i ( sum_j w_j y_j K(x_i,x_j) -b ) + nu_i >= 1
% nu >=0
% -s_j
www.eeworm.com/read/289488/8548349
m exroccurve.m
%
% Example of ROC curve with SVM
% and real data
%
% 30/07/2004 A. Rakotomamonjy
clear all
close all
tic
data='sonar';
svm='L1'
file=['../data/' data '/' data '.mat'];
load(file);
classcod