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 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Don Mathis
2018-5-30
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Gaussian Process Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!