Managing Datapoints with Tags
In katiML, tags are name-value pairs that can be attached to datapoints. They help selecting and managing your metadata.
from dioptra.lake.utils import upload_to_lake
upload_to_lake({
"id": ...,
"tags": {
# Add or update a tag with name "foo"
"foo": "bar",
# Set to null to delete the tag with name "baz"
"baz": null,
...
},
"predictions": [...]
})Tags structure
datapoints_dataframe = select_datapoints(filters=[...], fields=[...])Field
Description
Tags Usage
Retrieving the list of tags
Grouping Tags by Name and Value
Selecting Datapoints Based on Tag values
Last updated