https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/suggestions/SUGGESTION_ID
Retrieves information about a Suggestion.
Request Method: GET
Parameters
This endpoint takes no parameters.
Response
Suggestion object.
Example Request
suggestion = conn.experiments(EXPERIMENT_ID).suggestions(SUGGESTION_ID).fetch()
SUGGESTION=`curl -s -X GET https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/suggestions/SUGGESTION_ID -u "$SIGOPT_API_TOKEN":`
Suggestion suggestion = new Experiment(EXPERIMENT_ID).suggestions(SUGGESTION_ID).fetch().call();
Response
{
"assignments": {
"degree": 2,
"gamma": 3.6,
"kernel": "rbf"
},
"created": 1414800000,
"deleted": null,
"experiment": "1",
"id": "1",
"metadata": null,
"object": "suggestion",
"state": "closed"
}