-
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 CausalTree's base _tree module with sklearn 1.5.2 (#806)
* update inference.tree._tree with sklearn 1.5.2 * fix lint errors * remove unused files from sklearn.tree._tree * fix the sklearn version to be >= 1.5.2, 1.6 * update the readthedocs config to use py39
- Loading branch information
1 parent
d369317
commit 27990a0
Showing
22 changed files
with
6,965 additions
and
2,747 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
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,14 @@ | ||
""" | ||
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, | ||
) | ||
|
||
__all__ = [ | ||
"BaseDecisionTree", | ||
] |
Oops, something went wrong.