File tree Expand file tree Collapse file tree 3 files changed +67
-2
lines changed
libs/labelbox/src/labelbox/data Expand file tree Collapse file tree 3 files changed +67
-2
lines changed Original file line number Diff line number Diff line change 6363 MessageRankingTask ,
6464 MessageEvaluationTaskAnnotation ,
6565)
66+
67+ __all__ = [
68+ # Geometry
69+ "Line" ,
70+ "Point" ,
71+ "Mask" ,
72+ "Polygon" ,
73+ "Rectangle" ,
74+ "Geometry" ,
75+ "DocumentRectangle" ,
76+ "RectangleUnit" ,
77+ # Annotation
78+ "ClassificationAnnotation" ,
79+ "ObjectAnnotation" ,
80+ # Relationship
81+ "RelationshipAnnotation" ,
82+ "Relationship" ,
83+ # Video
84+ "VideoClassificationAnnotation" ,
85+ "VideoObjectAnnotation" ,
86+ "MaskFrame" ,
87+ "MaskInstance" ,
88+ "VideoMaskAnnotation" ,
89+ # Temporal
90+ "TemporalClassificationText" ,
91+ "TemporalClassificationQuestion" ,
92+ "TemporalClassificationAnswer" ,
93+ # NER
94+ "ConversationEntity" ,
95+ "DocumentEntity" ,
96+ "DocumentTextSelection" ,
97+ "TextEntity" ,
98+ # Classification
99+ "Checklist" ,
100+ "ClassificationAnswer" ,
101+ "Radio" ,
102+ "Text" ,
103+ # Data
104+ "GenericDataRowData" ,
105+ "MaskData" ,
106+ # Label
107+ "Label" ,
108+ "LabelGenerator" ,
109+ # Metrics
110+ "ScalarMetric" ,
111+ "ScalarMetricAggregation" ,
112+ "ConfusionMatrixMetric" ,
113+ "ConfusionMatrixAggregation" ,
114+ "ScalarMetricValue" ,
115+ "ConfusionMatrixMetricValue" ,
116+ # Tiled Image
117+ "EPSG" ,
118+ "EPSGTransformer" ,
119+ "TiledBounds" ,
120+ "TiledImageData" ,
121+ "TileLayer" ,
122+ # LLM Prompt Response
123+ "PromptText" ,
124+ "PromptClassificationAnnotation" ,
125+ # MMC
126+ "MessageInfo" ,
127+ "OrderedMessageInfo" ,
128+ "MessageSingleSelectionTask" ,
129+ "MessageMultiSelectionTask" ,
130+ "MessageRankingTask" ,
131+ "MessageEvaluationTaskAnnotation" ,
132+ ]
Original file line number Diff line number Diff line change 2828from ...annotation_types .temporal import (
2929 TemporalClassificationText ,
3030 TemporalClassificationQuestion ,
31- TemporalClassificationAnswer ,
3231)
3332from .temporal import create_temporal_ndjson_annotations
3433from labelbox .types import DocumentRectangle , DocumentEntity
Original file line number Diff line number Diff line change 1313from ...annotation_types .temporal import (
1414 TemporalClassificationText ,
1515 TemporalClassificationQuestion ,
16- TemporalClassificationAnswer ,
1716)
1817
1918logger = logging .getLogger (__name__ )
You can’t perform that action at this time.
0 commit comments