Ingestion basics
# The Datapoint
{
'metadata': {
'uri': 's3://my_bucket/myfile.jpg'
},
'type': 'IMAGE',
# The tags
'tags': {
'source': 'stanford_dogs'
},
# The ground turths
'groundtruths': [{
'task_type': 'CLASSIFICATION',
'class_name': 'chihuahua'
}],
# The predictions
'predictions': [{
'task_type': 'CLASSIFICATION',
'class_names': ['chihuahua', 'pug']
'logits': [0.9, 1.4]
}]
}Creating a Datapoint
Updating a Datapoint
Updating an Attachement
Last updated