You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #1610, we noted that at each time a split attempt occurs in Decision Trees, an instance of the Split Criterion Object is created.
This is not necessary and a globally instantiated Split Criterion Object would enhance the memory usage of LAST.
In river/tree/nodes/last_nodes.py
# change this in future PR's by acessing the tree parameter in the leafself.split_criterion= (
split_criterion# if None, the change detector will have binary inputs
)
In #1610, we noted that at each time a split attempt occurs in Decision Trees, an instance of the Split Criterion Object is created.
This is not necessary and a globally instantiated Split Criterion Object would enhance the memory usage of LAST.
In river/tree/nodes/last_nodes.py
would become :
The text was updated successfully, but these errors were encountered: