Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Machine Learning by (19k points)

libsvm and liblinear are both software libraries that implement Support Vector Machines. What's the difference? And how do the differences make liblinear faster than libsvm?

1 Answer

0 votes
by (33.1k points)

LIBSVM and LIBLINEAR are two popular open source machine learning libraries. 

  • LIBSVM implements the Sequential minimal optimization (SMO) algorithm, for kernelized support vector machines (SVMs), supporting classification and regression.

  • LIBLINEAR implements linear SVMs and logistic regression models

For a large dataset, use liblinear. Libsvm performs very slow at 10k samples.

Hope this answer helps.

Browse Categories

...