Simple, easy-to-use, and efficient software for SVM classification and regression,
based on the LIBSVM implementation of Chin-Chung Chang and Chin-Jen Lin.
Generalized SMO+SVMlight algorithm
Solves:
min 0.5(\alpha^T Q \alpha) + b^T \alpha
y^T \alpha = \delta
y_i = +1 or -1
0 <= alpha_i <= Cp for y_i = 1
0 <= alpha_i <= Cn for y_i = -1
Given:
Q, b, y, Cp, Cn, and an initial feasible point \alpha
l is the size of vectors and matrices
eps is the stopping criterion
solution will be put in \alpha, objective value will be put in obj
Solver() -
Constructor for class pt.tumba.ngram.svm.Solver
Calculate "the distance" between two profiles, using Jiang's & Conranth similarity measure,
as proposed in "Semantic Similarity Based on Corpus Statistics and Lexical Taxonomy".