machine-learning - Libsvm 模型文件格式 无型号

标签 machine-learning svm libsvm document-classification svmlight

我正在使用 libsvm 进行文档分类。我在我的项目中使用 svm.cc 和 svm.h 。然后我调用 svm_train。我使用 svm_save_model 将模型保存在文件中。

我有类别。 svm模型文件为:

svm_type c_svc
kernel_type rbf
gamma 0.001002
nr_class 3
total_sv 9
rho -0.000766337 0.00314423 0.00387654
label 0 1 2
nr_sv 3 3 3
SV
1 1 1:0.001 2:0.001 3:0.012521912 5:0.001 15:0.012521912 17:0.012521912 23:0.001 
1 1 1:0.001 2:0.014176543 4:0.093235799 6:0.001 7:0.0058630699 9:0.040529628 10:0.001 
1 1 11:0.38863495 33:0.08295242 46:0.041749886 58:0.08295242 89:0.08295242 127:0.15338862 -1 1 5:0.001 8:0.0565 10:0.001 13:0.001 18:0.0565 21:0.021483399 34:0.12453384 36:0.001 
-1 1 13:0.034959612 34:0.090130132 36:0.034959612 45:0.034959612 47:0.12019824 
-1 1 5:0.001 8:0.048037273 13:0.001 18:0.048037273 29:0.14715472 30:0.018360058 36:0.001 
-1 -1 9:0.0049328688 12:0.090902344 18:0.1156038 27:0.0049328688 31:0.015144206

index:value 形式的向量值前的 1 和 -1 是什么?

最佳答案

来自 libsvm 常见问题解答:

Q: Can you explain more about the model file?

In the model file, after parameters and other informations such as labels , each line represents a support vector. Support vectors are listed in the order of "labels" shown earlier. (i.e., those from the first class in the "labels" list are grouped first, and so on.) If k is the total number of classes, in front of a support vector in class j, there are k-1 coefficients y*alpha where alpha are dual solution of the following two class problems: 1 vs j, 2 vs j, ..., j-1 vs j, j vs j+1, j vs j+2, ..., j vs k and y=1 in first j-1 coefficients, y=-1 in the remaining k-j coefficients. For example, if there are 4 classes, the file looks like:

 +-+-+-+--------------------+ 
 |1|1|1|                    | 
 |v|v|v|  SVs from class 1  | 
 |2|3|4|                    |
 +-+-+-+--------------------+ 
 |1|2|2|                    | 
 |v|v|v|  SVs from class 2  | 
 |2|3|4|                    |
 +-+-+-+--------------------+ 
 |1|2|3|                    | 
 |v|v|v|  SVs from class 3  | 
 |3|3|4|                    |
 +-+-+-+--------------------+ 
 |1|2|3|                    | 
 |v|v|v|  SVs from class 4  | 
 |4|4|4|                    |
 +-+-+-+--------------------+                            

http://www.csie.ntu.edu.tw/~cjlin/libsvm/faq.html#f402

关于machine-learning - Libsvm 模型文件格式 无型号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18223756/

相关文章:

python - 如何在 k-Means 聚类算法中选择哪些列适合可视化?

matlab - 在数据集上应用 SVM

machine-learning - 如何使用SVM求精确率、召回率、准确率?

android - 支持向量机预测方法

machine-learning - 如何在 LIBSVM 中使用 svm-scale?

machine-learning - 支持向量的数量与训练数据和分类器性能之间有什么关系?

python - Keras - model.predict 返回类而不是概率

c - 检测数据集中的某个特征

machine-learning - 交叉验证如何进行测试?

margin - SVM:为什么最大化边际 == 最小化欧几里德范数?