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

Key
Type
Value

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

id

string

A unique ID for this suggestion.

metadata

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

state

string

Supported Endpoints

Method
URI
Description

POST

Suggestion Create

GET

Suggestion Detail

GET

Suggestion List

PUT

Suggestion Update

DELETE

Suggestion Delete

DELETE

Suggestion List Delete

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