Class: Weka::Classifier::Bayes::AODE::Base
- Inherits:
-
Weka::Classifier::Bayes::AODE
- Object
- Weka::Classifier::Bayes::AODE
- Weka::Classifier::Bayes::AODE::Base
- Defined in:
- lib/ruby-band/weka/classifiers/bayes/bayes.rb
Instance Method Summary collapse
-
#initialize(&block) ⇒ Base
constructor
A new instance of Base.
Methods included from Bayes_utils
#cross_validate, #description, included, #init_classifier, #init_instance_classifier, #list_options, #set_class_index, #set_data, #set_options
Constructor Details
#initialize(&block) ⇒ Base
Returns a new instance of Base.
31 32 33 34 35 36 37 38 |
# File 'lib/ruby-band/weka/classifiers/bayes/bayes.rb', line 31 def initialize(&block) super if block_given? init_instance_classifier(&block) else init_classifier end end |