POST
/
api
/
{projectId}
/
jobs
/
profile-tflite
/
{jobId}
/
result
Get TFLite profile result (POST)
curl --request POST \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/profile-tflite/{jobId}/result \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "variant": "int8",
  "device": "<string>",
  "tfliteFileSizeBytes": 123,
  "isSupportedOnMcu": true,
  "memory": {
    "tflite": {
      "ram": 123,
      "rom": 123,
      "arenaSize": 123
    },
    "eon": {
      "ram": 123,
      "rom": 123,
      "arenaSize": 123
    },
    "eonRamOptimized": {
      "ram": 123,
      "rom": 123,
      "arenaSize": 123
    }
  },
  "timePerInferenceMs": 123,
  "mcuSupportError": "<string>",
  "customMetrics": [
    {
      "name": "<string>",
      "value": "<string>"
    }
  ],
  "hasPerformance": true,
  "profilingError": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

jobId
integer
required

Job ID

Response

200 - application/json

OK

The response is of type object.