cURL
curl --request POST \
--url http://studio.premai.io/api/v1/public/datasets/{datasetId}/start-auto-labeling \
--header 'Authorization: Bearer <token>'import requests
url = "http://studio.premai.io/api/v1/public/datasets/{datasetId}/start-auto-labeling"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('http://studio.premai.io/api/v1/public/datasets/{datasetId}/start-auto-labeling', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Datasets API
Start Auto Labeling
Start the labeling process for the given dataset using the associated labels.
POST
/
api
/
v1
/
public
/
datasets
/
{datasetId}
/
start-auto-labeling
cURL
curl --request POST \
--url http://studio.premai.io/api/v1/public/datasets/{datasetId}/start-auto-labeling \
--header 'Authorization: Bearer <token>'import requests
url = "http://studio.premai.io/api/v1/public/datasets/{datasetId}/start-auto-labeling"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('http://studio.premai.io/api/v1/public/datasets/{datasetId}/start-auto-labeling', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Was this page helpful?