导航:首页 > 编程语言 > 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代码相关的资料

热点内容
表示文件路径用什么字符隔开 浏览:549
word2010宏安全性设置 浏览:820
win7硬盘密码设置 浏览:240
电脑有没有这个文件在哪里查 浏览:340
金苹果内容摘要 浏览:580
网站怎么对接qq在线客服 浏览:437
solidworks曲面建模教程 浏览:69
数控编程和计算机有什么区别 浏览:541
jsp与webservice 浏览:659
k歌的数据包括什么 浏览:300
宽带wifi怎么查看网站 浏览:97
vlog网页编程怎么样 浏览:598
自助下单网站多少钱搭建 浏览:130
国外装修都用什么app 浏览:326
qq同步助手修改密码 浏览:850
电脑与电脑传输文件 浏览:403
处理网络数据应用哪个好 浏览:229
万灵召唤最新版本 浏览:566
电脑文件夹自动备份 浏览:380
御史大冒险怎么升级快 浏览:284

友情链接