@@ -809,8 +809,7 @@ class RandomForestClassifier(ForestClassifier):
809
809
min_weight_fraction_leaf : float, optional (default=0.)
810
810
The minimum weighted fraction of the sum total of weights (of all
811
811
the input samples) required to be at a leaf node. Samples have
812
- equal weight when sample_weight is not provided, but
813
- min_samples_leaf is more efficient.
812
+ equal weight when sample_weight is not provided.
814
813
815
814
max_leaf_nodes : int or None, optional (default=None)
816
815
Grow trees with ``max_leaf_nodes`` in best-first fashion.
@@ -1022,8 +1021,7 @@ class RandomForestRegressor(ForestRegressor):
1022
1021
min_weight_fraction_leaf : float, optional (default=0.)
1023
1022
The minimum weighted fraction of the sum total of weights (of all
1024
1023
the input samples) required to be at a leaf node. Samples have
1025
- equal weight when sample_weight is not provided, but
1026
- min_samples_leaf is more efficient.
1024
+ equal weight when sample_weight is not provided.
1027
1025
1028
1026
max_leaf_nodes : int or None, optional (default=None)
1029
1027
Grow trees with ``max_leaf_nodes`` in best-first fashion.
@@ -1195,8 +1193,7 @@ class ExtraTreesClassifier(ForestClassifier):
1195
1193
min_weight_fraction_leaf : float, optional (default=0.)
1196
1194
The minimum weighted fraction of the sum total of weights (of all
1197
1195
the input samples) required to be at a leaf node. Samples have
1198
- equal weight when sample_weight is not provided, but
1199
- min_samples_leaf is more efficient.
1196
+ equal weight when sample_weight is not provided.
1200
1197
1201
1198
max_leaf_nodes : int or None, optional (default=None)
1202
1199
Grow trees with ``max_leaf_nodes`` in best-first fashion.
@@ -1407,8 +1404,7 @@ class ExtraTreesRegressor(ForestRegressor):
1407
1404
min_weight_fraction_leaf : float, optional (default=0.)
1408
1405
The minimum weighted fraction of the sum total of weights (of all
1409
1406
the input samples) required to be at a leaf node. Samples have
1410
- equal weight when sample_weight is not provided, but
1411
- min_samples_leaf is more efficient.
1407
+ equal weight when sample_weight is not provided.
1412
1408
1413
1409
max_leaf_nodes : int or None, optional (default=None)
1414
1410
Grow trees with ``max_leaf_nodes`` in best-first fashion.
@@ -1566,8 +1562,7 @@ class RandomTreesEmbedding(BaseForest):
1566
1562
min_weight_fraction_leaf : float, optional (default=0.)
1567
1563
The minimum weighted fraction of the sum total of weights (of all
1568
1564
the input samples) required to be at a leaf node. Samples have
1569
- equal weight when sample_weight is not provided, but
1570
- min_samples_leaf is more efficient.
1565
+ equal weight when sample_weight is not provided.
1571
1566
1572
1567
max_leaf_nodes : int or None, optional (default=None)
1573
1568
Grow trees with ``max_leaf_nodes`` in best-first fashion.
0 commit comments