@@ -863,7 +863,8 @@ class RandomForestClassifier(ForestClassifier):
863
863
864
864
865
865
bootstrap : boolean, optional (default=True)
866
- Whether bootstrap samples are used when building trees.
866
+ Whether bootstrap samples are used when building trees. If False, the
867
+ whole datset is used to build each tree.
867
868
868
869
oob_score : bool (default=False)
869
870
Whether to use out-of-bag samples to estimate
@@ -1153,7 +1154,8 @@ class RandomForestRegressor(ForestRegressor):
1153
1154
will be removed in 0.25. Use ``min_impurity_decrease`` instead.
1154
1155
1155
1156
bootstrap : boolean, optional (default=True)
1156
- Whether bootstrap samples are used when building trees.
1157
+ Whether bootstrap samples are used when building trees. If False, the
1158
+ whole datset is used to build each tree.
1157
1159
1158
1160
oob_score : bool, optional (default=False)
1159
1161
whether to use out-of-bag samples to estimate
@@ -1403,7 +1405,8 @@ class ExtraTreesClassifier(ForestClassifier):
1403
1405
will be removed in 0.25. Use ``min_impurity_decrease`` instead.
1404
1406
1405
1407
bootstrap : boolean, optional (default=False)
1406
- Whether bootstrap samples are used when building trees.
1408
+ Whether bootstrap samples are used when building trees. If False, the
1409
+ whole datset is used to build each tree.
1407
1410
1408
1411
oob_score : bool, optional (default=False)
1409
1412
Whether to use out-of-bag samples to estimate
@@ -1664,7 +1667,8 @@ class ExtraTreesRegressor(ForestRegressor):
1664
1667
will be removed in 0.25. Use ``min_impurity_decrease`` instead.
1665
1668
1666
1669
bootstrap : boolean, optional (default=False)
1667
- Whether bootstrap samples are used when building trees.
1670
+ Whether bootstrap samples are used when building trees. If False, the
1671
+ whole datset is used to build each tree.
1668
1672
1669
1673
oob_score : bool, optional (default=False)
1670
1674
Whether to use out-of-bag samples to estimate the R^2 on unseen data.
0 commit comments