Define and Set Up Parameter Space
Last updated
Last updated
You can define the parameter space for any SigOpt Experiment using four types of parameters: double, integers, categorical, and grid value parameters. Each of the parameters is defined as its own and the entire parameter space is defined as a list of Parameter objects. You can define up to 100 parameters.
A continuous parameter, also referred to as double
, can take on any value between the minimum and maximum values specified by the bounds.
It is also possible to have the optimizer search any continuous parameter in a log space by invoking logarithmic transformation. SigOpt assumes base 10 when applying the transformation.
An integer parameter is similar to a double parameter, but it can only take on integer values in-between the bounds.
A categorical parameter is a finite set of options to choose from. Usually the categorical values have non-ordinal relationship.
Limitations: A SigOpt Experiment can only have a total of 10 categorical values across all categorical parameters.
Grid values are any continuous and integer parameter being discretized into a set of values. Grid values can be any set of numerical values and do not need to be evenly spaced.
Grid values can be used in conjunction with log transformation for parameters that should be searched in the log space.
Conditional parameters allow you to define dependencies between parameters. When a dependency is satisfied, SigOpt will recognize this and provide parameter assignments for dependent parameters. Here's how to define conditional parameters in your Experiment:
In the above example, SigOpt will provide parameter assignments for layer_2_num_filters
when num_conv_layers == 2
or num_conv_layers == 3
.
When defining a continuous parameter, it is possible to specify it with a prior distribution of the likely "good" parameter values. When the prior belief is set for a parameter, SigOpt is more likely to generate suggestions from regions of this parameter with high probability density (pdf) value. For more information on how to define these distributions visit the following .