Skip to content

Commit 3e0c617

Browse files
authored
Merge pull request #753 from Labelbox/develop
3.29.0
2 parents d7b0075 + 3f91610 commit 3e0c617

37 files changed

+1311
-633
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
# Version 3.29.0 (2022-10-28)
4+
5+
### Added
6+
* Added new base `Slice` Entity/DbObject and `CatalogSlice` class
7+
* Added `client.get_catalog_slice(id)` to fetch a CatalogSlice by ID
8+
* Added `slice.get_data_row_ids()` to fetch data row ids of the slice
9+
* Add deprecation warning for queue_mode == QueueMode.Dataset when creating a new project.
10+
* Add deprecation warning for LPOs.
11+
12+
### Changed
13+
* Default behavior for metrics to not include subclasses in the calculation.
14+
15+
### Fixed
16+
* Polygon extraction from masks creating invalid polygons. This would cause issues in the coco converter.
17+
318
# Version 3.28.0 (2022-10-14)
419

520
### Added
@@ -45,7 +60,7 @@
4560
* Increase scalar metric value limit to 100m
4661
* Added deprecation warnings when updating project `queue_mode`
4762
### Fixed
48-
* Fix bug in `feature_confusion_matrix` and `confusion_matrix` causing FPs and FNs to be capped at 1 when there were no matching annotations
63+
* Fix bug in `feature_confusion_matrix` and `confusion_matrix` causing FPs and FNs to be capped at 1 when there were no matching annotations
4964

5065
# Version 3.26.2 (2022-09-06)
5166
### Added
@@ -65,7 +80,7 @@
6580
* Resets model run training metadata
6681
* `ModelRun.get_config()`
6782
* Fetches model run training metadata
68-
83+
6984
### Changed
7085
* `Model.create_model_run()`
7186
* Add training metadata config as a model run creation param

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
copyright = '2021, Labelbox'
2222
author = 'Labelbox'
2323

24-
release = '3.28.0'
24+
release = '3.29.0'
2525

2626
# -- General configuration ---------------------------------------------------
2727

docs/source/index.rst

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,14 +173,14 @@ DataRowMetadata
173173

174174
.. automodule:: labelbox.schema.data_row_metadata
175175
:members:
176-
:show-inheritance:
176+
:show-inheritance:
177177

178178
AnnotationImport
179179
----------------------------
180180

181181
.. automodule:: labelbox.schema.annotation_import
182182
:members:
183-
:show-inheritance:
183+
:show-inheritance:
184184

185185
Batch
186186
----------------------------
@@ -194,4 +194,19 @@ ResourceTag
194194

195195
.. automodule:: labelbox.schema.resource_tag
196196
:members:
197-
:show-inheritance:
197+
:show-inheritance:
198+
199+
Slice
200+
-----------------------------------------
201+
202+
.. automodule:: labelbox.schema.slice
203+
:members: Slice
204+
:exclude-members: CatalogSlice
205+
:show-inheritance:
206+
207+
CatalogSlice
208+
-----------------------------------------
209+
.. automodule:: labelbox.schema.slice
210+
:members: CatalogSlice
211+
:exclude-members: Slice
212+
:show-inheritance:

0 commit comments

Comments
 (0)