Skip to content

Commit

Permalink
Updated docstrings for EFDT and HoeffdingTree
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Heyden committed Mar 25, 2024
1 parent f32ddae commit 39988b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions src/capymoa/learner/classifier/efdt.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,7 @@ class EFDT(MOAClassifier):
Number of instances a leaf should observe before allowing Naive Bayes.
numeric_attribute_observer
The Splitter or Attribute Observer (AO) used to monitor the class statistics of numeric
features and perform splits. Splitters are available in the `tree.splitter` module.
Different splitters are available for classification and regression tasks. Classification
and regression splitters can be distinguished by their property `is_target_class`.
This is an advanced option. Special care must be taken when choosing different splitters.
By default, `tree.splitter.GaussianSplitter` is used if `splitter` is `None`.
features and perform splits.
binary_split
If True, only allow binary splits.
max_byte_size
Expand Down
6 changes: 1 addition & 5 deletions src/capymoa/learner/classifier/hoeffding_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,7 @@ class HoeffdingTree(MOAClassifier):
Number of instances a leaf should observe before allowing Naive Bayes.
numeric_attribute_observer
The Splitter or Attribute Observer (AO) used to monitor the class statistics of numeric
features and perform splits. Splitters are available in the `tree.splitter` module.
Different splitters are available for classification and regression tasks. Classification
and regression splitters can be distinguished by their property `is_target_class`.
This is an advanced option. Special care must be taken when choosing different splitters.
By default, `tree.splitter.GaussianSplitter` is used if `splitter` is `None`.
features and perform splits.
binary_split
If True, only allow binary splits.
max_byte_size
Expand Down

0 comments on commit 39988b9

Please sign in to comment.