Task Annotations
This is a page about performing task annotations with the Clarifai API.
curl -X POST \
-H "Authorization: Key YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '
{
"annotations": [
{
"input_id": "{{asset_id}}",
"data": {
"concepts": [
{
"id": "tree",
"value": 1
},
{
"id": "water",
"value": 0
}
]
},
"annotation_info": {
"task_id": "{{task_id}}"
}
}
]
}'\
https://api.clarifai.com/v2/annotationsLast updated
Was this helpful?