Create an AutoScientist run
Starts an iterative AutoScientist loop on a dataset you own. The loop runs up to max_iterations training cycles, stopping early when target_win_rate is achieved. Omitted parameters are resolved to platform defaults for the selected model and returned in the response. Poll GET /autoscientist/{experiment_id} for status, then GET /autoscientist/{experiment_id}/download once it succeeds.
Body ParametersJSON
Number of domain-targeted augmentation rows to add to the dataset before training. Defaults to 0.
Number of general-diversity augmentation rows to add to the dataset before training. Defaults to 0.
Idempotency key — repeat a create with the same key to safely retry without starting a duplicate run.
Maximum number of iterations to run. Defaults to the resolved model configuration (currently 3). The resolved value is returned in the response max_iterations field.
Base model id from GET /training-models. By default, AutoScientist selects a suitable model. The resolved model is returned in the response model field.
Create an AutoScientist run
curl https://api.prod.adaptionlabs.ai/api/v1/autoscientist \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $ADAPTION_API_KEY" \
-d '{
"dataset_id": "dataset_id"
}'{
"id": "id",
"completed_at": {},
"created_at": "2019-12-27T18:11:19.117Z",
"dataset_id": {},
"download_available": true,
"iterations_completed": 0,
"max_iterations": 0,
"model": {},
"status": "pending",
"target_win_rate": 0,
"best_win_rate": {},
"error": {}
}Returns Examples
{
"id": "id",
"completed_at": {},
"created_at": "2019-12-27T18:11:19.117Z",
"dataset_id": {},
"download_available": true,
"iterations_completed": 0,
"max_iterations": 0,
"model": {},
"status": "pending",
"target_win_rate": 0,
"best_win_rate": {},
"error": {}
}