代码搜索:classifier
找到约 4,824 项符合「classifier」的源代码
代码结果 4,824
www.eeworm.com/read/124570/14558476
java hyperpipes.java
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either vers
www.eeworm.com/read/124570/14558530
java multiclassclassifier.java
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either vers
www.eeworm.com/read/214923/15083082
m democl4.m
clear
close all
load iris
echo on;
%
% encode
%
Yc = code(Y,'code_MOC');
%
% MOC
%
gam = 10;
sig2 = 1;
kernel = 'RBF_kernel';
model = initlssvm(X,Y,'classifier',gam,sig2,kernel,'preprocess');
mo
www.eeworm.com/read/214923/15083089
m democl1.m
clear
close all
grain = 100;
load ripley;
echo on;
%
% RADIAL BASE FUNCTION KERNEL
%
% train
gam = 10;
kernel = 'RBF_kernel';
sig2 = 1;
[alpha,b] = trainlssvm({X,Y,'classifier',gam,sig2,kernel,'p