From d4540cb9abe158af48bd885089b9b15ce543105a Mon Sep 17 00:00:00 2001 From: Yunchu Lee Date: Fri, 11 Oct 2024 09:48:46 +0900 Subject: [PATCH 1/2] update for release 2.2.0rc5 --- CHANGELOG.md | 2 ++ README.md | 1 + docs/source/guide/release_notes/index.rst | 3 ++- src/otx/__init__.py | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dbf01612eb..1f622d73c25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,6 +57,8 @@ All notable changes to this project will be documented in this file. () - Change sematic segmentation to consider bbox only annotations () +- Relieve memory usage criteria on batch size 2 during adaptive batch size + () ### Bug fixes diff --git a/README.md b/README.md index f42741bb689..e95520c7e7f 100644 --- a/README.md +++ b/README.md @@ -197,6 +197,7 @@ In addition to the examples above, please refer to the documentation for tutoria - Include full image with anno in case there's no tile in tile dataset - Add type checker in converter for callable functions (optimizer, scheduler) - Change sematic segmentation to consider bbox only annotations +- Relieve memory usage criteria on batch size 2 during adaptive batch size ### Bug fixes diff --git a/docs/source/guide/release_notes/index.rst b/docs/source/guide/release_notes/index.rst index a0e0954c2a8..5fd0cdc30f0 100644 --- a/docs/source/guide/release_notes/index.rst +++ b/docs/source/guide/release_notes/index.rst @@ -4,7 +4,7 @@ Releases .. toctree:: :maxdepth: 1 -v2.2.0 (2024.09) +v2.2.0 (2024.10) ---------------- New features @@ -38,6 +38,7 @@ Enhancements - Include full image with anno in case there's no tile in tile dataset - Add type checker in converter for callable functions (optimizer, scheduler) - Change sematic segmentation to consider bbox only annotations +- Relieve memory usage criteria on batch size 2 during adaptive batch size Bug fixes ^^^^^^^^^ diff --git a/src/otx/__init__.py b/src/otx/__init__.py index 15b5d5ff729..cc9cde930aa 100644 --- a/src/otx/__init__.py +++ b/src/otx/__init__.py @@ -3,7 +3,7 @@ # Copyright (C) 2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 -__version__ = "2.2.0rc4" +__version__ = "2.2.0rc5" import os from pathlib import Path From 9d554e4accb55feaabe2893e83a1ce5530bc7712 Mon Sep 17 00:00:00 2001 From: Yunchu Lee Date: Fri, 11 Oct 2024 18:21:40 +0900 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 2 ++ README.md | 3 +++ docs/source/guide/release_notes/index.rst | 3 +++ 3 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f622d73c25..d0d20bbfe7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -59,6 +59,8 @@ All notable changes to this project will be documented in this file. () - Relieve memory usage criteria on batch size 2 during adaptive batch size () +- Remove background label from RT Info for segmentation task + () ### Bug fixes diff --git a/README.md b/README.md index e95520c7e7f..78aeccaf7b3 100644 --- a/README.md +++ b/README.md @@ -198,6 +198,7 @@ In addition to the examples above, please refer to the documentation for tutoria - Add type checker in converter for callable functions (optimizer, scheduler) - Change sematic segmentation to consider bbox only annotations - Relieve memory usage criteria on batch size 2 during adaptive batch size +- Remove background label from RT Info for segmentation task ### Bug fixes @@ -207,6 +208,8 @@ In addition to the examples above, please refer to the documentation for tutoria - Add missing tile recipes and various tile recipe changes - Change categories mapping logic - Fix config converter for tiling +- Fix num_trials calculation on dataset length less than num_class +- Fix out_features in HierarchicalCBAMClsHead ### Known issues diff --git a/docs/source/guide/release_notes/index.rst b/docs/source/guide/release_notes/index.rst index 5fd0cdc30f0..964066cf5c7 100644 --- a/docs/source/guide/release_notes/index.rst +++ b/docs/source/guide/release_notes/index.rst @@ -39,6 +39,7 @@ Enhancements - Add type checker in converter for callable functions (optimizer, scheduler) - Change sematic segmentation to consider bbox only annotations - Relieve memory usage criteria on batch size 2 during adaptive batch size +- Remove background label from RT Info for segmentation task Bug fixes ^^^^^^^^^ @@ -49,6 +50,8 @@ Bug fixes - Add missing tile recipes and various tile recipe changes - Change categories mapping logic - Fix config converter for tiling +- Fix num_trials calculation on dataset length less than num_class +- Fix out_features in HierarchicalCBAMClsHead v2.1.0 (2024.07) ----------------