|
1 | 1 | name = "labelbox" |
2 | 2 |
|
3 | | -__version__ = "5.1.0" |
| 3 | +__version__ = "5.2.1" |
4 | 4 |
|
5 | 5 | from labelbox.client import Client |
6 | | -from labelbox.schema.project import Project |
7 | | -from labelbox.schema.model import Model |
8 | | -from labelbox.schema.model_config import ModelConfig |
9 | 6 | from labelbox.schema.annotation_import import ( |
| 7 | + LabelImport, |
10 | 8 | MALPredictionImport, |
11 | 9 | MEAPredictionImport, |
12 | | - LabelImport, |
13 | 10 | MEAToMALPredictionImport, |
14 | 11 | ) |
15 | | -from labelbox.schema.dataset import Dataset |
16 | | -from labelbox.schema.data_row import DataRow |
| 12 | +from labelbox.schema.asset_attachment import AssetAttachment |
| 13 | +from labelbox.schema.batch import Batch |
| 14 | +from labelbox.schema.benchmark import Benchmark |
17 | 15 | from labelbox.schema.catalog import Catalog |
| 16 | +from labelbox.schema.data_row import DataRow |
| 17 | +from labelbox.schema.data_row_metadata import ( |
| 18 | + DataRowMetadata, |
| 19 | + DataRowMetadataField, |
| 20 | + DataRowMetadataOntology, |
| 21 | + DeleteDataRowMetadata, |
| 22 | +) |
| 23 | +from labelbox.schema.dataset import Dataset |
18 | 24 | from labelbox.schema.enums import AnnotationImportState |
19 | | -from labelbox.schema.label import Label |
20 | | -from labelbox.schema.batch import Batch |
21 | | -from labelbox.schema.review import Review |
22 | | -from labelbox.schema.user import User |
23 | | -from labelbox.schema.organization import Organization |
24 | | -from labelbox.schema.task import Task |
25 | 25 | from labelbox.schema.export_task import ( |
26 | | - StreamType, |
| 26 | + BufferedJsonConverterOutput, |
27 | 27 | ExportTask, |
28 | 28 | BufferedJsonConverterOutput, |
29 | 29 | ) |
| 30 | +from labelbox.schema.iam_integration import IAMIntegration |
| 31 | +from labelbox.schema.identifiable import GlobalKey, UniqueId |
| 32 | +from labelbox.schema.identifiables import DataRowIds, GlobalKeys, UniqueIds |
| 33 | +from labelbox.schema.invite import Invite, InviteLimit |
| 34 | +from labelbox.schema.label import Label |
| 35 | +from labelbox.schema.label_score import LabelScore |
30 | 36 | from labelbox.schema.labeling_frontend import ( |
31 | 37 | LabelingFrontend, |
32 | 38 | LabelingFrontendOptions, |
33 | 39 | ) |
34 | | -from labelbox.schema.asset_attachment import AssetAttachment |
35 | | -from labelbox.schema.webhook import Webhook |
| 40 | +from labelbox.schema.labeling_service import LabelingService |
| 41 | +from labelbox.schema.labeling_service_dashboard import LabelingServiceDashboard |
| 42 | +from labelbox.schema.labeling_service_status import LabelingServiceStatus |
| 43 | +from labelbox.schema.media_type import MediaType |
| 44 | +from labelbox.schema.model import Model |
| 45 | +from labelbox.schema.model_config import ModelConfig |
| 46 | +from labelbox.schema.model_run import DataSplit, ModelRun |
36 | 47 | from labelbox.schema.ontology import ( |
| 48 | + Classification, |
| 49 | + FeatureSchema, |
37 | 50 | Ontology, |
38 | 51 | OntologyBuilder, |
39 | | - Classification, |
40 | 52 | Option, |
| 53 | + PromptResponseClassification, |
| 54 | + ResponseOption, |
41 | 55 | Tool, |
42 | | - FeatureSchema, |
43 | 56 | ) |
44 | 57 | from labelbox.schema.ontology import PromptResponseClassification |
45 | 58 | from labelbox.schema.ontology import ResponseOption |
|
64 | 77 | from labelbox.schema.identifiables import UniqueIds, GlobalKeys, DataRowIds |
65 | 78 | from labelbox.schema.identifiable import UniqueId, GlobalKey |
66 | 79 | from labelbox.schema.ontology_kind import OntologyKind |
| 80 | +from labelbox.schema.organization import Organization |
| 81 | +from labelbox.schema.project import Project |
| 82 | +from labelbox.schema.project_model_config import ProjectModelConfig |
67 | 83 | from labelbox.schema.project_overview import ( |
68 | 84 | ProjectOverview, |
69 | 85 | ProjectOverviewDetailed, |
70 | 86 | ) |
71 | | -from labelbox.schema.labeling_service import LabelingService |
72 | | -from labelbox.schema.labeling_service_dashboard import LabelingServiceDashboard |
73 | | -from labelbox.schema.labeling_service_status import LabelingServiceStatus |
| 87 | +from labelbox.schema.project_resource_tag import ProjectResourceTag |
| 88 | +from labelbox.schema.resource_tag import ResourceTag |
| 89 | +from labelbox.schema.review import Review |
| 90 | +from labelbox.schema.role import ProjectRole, Role |
| 91 | +from labelbox.schema.slice import CatalogSlice, ModelSlice, Slice |
| 92 | +from labelbox.schema.task import Task |
| 93 | +from labelbox.schema.task_queue import TaskQueue |
| 94 | +from labelbox.schema.user import User |
| 95 | +from labelbox.schema.webhook import Webhook |
0 commit comments