class ThunderSVM::Regressor

Public Class Methods

new(svm_type: :epsilon_svr, **options) click to toggle source
Calls superclass method ThunderSVM::Model::new
# File lib/thundersvm/regressor.rb, line 3
def initialize(svm_type: :epsilon_svr, **options)
  super(svm_type: svm_type, **options)
end