Weka LibSVM (WLSVM)
3101 단어 lib
Weka and LibSVM are two efficient software tools for building SVM classifiers. Each one of these two tools has its points of strength and weakness. Weka has a GUI and produces many useful statistics (e.g. confusion matrix, precision, recall, F-measure, and ROC scores). LibSVM runs much faster than Weka SMO and supports several SVM methods (e.g. One-class SVM, nu-SVM, and R-SVM). Weka LibSVM (WLSVM) combines the merits of the two tools. WLSVM can be viewed as an implementation of the LibSVM running under Weka environment.
How To Use
Notes: Your java project should also have weka.jar.
WLSVM Options
-S set type of SVM (default 0)
0 = C-SVC
1 = nu-SVC
2 = one-class SVM
3 = epsilon-SVR
4 = nu-SVR
-K set type of kernel function (default 2)
0 = linear: u'*v
1 = polynomial: (gamma*u'*v + coef0)^degree
2 = radial basis function: exp(-gamma*|u-v|^2)
3 = sigmoid: tanh(gamma*u'*v + coef0)
-D set degree in kernel function (default 3)
-G set gamma in kernel function (default 1/k)
-R set coef0 in kernel function (default 0)
-C set the parameter C of C-SVC, epsilon-SVR, and nu-SVR (default 1)
-N set the parameter nu of nu-SVC, one-class SVM, and nu-SVR (default 0.5)
-Z whether to normalize input data, 0 or 1 (default 0)
-P set the epsilon in loss function of epsilon-SVR (default 0.1)
-M set cache memory size in MB (default 40)
-E set tolerance of termination criterion (default 0.001)
-H whether to use the shrinking heuristics, 0 or 1 (default 1)
-W set the parameters C of class i to weight[i]*C, for C-SVC (default 1)
Citation
If you would like to cite WLSVM, cite the following URL: Yasser EL-Manzalawy and Vasant Honavar, WLSVM : Integrating LibSVM into Weka Environment, 2005. Software available at http://www.cs.iastate.edu/~yasser/wlsvm The bibtex format is as follows
@Manual{yh05,
author = {Yasser EL-Manzalawy and Vasant Honavar},
title = {{WLSVM}: Integrating LibSVM into Weka Environment},
year = {2005},
note = {Software available at \url{http://www.cs.iastate.edu/~yasser/wlsvm}}
}
Contacts
If you have any problems using WLSVM or if you have any suggestions. Please contact Yasser EL-Manzalawy
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Weka LibSVM (WLSVM)Weka LibSVM (WLSVM): Integrating LibSVM into Weka Environment and are two efficient software tools for building SVM clas...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.