|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +# Version 3.0.0 (2021-08-12) |
| 4 | +## Added |
| 5 | +* Annotation types |
| 6 | + - A set of python objects for working with labelbox data |
| 7 | + - Creates a standard interface for both exports and imports |
| 8 | + - See example notebooks on how to use under examples/annotation_types |
| 9 | + - Note that these types are not yet supported for tiled imagery |
| 10 | +* MEA Support |
| 11 | + - Beta MEA users can now just use the latest SDK release |
| 12 | +* Metadata support |
| 13 | + - New metadata features are now fully supported by the SDK |
| 14 | +* Easier export |
| 15 | + - `project.export_labels()` accepts a boolean indicating whether or not to download the result |
| 16 | + - Create annotation objects directly from exports with `project.label_generator()` or `project.video_label_generator()` |
| 17 | + - `project.video_label_generator()` asynchronously fetches video annotations |
| 18 | +* Retry logic on data uploads |
| 19 | + - Bulk creation of data rows will be more reliable |
| 20 | +* Datasets |
| 21 | + - Determine the number of data rows just by calling `dataset.row_count`. |
| 22 | + - Updated threading logic in create_data_rows() to make it compatible with aws lambdas |
| 23 | +* Ontology |
| 24 | + - `OntologyBuilder`, `Classification`, `Option`, and `Tool` can now be imported from `labelbox` instead of `labelbox.schema.ontology` |
| 25 | + |
| 26 | +## Removed |
| 27 | +* Deprecated: |
| 28 | + - `project.reviews()` |
| 29 | + - `project.create_prediction()` |
| 30 | + - `project.create_prediction_model()` |
| 31 | + - `project.create_label()` |
| 32 | + - `Project.predictions()` |
| 33 | + - `Project.active_prediction_model` |
| 34 | + - `data_row.predictions` |
| 35 | + - `PredictionModel` |
| 36 | + - `Prediction` |
| 37 | +* Replaced: |
| 38 | + - `data_row.metadata()` use `data_row.attachments()` instead |
| 39 | + - `data_row.create_metadata()` use `data_row.create_attachments()` instead |
| 40 | + - `AssetMetadata` use `AssetAttachment` instead |
| 41 | + |
| 42 | +## Fixes |
| 43 | +* Support derived classes of ontology objects when using `from_dict` |
| 44 | +* Notebooks: |
| 45 | + - Video export bug where the code would fail if the exported projects had tools other than bounding boxes |
| 46 | + - MAL demos were broken due to an image download failing. |
| 47 | + |
| 48 | +## Misc |
| 49 | +* Data processing dependencies are not installed by default to for users that only want client functionality. |
| 50 | +* To install all dependencies required for the data modules (annotation types and mea metric calculation) use `pip install labelbox[data]` |
| 51 | +* Decrease wait time between updates for `BulkImportRequest.wait_until_done()`. |
| 52 | +* Organization is no longer used to create the LFO in `Project.setup()` |
| 53 | + |
| 54 | + |
3 | 55 | # Version 3.0.0-rc3 (2021-08-11)
|
4 | 56 | ## Updates
|
5 | 57 | * Geometry.raster now has a consistent interface and improved functionality
|
|
0 commit comments