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
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/{projectId}/training/anomaly/{learnId}/features/get-graph?featureAx1=1&featureAx2=1' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "success": true,
  "error": "text",
  "totalSampleCount": 1,
  "data": [
    {
      "X": {
        "0": -2.17,
        "11": 1.21,
        "22": 0.79
      },
      "label": 1
    }
  ]
}

Last updated

Was this helpful?