|
1 | 1 | # Changelog
|
2 | 2 |
|
3 |
| -# Next Release |
| 3 | +# Version 3.0.1 (2021-08-12) |
| 4 | +## Fix |
| 5 | +* Issue with inferring text type from export |
| 6 | + |
| 7 | +# Version 3.0.0 (2021-08-12) |
| 8 | +## Added |
| 9 | +* Annotation types |
| 10 | + - A set of python objects for working with labelbox data |
| 11 | + - Creates a standard interface for both exports and imports |
| 12 | + - See example notebooks on how to use under examples/annotation_types |
| 13 | + - Note that these types are not yet supported for tiled imagery |
| 14 | +* MEA Support |
| 15 | + - Beta MEA users can now just use the latest SDK release |
| 16 | +* Metadata support |
| 17 | + - New metadata features are now fully supported by the SDK |
| 18 | +* Easier export |
| 19 | + - `project.export_labels()` accepts a boolean indicating whether or not to download the result |
| 20 | + - Create annotation objects directly from exports with `project.label_generator()` or `project.video_label_generator()` |
| 21 | + - `project.video_label_generator()` asynchronously fetches video annotations |
| 22 | +* Retry logic on data uploads |
| 23 | + - Bulk creation of data rows will be more reliable |
| 24 | +* Datasets |
| 25 | + - Determine the number of data rows just by calling `dataset.row_count`. |
| 26 | + - Updated threading logic in create_data_rows() to make it compatible with aws lambdas |
| 27 | +* Ontology |
| 28 | + - `OntologyBuilder`, `Classification`, `Option`, and `Tool` can now be imported from `labelbox` instead of `labelbox.schema.ontology` |
| 29 | + |
| 30 | +## Removed |
| 31 | +* Deprecated: |
| 32 | + - `project.reviews()` |
| 33 | + - `project.create_prediction()` |
| 34 | + - `project.create_prediction_model()` |
| 35 | + - `project.create_label()` |
| 36 | + - `Project.predictions()` |
| 37 | + - `Project.active_prediction_model` |
| 38 | + - `data_row.predictions` |
| 39 | + - `PredictionModel` |
| 40 | + - `Prediction` |
| 41 | +* Replaced: |
| 42 | + - `data_row.metadata()` use `data_row.attachments()` instead |
| 43 | + - `data_row.create_metadata()` use `data_row.create_attachments()` instead |
| 44 | + - `AssetMetadata` use `AssetAttachment` instead |
| 45 | + |
| 46 | +## Fixes |
| 47 | +* Support derived classes of ontology objects when using `from_dict` |
| 48 | +* Notebooks: |
| 49 | + - Video export bug where the code would fail if the exported projects had tools other than bounding boxes |
| 50 | + - MAL demos were broken due to an image download failing. |
| 51 | + |
| 52 | +## Misc |
| 53 | +* Data processing dependencies are not installed by default to for users that only want client functionality. |
| 54 | +* To install all dependencies required for the data modules (annotation types and mea metric calculation) use `pip install labelbox[data]` |
| 55 | +* Decrease wait time between updates for `BulkImportRequest.wait_until_done()`. |
| 56 | +* Organization is no longer used to create the LFO in `Project.setup()` |
| 57 | + |
| 58 | + |
| 59 | +# Version 3.0.0-rc3 (2021-08-11) |
| 60 | +## Updates |
| 61 | +* Geometry.raster now has a consistent interface and improved functionality |
| 62 | +* renamed schema_id to feature_schema_id in the `FeatureSchema` class |
| 63 | +* `Mask` objects now use `MaskData` to represent segmentation masks instead of `ImageData` |
| 64 | + |
| 65 | +# Version 3.0.0-rc2 (2021-08-09) |
| 66 | +## Updates |
| 67 | +* Rename `data` property of TextData, ImageData, and VideoData types to `value`. |
| 68 | +* Decrease wait time between updates for `BulkImportRequest.wait_until_done()` |
| 69 | +* Organization is no longer used to create the LFO in `Project.setup()` |
| 70 | + |
| 71 | + |
| 72 | +# Version 3.0.0-rc1 (2021-08-05) |
| 73 | +## Added |
| 74 | +* Model diagnostics notebooks |
| 75 | +* Minor annotation type improvements |
| 76 | + |
| 77 | +# Version 3.0.0-rc0 (2021-08-04) |
| 78 | +## Added |
| 79 | +* Annotation types |
| 80 | + - A set of python objects for working with labelbox data |
| 81 | + - Creates a standard interface for both exports and imports |
| 82 | + - See example notebooks on how to use under examples/annotation_types |
| 83 | + - Note that these types are not yet supported for tiled imagery |
| 84 | +* MEA Support |
| 85 | + - Beta MEA users can now just use the latest SDK release |
| 86 | +* Metadata support |
| 87 | + - New metadata features are now fully supported by the SDK |
| 88 | +* Easier export |
| 89 | + - `project.export_labels()` accepts a boolean indicating whether or not to download the result |
| 90 | + - Create annotation objects directly from exports with `project.label_generator()` or `project.video_label_generator()` |
| 91 | + - `project.video_label_generator()` asynchronously fetches video annotations |
| 92 | +* Retry logic on data uploads |
| 93 | + - Bulk creation of data rows will be more reliable |
| 94 | +* Datasets |
| 95 | + - Determine the number of data rows just by calling `dataset.row_count`. |
| 96 | + - Updated threading logic in create_data_rows() to make it compatible with aws lambdas |
| 97 | +* Ontology |
| 98 | + - `OntologyBuilder`, `Classification`, `Option`, and `Tool` can now be imported from `labelbox` instead of `labelbox.schema.ontology` |
| 99 | + |
4 | 100 | ## Removed
|
5 |
| -* Deprecated functions |
6 |
| - - project.reviews() |
7 |
| - - project.create_prediction() |
8 |
| - - project.create_prediction_model() |
9 |
| - - project.create_label() |
| 101 | +* Deprecated: |
| 102 | + - `project.reviews()` |
| 103 | + - `project.create_prediction()` |
| 104 | + - `project.create_prediction_model()` |
| 105 | + - `project.create_label()` |
| 106 | + - `Project.predictions()` |
| 107 | + - `Project.active_prediction_model` |
| 108 | + - `data_row.predictions` |
| 109 | + - `PredictionModel` |
| 110 | + - `Prediction` |
| 111 | +* Replaced: |
| 112 | + - `data_row.metadata()` use `data_row.attachments()` instead |
| 113 | + - `data_row.create_metadata()` use `data_row.create_attachments()` instead |
| 114 | + - `AssetMetadata` use `AssetAttachment` instead |
| 115 | + |
| 116 | +## Fixes |
| 117 | +* Support derived classes of ontology objects when using `from_dict` |
| 118 | +* Notebooks: |
| 119 | + - Video export bug where the code would fail if the exported projects had tools other than bounding boxes |
| 120 | + - MAL demos were broken due to an image download failing. |
| 121 | + |
| 122 | +## Misc |
| 123 | +* Data processing dependencies are not installed by default to for users that only want client functionality. |
| 124 | +* To install all dependencies required for the data modules (annotation types and mea metric calculation) use `pip install labelbox[data]` |
10 | 125 |
|
11 | 126 | # Version 2.7b1+mea (2021-06-27)
|
12 | 127 | ## Fix
|
|
0 commit comments