Parameter Object
A parameter is a variable that can affect a single experiment trial. SigOpt will suggest values for your parameters in order to optimize the relevant objective. double
and int
parameters represent numeric values. categorical
parameters take on one of a fixed list of values (similar to an enum in many programming languages).
Fields
bounds
A range of values that a parameter can occupy. Only applicable for parameters of type double
or int
.
categorical_values
conditions
default_value
string or number
Used to replace missing parameter assignments in parameters added after initial experiment creation.
grid
array<double>
name
string
A user-specified name for this parameter.
precision
int
Only applicable for parameters of type double
. The number of decimal places when displaying on the web dashboard.
prior
transformation
string
type
string
The type of this parameter. Must be one of double
, int
, or categorical
.
Examples
Double Parameter
Integer Parameter
Categorical Parameter
Last updated