Observation Delete
https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/observations/OBSERVATION_ID
Request Method: DELETE
This endpoint takes no parameters.
This endpoint returns nothing.
Python
Bash
Java
observation = conn.experiments(EXPERIMENT_ID).observations(OBSERVATION_ID).delete()
OBSERVATION=`curl -s -X DELETE https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/observations/OBSERVATION_ID -u "$SIGOPT_API_TOKEN":`
new Experiment(EXPERIMENT_ID).observations(OBSERVATION_ID).delete().call();
Last modified 7mo ago