Get data summary
Get summary of all data present in the training set. This returns the number of data items, the total length of all data, and the labels. This is similar to dataSummary
in ProjectInfoResponse
but allows you to exclude disabled items or items that are still processing.
Authorizations
Path parameters
projectIdintegerRequired
Project ID
Query parameters
includeDisabledbooleanOptional
Whether to include disabled samples. Defaults to true
includeNotProcessedbooleanOptional
Whether to include non-processed samples. Defaults to true
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/data-summary HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200
OK
{
"success": true,
"error": "text",
"dataSummary": {
"labels": [
"text"
],
"dataCount": "Number of files in the training set"
}
}
Last updated
Was this helpful?