?? svm_model.cs
字號:
//
// svm_model
//
using System;
namespace libsvm
{
[Serializable]
public class svm_model
{
internal svm_parameter param; // parameter
internal int nr_class; // number of classes, = 2 in regression/one class svm
internal int l; // total #SV
internal svm_node[][] SV; // SVs (SV[l])
internal double[][] sv_coef; // coefficients for SVs in decision functions (sv_coef[n-1][l])
internal double[] rho; // constants in decision functions (rho[n*(n-1)/2])
internal double[] probA; // pariwise probability information
internal double[] probB;
// for classification only
internal int[] label; // label of each class (label[n])
internal int[] nSV; // number of SVs for each class (nSV[n])
// nSV[0] + nSV[1] + ... + nSV[n-1] = l
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -