Project Experiment List
https://api.staging.sigopt.com/v1/clients/CLIENT_ID/projects/PROJECT_ID/experiments
Retrieves a Pagination of all Experiment objects for this project.
Request Method: GET
Parameters
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. |
Response
Pagination object.Example Request
Response
{
"count": 2,
"data": [
{
"client": "1",
"conditionals": [],
"created": 1414800000,
"development": false,
"id": "2",
"linear_constraints": [],
"metadata": null,
"metric": {
"name": "Accuracy",
"object": "metric",
"objective": "maximize",
"strategy": "optimize",
"threshold": null
},
"metrics": [
{
"name": "Accuracy",
"object": "metric",
"objective": "maximize",
"strategy": "optimize",
"threshold": null
}
],
"name": "Classifier Accuracy",
"num_solutions": null,
"object": "experiment",
"observation_budget": 20,
"parallel_bandwidth": 1,
"parameters": [
{
"bounds": {
"max": 1,
"min": 0.001,
"object": "bounds"
},
"categorical_values": null,
"conditions": {},
"default_value": null,
"name": "gamma",
"object": "parameter",
"precision": null,
"prior": null,
"transformation": null,
"tunable": true,
"type": "double"
}
],
"progress": {
"best_observation": null,
"first_observation": null,
"last_observation": null,
"object": "progress",
"observation_budget_consumed": 0,
"observation_count": 0
},
"project": "classification-models",
"state": "active",
"type": "offline",
"updated": 1446422400,
"user": null
}
],
"object": "pagination",
"paging": {
"after": "CgIQAg",
"before": "CgIQAg"
}
}