NAME Algorithm::SVMLight - Perl interface to SVMLight Machine-Learning Package SYNOPSIS use Algorithm::SVMLight; my $s = new Algorithm::SVMLight; $s->add_instance (attributes => {foo => 1, bar => 1, baz => 3}, label => 1); $s->add_instance (attributes => {foo => 2, blurp => 1}, label => -1); ... repeat for several more instances, then: $s->train; # Find results for unseen instances my $result = $s
{{#tags}}- {{label}}
{{/tags}}