Skip to content

Commit 324454e

Browse files
authored
Update for release 2.2.0rc5 (#4015)
1 parent bc673e7 commit 324454e

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ All notable changes to this project will be documented in this file.
5757
(<https://github.com/openvinotoolkit/training_extensions/pull/3968>)
5858
- Change sematic segmentation to consider bbox only annotations
5959
(<https://github.com/openvinotoolkit/training_extensions/pull/3996>)
60+
- Relieve memory usage criteria on batch size 2 during adaptive batch size
61+
(<https://github.com/openvinotoolkit/training_extensions/pull/4009>)
62+
- Remove background label from RT Info for segmentation task
63+
(<https://github.com/openvinotoolkit/training_extensions/pull/4011>)
6064

6165
### Bug fixes
6266

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,8 @@ In addition to the examples above, please refer to the documentation for tutoria
197197
- Include full image with anno in case there's no tile in tile dataset
198198
- Add type checker in converter for callable functions (optimizer, scheduler)
199199
- Change sematic segmentation to consider bbox only annotations
200+
- Relieve memory usage criteria on batch size 2 during adaptive batch size
201+
- Remove background label from RT Info for segmentation task
200202

201203
### Bug fixes
202204

@@ -206,6 +208,8 @@ In addition to the examples above, please refer to the documentation for tutoria
206208
- Add missing tile recipes and various tile recipe changes
207209
- Change categories mapping logic
208210
- Fix config converter for tiling
211+
- Fix num_trials calculation on dataset length less than num_class
212+
- Fix out_features in HierarchicalCBAMClsHead
209213

210214
### Known issues
211215

docs/source/guide/release_notes/index.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Releases
44
.. toctree::
55
:maxdepth: 1
66

7-
v2.2.0 (2024.09)
7+
v2.2.0 (2024.10)
88
----------------
99

1010
New features
@@ -38,6 +38,8 @@ Enhancements
3838
- Include full image with anno in case there's no tile in tile dataset
3939
- Add type checker in converter for callable functions (optimizer, scheduler)
4040
- Change sematic segmentation to consider bbox only annotations
41+
- Relieve memory usage criteria on batch size 2 during adaptive batch size
42+
- Remove background label from RT Info for segmentation task
4143

4244
Bug fixes
4345
^^^^^^^^^
@@ -48,6 +50,8 @@ Bug fixes
4850
- Add missing tile recipes and various tile recipe changes
4951
- Change categories mapping logic
5052
- Fix config converter for tiling
53+
- Fix num_trials calculation on dataset length less than num_class
54+
- Fix out_features in HierarchicalCBAMClsHead
5155

5256
v2.1.0 (2024.07)
5357
----------------

src/otx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2024 Intel Corporation
44
# SPDX-License-Identifier: Apache-2.0
55

6-
__version__ = "2.2.0rc4"
6+
__version__ = "2.2.0rc5"
77

88
import os
99
from pathlib import Path

0 commit comments

Comments
 (0)