For Bayesian optimisation performed by the function "bayesobt", how can I change the covariance function? and how to change its hyper-parameters, i.e. Length scale and signal variance?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
For Bayesian optimisation performed by the function "bayesobt", how can I change the covariance function? and how to change its hyper-parameters, i.e. Length scale and signal variance?
0 comentarios
Respuestas (1)
Don Mathis
el 30 de Mayo de 2018
You can change the KernelFunction used in the GP that models the objective function. To do that, you will need to edit the source code. Make sure you have write permissions on your MATLAB files, or if using Windows, start MATLAB by right-clicking on it and choosing "Run as administrator".
In MATLAB, type
edit BayesianOptimization.fitObjectiveFcnGP
Then modify the 3 calls to 'iFitrgpRobust' in that function to pass something other than 'ardmatern52' as the 'KernelFunction' argument. Refer to the documentation for 'fitrgp' for options.
The hyperparameters of the GP model are determined during fitting of the model. That's what makes GP models Bayesian.
0 comentarios
Ver también
Categorías
Más información sobre Gaussian Process Regression en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!