I agree that the first quote contradicts itself. Perhaps it would be better:
Best results are also often achieved with fully developed trees (max_depth = None and min_samples_split = 1). Keep in mind that these values ββare usually not guaranteed to be optimal. The best parameter values ββshould always be cross-checked.
The second quote compares the default bootstrap parameter value for random forests ( RandomForestClassifier and RandomForestRegression ) for extremely randomized trees, as implemented in the ExtraTreesClassifier and ExtraTreesRegressor . The following may be more explicit:
Also, note that bootstrap patterns are used by default in random forests (bootstrap = True), and to create additional trees, the default strategy is to use the original dataset (bootstrap = False).
Please do not hesitate to send PR with correction if you find these wordings more clearly.
source share