Set data explorer settings

Set data explorer settings

post

Set data explorer configuration, like the type of data, and the input / dsp block to use.

Authorizations
Path parameters
projectIdintegerrequired

Project ID

Body
presetstring · enumoptional

Preset to use for the data explorer.

Options: keywords, images, current-impulse, current-impulse-embeddings
dimensionalityReductionTechniquestring · enumoptional
Options: tsne, pca
impulseIdintegeroptional

Which impulse to use (if preset is either 'current-impulse' or 'current-impulse-embeddings'). If this is undefined then 'defaultImpulseId' is used.

Responses
curl -L \
  --request POST \
  --url 'https://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/data-explorer/settings' \
  --header 'x-api-key: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "preset": "keywords",
    "dimensionalityReductionTechnique": "tsne",
    "impulseId": 1
  }'
{
  "success": true,
  "error": "text"
}

Last updated

Was this helpful?