Skip to content

Instantly share code, notes, and snippets.

@ndelage
Created July 27, 2012 02:35
Show Gist options
  • Save ndelage/3185891 to your computer and use it in GitHub Desktop.
Save ndelage/3185891 to your computer and use it in GitHub Desktop.
svm example
require 'lib/svm'
data = [
[5, {:year => 1987, :campy => 1}],
[3, {:year => 1978, :man_eating_monsters => 1, :horror => 1}],
[2, {:year => 1988, :teens => 1}]
]
predictor = SvmPrediction.from_svm_problem( data )
puts predictor.predict(:year => 1988)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment