oobLoss
R2026bOut-of-bag error for bagged regression ensemble model
Description
specifies additional options using one or more name-value arguments. For example,
you can specify the indices of the weak learners to use for calculating the error,
the aggregation level for the output, and the loss function.L = oobLoss(ens,Name=Value)
Examples
Compute the out-of-bag error for the carsmall data.
Load the carsmall data set and select engine displacement, horsepower, and vehicle weight as predictors.
load carsmall
X = [Displacement Horsepower Weight];Train an ensemble of bagged regression trees.
ens = fitrensemble(X,MPG,'Method','Bag');
Find the out-of-bag error.
L = oobLoss(ens)
L = 16.9551
Input Arguments
Bagged regression ensemble model, specified as a RegressionBaggedEnsemble model object trained with fitrensemble.
Name-Value Arguments
Specify optional pairs of arguments as
Name1=Value1,...,NameN=ValueN, where Name is
the argument name and Value is the corresponding value.
Name-value arguments must appear after other arguments, but the order of the
pairs does not matter.
Before R2021a, use commas to separate each name and value, and enclose
Name in quotes.
Example: oobLoss(ens,Learners=[1 2 3 5],UseParallel="auto")
specifies to use the first, second, third, and fifth learners in the ensemble, and
to perform computations in parallel.
Indices of the weak learners in the ensemble to use with
oobLoss, specified as a
vector of positive integers in the range
[1:ens.NumTrained]. By default,
the function uses all learners.
Example: Learners=[1 2 4]
Data Types: single | double
Loss function, specified as "mse" (mean squared error) or as a
function handle. If you pass a function handle fun, oobLoss calls it as
fun(Y,Yfit,W)
where Y, Yfit, and W are
numeric vectors of the same length.
Yis the observed response.Yfitis the predicted response.Wis the observation weights.
The returned value of fun(Y,Yfit,W) must be a scalar.
Example: LossFun="mse"
Example: LossFun=@Lossfun
Data Types: char | string | function_handle
Aggregation level for the output, specified as "ensemble",
"individual", or "cumulative".
| Value | Description |
|---|---|
"ensemble" | The output is a scalar value for the entire ensemble. |
"individual" | The output is a vector with one element per trained learner. |
"cumulative" | The output is a vector in which element J is
obtained by using learners 1:J from the input
list of learners. |
Example: Mode="individual"
Data Types: char | string
Option to perform computations in parallel using a parallel pool of workers, specified as one of these values:
"off"— Run in serial on the MATLAB® client."auto"— Use a parallel pool if one is open or if MATLAB can automatically create one. If a parallel pool is not available, run in serial on the MATLAB client."on"— Use a parallel pool if one is open or if MATLAB can automatically create one. If a parallel pool is not available, throw an error.
If you do not have a parallel pool open and automatic pool creation is enabled, MATLAB opens a pool using the default cluster profile. To use a parallel pool to run computations in MATLAB, you must have Parallel Computing Toolbox™. For more information, see Run MATLAB Functions with Automatic Parallel Support (Parallel Computing Toolbox).
Before R2026b: To run in
parallel, set UseParallel to
true (1).
Example: UseParallel="auto"
Data Types: char | string
More About
Bagging, which stands for “bootstrap aggregation”, is a
type of ensemble learning. To bag a weak learner such as a decision tree on a data set,
fitrensemble generates many bootstrap
replicas of the data set and grows decision trees on these replicas. fitrensemble obtains each bootstrap replica by randomly selecting
N observations out of N with replacement, where
N is the data set size. To find the predicted response of a trained
ensemble, predict takes an average over predictions from
individual trees.
Drawing N out of N observations
with replacement omits on average 37% (1/e) of
observations for each decision tree. These are "out-of-bag" observations.
For each observation, oobLoss estimates the out-of-bag
prediction by averaging over predictions from all trees in the ensemble
for which this observation is out of bag. It then compares the computed
prediction against the true response for this observation. It calculates
the out-of-bag error by comparing the out-of-bag predicted responses
against the true responses for all observations used for training.
This out-of-bag average is an unbiased estimator of the true ensemble
error.
Extended Capabilities
The oobLoss function has automatic parallel support. To run
computations in parallel, set the UseParallel argument to
"on" or "auto".
For more information, see Run MATLAB Functions with Automatic Parallel Support (Parallel Computing Toolbox).
Version History
Introduced in R2012bThe UseParallel name-value argument now accepts
"off", "auto", or "on" values
instead of true or false. This change gives you more
control over when to use a parallel pool for parallel execution. Specifying the
UseParallel name-value argument as true or
false is not recommended.
This table shows how to update your code depending on your goal.
| Goal | Not Recommended | Recommended |
|---|---|---|
Write code that runs on the MATLAB client. |
UseParallel=false
|
UseParallel="off"
|
| Write portable code that runs on a parallel pool and, if a pool is not available, runs on the MATLAB client. |
UseParallel=true
|
UseParallel="auto"
|
| Write code that runs on a parallel pool and errors if a pool is not available. | N/A |
UseParallel="on"
|
There are no plans to remove support for the true or
false values.
See Also
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)