Skip to content

Commit

Permalink
Changed class exposure.
Browse files Browse the repository at this point in the history
  • Loading branch information
gcasadesus committed Aug 18, 2021
1 parent 197ea85 commit 1ddfeed
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions dislib/trees/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from dislib.trees.forest import RandomForestClassifier, RandomForestRegressor
from dislib.trees.decision_tree import (
DecisionTreeClassifier,
DecisionTreeRegressor,
)
from dislib.trees.data import transform_to_rf_dataset

__all__ = [
"RandomForestClassifier",
"RandomForestRegressor",
"DecisionTreeClassifier",
"DecisionTreeRegressor",
"transform_to_rf_dataset",
]

0 comments on commit 1ddfeed

Please sign in to comment.