This is a Python module for wrapping "liblinear", a very fast solver for linear support vector machines. "liblinear" v 1.32 is included, look at liblinear-1.32\, there you find a README and COPYRIGHT file. The Python wrapper is based on Cython (http://www.cython.org) and was written Okt. 2008 by Uwe Schmitt (uschmitt@mineway.de, http://www.procoders.net). Georg Holzmann contributed some code in Feb 2009. ---------------------------------------------------------------------- Internals: The file linear.c implements the extension module and was generated by Cython (www.cython.org) which translates the cython file linear.pyx to linear.c We include linear.c into the distribution, as many people do not have cython installed. ---------------------------------------------------------------------- Documentation: There are no docs at the moment. As the interface of the module is quite small, I recommend to read the tests and maybe liblinear.pyx.