Observation Create
Last updated
Last updated
https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/observations
Creates a new Observation. Every observation reports on a set of parameters which can come from a Suggestion or manually specified Assignments.
Request Method: POST
Name | Type | Required? | Description |
---|---|---|---|
These parameters should no longer be used because there are better alternatives.
Name | Type | Required? | Description |
---|---|---|---|
Observation object.
assignments
N
Manually specify values that the parameters held during this trial. You must specify exactly one value for each parameter in the experiment. Prefer using suggestion
.
failed
boolean
N
A boolean indicating whether this observation failed for some reason. SigOpt takes this into consideration when optimizing. It is invalid for both failed
to be true
, and any of value
, value_stddev
, or values
to be present. The default value is false
.
metadata
N
Optional user-provided object. See Using Metadata for more information.
suggestion
string
N
The id
of the Suggestion you are reporting on. Preferred over assignments
.
values
array<
Metric Evaluation
>
N
An array of Metric Evaluation objects. For experiments with more than one Metric, you must use this instead of value
and value_stddev
.
value
float
N
The observed metric value from this trial.
value_stddev
float
N
The standard deviation in value
that was observed in this trial.