Trained features

Trained features

get

Get a sample of trained features, this extracts a number of samples and their features.

Authorizations
Path parameters
projectIdintegerRequired

Project ID

learnIdintegerRequired

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

Query parameters
featureAx1integerRequired

Feature axis 1

featureAx2integerRequired

Feature axis 2

Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/training/anomaly/{learnId}/features/get-graph HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "totalSampleCount": 1,
  "data": [
    {
      "X": {
        "0": -2.17,
        "11": 1.21,
        "22": 0.79
      },
      "label": 1
    }
  ]
}

Last updated

Was this helpful?