Project Create
https://api.sigopt.com/v1/clients/CLIENT_ID/projects
Creates a new Project.
Request Method: POST
Parameters
Name | Type | Required? | Description |
---|---|---|---|
id | string | Y | A user-specified id for this project. This id will be used to access the project from our API. Only lowercase letters, numbers, hyphens (-), underscores (_) and periods (.) are permitted. |
name | string | Y | A user-specified name for this project. |
metadata | Metadata | N | Optional user-provided object. See Using Metadata for more information. |
Response
Project object.Example Request
Response
{
"client": "1",
"created": 1414800000,
"experiment_count": 1,
"id": "classification-models",
"metadata": null,
"name": "Classification Models",
"object": "project",
"training_run_count": 2,
"updated": 1446422400,
"user": "1234"
}