Metric Evaluation Object

The value and other information associated with a metric for an observation. Optionally, a metric evaluation can have a standard deviation (value_stddev) that reflects the noise in your measurement. If your trial has no noise, or is deterministic, you should omit the value_stddev parameter to ensure that you do not receive the same Suggestions multiple times.

Fields

KeyTypeValue

name

string

A user-specified name for this metric.

value

float

The value that the metric took during the observation.

value_stddev

float

The standard deviation of the metric observed during the observation.

Example

{
  "name": "Profit",
  "object": "metric_evaluation",
  "value": 10000,
  "value_stddev": 3.6393680770155687
}

Last updated