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>"
}
Get the results from a job started from startProfileTfliteJob (via a POST request).
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>"
}
OK
The response is of type object
.