Suggestion Object

/experiments/EXPERIMENT_ID/suggestions/SUGGESTION_ID

A representation of the parameters that SigOpt has suggested. Contains a list of parameters and their suggested values.

Fields

KeyTypeValue

assignments

The parameter values that SigOpt recommends you try next.

created

int

The timestamp (in seconds since epoch) that this suggestion was created.

experiment

string

The id of the Experiment for this suggestion.

id

string

A unique ID for this suggestion.

metadata

Optional user-provided object. See Using Metadata for more information.

state

string

open by default, closed when an Observation reports on this suggestion.

Supported Endpoints

Example

{
  "assignments": {
    "degree": 2,
    "gamma": 3.6,
    "kernel": "rbf"
  },
  "created": 1414800000,
  "deleted": null,
  "experiment": "1",
  "id": "1",
  "metadata": null,
  "object": "suggestion",
  "state": "closed"
}

Last updated