Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sklearn/ensemble/_forest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2454,11 +2454,11 @@ class RandomTreesEmbedding(BaseForest):

Attributes
----------
base_estimator_ : DecisionTreeClassifier instance
base_estimator_ : :class:`~sklearn.tree.ExtraTreeClassifier` instance
The child estimator template used to create the collection of fitted
sub-estimators.

estimators_ : list of DecisionTreeClassifier instances
estimators_ : list of :class:`~sklearn.tree.ExtraTreeClassifier` instances
The collection of fitted sub-estimators.

feature_importances_ : ndarray of shape (n_features,)
Expand Down