GET
/
api
/
{projectId}
/
training
/
anomaly
/
{learnId}
/
features
/
get-graph
Trained features
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/training/anomaly/{learnId}/features/get-graph \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "totalSampleCount": 123,
  "data": [
    {
      "X": {
        "0": -2.17,
        "11": 1.21,
        "22": 0.79
      },
      "label": 123
    }
  ]
}

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

Query Parameters

featureAx1
integer
required

Feature axis 1

featureAx2
integer
required

Feature axis 2

Response

200 - application/json

OK

The response is of type object.