The ground truth data object

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

AttributeTypeDescription
idintegerIdentifier for the ground truth data
createdISO 8601 dateUTC timestamp for when the ground truth data was submitted
modifiedISO 8601 dateUTC timestamp for when the ground truth data was last edited
apiIdstringIdentifier for project to which the ground truth data belongs
ownerIdintegerIdentifier for the user that added the ground truth data
statusstringWhether the ground truth data is currently in use to evaluate the project's performance. Either ACTIVE or DELETED.
jobIdintegerIdentifier 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.
inputobjectJSON containing the ground truth input. The structure used here is defined by the project type.
labelobjectThe ground truth data's output
tagstringMetadata decorating the data to group it and surface it in search results.

Note: tags are not currently in use throughout super.AI
usedintegerNumber of times the ground truth data has been used to measure the project's performance
typestringOrigin 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"
}