Create Dataset
POST/api/2/auto_eval/dataset/create
Create a Dataset, such as application traces. Currently limited to a maximum size of 100MB. At least one of 'input', 'output' and 'ground_truth' columns are required.
Request
- application/json
Body
Human-readable name for the dataset, if one exists.
Human-readable description of the dataset, if one exists.
PseudoLabel job fields.
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
dataset
object
required
The columns present in the latest DatasetFile for this dataset
id
object
required
Human-readable name for the dataset, if one exists.
Human-readable description of the dataset, if one exists.
ownerUserId
object
required
Possible values: >= -9223372036854776000
and <= 9223372036854776000
Possible values: >= -9223372036854776000
and <= 9223372036854776000
The status of the latest general pseudo-labeling job for the dataset
columns
object[]
required
The columns present in the latest DatasetFile for this dataset
id
object
required
Index of the column within the dataset file.
Possible values: >= -9223372036854776000
and <= 9223372036854776000
The literal name for the column.
{
"dataset": {
"id": {
"value": "string"
},
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"name": "string",
"description": "string",
"ownerUserId": {
"value": "string"
},
"numRows": 0,
"numCols": 0,
"initializationStatus": "string",
"initializationError": "string",
"labelingStatus": "string",
"columns": [
{
"id": {
"value": "string"
},
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"index": 0,
"literalName": "string",
"dtype": "string"
}
]
}
}