LASTClassifier¶
Local Adaptive Streaming Tree Classifier.
Local Adaptive Streaming Tree 1 (LAST) is an incremental decision tree with adaptive splitting mechanisms. LAST maintains a change detector at each leaf and splits this node if a change is detected in the error or the leaf`s data distribution.
LAST is still not suitable for use as a base classifier in ensembles due to the change detectors. The authors in 1 are working on a version of LAST that overcomes this limitation.
Parameters¶
-
max_depth
Type โ int | None
Default โ
None
The maximum depth a tree can reach. If
None
, the tree will grow until the system recursion limit. -
split_criterion
Type โ str
Default โ
info_gain
Split criterion to use. - 'gini' - Gini - 'info_gain' - Information Gain - 'hellinger' - Helinger Distance
-
leaf_prediction
Type โ str
Default โ
nba
Prediction mechanism used at leafs. - 'mc' - Majority Class - 'nb' - Naive Bayes - 'nba' - Naive Bayes Adaptive
-
change_detector
Type โ base.DriftDetector | None
Default โ
None
Change detector that will be created at each leaf of the tree.
-
track_error
Type โ bool
Default โ
True
If True, the change detector will have binary inputs for error predictions, otherwise the input will be the split criteria.
-
nb_threshold
Type โ int
Default โ
0
Number of instances a leaf should observe before allowing Naive Bayes.
-
nominal_attributes
Type โ list | None
Default โ
None
List of Nominal attributes identifiers. If empty, then assume that all numeric attributes should be treated as continuous.
-
splitter
Type โ Splitter | None
Default โ
None
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 propertyis_target_class
. This is an advanced option. Special care must be taken when choosing different splitters. By default,tree.splitter.GaussianSplitter
is used ifsplitter
isNone
. -
binary_split
Type โ bool
Default โ
False
If True, only allow binary splits.
-
min_branch_fraction
Type โ float
Default โ
0.01
The minimum percentage of observed data required for branches resulting from split candidates. To validate a split candidate, at least two resulting branches must have a percentage of samples greater than
min_branch_fraction
. This criterion prevents unnecessary splits when the majority of instances are concentrated in a single branch. -
max_share_to_split
Type โ float
Default โ
0.99
Only perform a split in a leaf if the proportion of elements in the majority class is smaller than this parameter value. This parameter avoids performing splits when most of the data belongs to a single class.
-
max_size
Type โ float
Default โ
100.0
The max size of the tree, in Megabytes (MB).
-
memory_estimate_period
Type โ int
Default โ
1000000
Interval (number of processed instances) between memory consumption checks.
-
stop_mem_management
Type โ bool
Default โ
False
If True, stop growing as soon as memory limit is hit.
-
remove_poor_attrs
Type โ bool
Default โ
False
If True, disable poor attributes to reduce memory usage.
-
merit_preprune
Type โ bool
Default โ
True
If True, enable merit-based tree pre-pruning.
Attributes¶
-
height
-
leaf_prediction
Return the prediction strategy used by the tree at its leaves.
-
max_size
Max allowed size tree can reach (in MiB).
-
n_active_leaves
-
n_branches
-
n_inactive_leaves
-
n_leaves
-
n_nodes
-
split_criterion
Return a string with the name of the split criterion being used by the tree.
-
summary
Collect metrics corresponding to the current status of the tree in a string buffer.
Examples¶
from river.datasets import synth
from river import evaluate
from river import metrics
from river import tree
gen = synth.ConceptDriftStream(stream=synth.SEA(seed=42, variant=0),
drift_stream=synth.SEA(seed=42, variant=1),
seed=1, position=1500, width=50)
dataset = iter(gen.take(3000))
model = tree.LASTClassifier()
metric = metrics.Accuracy()
evaluate.progressive_val_score(dataset, model, metric)
Accuracy: 91.10%
Methods¶
debug_one
Print an explanation of how x
is predicted.
Parameters
- x โ 'dict'
Returns
str | None: A representation of the path followed by the tree to predict x
; None
if
draw
Draw the tree using the graphviz
library.
Since the tree is drawn without passing incoming samples, classification trees will show the majority class in their leaves, whereas regression trees will use the target mean.
Parameters
- max_depth โ 'int | None' โ defaults to
None
The maximum depth a tree can reach. IfNone
, the tree will grow until the system recursion limit.
learn_one
Train the model on instance x and corresponding target y.
Parameters
- x
- y
- w โ defaults to
1.0
predict_one
Predict the label of a set of features x
.
Parameters
- x โ 'dict'
- kwargs
Returns
base.typing.ClfTarget | None: The predicted label.
predict_proba_one
Predict the probability of each label for a dictionary of features x
.
Parameters
- x
Returns
A dictionary that associates a probability which each label.
to_dataframe
Return a representation of the current tree structure organized in a pandas.DataFrame
object.
In case the tree is empty or it only contains a single node (a leaf), None
is returned.
Returns
df