Previous page Create a new task  Delete the task Next page

On the page:


General info

Method

GET /IP address:port/<api_ver>/task/info

DescriptionThe request returns the parameters of a certain task. The response will contain information about the task

Sample request

GET http://localhost:5000/v1.3/task/info?task_id=6407bfd7144f37e141b786e2acf4faf2822cc48f296f5047e58c9e536874f4ec

where:

ParameterDescription
task_id

A unique task identifier (uid), which can be obtained using a task list query (see Get the list of tasks)

Sample response

{
  "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:

ParameterDescription
active

Task status (active or inactive)

batch_sizeBatch size
completed_epoch_ctNumber of completed epochs
limit_by_accuracyDesired accuracy of the trained neural network
limit_by_epochsNumber of epochs that the neural network must complete during training
limit_by_timeTime limit for training the neural network
lrSpeed ​​of selecting coefficients
maxMaximum value of the parameter
minMinimum value of the parameter
valueValue of the parameter
enabledWhether the parameter is enabled

Response in case of error:

{ "error": "error description" }


  • No labels