When you create ground truth data, super.AI creates a ground truth data object that contains information on the data, including a unique ID.
Ground truth data object attributes
Attribute | Type | Description |
---|---|---|
id | integer | Identifier for the ground truth data |
created | ISO 8601 date | UTC timestamp for when the ground truth data was submitted |
modified | ISO 8601 date | UTC timestamp for when the ground truth data was last edited |
apiId | string | Identifier for project to which the ground truth data belongs |
ownerId | integer | Identifier for the user that added the ground truth data |
status | string | Whether the ground truth data is currently in use to evaluate the project's performance. Either ACTIVE or DELETED . |
jobId | integer | Identifier for the job from which the ground truth data originated. If a job is reviewed as correct, the output is manually edited by an account owner or collaborator, or the job was run through the super.AI gold workflow, then the job is added to the project's ground truth dataset. If the ground truth data was uploaded directly, the value here will be null . |
input | object | JSON containing the ground truth input. The structure used here is defined by the project type. |
label | object | The ground truth data's output |
tag | string | Metadata decorating the data to group it and surface it in search results. Note: tags are not currently in use throughout super.AI |
used | integer | Number of times the ground truth data has been used to measure the project's performance |
type | string | Origin of the ground truth data. Possible values: OWNER (i.e., input and output submitted manually), REVIEWER (i.e., a job that was converted to ground truth data), and GOLDWORKFLOW (i.e., generated automatically by super.AI). |
{
"id":123456,
"created":"2020-02-17T15:29:23.317Z",
"modified":"2020-02-17T15:29:23.317Z",
"apiId":"1a2b34cd-ab12-4645-a8de-425a7996575b",
"ownerId":1234,
"status":"ACTIVE",
"jobId":null,
"input":{
"image_url":"data://images/dogs/labradors/lost-labrador-labors-long-into-night.jpg"
},
"label":{
"label":{
"choices":[
{
"tag":"0",
"value":"bulldog"
},
{
"tag":"1",
"value":"poodle"
},
{
"tag":"2",
"value":"not sure"
}
],
"selection":{
"tag":"2",
"value":"not sure"
}
}
},
"tag":null,
"used":1,
"type":"OWNER"
}