|
2 | 2 |
|
3 | 3 | # Next Release
|
4 | 4 |
|
| 5 | +# Version 3.0b0 |
| 6 | +## Added |
| 7 | +* Annotation types |
| 8 | + - A set of python objects for working with labelbox data |
| 9 | + - Create with `project.label_generator()` or `project.video_label_generator()` |
| 10 | + - See example notebooks on how to use under examples/annotation_types |
| 11 | + - Note that these types are not yet supported for tiled imagery |
| 12 | +* MEA Support |
| 13 | + - Beta MEA users can now just use the latest SDK release |
| 14 | +* Metadata support |
| 15 | + - New metadata feature is now fully supported in the SDK |
| 16 | +* Easier export |
| 17 | + - project.export_labels accepts a boolean indicating whether or not to download the result |
| 18 | + - Video exports are much simpler using the new `project.video_label_generator()` |
| 19 | +* Retry logic on data uploads |
| 20 | + - Bulk creation of data rows will be more reliable |
| 21 | +* Datasets |
| 22 | + - Determine the number of data rows just by calling `dataset.row_count`. |
| 23 | + - Updated threading logic in create_data_rows() to make it compatible with aws lambdas |
| 24 | +* `OntologyBuilder`, `Classification`, `Option`, and `Tool` can now be imported from `labelbox` instead of `labelbox.schema.ontology` |
| 25 | + |
| 26 | + |
5 | 27 | ## Removed
|
6 |
| -* Deprecated functions |
7 |
| - - project.reviews() |
8 |
| - - project.create_prediction() |
9 |
| - - project.create_prediction_model() |
10 |
| - - project.create_label() |
| 28 | +* Deprecated: |
| 29 | + - `project.reviews()` |
| 30 | + - `project.create_prediction()` |
| 31 | + - `project.create_prediction_model()` |
| 32 | + - `project.create_label()` |
| 33 | + - `Project.predictions()` |
| 34 | + - `Project.active_prediction_model` |
| 35 | + - `data_row.predictions` |
| 36 | + - `PredictionModel` |
| 37 | + - `Prediction` |
| 38 | +* Replaced: |
| 39 | + - `data_row.metadata()` use `data_row.attachments()` instead |
| 40 | + - `data_row.create_metadata()` use `data_row.create_attachments()` instead |
| 41 | + - `AssetMetadata` use `AssetAttachment` instead |
| 42 | + |
| 43 | +## Misc |
| 44 | +* Data processing dependencies are not installed by default to for users that only want client functionality. |
| 45 | +* To install all dependencies required for the data modules (annotation types and mea metric calculation) use `pip install labelbox[data]` |
| 46 | + |
11 | 47 |
|
12 | 48 | # Version 2.7.0 (2021-06-27)
|
13 | 49 | ## Added
|
|
0 commit comments