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.)

Options: int8, float32, akida
datasetstring · enumrequired

Which dataset to use

Options: training, validation, testing
algorithmstringrequired

Which algorithm container to use

evaluationstringrequired

Which evaluation container to use

populationinteger · default: 100optional

The population size for the genetic algorithm

maxGenerationsinteger · default: 100optional

The maximum number of generations for the genetic algorithm

designSpaceTolerancenumber · default: 0.01optional

The tolerance for the design space

objectiveSpaceTolerancenumber · default: 0.0025optional

The tolerance for the objective space

terminationPeriodinteger · default: 5optional

The number of generations the termination criteria are averaged across

Responses
curl -L \
  --request POST \
  --url 'https://studio.edgeimpulse.com/v1/api/{projectId}/jobs/post-processing' \
  --header 'x-api-key: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "variant": "int8",
    "dataset": "training",
    "algorithm": "text",
    "evaluation": "text",
    "population": 1,
    "maxGenerations": 1,
    "designSpaceTolerance": 1,
    "objectiveSpaceTolerance": 1,
    "terminationPeriod": 1
  }'
{
  "success": true,
  "error": "text",
  "id": 12873488112
}

Last updated

Was this helpful?