Module: Attribute_selection_Utils

Instance Method Summary collapse

Instance Method Details

#descriptionObject

Return a short description for the selected evalutator object or search algorithm



16
17
18
# File 'lib/ruby-band/weka/attribute_selection/attribute_selection_utils.rb', line 16

def description
   globalInfo
end

#options_listObject

Instance methods list



5
6
7
# File 'lib/ruby-band/weka/attribute_selection/attribute_selection_utils.rb', line 5

def options_list
  listOptions.map {|key| "#{key.synopsis} #{key.description}"}.join("\n")
end

#select_options(options_string) ⇒ Object

Set options for an evaluator or a search algorithm



10
11
12
13
# File 'lib/ruby-band/weka/attribute_selection/attribute_selection_utils.rb', line 10

def select_options(options_string)
  options = Utils.splitOptions(options_string)
  set_options(options)
end