Sample of trained features
Get a sample of trained features, this extracts a number of samples and their labels. Used to visualize the current training set.
Authorizations
Path parameters
projectIdintegerRequired
Project ID
dspIdintegerRequired
DSP Block ID, use the impulse functions to retrieve the ID
categorystring · enumRequiredPossible values:
Which of the three acquisition categories to download data from
Query parameters
featureAx1integerRequired
Feature axis 1
featureAx2integerRequired
Feature axis 2
featureAx3integerRequired
Feature axis 3
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/dsp/{dspId}/features/get-graph/{category} 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: 9.81, 11: 0.32, 22: 0.79 }`",
"y": 1,
"yLabel": "text",
"sample": {
"id": 1,
"name": "text",
"startMs": 1,
"endMs": 1
}
}
],
"skipFirstFeatures": 1
}
Last updated
Was this helpful?