-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
55 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "labelbox" | ||
version = "5.1.0" | ||
version = "5.2.0" | ||
description = "Labelbox Python API" | ||
authors = [{ name = "Labelbox", email = "[email protected]" }] | ||
dependencies = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,79 @@ | ||
name = "labelbox" | ||
|
||
__version__ = "5.1.0" | ||
__version__ = "5.2.0" | ||
|
||
from labelbox.client import Client | ||
from labelbox.schema.project import Project | ||
from labelbox.schema.model import Model | ||
from labelbox.schema.model_config import ModelConfig | ||
from labelbox.schema.bulk_import_request import BulkImportRequest | ||
from labelbox.schema.annotation_import import ( | ||
LabelImport, | ||
MALPredictionImport, | ||
MEAPredictionImport, | ||
LabelImport, | ||
MEAToMALPredictionImport, | ||
) | ||
from labelbox.schema.dataset import Dataset | ||
from labelbox.schema.data_row import DataRow | ||
from labelbox.schema.asset_attachment import AssetAttachment | ||
from labelbox.schema.batch import Batch | ||
from labelbox.schema.benchmark import Benchmark | ||
from labelbox.schema.bulk_import_request import BulkImportRequest | ||
from labelbox.schema.catalog import Catalog | ||
from labelbox.schema.data_row import DataRow | ||
from labelbox.schema.data_row_metadata import ( | ||
DataRowMetadata, | ||
DataRowMetadataField, | ||
DataRowMetadataOntology, | ||
DeleteDataRowMetadata, | ||
) | ||
from labelbox.schema.dataset import Dataset | ||
from labelbox.schema.enums import AnnotationImportState | ||
from labelbox.schema.label import Label | ||
from labelbox.schema.batch import Batch | ||
from labelbox.schema.review import Review | ||
from labelbox.schema.user import User | ||
from labelbox.schema.organization import Organization | ||
from labelbox.schema.task import Task | ||
from labelbox.schema.export_task import ( | ||
StreamType, | ||
BufferedJsonConverterOutput, | ||
ExportTask, | ||
JsonConverter, | ||
JsonConverterOutput, | ||
FileConverter, | ||
FileConverterOutput, | ||
BufferedJsonConverterOutput, | ||
JsonConverter, | ||
JsonConverterOutput, | ||
StreamType, | ||
) | ||
from labelbox.schema.iam_integration import IAMIntegration | ||
from labelbox.schema.identifiable import GlobalKey, UniqueId | ||
from labelbox.schema.identifiables import DataRowIds, GlobalKeys, UniqueIds | ||
from labelbox.schema.invite import Invite, InviteLimit | ||
from labelbox.schema.label import Label | ||
from labelbox.schema.label_score import LabelScore | ||
from labelbox.schema.labeling_frontend import ( | ||
LabelingFrontend, | ||
LabelingFrontendOptions, | ||
) | ||
from labelbox.schema.asset_attachment import AssetAttachment | ||
from labelbox.schema.webhook import Webhook | ||
from labelbox.schema.labeling_service import LabelingService | ||
from labelbox.schema.labeling_service_dashboard import LabelingServiceDashboard | ||
from labelbox.schema.labeling_service_status import LabelingServiceStatus | ||
from labelbox.schema.media_type import MediaType | ||
from labelbox.schema.model import Model | ||
from labelbox.schema.model_config import ModelConfig | ||
from labelbox.schema.model_run import DataSplit, ModelRun | ||
from labelbox.schema.ontology import ( | ||
Classification, | ||
FeatureSchema, | ||
Ontology, | ||
OntologyBuilder, | ||
Classification, | ||
Option, | ||
PromptResponseClassification, | ||
ResponseOption, | ||
Tool, | ||
FeatureSchema, | ||
) | ||
from labelbox.schema.ontology import PromptResponseClassification | ||
from labelbox.schema.ontology import ResponseOption | ||
from labelbox.schema.role import Role, ProjectRole | ||
from labelbox.schema.invite import Invite, InviteLimit | ||
from labelbox.schema.data_row_metadata import ( | ||
DataRowMetadataOntology, | ||
DataRowMetadataField, | ||
DataRowMetadata, | ||
DeleteDataRowMetadata, | ||
) | ||
from labelbox.schema.model_run import ModelRun, DataSplit | ||
from labelbox.schema.benchmark import Benchmark | ||
from labelbox.schema.iam_integration import IAMIntegration | ||
from labelbox.schema.resource_tag import ResourceTag | ||
from labelbox.schema.project_model_config import ProjectModelConfig | ||
from labelbox.schema.project_resource_tag import ProjectResourceTag | ||
from labelbox.schema.media_type import MediaType | ||
from labelbox.schema.slice import Slice, CatalogSlice, ModelSlice | ||
from labelbox.schema.queue_mode import QueueMode | ||
from labelbox.schema.task_queue import TaskQueue | ||
from labelbox.schema.label_score import LabelScore | ||
from labelbox.schema.identifiables import UniqueIds, GlobalKeys, DataRowIds | ||
from labelbox.schema.identifiable import UniqueId, GlobalKey | ||
from labelbox.schema.ontology_kind import OntologyKind | ||
from labelbox.schema.organization import Organization | ||
from labelbox.schema.project import Project | ||
from labelbox.schema.project_model_config import ProjectModelConfig | ||
from labelbox.schema.project_overview import ( | ||
ProjectOverview, | ||
ProjectOverviewDetailed, | ||
) | ||
from labelbox.schema.labeling_service import LabelingService | ||
from labelbox.schema.labeling_service_dashboard import LabelingServiceDashboard | ||
from labelbox.schema.labeling_service_status import LabelingServiceStatus | ||
from labelbox.schema.project_resource_tag import ProjectResourceTag | ||
from labelbox.schema.queue_mode import QueueMode | ||
from labelbox.schema.resource_tag import ResourceTag | ||
from labelbox.schema.review import Review | ||
from labelbox.schema.role import ProjectRole, Role | ||
from labelbox.schema.slice import CatalogSlice, ModelSlice, Slice | ||
from labelbox.schema.task import Task | ||
from labelbox.schema.task_queue import TaskQueue | ||
from labelbox.schema.user import User | ||
from labelbox.schema.webhook import Webhook |