bayesopt関数で使われているARD Matérn 5/2 カーネルのハイパーパラメータは逐次最適化されているのでしょうか?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Munekazu Horikoshi
le 8 Déc 2021
Réponse apportée : Xiaoxing Wang
le 8 Fév 2024
実験パラメータをbayesopt関数を用いて最適化したいのですが、そこで使われているARD Matérn 5/2 カーネルのハイパーパラメータがいつ最適化されているのか知りたいです。また、ハイパーパラメータが逐次最適化されている場合、そのハイパーパラメータの値を知りたいのですが出力可能でしょうか?
0 commentaires
Réponse acceptée
Xiaoxing Wang
le 8 Fév 2024
可能です。
カスタム出力関数を定義する必要があります。
上のリンクにある例題で言えば、以下の修正を加えることでカーネル関数のハイパーパラメーターを確認できます。
case 'iteration'
if results.MinObjective < 0.13
stop = true;
end
figure(h)
tms = results.IterationTimeTrace;
plot(1:numel(tms),tms','x-')
xlabel('Iteration Number')
ylabel('Time for Iteration')
title('Time for Each Iteration')
drawnow
%* カーネル関数のハイパーパラメーター
gp = results.ObjectiveFcnModel.Model;
kparams = gp.KernelInformation.KernelParameters;
また、グローバル変数を利用して、出力関数が呼ばれるたびに、ハイパーパラメーターを(毎回)保存することも可能です。
以下のリンクもご参考ください。
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur モデルの作成と評価 dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!