|
1 | 1 | # Changelog |
2 | 2 |
|
3 | | -## Deprecation Notice |
4 | | -| Name | Replacement | Removed After | |
5 | | -| ------------------------------------- | ------------------------------------- | ------------- | |
6 | | -| `ModelRun.delete_annotation_groups()` | `ModelRun.delete_model_run_data_rows()`| 3.9 | |
7 | | -| `ModelRun.annotation_groups()` | `ModelRun.model_run_data_rows()` | 3.9 | |
8 | | -| `DataRowMetadataSchema.id` | `DataRowMetadataSchema.uid` | 3.9 | |
9 | | ------ |
| 3 | +# Version 3.17.2 (2022-03-28) |
| 4 | +## Fix |
| 5 | +* Project.upsert_instructions now works properly for new projects. |
| 6 | + |
| 7 | +# Version 3.17.1 (2022-03-25) |
| 8 | +## Updated |
| 9 | +* Remove unused rasterio dependency |
| 10 | + |
| 11 | +# Version 3.17.0 (2022-03-22) |
| 12 | +## Added |
| 13 | +* Create batches from the SDK (Beta). Learn more about [batches](https://docs.labelbox.com/docs/batches) |
| 14 | +* Support for precision and recall metrics on Entity annotations |
| 15 | + |
| 16 | +## Fix |
| 17 | +* `client.create_project` type hint added for its return type |
| 18 | + |
| 19 | +## Updated |
| 20 | +* Removed batch MVP code |
| 21 | + |
| 22 | +# Version 3.16.0 (2022-03-08) |
| 23 | +## Added |
| 24 | +* Ability to fetch a model run with `client.get_model_run()` |
| 25 | +* Ability to fetch labels from a model run with `model_run.export_labels()` |
| 26 | + - Note: this is only Experimental. To use, client param `enable_experimental` should |
| 27 | + be set to true |
| 28 | +* Ability to delete an attachment |
| 29 | + |
| 30 | +## Fix |
| 31 | +* Logger level is no longer set to INFO |
| 32 | + |
| 33 | +## Updated |
| 34 | +* Deprecation: Creating Dropdowns will no longer be supported after 2022-03-31 |
| 35 | + - This includes creating/adding Dropdowns to an ontology |
| 36 | + - This includes creating/adding Dropdown Annotation Type |
| 37 | + - For the same functionality, use Radio |
| 38 | + - This will not affect existing Dropdowns |
| 39 | + |
| 40 | +# Changelog |
| 41 | +# Version 3.15.0 (2022-02-28) |
| 42 | +## Added |
| 43 | +* Extras folder which contains useful applications using the sdk |
| 44 | +* Addition of ResourceTag at the Organization and Project level |
| 45 | +* Updates to the example notebooks |
| 46 | + |
| 47 | +## Fix |
| 48 | +* EPSGTransformer now properly transforms Polygon to Polygon |
| 49 | +* VideoData string representation now properly shows VideoData |
| 50 | + |
| 51 | + |
| 52 | +# Version 3.14.0 (2022-02-10) |
| 53 | +## Added |
| 54 | +* Updated metrics for classifications to be per-answer |
| 55 | + |
| 56 | + |
| 57 | +# Version 3.13.0 (2022-02-07) |
| 58 | +## Added |
| 59 | +* Added `from_shapely` method to create annotation types from Shapely objects |
| 60 | +* Added `start` and `end` filter on the following methods |
| 61 | +- `Project.export_labels()` |
| 62 | +- `Project.label_generator()` |
| 63 | +- `Project.video_label_generator()` |
| 64 | +* Improved type hinting |
| 65 | + |
| 66 | + |
| 67 | +# Version 3.12.0 (2022-01-19) |
| 68 | +## Added |
| 69 | +* Tiled Imagery annotation type |
| 70 | +- A set of classes that support Tiled Image assets |
| 71 | +- New demo notebook can be found here: examples/annotation_types/tiled_imagery_basics.ipynb |
| 72 | +- Updated tiled image mal can be found here: examples/model_assisted_labeling/tiled_imagery_mal.ipynb |
| 73 | +* Support transformations from one EPSG to another with `EPSGTransformer` class |
| 74 | +- Supports EPSG to Pixel space transformations |
| 75 | + |
| 76 | + |
| 77 | +# Version 3.11.1 (2022-01-10) |
| 78 | +## Fix |
| 79 | +* Make `TypedArray` class compatible with `numpy` versions `>= 1.22.0` |
| 80 | +* `project.upsert_review_queue` quotas can now be in the inclusive range [0,1] |
| 81 | +* Restore support for upserting html instructions to a project |
| 82 | + |
| 83 | +# Version 3.11.0 (2021-12-15) |
| 84 | + |
| 85 | +## Fix |
| 86 | +* `Dataset.create_data_rows()` now accepts an iterable of data row information instead of a list |
| 87 | +* `project.upsert_instructions()` |
| 88 | + * now only supports pdfs since that is what the editor requires |
| 89 | + * There was a bug that could cause this to modify the project ontology |
| 90 | + |
| 91 | +## Removed |
| 92 | +* `DataRowMetadataSchema.id` use `DataRowMetadataSchema.uid` instead |
| 93 | +* `ModelRun.delete_annotation_groups()` use `ModelRun.delete_model_run_data_rows()` instead |
| 94 | +* `ModelRun.annotation_groups()` use `ModelRun.model_run_data_rows()` instead |
| 95 | + |
| 96 | +# Version 3.10.0 (2021-11-18) |
| 97 | +## Added |
| 98 | +* `AnnotationImport.wait_until_done()` accepts a `show_progress` param. This is set to `False` by default. |
| 99 | + * If enabled, a tqdm progress bar will indicate the import progress. |
| 100 | + * This works for all classes that inherit from AnnotationImport: `LabelImport`, `MALPredictionImport`, `MEAPredictionImport` |
| 101 | + * This is not support for `BulkImportRequest` (which will eventually be replaced by `MALPredictionImport`) |
| 102 | +* `Option.label` and `Option.value` can now be set independently |
| 103 | +* `ClassificationAnswer`s now support a new `keyframe` field for videos |
| 104 | +* New `LBV1Label.media_type field. This is a placeholder for future backend changes. |
| 105 | + |
| 106 | +## Fix |
| 107 | +* Nested checklists can have extra brackets. This would cause the annotation type converter to break. |
| 108 | + |
| 109 | + |
10 | 110 | # Version 3.9.0 (2021-11-12) |
11 | 111 | ## Added |
12 | 112 | * New ontology management features |
|
18 | 118 | * Set up a project from an existing ontology with `project.setup_edior()` |
19 | 119 | * Added new `FeatureSchema` entity |
20 | 120 | * Add support for new queue modes |
21 | | - * Send batches of data direction to a project with `project.queue()` |
22 | | - * Remove items from the queue with `project.dequeue()` |
| 121 | + * Send batches of data directly to a project queue with `project.queue()` |
| 122 | + * Remove items from a project queue with `project.dequeue()` |
23 | 123 | * Query for and toggle the queue mode |
24 | 124 |
|
25 | 125 | # Version 3.8.0 (2021-10-22) |
|
0 commit comments