Generate features

Generate features

post

Take the raw training set and generate features from them. Updates are streamed over the websocket API.

Authorizations
Path parameters
projectIdintegerRequired

Project ID

Body
dspIdintegerRequired

DSP block ID to generate features for

calculateFeatureImportancebooleanOptional

Whether to generate feature importance (only when available)

skipFeatureExplorerbooleanOptional

If set, skips feature explorer (used in tests)

normalizeDatastring · enumOptional

Data normalization method to use on the generated features. This only applies if canNormalizeData is true.

Possible values:
Responses
200

OK

application/json
Responseall of
post
POST /v1/api/{projectId}/jobs/generate-features HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 95

{
  "dspId": 1,
  "calculateFeatureImportance": true,
  "skipFeatureExplorer": true,
  "normalizeData": "none"
}
200

OK

{
  "success": true,
  "error": "text",
  "id": 12873488112
}

Last updated

Was this helpful?