Suggestion Delete
https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/suggestions/SUGGESTION_ID
Request Method: DELETE
This endpoint takes no parameters.
This endpoint returns nothing.
Python
Bash
Java
suggestion = conn.experiments(EXPERIMENT_ID).suggestions(SUGGESTION_ID).delete()
SUGGESTION=`curl -s -X DELETE https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/suggestions/SUGGESTION_ID -u "$SIGOPT_API_TOKEN":`
new Experiment(EXPERIMENT_ID).suggestions(SUGGESTION_ID).delete().call();
Last modified 1yr ago