Skip to content

Releases: Labelbox/labelbox-python

v.3.32.0

03 Dec 00:30
a40a23a
Compare
Choose a tag to compare

Version 3.32.0 (2022-12-02)

Added

  • Added HTML Enum to MediaType. HTML is introduced as a new asset type in Labelbox.
  • Added PaginatedCollection.get_one() and PaginatedCollection.get_many() to provide easy functions to fetch single and bulk instances of data for any function returning a PaginatedCollection. E.g. data_rows = dataset.data_rows().get_many(10)
  • Added a validator under ScalarMetric to validate metric names against reserved metric names

Changed

  • In iou.miou_metric() and iou.feature_miou_metric, iou metric renamed as custom_iou

v.3.31.0

29 Nov 01:14
8d00d00
Compare
Choose a tag to compare

Version 3.31.0 (2022-11-28)

Added

  • Added client.clear_global_keys() to remove global keys from their associated data rows
  • Added a new attribute confidence to AnnotationObject and ClassificationAnswer for Model Error Analysis

Fixed

  • Fixed project.create_batch() to work with both data_row_ids and data_row objects

v.3.30.1

17 Nov 01:08
e2b65e0
Compare
Choose a tag to compare

Version 3.30.1 (2022-11-16)

Added

  • Added step to project.create_batch() to wait for data rows to finish processing

Fixed

  • Running project.setup_editor() multiple times no longer resets the ontology, and instead raises an error if the editor is already set up for the project

v.3.30.0

11 Nov 17:27
d54d573
Compare
Choose a tag to compare

Version 3.30.0 (2022-11-11)

Changed

  • create_data_rows, create_data_rows_sync, create_data_row, and update data rows all accept the new data row input format for row data
  • create_data_row now accepts an attachment parameter to be consistent with create_data_rows
  • Conversational text data rows will be uploaded to a json file automatically on the backend to reduce the amount of i/o required in the SDK.

v.3.29.0

02 Nov 15:57
3e0c617
Compare
Choose a tag to compare

Version 3.29.0 (2022-11-02)

Added

  • Added new base Slice Entity/DbObject and CatalogSlice class
  • Added client.get_catalog_slice(id) to fetch a CatalogSlice by ID
  • Added slice.get_data_row_ids() to fetch data row ids of the slice
  • Add deprecation warning for queue_mode == QueueMode.Dataset when creating a new project.
  • Add deprecation warning for LPOs.

Changed

  • Default behavior for metrics to not include subclasses in the calculation.

Fixed

  • Polygon extraction from masks creating invalid polygons. This would cause issues in the coco converter.

v.3.28.0

15 Oct 00:10
d7b0075
Compare
Choose a tag to compare

Version 3.28.0 (2022-10-14)

Added

  • Added warning for upcoming change in default project queue_mode setting
  • Added notebook example for importing Conversational Text annotations using Model-Assisted Labeling

Changed

  • Updated QueueMode enum to support new value for QueueMode.Batch = BATCH.
  • Task.failed_data_rows is now a property

Fixed

  • Fixed Task.wait_till_done() showing warning message for every completed task, instead of only warning when task has errors
  • Fixed error on dataset creation step in examples/annotation_import/video.ipynb notebook

v.3.27.2

04 Oct 15:17
d8f44f7
Compare
Choose a tag to compare

Version 3.27.2 (2022-10-04)

Added

  • Added deprecation warning for missing media_type in create_project in Client.

Changed

  • Updated docs for deprecated methods _update_queue_mode and get_queue_mode in Project
  • Updated project.export_labels to support filtering by start/end time formats "YYYY-MM-DD" and "YYYY-MM-DD hh:mm:ss"

v.3.27.1

16 Sep 20:41
402a617
Compare
Choose a tag to compare

Version 3.27.1 (2022-09-16)

Changed

  • Removed client.get_data_rows_for_global_keys until further notice

v.3.27.0

14 Sep 04:52
59db41b
Compare
Choose a tag to compare

Version 3.27.0 (2022-09-12)

Added

  • Global Keys for data rows
    • Assign global keys to a data row with client.assign_global_keys_to_data_rows
    • Get data rows using global keys with client.get_data_row_ids_for_global_keys and client.get_data_rows_for_global_keys
  • Project Creation
    • Introduces Project.queue_mode as an optional parameter when creating projects
  • MEAToMALPredictionImport class
    • This allows users to use predictions stored in Models for MAL
  • Task.wait_till_done now shows a warning if task has failed

Changed

  • Increase scalar metric value limit to 100m
  • Added deprecation warnings when updating project queue_mode

Fixed

  • Fix bug in feature_confusion_matrix and confusion_matrix causing FPs and FNs to be capped at 1 when there were no matching annotations

v.3.26.2

06 Sep 17:35
7ddeebf
Compare
Choose a tag to compare

Version 3.26.2 (2022-09-06)

Added

  • Support for document (pdf) de/serialization from exports
    • Use the LBV1Converter.serialize() and LBV1Converter.deserialize() methods
  • Support for document (pdf) de/serialization for imports
    • Use the NDJsonConverter.serialize() and NDJsonConverter.deserialize() methods