Sha256: 7ac6386ccb9bf96f5083e84f6849855502c8f55f799cef414eb109d56332c330
Contents?: true
Size: 1.1 KB
Versions: 12
Compression:
Stored size: 1.1 KB
Contents
require 'weka/class_builder' module Weka module AttributeSelection module Evaluator include ClassBuilder build_classes :CfsSubsetEval, :CorrelationAttributeEval, :GainRatioAttributeEval, :InfoGainAttributeEval, :OneRAttributeEval, :PrincipalComponents, :ReliefFAttributeEval, :SymmetricalUncertAttributeEval, :WrapperSubsetEval, weka_module: 'weka.attributeSelection' class CfsSubset < CfsSubsetEval; end class CorrelationAttribute < CorrelationAttributeEval; end class GainRatioAttribute < GainRatioAttributeEval; end class InfoGainAttribute < InfoGainAttributeEval; end class OneRAttribute < OneRAttributeEval; end class ReliefFAttribute < ReliefFAttributeEval; end class SymmetricalUncertAttribute < SymmetricalUncertAttributeEval; end class WrapperSubset < WrapperSubsetEval; end end end end
Version data entries
12 entries across 12 versions & 1 rubygems