Why 'OptimizeH​yperparame​ters' in fitcknn doesn't provide the 3D plot as it says in the documentation?

4 views (last 30 days)
Dear all,
do you know how can I get the plot of the objective function model when I run a hyperparameters optimization with two hyperparameters (bayesian as default)?
It seems, from the documentation, that this plot should be generated automatically and indeed this happens if I use the data in the documentation example, but it doesn't with mine.
Thank you in advance,
Marta
  2 Comments
Alan Weiss
Alan Weiss on 25 Jan 2019
We don't know what you did. Please show us your function call and option settings, and then maye we will be able to advise you.
Alan Weiss
MATLAB mathematical toolbox documentation
marta prati
marta prati on 25 Jan 2019
Ok, sorry.
This is the code:
classificationKNN = fitcknn(predictors,response,'OptimizeHyperparameters','all',...
'HyperparameterOptimizationOptions',struct('Kfold',10,'AcquisitionFunctionName',...
'expected-improvement-per-second-plus','MaxObjectiveEvaluations',25));
The only plot I get is this: Capture2.PNG
While, I should get also this type of plot (from documentation):
Capture3.PNG
Thank you very much!
Marta

Sign in to comment.

Answers (1)

Alan Weiss
Alan Weiss on 25 Jan 2019
Thanks for the information. As stated in the HyperparameterOptimizationOptions reference section, ".... If [you set the option to show plots to] true, this field plots the best objective function value against the iteration number. If there are one or two optimization parameters, and if Optimizer is 'bayesopt', then ShowPlots also plots a model of the objective function against the parameters."
In other words, since you are choosing to optimize all hyperparameters, and there are five hyperparameters, then there is no way to give the plot you want. You get that plot when you optimize just one or two hyperparameters.
Alan Weiss
MATLAB mathematical toolbox documentation
  1 Comment
marta prati
marta prati on 25 Jan 2019
Thank you Alan,
I used also only two parameters,but I didn't realized the plot works only for bayesian optimizers.
Now I got it! Thank you again for your help!
Cheers,
Marta

Sign in to comment.

Categories

Find more on Polar Plots in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!