Links

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
The id of the Experiment for this suggestion.
id
string
A unique ID for this suggestion.
metadata
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

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"
}