curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/training/anomaly/{learnId} \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"dependencies": {
"classes": [
"<string>"
],
"blockNames": [
"<string>"
],
"featureCount": 123,
"sampleCount": 123
},
"name": "<string>",
"axes": [
{
"ix": 123,
"label": "<string>",
"selected": true,
"favourite": true
}
],
"trained": true,
"clusterCount": 123,
"selectedAxes": [
123
],
"minimumConfidenceRating": 123,
"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": 123,
"suggestedValueText": "<string>",
"value": 0.5
}
]
}
Get information about an anomaly block, such as its dependencies. Use the impulse blocks to find the learnId.
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/training/anomaly/{learnId} \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"dependencies": {
"classes": [
"<string>"
],
"blockNames": [
"<string>"
],
"featureCount": 123,
"sampleCount": 123
},
"name": "<string>",
"axes": [
{
"ix": 123,
"label": "<string>",
"selected": true,
"favourite": true
}
],
"trained": true,
"clusterCount": 123,
"selectedAxes": [
123
],
"minimumConfidenceRating": 123,
"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": 123,
"suggestedValueText": "<string>",
"value": 0.5
}
]
}
Project ID
Learn Block ID, use the impulse functions to retrieve the ID
OK
The response is of type object
.