Edit a task
Changes the task overlap.
You can:
- Set a numeric value or an infinite overlap to assign a task to all Tolokers (for example, for training tasks).
- Add preliminary responses or change their values if they were set.
Preliminary responses are used to calculate response confidence when dynamic overlap (incremental relabeling, IRL) is enabled.
Request
Headers
Title | Overview |
---|---|
Authorization | A token for account authorization. Add OAuth as a prefix. |
Content-Type | Specifies the data format in the request body. |
Title | Overview |
---|---|
Authorization | A token for account authorization. Add OAuth as a prefix. |
Content-Type | Specifies the data format in the request body. |
Path parameters
Parameter | Overview |
---|---|
task_id | Task ID. |
Parameter | Overview |
---|---|
task_id | Task ID. |
Request body
- Numeric overlap value
-
{ "overlap": <new overlap value>, "infinite_overlap": false }
Copied to clipboard - Infinite overlap
-
{ "overlap": null, "infinite_overlap": true }
Copied to clipboard - Preliminary responses
-
{ "baseline_solutions":[ { "output_values":{<output data values>}, "confidence_weight":<from 0 to 1> } ]}
Copied to clipboard - Responses and hints for control tasks and training tasks
-
{ "known_solutions":[ { "output_values":{<output data values>}, "correctness_weight":<from 0 to 1> } ], "message_on_unknown_solution": <message string> }
Copied to clipboard
Response
Contains task data in JSON format.