Queued Suggestion List
https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/queued_suggestions
Request Method: GET
Name | Type | Required? | Description |
---|---|---|---|
after | string | N | Optional. Returns items with ids after after . |
before | string | N | Optional. Returns items with ids before before . |
limit | int | N | Optional. Limit the number of items returned. The maximum value is 100. |
Python
Bash
Java
queued_suggestions = conn.experiments(EXPERIMENT_ID).queued_suggestions().fetch()
QUEUED_SUGGESTIONS=`curl -s -X GET https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/queued_suggestions -u "$SIGOPT_API_TOKEN":`
Pagination<QueuedSuggestion> queuedSuggestions = new Experiment(EXPERIMENT_ID).queuedSuggestions().list().call();
Last modified 1yr ago