GET
/
api
/
{projectId}
/
training
/
anomaly
/
{learnId}
Anomaly information
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
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

learnId
integer
required

Learn Block ID, use the impulse functions to retrieve the ID

Response

200 - application/json

OK

The response is of type object.