Skip to content
Advertisement

How to specify Search Space in Auto-Sklearn

I know how to specify Feature Selection methods and the list of the Algorithms used in Auto-Sklearn 2.0

JavaScript

I know that Auto-Sklearn use Bayesian Optimisation SMAC

but I would like to specify the HyperParameters in AutoSklearn

For example, I want to specify random_forest with Estimator = 1000 only or MLP with HiddenLayerSize = 100 only.

How to do that?

Advertisement

Answer

You need to edit the config as specified in the docs.

In your case it would be something like:

JavaScript
Advertisement