After you choose a particular type of model to train, for example a decision tree or a support vector machine (SVM), you can tune your model by selecting different advanced options. For example, you can change the minimum leaf size of a decision tree or the box constraint of an SVM. Some of these options are internal parameters of the model, or hyperparameters, that can strongly affect its performance. Instead of manually selecting these options, you can use hyperparameter optimization within the Regression Learner app to automate the selection of hyperparameter values. For a given model type, the app tries different combinations of hyperparameter values by using an optimization scheme that seeks to minimize the model mean squared error (MSE), and returns a model with the optimized hyperparameters. You can use the resulting model as you would any other trained model.
Note
Because hyperparameter optimization can lead to an overfitted model, the recommended approach is to create a separate test set before importing your data into the Regression Learner app. After you train your optimizable model, you can export it from the app and see how it performs on your test set. For an example, see Train Regression Model Using Hyperparameter Optimization in Regression Learner App.
To perform hyperparameter optimization in Regression Learner, follow these steps:
Choose a model type and decide which hyperparameters to optimize. See Select Hyperparameters to Optimize.
Note
Hyperparameter optimization is not supported for linear regression models.
(Optional) Specify how the optimization is performed. For more information, see Optimization Options.
Train your model. Use the Minimum MSE Plot to track the optimization results.
Inspect your trained model. See Optimization Results.
In the Regression Learner app, in the Model Type section of the Regression Learner tab, click the arrow to open the gallery. The gallery includes optimizable models that you can train using hyperparameter optimization.
After you select an optimizable model, you can choose which of its hyperparameters you want to optimize. In the Model Type section, select Advanced > Advanced. The app opens a dialog box in which you can select Optimize check boxes for the hyperparameters that you want to optimize. Under Values, specify the fixed values for the hyperparameters that you do not want to optimize or that are not optimizable.
This table describes the hyperparameters that you can optimize for each type of model and the search range of each hyperparameter. It also includes the additional hyperparameters for which you can specify fixed values.
Model | Optimizable Hyperparameters | Additional Hyperparameters | Notes |
---|---|---|---|
Optimizable
Tree![]() |
|
| For more information, see Advanced Regression Tree Options. |
Optimizable
SVM![]() |
|
For more information, see Advanced SVM Options. | |
Optimizable
GPR![]() |
|
|
For more information, see Advanced Gaussian Process Regression Options. |
Optimizable
Ensemble![]() |
|
For more information, see Advanced Ensemble Options. |
By default, the Regression Learner app performs hyperparameter tuning by using Bayesian optimization. The goal of Bayesian optimization, and optimization in general, is to find a point that minimizes an objective function. In the context of hyperparameter tuning in the app, a point is a set of hyperparameter values, and the objective function is the loss function, or the mean squared error (MSE). For more information on the basics of Bayesian optimization, see Bayesian Optimization Workflow.
You can specify how the hyperparameter tuning is performed. For example, you can change the optimization method to grid search or limit the training time. On the Regression Learner tab, in the Model Type section, select Advanced > Optimizer Options. The app opens a dialog box in which you can select optimization options.
This table describes the available optimization options and their default values.
Option | Description |
---|---|
Optimizer | The optimizer values are:
|
Acquisition function | When the app performs Bayesian optimization for hyperparameter tuning, it uses the acquisition function to determine the next set of hyperparameter values to try. The acquisition function values are:
For details on how these acquisition functions work in the context of Bayesian optimization, see Acquisition Function Types. |
Iterations | Each iteration corresponds to a combination of
hyperparameter values that the app tries. When you use
Bayesian optimization or random search, specify a positive
integer that sets the number of iterations. The default
value is When you use grid search, the app ignores the Iterations value and evaluates the loss at every point in the entire grid. You can set a training time limit to stop the optimization process prematurely. |
Training time limit | To set a training time limit, select this option and set the Maximum training time in seconds option. By default, the app does not have a training time limit. |
Maximum training time in seconds | Set the training time limit in seconds as a positive real
number. The default value is 300 . The run
time can exceed the training time limit because this limit does
not interrupt an iteration evaluation. |
Number of grid divisions | When you use grid search, set a positive integer as the
number of values the app tries for each numeric hyperparameter.
The app ignores this value for categorical hyperparameters. The
default value is 10 . |
After specifying which model hyperparameters to optimize and setting any additional optimization options (optional), train your optimizable model. On the Regression Learner tab, in the Training section, click Train. The app creates a Minimum MSE Plot that it updates as the optimization runs.
Note
When you train an optimizable model, the app disables the Use Parallel button. After the training is complete, the app makes the button available again when you select a nonoptimizable model. The button is off by default.
The minimum mean squared error (MSE) plot displays the following information:
Estimated minimum MSE – Each light blue point corresponds to an estimate of the minimum MSE computed by the optimization process when considering all the sets of hyperparameter values tried so far, including the current iteration.
The estimate is based on an upper confidence interval of the current MSE objective model, as mentioned in the Bestpoint hyperparameters description.
If you use grid search or random search to perform hyperparameter optimization, the app does not display these light blue points.
Observed minimum MSE – Each dark blue point corresponds to the observed minimum MSE computed so far by the optimization process. For example, at the third iteration, the blue point corresponds to the minimum of the MSE observed in the first, second, and third iterations.
Bestpoint hyperparameters – The red square indicates the iteration that corresponds to the optimized hyperparameters. You can find the values of the optimized hyperparameters listed in the upper right of the plot under Optimization Results.
The optimized hyperparameters do not always provide the observed
minimum MSE. When the app performs hyperparameter tuning by using
Bayesian optimization (see Optimization Options for
a brief introduction), it chooses the set of hyperparameter values that
minimizes an upper confidence interval of the MSE objective model,
rather than the set that minimizes the MSE. For more information, see
the
'Criterion','min-visited-upper-confidence-interval'
name-value pair argument of bestPoint
.
Minimum error hyperparameters – The yellow point indicates the iteration that corresponds to the hyperparameters that yield the observed minimum MSE.
For more information, see the
'Criterion','min-observed'
name-value pair
argument of bestPoint
.
If you use grid search to perform hyperparameter optimization, the Bestpoint hyperparameters and the Minimum error hyperparameters are the same.
Missing points in the plot correspond to NaN
minimum MSE
values.
When the app finishes tuning model hyperparameters, it returns a model trained with the optimized hyperparameter values (Bestpoint hyperparameters). The model metrics, displayed plots, and exported model correspond to this trained model with fixed hyperparameter values.
To inspect the optimization results of a trained optimizable model, select the model in the History list and look at the Current Model pane.
The Current Model pane includes these sections:
Results – Shows the performance of the optimizable model. See View Model Statistics in Current Model Window
Model Type – Displays the type of optimizable model and lists any fixed hyperparameter values
Optimized Hyperparameters – Lists the values of the optimized hyperparameters
Hyperparameter Search Range – Displays the search ranges for the optimized hyperparameters
Optimizer Options – Shows the selected optimizer options
When you perform hyperparameter tuning using Bayesian optimization and you export
a trained optimizable model to the workspace as a structure, the structure includes
a BayesianOptimization
object in the
HyperParameterOptimizationResult
field. The object contains
the results of the optimization performed in the app.
When you generate MATLAB® code from a trained optimizable model, the generated code uses the fixed and optimized hyperparameter values of the model to train on new data. The generated code does not include the optimization process. For information on how to perform Bayesian optimization when you use a fit function, see Bayesian Optimization Using a Fit Function.