-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
Typo at documentation of RandomForestRegressor #27683
Copy link
Copy link
Closed
Labels
Description
Hello,
is there a typo at the doc. description of the RandomForestRegressor? It states that the fitting of the data is done using "classifying decision trees" where it should be saying regressor decision trees.
see:
scikit-learn/sklearn/ensemble/_forest.py
Lines 1524 to 1530 in e718c76
| class RandomForestRegressor(ForestRegressor): | |
| """ | |
| A random forest regressor. | |
| A random forest is a meta estimator that fits a number of classifying | |
| decision trees on various sub-samples of the dataset and uses averaging | |
| to improve the predictive accuracy and control over-fitting. |
Reactions are currently unavailable