@@ -808,13 +808,12 @@ class RandomForestClassifier(ForestClassifier):
808
808
If None then unlimited number of leaf nodes.
809
809
810
810
min_impurity_decrease : float, optional (default=0.)
811
- Threshold for early stopping in tree growth. A node will be split
812
- if the impurity decrease due to the splitting, is greater than or equal
813
- to this value. If not, the node is marked as a leaf.
811
+ A node will be split if this split induces a decrease of the impurity
812
+ greater than or equal to this value.
814
813
815
- The impurity decrease due to a potential split is the difference in the
816
- parent node's impurity and the weighted average of impurities of the
817
- node's children, as given by this potential split.
814
+ The impurity decrease is the difference in the parent node's impurity
815
+ and the weighted average of impurities of the node's children, as
816
+ given by this potential split.
818
817
819
818
The sample counts of each child is used to weigh the impurity of the
820
819
child for averaging the impurity.
@@ -1031,13 +1030,12 @@ class RandomForestRegressor(ForestRegressor):
1031
1030
If None then unlimited number of leaf nodes.
1032
1031
1033
1032
min_impurity_decrease : float, optional (default=0.)
1034
- Threshold for early stopping in tree growth. A node will be split
1035
- if the impurity decrease due to the splitting, is greater than or equal
1036
- to this value. If not, the node is marked as a leaf.
1033
+ A node will be split if this split induces a decrease of the impurity
1034
+ greater than or equal to this value.
1037
1035
1038
- The impurity decrease due to a potential split is the difference in the
1039
- parent node's impurity and the weighted average of impurities of the
1040
- node's children, as given by this potential split.
1036
+ The impurity decrease is the difference in the parent node's impurity
1037
+ and the weighted average of impurities of the node's children, as
1038
+ given by this potential split.
1041
1039
1042
1040
The sample counts of each child is used to weigh the impurity of the
1043
1041
child for averaging the impurity.
@@ -1214,13 +1212,12 @@ class ExtraTreesClassifier(ForestClassifier):
1214
1212
If None then unlimited number of leaf nodes.
1215
1213
1216
1214
min_impurity_decrease : float, optional (default=0.)
1217
- Threshold for early stopping in tree growth. A node will be split
1218
- if the impurity decrease due to the splitting, is greater than or equal
1219
- to this value. If not, the node is marked as a leaf.
1215
+ A node will be split if this split induces a decrease of the impurity
1216
+ greater than or equal to this value.
1220
1217
1221
- The impurity decrease due to a potential split is the difference in the
1222
- parent node's impurity and the weighted average of impurities of the
1223
- node's children, as given by this potential split.
1218
+ The impurity decrease is the difference in the parent node's impurity
1219
+ and the weighted average of impurities of the node's children, as
1220
+ given by this potential split.
1224
1221
1225
1222
The sample counts of each child is used to weigh the impurity of the
1226
1223
child for averaging the impurity.
@@ -1436,13 +1433,12 @@ class ExtraTreesRegressor(ForestRegressor):
1436
1433
If None then unlimited number of leaf nodes.
1437
1434
1438
1435
min_impurity_decrease : float, optional (default=0.)
1439
- Threshold for early stopping in tree growth. A node will be split
1440
- if the impurity decrease due to the splitting, is greater than or equal
1441
- to this value. If not, the node is marked as a leaf.
1436
+ A node will be split if this split induces a decrease of the impurity
1437
+ greater than or equal to this value.
1442
1438
1443
- The impurity decrease due to a potential split is the difference in the
1444
- parent node's impurity and the weighted average of impurities of the
1445
- node's children, as given by this potential split.
1439
+ The impurity decrease is the difference in the parent node's impurity
1440
+ and the weighted average of impurities of the node's children, as
1441
+ given by this potential split.
1446
1442
1447
1443
The sample counts of each child is used to weigh the impurity of the
1448
1444
child for averaging the impurity.
@@ -1605,13 +1601,12 @@ class RandomTreesEmbedding(BaseForest):
1605
1601
If None then unlimited number of leaf nodes.
1606
1602
1607
1603
min_impurity_decrease : float, optional (default=0.)
1608
- Threshold for early stopping in tree growth. A node will be split
1609
- if the impurity decrease due to the splitting, is greater than or equal
1610
- to this value. If not, the node is marked as a leaf.
1604
+ A node will be split if this split induces a decrease of the impurity
1605
+ greater than or equal to this value.
1611
1606
1612
- The impurity decrease due to a potential split is the difference in the
1613
- parent node's impurity and the weighted average of impurities of the
1614
- node's children, as given by this potential split.
1607
+ The impurity decrease is the difference in the parent node's impurity
1608
+ and the weighted average of impurities of the node's children, as
1609
+ given by this potential split.
1615
1610
1616
1611
The sample counts of each child is used to weigh the impurity of the
1617
1612
child for averaging the impurity.
0 commit comments