Get TFLite profile result (GET)
Get the results from a job started from startProfileTfliteJob (via a GET request).
Authorizations
Path parameters
projectIdintegerRequired
Project ID
jobIdintegerRequired
Job ID
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/jobs/profile-tflite/{jobId}/result HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200
OK
{
"success": true,
"error": "text",
"variant": "int8",
"device": "text",
"tfliteFileSizeBytes": 1,
"isSupportedOnMcu": true,
"memory": {
"tflite": {
"ram": 1,
"rom": 1,
"arenaSize": 1
},
"eon": {
"ram": 1,
"rom": 1,
"arenaSize": 1
},
"eonRamOptimized": {
"ram": 1,
"rom": 1,
"arenaSize": 1
}
},
"timePerInferenceMs": 1,
"mcuSupportError": "text",
"customMetrics": [
{
"name": "text",
"value": "text"
}
],
"hasPerformance": true,
"profilingError": "text"
}
Last updated
Was this helpful?