導航:首頁 > 編程語言 > 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代碼相關的資料

熱點內容
電腦系統能升級64 瀏覽:591
數據如何導入進sql 瀏覽:324
iosqq怎麼發文件夾 瀏覽:285
編程出社會後能做什麼工作 瀏覽:73
為什麼說數據層是里子呢 瀏覽:171
eset官方卸載工具 瀏覽:803
手機百度我在哪個文件夾 瀏覽:646
lumia925拍照對蘋果6 瀏覽:599
oraclelinux711gr2 瀏覽:516
公文格式圖片紅頭文件 瀏覽:430
word文件按標題批量改名工具 瀏覽:321
linuxversionh 瀏覽:728
編程為什麼學覺得有什麼好處 瀏覽:96
公眾號打包網頁發布找不到文件 瀏覽:522
qq頭像90後一男一女 瀏覽:92
proteus中如何單片機編程 瀏覽:26
excel打開如何顯示文件名稱 瀏覽:400
為什麼手機上不能打開excel文件 瀏覽:688
libsvmmatlab代碼 瀏覽:332
前端顯示文件流的圖片 瀏覽:20

友情鏈接