Releases: Labelbox/labelbox-python
Releases · Labelbox/labelbox-python
3.17.1
v.3.17.0
v.3.16.0
Version 3.16.0 (2022-03-14)
Added
- Ability to fetch a model run with
client.get_model_run()
- Ability to fetch labels from a model run with
model_run.export_labels()
- Note: this is only Experimental. To use, client param
enable_experimental
should
be set to true
- Note: this is only Experimental. To use, client param
- Ability to delete an attachment
Fix
- Logger level is no longer set to INFO
Updated
- Deprecation: Creating Dropdowns will no longer be supported after 2022-03-31
- This includes creating/adding Dropdowns to an ontology
- This includes creating/adding Dropdown Annotation Type
- For the same functionality, use Radio
- This will not affect existing Dropdowns
v.3.15.0
Version 3.15.0 (2022-02-28)
Added
- Extras folder which contains useful applications using the sdk
- Addition of ResourceTag at the Organization and Project level
- Updates to the example notebooks
Fix
- EPSGTransformer now properly transforms Polygon to Polygon
- VideoData string representation now properly shows VideoData
v.3.14.0
Version 3.13.1
Version 3.13.1 (2022-02-08)
Fix
- Updated code to properly import correctly
Version 3.13.0
Version 3.13.0 (2022-02-07)
Added
- Added
from_shapely
method to create annotation types from Shapely objects - Added
start
andend
filter on the following methods
Project.export_labels()
Project.label_generator()
Project.video_label_generator()
- Improved type hinting
Version 3.12.0
Changelog
Version 3.12.0 (2022-01-19)
Added
- Tiled Imagery annotation type
- A set of classes that support Tiled Image assets
- New demo notebook can be found under:
examples/annotation_types/tiled_imagery_basics.ipynb
- Updated tiled image mal can be found under:
examples/model_assisted_labeling/tiled_imagery_mal.ipynb
- Support transformations from one EPSG to another with
EPSGTransformer
class
- Supports EPSG to pixel space transformations
Fix
- Added missing packaging lib to requirements
Version 3.11.1
Version 3.11.1 (2022-01-10)
Fix
- Make
TypedArray
class compatible withnumpy
versions>= 1.22.0
project.upsert_review_queue
quotas can now be in the inclusive range [0,1]- Restore support for upserting html instructions to a project
Version 3.11.0
Version 3.11.0 (2021-12-15)
Fix
Dataset.create_data_rows()
now accepts any iterable of data row creation parameters instead of requiring a listproject.upsert_instructions()
- Now only supports pdfs since that is required by the editor
- There was a bug that could cause this function to modify the project ontology
Removed
DataRowMetadataSchema.id
useDataRowMetadataSchema.uid
insteadModelRun.delete_annotation_groups()
useModelRun.delete_model_run_data_rows()
insteadModelRun.annotation_groups()
useModelRun.model_run_data_rows()
instead