Supported fields
Datapoints
Datapoints are the core element of katiML. Each datapoint describes a unique piece of data like an image, a video or a document. Below are the supported fields per data type.
"type": "IMAGE",
"metadata": {
"width": "INT",
"height": "INT",
"uri": "STRING", // a uri to the image (supported aws s3, gcp, azure)
"normalized_roi": { // crop of the image the model focuses on
"top": "INTEGER",
"left": "INTEGER",
"height": "INTEGER",
"width": "INTEGER",
"STRING": "STRING" // any key value pair you'd like
},
"brightness": "FLOAT",
"sharpness": "FLOAT",
"contrast": "FLOAT"
}"type": "TEXT",
"text": "STRING",
"metadata": {
"STRING": "STRING" // any key value pair you'd like
}On top of this, generic fields can be passed like tags, timestamp or GPS coordinates
Ground Truths
In katiML, ground truths are attached to datapoints. Their format depends on task type.
Predictions
In katiML, predictions are attached to datapoints. Their format depends on task type.
Last updated
Was this helpful?