Post-processing

Post-processing

post

Begins post processing job

Authorizations
Path parameters
projectIdintegerRequired

Project ID

Query parameters
impulseIdintegerOptional

Impulse ID. If this is unset then the default impulse is used.

Body
variantstring · enumRequired

Which model variant to use (int8, float32, etc.)

Available options:
datasetstring · enumRequired

Which dataset to use

Available options:
algorithmstringRequired

Which algorithm container to use

evaluationstringRequired

Which evaluation container to use

populationintegerOptional

The population size for the genetic algorithm

Default: 100
maxGenerationsintegerOptional

The maximum number of generations for the genetic algorithm

Default: 100
designSpaceTolerancenumberOptional

The tolerance for the design space

Default: 0.01
objectiveSpaceTolerancenumberOptional

The tolerance for the objective space

Default: 0.0025
terminationPeriodintegerOptional

The number of generations the termination criteria are averaged across

Default: 5
Responses
application/json
all ofOptional
post
POST /v1/api/{projectId}/jobs/post-processing HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 187

{
  "variant": "int8",
  "dataset": "training",
  "algorithm": "text",
  "evaluation": "text",
  "population": 1,
  "maxGenerations": 1,
  "designSpaceTolerance": 1,
  "objectiveSpaceTolerance": 1,
  "terminationPeriod": 1
}
200

OK

{
  "success": true,
  "error": "text",
  "id": 12873488112
}

Last updated

Was this helpful?