Evaluate job result
Get evaluate job result, containing detailed performance statistics for every possible variant of the impulse.
Authorizations
Path parameters
projectIdintegerRequired
Project ID
Query parameters
impulseIdintegerOptional
Impulse ID. If this is unset then the default impulse is used.
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/deployment/evaluate HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200
OK
{
"success": true,
"error": "text",
"result": [
{
"modelType": "int8",
"learnBlockId": 1,
"learnBlockType": "anomaly",
"confusionMatrix": {
"ANY_ADDITIONAL_PROPERTY": {
"ANY_ADDITIONAL_PROPERTY": {
"raw": 1,
"withAnomaly": 1
}
}
},
"trainingLabels": [
"text"
],
"classificationLabels": [
"text"
],
"totalWindowCount": 1,
"totalCorrectWindowCount": {
"raw": 1,
"withAnomaly": 1
},
"accuracy": {
"raw": 1,
"withAnomaly": 1
}
}
]
}
Last updated
Was this helpful?