Anomaly information
Get information about an anomaly block, such as its dependencies. Use the impulse blocks to find the learnId.
Authorizations
Path parameters
projectIdintegerRequired
Project ID
learnIdintegerRequired
Learn Block ID, use the impulse functions to retrieve the ID
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/training/anomaly/{learnId} HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200
OK
{
"success": true,
"error": "text",
"dependencies": {
"classes": [
"text"
],
"blockNames": [
"text"
],
"featureCount": 1,
"sampleCount": 1
},
"name": "text",
"axes": [
{
"ix": 1,
"label": "text",
"selected": true,
"favourite": true
}
],
"trained": true,
"clusterCount": 1,
"selectedAxes": [
1
],
"minimumConfidenceRating": 1,
"thresholds": [
{
"key": "min_score",
"description": "Score threshold",
"helpText": "Threshold score for bounding boxes. If the score for a bounding box is below this the box will be discarded.",
"suggestedValue": 1,
"suggestedValueText": "text",
"value": 0.5
}
]
}
Last updated
Was this helpful?