-
Notifications
You must be signed in to change notification settings - Fork 789
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update inference.tree._tree with sklearn 1.15.2
- Loading branch information
1 parent
a52eef4
commit 5390458
Showing
19 changed files
with
9,400 additions
and
2,745 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,26 @@ | ||
""" | ||
This part of tree structures definition was initially borrowed from | ||
https://github.com/scikit-learn/scikit-learn/tree/1.0.2/sklearn/tree | ||
https://github.com/scikit-learn/scikit-learn/tree/1.5.2/sklearn/tree | ||
""" | ||
|
||
"""Decision tree based models for classification and regression.""" | ||
|
||
from ._classes import ( | ||
BaseDecisionTree, | ||
DecisionTreeClassifier, | ||
DecisionTreeRegressor, | ||
ExtraTreeClassifier, | ||
ExtraTreeRegressor, | ||
) | ||
from ._export import export_graphviz, export_text, plot_tree | ||
|
||
__all__ = [ | ||
"BaseDecisionTree", | ||
"DecisionTreeClassifier", | ||
"DecisionTreeRegressor", | ||
"ExtraTreeClassifier", | ||
"ExtraTreeRegressor", | ||
"export_graphviz", | ||
"plot_tree", | ||
"export_text", | ||
] |
Oops, something went wrong.