Skip to content

ksopyla/primal_svm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Primal SVM implementation in python

This projekct is python port of Matlab Primal SVM - fast linear SVM implementation by Olivier Chapelle http://olivier.chapelle.cc/primal/

It can handle realy big datasets eficiently.

There are two solvers implemented:

  • Newton method solver - Newton solver is better suited for problems with large number of examples (>1M) but small dimension (less than 1000)
  • Conjugate Gradient solver - better for large and sparse problems

Code