Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Column
width45%
Panel
titleOn the page:

Table of Contents


Column



General info

Method
GET

POST /IP address:port/<api_ver>/task

DescriptionThe request is used to create a new task. When sending data, you can use two content types: multipart/form-data or application/json

Sample request

Code Block
POST http://localhost:5000/v1.3/task
Content-Type: application/json
 
{
  "name": "Cars",
  "pipeline": "classification/mobilenet_224"
}

where:

ParameterDescription
name

Task name

pipeline

The name of the pipeline (training script). If not specified, the default value will be used

Sample response

Code Block
{ "message": "Done" }

...