The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Revision history for Perl extension Algorithm::SVMLight.

0.06  Thu Nov 30 13:42:45 CST 2006

 - Added a 'query_id' parameter to add_instance() for ranking SVMs.

0.05  Mon Jul 17 15:25:50 CDT 2006

 - The mapping between feature names and feature indices (the internal
   integers that svmlight uses to represent features) is now preserved
   in model files written & read by write_model() and read_model().

 - The various accessor methods for the internal SVMLight properties
   (get_epsilon_crit(), set_poly_degree(), and so on) are now
   automatically generated by a little perl script.  This fixes some
   properties I didn't have accessors for.

0.04  Mon Apr 24 10:41:07 CDT 2006

 - All the kernel parameters and learning parameters now have get_*
   getters as well as set_* setters.

 - The kernel parameters (kernel_type, poly_degree, ...) can now be
   set by passing parameters to the new(...) method, just like the
   learning parameters.

 - I'm now automatically generating the C code for the getters &
   setters, so they should be less prone to typos or omissions.

0.03  Wed Jan  4 17:02:35 CST 2006

 - Added the get_linear_weights() method, which returns an array of
   the trained weights used in a linear model.

0.01  Thu Jul  7 11:45:21 2005
 - original version