Hyperparameter Optimization Flashcards
(True or false) hyperparameter optimization (HPO) is a black-box optimization problem.
True
R package that provides different tuning approaches
mlr3 tuning
The relevant parameter set can be constructed / specified using the ___ command.
ps()
All the details for the tuning procedure need to be combined in a ____ .
Tuning instance
It specifies the method that is used for optimizing the tuning instance.
Tuner
It defines the number of (equidistant) values per configurable parameter that are to be tried during the tuning procedure.
Resolution
To avoid overfitting, tuning itself should be performed during the ___.
Training procedure
A mixture of learner and tuner
Autotuner
(True or false) “irace” returns the elite configurations and can be used for tuning.
True
Finding a good hyperparameter configuration for
the problem at hand.
Hyperparameter optimization
Which are the two main types of baseline optimizers?
Grid search and random search
Baseline in which a number of values is selected for each parameter and evaluate all possible combinations.
Grid search
Baseline in which each parameter is sampled uniformly at random.
Random search
Evaluating novel configurations (very) different to previous ones.
Exploration
Two types of stochastic approaches for hyperparameter optimization.
Simulated Annealing and CMA-ES