Skip to content

Commit

Permalink
Merge pull request #753 from Labelbox/develop
Browse files Browse the repository at this point in the history
3.29.0
  • Loading branch information
olegtrygub authored Nov 2, 2022
2 parents d7b0075 + 3f91610 commit 3e0c617
Show file tree
Hide file tree
Showing 37 changed files with 1,311 additions and 633 deletions.
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

# Version 3.29.0 (2022-10-28)

### Added
* Added new base `Slice` Entity/DbObject and `CatalogSlice` class
* Added `client.get_catalog_slice(id)` to fetch a CatalogSlice by ID
* Added `slice.get_data_row_ids()` to fetch data row ids of the slice
* Add deprecation warning for queue_mode == QueueMode.Dataset when creating a new project.
* Add deprecation warning for LPOs.

### Changed
* Default behavior for metrics to not include subclasses in the calculation.

### Fixed
* Polygon extraction from masks creating invalid polygons. This would cause issues in the coco converter.

# Version 3.28.0 (2022-10-14)

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

# Version 3.26.2 (2022-09-06)
### Added
Expand All @@ -65,7 +80,7 @@
* Resets model run training metadata
* `ModelRun.get_config()`
* Fetches model run training metadata

### Changed
* `Model.create_model_run()`
* Add training metadata config as a model run creation param
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
copyright = '2021, Labelbox'
author = 'Labelbox'

release = '3.28.0'
release = '3.29.0'

# -- General configuration ---------------------------------------------------

Expand Down
21 changes: 18 additions & 3 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,14 @@ DataRowMetadata

.. automodule:: labelbox.schema.data_row_metadata
:members:
:show-inheritance:
:show-inheritance:

AnnotationImport
----------------------------

.. automodule:: labelbox.schema.annotation_import
:members:
:show-inheritance:
:show-inheritance:

Batch
----------------------------
Expand All @@ -194,4 +194,19 @@ ResourceTag

.. automodule:: labelbox.schema.resource_tag
:members:
:show-inheritance:
:show-inheritance:

Slice
-----------------------------------------

.. automodule:: labelbox.schema.slice
:members: Slice
:exclude-members: CatalogSlice
:show-inheritance:

CatalogSlice
-----------------------------------------
.. automodule:: labelbox.schema.slice
:members: CatalogSlice
:exclude-members: Slice
:show-inheritance:
Loading

0 comments on commit 3e0c617

Please sign in to comment.