Priority values
The priority value feature helps you determine the items that you need to annotate first to improve your model training. It's a key active learning feature that speeds up your annotation time.
Upload priority values
To upload priority values:
project_name = 'Project Name'
scores = [
{
"name" : "image_1.png",
"priority": 0.567
},
{
"name" : "image_2.png",
"priority": 0.789
}
]
sa.upload_priority_scores(
project = project_name,
scores = scores
)
Updated about 1 year ago