How to specify search space #159
-
Hello FLAML team, I have a few questions about self-specified estimator's params and self-specified search space:
Thank you very much! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @hanhanwu, You can specify the parameters and also the hyperparameter search space of an estimator by adding a customized learner. If there are multiple estimators, you can just specify the search space for each one of them and add each of the estimators to the Please find guidance on how to do them in this tutorial: FLAML with different levels of customization. |
Beta Was this translation helpful? Give feedback.
Hi @hanhanwu,
You can specify the parameters and also the hyperparameter search space of an estimator by adding a customized learner. If there are multiple estimators, you can just specify the search space for each one of them and add each of the estimators to the
estimator_list
after calling theadd_learner(..)
function of the AutoML instance.Please find guidance on how to do them in this tutorial: FLAML with different levels of customization.
You can find a code example in the following notebooks: https://github.com/microsoft/FLAML/blob/main/notebook/flaml_automl.ipynb (Section 3. Customized Learner).