导航:首页 > 编程语言 > libsvmmatlab代码

libsvmmatlab代码

发布时间:2024-11-29 09:18:27

㈠ Matlab的libsvm 中训练参数怎么输出

c语言版本的也记录在 model 里面.其中model 是一个结构体,其定义如下.

struct svm_model
{
struct svm_parameter param; // parameter
int nr_class; // number of classes, = 2 in regression/one class svm
int l; // total #SV
struct svm_node **SV; // SVs (SV[l])
double **sv_coef; // coefficients for SVs in decision functions (sv_coef[k-1][l])
double *rho; // constants in decision functions (rho[k*(k-1)/2])
double *probA; // pariwise probability information
double *probB;

// for classification only

int *label; // label of each class (label[k])
int *nSV; // number of SVs for each class (nSV[k])
// nSV[0] + nSV[1] + ... + nSV[k-1] = l
// XXX
int free_sv; // 1 if svm_model is created by svm_load_model
// 0 if svm_model is created by svm_train
};

里面的sv_coef就是指向 拉格朗日参数(可能乘了1或者-1)的指针的指针
=============
其实用Matlab版本的更方便

阅读全文

与libsvmmatlab代码相关的资料

热点内容
多少条数据的表属于大表 浏览:348
三星s7edge悬浮窗教程 浏览:523
网监半小时可传多少数据 浏览:871
求隐藏手机文件的软件 浏览:487
网站下载东西怎么选储存位置 浏览:999
java时间相差多少年 浏览:623
什么是移动网络指标提升 浏览:190
打马是什么意思网络用语 浏览:764
药膳app 浏览:545
c中js间隔符号是 浏览:143
什么app可以内放音乐 浏览:621
js执行文件 浏览:343
微信公众号注销方法 浏览:743
app卖酒有哪些平台 浏览:731
java部分中文乱码 浏览:228
iis添加dll文件 浏览:578
appleld的代码是什么形式 浏览:659
图片转word文件保存在哪 浏览:757
count是哪个编程语言 浏览:85
写言情小说哪个网站好 浏览:365

友情链接