Module: HybridForest

Defined in:
lib/hybridforest.rb,
lib/hybridforest/version.rb,
lib/hybridforest/trees/tree.rb,
lib/hybridforest/trees/split.rb,
lib/hybridforest/trees/id3_tree.rb,
lib/hybridforest/trees/cart_tree.rb,
lib/hybridforest/utilities/utils.rb,
lib/hybridforest/trees/tests/less.rb,
lib/hybridforest/trees/tests/test.rb,
lib/hybridforest/trees/tests/equal.rb,
lib/hybridforest/forests/random_forest.rb,
lib/hybridforest/trees/nodes/leaf_node.rb,
lib/hybridforest/trees/tests/not_equal.rb,
lib/hybridforest/forests/grower_factory.rb,
lib/hybridforest/trees/nodes/binary_node.rb,
lib/hybridforest/trees/nodes/multiway_node.rb,
lib/hybridforest/errors/invalid_state_error.rb,
lib/hybridforest/trees/tests/equal_or_greater.rb,
lib/hybridforest/trees/tree_growers/id3_grower.rb,
lib/hybridforest/trees/impurity_metrics/entropy.rb,
lib/hybridforest/trees/tree_growers/cart_grower.rb,
lib/hybridforest/trees/impurity_metrics/impurity.rb,
lib/hybridforest/forests/forest_growers/id3_grower.rb,
lib/hybridforest/forests/forest_growers/cart_grower.rb,
lib/hybridforest/forests/forest_growers/hybrid_grower.rb,
lib/hybridforest/trees/feature_selectors/all_features.rb,
lib/hybridforest/trees/impurity_metrics/gini_impurity.rb,
lib/hybridforest/trees/feature_selectors/random_feature_subspace.rb,
lib/hybridforest/trees/feature_selectors/max_one_split_per_feature.rb

Defined Under Namespace

Modules: Errors, Forests, Trees, Utils Classes: RandomForest

Constant Summary collapse

FOREST_TYPES =
[
  :hybrid,
  :cart,
  :id3
].freeze
VERSION =
"0.14.0"