curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/optimize/runs \
--header 'x-api-key: <api-key>'{
"success": true,
"runs": [
{
"tunerJobId": 123,
"tunerCoordinatorJobId": 123,
"index": 123,
"created": "2023-11-07T05:31:56Z",
"jobStatus": "cancelled",
"visible": true,
"name": "<string>",
"continuationJobId": 123,
"space": [
{
"inputBlocks": [
{}
],
"dspBlocks": [
{}
],
"learnBlocks": [
[
{}
]
],
"parameters": {}
}
]
}
],
"error": "<string>"
}List all the tuner runs for a project.
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/optimize/runs \
--header 'x-api-key: <api-key>'{
"success": true,
"runs": [
{
"tunerJobId": 123,
"tunerCoordinatorJobId": 123,
"index": 123,
"created": "2023-11-07T05:31:56Z",
"jobStatus": "cancelled",
"visible": true,
"name": "<string>",
"continuationJobId": 123,
"space": [
{
"inputBlocks": [
{}
],
"dspBlocks": [
{}
],
"learnBlocks": [
[
{}
]
],
"parameters": {}
}
]
}
],
"error": "<string>"
}Project ID
OK
Whether the operation succeeded
Show child attributes
cancelled, creating, failed, pending, running, success Whether the run is visible in the UI
List of impulses specifying the EON Tuner search space
Show child attributes
Input Blocks that are part of this impulse
DSP Blocks that are part of this impulse
Learning Blocks that are part of this impulse
Hyperparameters with potential values that can be used in any block in this impulse
Optional error description (set if 'success' was false)
Was this page helpful?