Class: ThunderSVM::Regressor

Inherits:
Model
  • Object
show all
Defined in:
lib/thundersvm/regressor.rb

Instance Method Summary collapse

Methods inherited from Model

#cv, #dual_coef, finalize_file, #fit, #load_model, #predict, #save_model, #support_vectors

Constructor Details

#initialize(svm_type: :epsilon_svr, **options) ⇒ Regressor

Returns a new instance of Regressor.



3
4
5
# File 'lib/thundersvm/regressor.rb', line 3

def initialize(svm_type: :epsilon_svr, **options)
  super(svm_type: svm_type, **options)
end