Experiment Stopping Criteria
https://api.sigopt.com/v1/experiments/EXPERIMENT_ID/stopping_criteria
Retrieves any possible Stopping Criteria for this experiment. If you are looking for guidance on whether you should stop or continue requesting more observations, you can call this endpoint.
Request Method: GET
This endpoint takes no parameters.
Python
Bash
Java
stopping_criteria = conn.experiments(EXPERIMENT_ID).stopping_criteria().fetch()
STOPPING_CRITERIA=`curl -s -X GET https://api.sigopt.com/v1/clients/EXPERIMENT_ID/stopping_criteria -u "$SIGOPT_API_TOKEN":`
Pagination<StoppingCriteria> stoppingCriteria = new Experiment(EXPERIMENT_ID).stoppingCriteria().list().call();
Last modified 1yr ago