Skip to content

Commit b1ec8e7

Browse files
authored
Update for 2.2.0rc1 (#3956)
1 parent ecef545 commit b1ec8e7

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,25 @@ All notable changes to this project will be documented in this file.
4343
(<https://github.com/openvinotoolkit/training_extensions/pull/3769>)
4444
- Refactoring `ConvModule` by removing `conv_cfg`, `norm_cfg`, and `act_cfg`
4545
(<https://github.com/openvinotoolkit/training_extensions/pull/3783>, <https://github.com/openvinotoolkit/training_extensions/pull/3816>, <https://github.com/openvinotoolkit/training_extensions/pull/3809>)
46+
- Support ImageFromBytes
47+
(<https://github.com/openvinotoolkit/training_extensions/pull/3948>)
48+
- enable model export
49+
(<https://github.com/openvinotoolkit/training_extensions/pull/3952>)
50+
- Move templates from OTX1.X to OTX2.X
51+
(<https://github.com/openvinotoolkit/training_extensions/pull/3951>)
4652

4753
### Bug fixes
4854

4955
- Fix Combined Dataloader & unlabeled warmup loss in Semi-SL
50-
(https://github.com/openvinotoolkit/training_extensions/pull/3723)
56+
(<https://github.com/openvinotoolkit/training_extensions/pull/3723>)
5157
- Revert #3579 to fix issues with replacing coco_instance with a different format in some dataset
52-
(https://github.com/openvinotoolkit/training_extensions/pull/3753)
58+
(<https://github.com/openvinotoolkit/training_extensions/pull/3753>)
5359
- Add num_devices in Engine for multi-gpu training
54-
(https://github.com/openvinotoolkit/training_extensions/pull/3778)
60+
(<https://github.com/openvinotoolkit/training_extensions/pull/3778>)
61+
- Add missing tile recipes and various tile recipe changes
62+
(<https://github.com/openvinotoolkit/training_extensions/pull/3942>)
63+
- Change categories mapping logic
64+
(<https://github.com/openvinotoolkit/training_extensions/pull/3946>)
5565

5666
## \[v2.1.0\]
5767

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,17 @@ In addition to the examples above, please refer to the documentation for tutoria
190190
- Enable to use input_size at transforms in recipe
191191
- Enable to use polygon and bitmap mask as prompt inputs for zero-shot learning
192192
- Refactoring `ConvModule` by removing `conv_cfg`, `norm_cfg`, and `act_cfg`
193+
- Support ImageFromBytes
194+
- enable model export
195+
- Move templates from OTX1.X to OTX2.X
193196

194197
### Bug fixes
195198

196199
- Fix Combined Dataloader & unlabeled warmup loss in Semi-SL
197200
- Revert #3579 to fix issues with replacing coco_instance with a different format in some dataset
198201
- Add num_devices in Engine for multi-gpu training
202+
- Add missing tile recipes and various tile recipe changes
203+
- Change categories mapping logic
199204

200205
### Known issues
201206

docs/source/guide/release_notes/index.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,18 @@ Enhancements
3131
- Enable to use input_size at transforms in recipe
3232
- Enable to use polygon and bitmap mask as prompt inputs for zero-shot learning
3333
- Refactoring `ConvModule` by removing `conv_cfg`, `norm_cfg`, and `act_cfg`
34+
- Support ImageFromBytes
35+
- enable model export
36+
- Move templates from OTX1.X to OTX2.X
3437

3538
Bug fixes
3639
^^^^^^^^^
3740

3841
- Fix Combined Dataloader & unlabeled warmup loss in Semi-SL
3942
- Revert #3579 to fix issues with replacing coco_instance with a different format in some dataset
4043
- Add num_devices in Engine for multi-gpu training
41-
44+
- Add missing tile recipes and various tile recipe changes
45+
- Change categories mapping logic
4246

4347
v2.1.0 (2024.07)
4448
----------------

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.0rc0"
6+
__version__ = "2.2.0rc1"
77

88
import os
99
from pathlib import Path

0 commit comments

Comments
 (0)