@@ -1298,6 +1298,9 @@ class RandomForestClassifier(ForestClassifier):
1298
1298
Provide a callable with signature `metric(y_true, y_pred)` to use a
1299
1299
custom metric. Only available if `bootstrap=True`.
1300
1300
1301
+ For an illustration of out-of-bag (OOB) error estimation, see the example
1302
+ :ref:`sphx_glr_auto_examples_ensemble_plot_ensemble_oob.py`.
1303
+
1301
1304
n_jobs : int, default=None
1302
1305
The number of jobs to run in parallel. :meth:`fit`, :meth:`predict`,
1303
1306
:meth:`decision_path` and :meth:`apply` are all parallelized over the
@@ -1709,6 +1712,9 @@ class RandomForestRegressor(ForestRegressor):
1709
1712
Provide a callable with signature `metric(y_true, y_pred)` to use a
1710
1713
custom metric. Only available if `bootstrap=True`.
1711
1714
1715
+ For an illustration of out-of-bag (OOB) error estimation, see the example
1716
+ :ref:`sphx_glr_auto_examples_ensemble_plot_ensemble_oob.py`.
1717
+
1712
1718
n_jobs : int, default=None
1713
1719
The number of jobs to run in parallel. :meth:`fit`, :meth:`predict`,
1714
1720
:meth:`decision_path` and :meth:`apply` are all parallelized over the
@@ -2054,6 +2060,9 @@ class ExtraTreesClassifier(ForestClassifier):
2054
2060
Provide a callable with signature `metric(y_true, y_pred)` to use a
2055
2061
custom metric. Only available if `bootstrap=True`.
2056
2062
2063
+ For an illustration of out-of-bag (OOB) error estimation, see the example
2064
+ :ref:`sphx_glr_auto_examples_ensemble_plot_ensemble_oob.py`.
2065
+
2057
2066
n_jobs : int, default=None
2058
2067
The number of jobs to run in parallel. :meth:`fit`, :meth:`predict`,
2059
2068
:meth:`decision_path` and :meth:`apply` are all parallelized over the
@@ -2449,6 +2458,9 @@ class ExtraTreesRegressor(ForestRegressor):
2449
2458
Provide a callable with signature `metric(y_true, y_pred)` to use a
2450
2459
custom metric. Only available if `bootstrap=True`.
2451
2460
2461
+ For an illustration of out-of-bag (OOB) error estimation, see the example
2462
+ :ref:`sphx_glr_auto_examples_ensemble_plot_ensemble_oob.py`.
2463
+
2452
2464
n_jobs : int, default=None
2453
2465
The number of jobs to run in parallel. :meth:`fit`, :meth:`predict`,
2454
2466
:meth:`decision_path` and :meth:`apply` are all parallelized over the
0 commit comments