@@ -797,8 +797,7 @@ class RandomForestClassifier(ForestClassifier):
797
797
min_weight_fraction_leaf : float, optional (default=0.)
798
798
The minimum weighted fraction of the sum total of weights (of all
799
799
the input samples) required to be at a leaf node. Samples have
800
- equal weight when sample_weight is not provided, but
801
- min_samples_leaf is more efficient.
800
+ equal weight when sample_weight is not provided.
802
801
803
802
max_leaf_nodes : int or None, optional (default=None)
804
803
Grow trees with ``max_leaf_nodes`` in best-first fashion.
@@ -1004,8 +1003,7 @@ class RandomForestRegressor(ForestRegressor):
1004
1003
min_weight_fraction_leaf : float, optional (default=0.)
1005
1004
The minimum weighted fraction of the sum total of weights (of all
1006
1005
the input samples) required to be at a leaf node. Samples have
1007
- equal weight when sample_weight is not provided, but
1008
- min_samples_leaf is more efficient.
1006
+ equal weight when sample_weight is not provided.
1009
1007
1010
1008
max_leaf_nodes : int or None, optional (default=None)
1011
1009
Grow trees with ``max_leaf_nodes`` in best-first fashion.
@@ -1171,8 +1169,7 @@ class ExtraTreesClassifier(ForestClassifier):
1171
1169
min_weight_fraction_leaf : float, optional (default=0.)
1172
1170
The minimum weighted fraction of the sum total of weights (of all
1173
1171
the input samples) required to be at a leaf node. Samples have
1174
- equal weight when sample_weight is not provided, but
1175
- min_samples_leaf is more efficient.
1172
+ equal weight when sample_weight is not provided.
1176
1173
1177
1174
max_leaf_nodes : int or None, optional (default=None)
1178
1175
Grow trees with ``max_leaf_nodes`` in best-first fashion.
@@ -1377,8 +1374,7 @@ class ExtraTreesRegressor(ForestRegressor):
1377
1374
min_weight_fraction_leaf : float, optional (default=0.)
1378
1375
The minimum weighted fraction of the sum total of weights (of all
1379
1376
the input samples) required to be at a leaf node. Samples have
1380
- equal weight when sample_weight is not provided, but
1381
- min_samples_leaf is more efficient.
1377
+ equal weight when sample_weight is not provided.
1382
1378
1383
1379
max_leaf_nodes : int or None, optional (default=None)
1384
1380
Grow trees with ``max_leaf_nodes`` in best-first fashion.
@@ -1530,8 +1526,7 @@ class RandomTreesEmbedding(BaseForest):
1530
1526
min_weight_fraction_leaf : float, optional (default=0.)
1531
1527
The minimum weighted fraction of the sum total of weights (of all
1532
1528
the input samples) required to be at a leaf node. Samples have
1533
- equal weight when sample_weight is not provided, but
1534
- min_samples_leaf is more efficient.
1529
+ equal weight when sample_weight is not provided.
1535
1530
1536
1531
max_leaf_nodes : int or None, optional (default=None)
1537
1532
Grow trees with ``max_leaf_nodes`` in best-first fashion.
0 commit comments