Class: Weka::Classifier::Bayes::WAODE::Base
- Inherits:
-
Weka::Classifier::Bayes::WAODE
- Object
- Weka::Classifier::Bayes::WAODE
- Weka::Classifier::Bayes::WAODE::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.
73 74 75 76 77 78 79 80 |
# File 'lib/ruby-band/weka/classifiers/bayes/bayes.rb', line 73 def initialize(&block) super if block_given? init_instance_classifier(&block) else init_classifier end end |