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

熱點內容
tomcat視頻教程 瀏覽:768
docs文件在哪裡 瀏覽:311
qq里保存的文件在哪裡找到 瀏覽:940
絲芙蘭app的試色在哪裡 瀏覽:904
建材哪個網站好 瀏覽:323
app平台伺服器一般什麼價格 瀏覽:305
手機wps如何做word文件 瀏覽:272
技術投標文件包括哪些 瀏覽:556
word宏選擇標題 瀏覽:283
3dmax打開文件在哪裡 瀏覽:740
計提印花稅的數據在哪裡 瀏覽:376
編程中vip還用什麼 瀏覽:863
js批量設置屬性值 瀏覽:106
以太坊的數據儲存在哪裡 瀏覽:867
數據採集卡有些什麼用途 瀏覽:75
編程用哪個後綴 瀏覽:977
手機版百度網盤文件夾 瀏覽:627
為什麼小孩子要學習編程 瀏覽:713
驅動存放在哪個文件夾win10 瀏覽:80
小學學托福和編程哪個合適 瀏覽:89

友情鏈接