Skip to content
Advertisement

When using the optuna plugin for hydra, can I import the search space from another config file?

I want to hyper-parameter optimize multiple time series forecasting models on the same data. I’m using the Optuna Sweeper plugin for Hydra. The different models have different hyper-parameters and therefore different search spaces. At the moment my config file looks like this:

JavaScript

Now, when I run the main_val.py file with –multirun, I get the optimal hyper-parameters for Ets. Great. But when I want to run the optimization for another model, in this example Theta, I have to manually comment out the search space for Ets and uncomment the search space for Theta. In reality, each model has much more parameters to optimize and I’m working with 10 different models. This makes my config file quite long and confusing and this commenting/uncommenting stuff is both annoying and error-prone.

I would like to import the search space for each model from another yaml file. Is that possible?

I tried the following:

JavaScript

with the file search_spaces/Ets.yaml looking like this:

JavaScript

But I got the error:

JavaScript

Advertisement

Answer

Here are two options:

  1. Use a @package directive
  2. Use a variable interpolation

In detail:

Using an @package directive

An @package directive can be used to place Ets.yaml in the hydra.sweeper.search_space package:

JavaScript

Using a variable interpolation:

A string interpolation can be used to create a reference from hydra.sweeper.search_spaces to the top-level search_spaces config.

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement