Properties
-
annotation_id
UUID of Annotation holding this Classification -
label
-
text
OCR text of this Classification
Methods
update
update(
label: Optional[Label] = None, text: Optional[str] = None
)
Description
Update this classification with another label.
Examples
classification.update(label=label_plane)
Arguments
-
label : Label to update this Classification. Defaults to None.
-
text (str, optional) : New ocr text of this Classification. Defaults to None.
delete
delete()
Description
Delete this classification from the platform.
⚠️ DANGER ZONE: Be very careful here!
Examples
classification.delete()