Class: Weka::Classifier::Lazy::IB1::Base
- Inherits:
-
Weka::Classifier::Lazy::IB1
- Object
- Weka::Classifier::Lazy::IB1
- Weka::Classifier::Lazy::IB1::Base
- Defined in:
- lib/ruby-band/weka/classifiers/lazy/lazy.rb
Instance Method Summary collapse
-
#initialize(&block) ⇒ Base
constructor
A new instance of Base.
Methods included from Lazy_utils
#cross_validate, #description, included, #init_instance_classifier, #init_lazy, #list_options, #set_class_index, #set_data, #set_options
Constructor Details
#initialize(&block) ⇒ Base
Returns a new instance of Base.
60 61 62 63 64 65 66 67 |
# File 'lib/ruby-band/weka/classifiers/lazy/lazy.rb', line 60 def initialize(&block) super if block_given? init_instance_classifier(&block) else init_lazy end end |