Get data explorer predictions

Get data explorer predictions

get

Predictions for every data explorer point (only available when using current impulse to populate data explorer)

Authorizations
Path parameters
projectIdintegerrequired

Project ID

Responses
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/data-explorer/predictions' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "success": true,
  "error": "text",
  "predictions": [
    {
      "sampleId": 1,
      "startMs": 1,
      "endMs": 1,
      "label": "text",
      "prediction": "text",
      "predictionCorrect": true,
      "f1Score": 1,
      "anomalyScores": [
        [
          1
        ]
      ]
    }
  ],
  "labels": [
    "text"
  ],
  "classificationType": "classification"
}

Last updated

Was this helpful?