资源简介
进行SVM时运用高斯核,需要参数选择,改程序用来参数选择
代码片段和文件信息
function [bestaccbestcbestg] = SVMcgForClass(train_labeltraincmincmaxgmingmaxvcstepgstepaccstep)
%SVMcg cross validation by faruto
%
% by faruto
%Email:patrick.lee@foxmail.com QQ:516667408 http://blog.sina.com.cn/faruto BNU
%last modified 2010.01.17
%% 若转载请注明:
% faruto and liyang LIBSVM-farutoUltimateVersion
% a toolbox with implements for support vector machines based on libsvm 2009.
%
% Chih-Chung Chang and Chih-Jen Lin LIBSVM : a library for
% support vector machines 2001. Software available at
% http://www.csie.ntu.edu.tw/~cjlin/libsvm
%% about the parameters of SVMcg
if nargin < 10
accstep = 4.5;
end
if nargin < 8
cstep = 0.8;
gstep = 0.8;
end
if nargin < 7
v = 5;
end
if nargin < 5
gmax = 8;
gmin = -8;
end
if nargin < 3
cmax = 8;
cmin = -8;
end
%% X:c Y:g cg:CVaccuracy
[XY] = meshgrid(cmin:cstep:cmaxgmin:gstep:gmax);
[mn] = size(X);
cg = zeros(mn);
eps = 10^(-4);
%% record acc with different c & gand find the bestacc with the smallest c
bestc = 1;
bestg = 0.1;
bestacc = 0;
basenum = 2;
for i = 1:m
for j = 1:n
cmd = [‘-v ‘num2str(v)‘ -c ‘num2str( basenum^X(ij) )‘ -g ‘num2str( basenum^Y(ij) )];
cg(ij
- 上一篇:道路图像分割程序
- 下一篇:宽带信号DOA估计算法
相关资源
- matlab支持向量机SVM完整工具包
- Libsvm数据格式互相转换
- SVM对图像进行分类分类
- 基于Matlab的SVM含数据
- 用MatLab实现SVM分类.
- libsvm-3.1
- 支持向量机用于肌电信号模式识别的
- 灰度共生矩阵提取结肠癌图像特征,
- 多分类SVM使用libsvm)
- libsvm网格法查找最优参数函数 SVMcgF
- libsvm网格法查找最优解函数 SVMcgForC
- Matlab 人脸识别 SVM
- SVM工具包-matlab
- matlab型数据集heart_scale
- SVM算法的MATLAB源程序
- 分类器设计之线性分类器和线性SVM(
- 支持向量机SVM和核函数的matlab程序集
- 多元回归的交叉验证程序 可供做预测
- pso_lssvm回归预测
- 基于MATLAB的SVM模块
- matlab版hog+svm图像二分类
- svm分类器的实现 matlab
- GA算法优化支持向量机
- 关于电力负荷的SVM预测,设计了MATL
- 编译好的libsvm
- LS-SVM中文库文件指导手册最小支持向
- matlab贝叶斯分类(2)-10折10次交叉验
- SVM(MATLAB).zip
- pso-SVM的MATLAB程序
- GA优化LSSVM
评论
共有 条评论