fitrgp hyperparameter optimization for noisy functions
Afficher commentaires plus anciens
hyperparameter optimization for fitrgp hyperparameters in matlab there is {'BasisFunction','KernelFunction','KernelScale','Sigma','Standardize'} that can be optimized. However, in noisy cases we have a sigma parameter (different than kernel sigma) added to the diagonal of the kernel based on Rasmussen, 2006. How can I specify or optimize that sigma besides sigmaf and sigmal which are the kernel hyperparameters?
Réponses (2)
Aditya Patil
le 21 Sep 2020
0 votes
From my understanding, you want to set the noise variance(
) parameter mentioned in the book. You can do so using 'Sigma' name value pair. Note that 'Sigma' sets the standard deviation. You can find more about it in the documentation here
Hyunjung Lee
le 4 Déc 2020
The nugget or jitter can be "addressed" by adding a small number to the main diagonal of the correlation matrix.
I agree with Aditya Patil. In fitrgp, that can be done via 'Sigma'. For example,
tau=1e-3; %some small value
gpmodel=fitrgp(X,y,'FitMethod','none','Sigma',tau);
By setting 'FitMethod' to 'none', the nugget term remains as the value you assign.
Catégories
En savoir plus sur Gaussian Process Regression dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!