Method | GET /IP address:port/<api_ver>/task/info |
Description | The request returns the parameters of a certain task. The response will contain information about the task |
GET http://localhost:5000/v1.3/task/info?task_id=6407bfd7144f37e141b786e2acf4faf2822cc48f296f5047e58c9e536874f4ec
where:
Parameter | Description |
---|---|
task_id | A unique task identifier (uid), which can be obtained using a task list query (see Get the list of tasks) |
{ "active": false, "batch_size": { "max": 4096, "min": 1, "value": 16 }, "completed_epoch_ct": 6, "limit_by_accuracy": { "enabled": true, "max": 100, "min": 70, "value": 96 }, "limit_by_epochs": { "enabled": false, "max": 1000, "min": 1, "value": 50 }, "limit_by_time": { "enabled": false, "max": 3600, "min": 5, "value": 20 }, "lr": { "max": 0.5, "min": 0.000001, "value": 0.001 } }
where:
Parameter | Description |
---|---|
active | Task status (active or inactive) |
batch_size | Batch size |
completed_epoch_ct | Number of completed epochs |
limit_by_accuracy | Desired accuracy of the trained neural network |
limit_by_epochs | Number of epochs that the neural network must complete during training |
limit_by_time | Time limit for training the neural network |
lr | Speed of selecting coefficients |
max | Maximum value of the parameter |
min | Minimum value of the parameter |
value | Value of the parameter |
enabled | Whether the parameter is enabled |
Response in case of error:
{ "error": "error description" }