Observation Update
https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/observations/OBSERVATION_ID
Updates an existing Observation.
Request Method: PUT
Parameters
assignments
N
Provide suggestion
or assignments
. Only provide if you want to manually specify values that the parameters held during this trial.
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 value
to be present. The default value is false
.
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
.
Deprecated Parameters
These parameters should no longer be used because there are better alternatives.
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.
Response
Observation object.
Example Request
Last updated