diff --git a/CHANGELOG.md b/CHANGELOG.md index 37184eb4fb5..2110dc39feb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,15 +43,25 @@ All notable changes to this project will be documented in this file. () - Refactoring `ConvModule` by removing `conv_cfg`, `norm_cfg`, and `act_cfg` (, , ) +- Support ImageFromBytes + () +- enable model export + () +- Move templates from OTX1.X to OTX2.X + () ### Bug fixes - Fix Combined Dataloader & unlabeled warmup loss in Semi-SL - (https://github.com/openvinotoolkit/training_extensions/pull/3723) + () - Revert #3579 to fix issues with replacing coco_instance with a different format in some dataset - (https://github.com/openvinotoolkit/training_extensions/pull/3753) + () - Add num_devices in Engine for multi-gpu training - (https://github.com/openvinotoolkit/training_extensions/pull/3778) + () +- Add missing tile recipes and various tile recipe changes + () +- Change categories mapping logic + () ## \[v2.1.0\] diff --git a/README.md b/README.md index f678fd9ecd5..c3938a2bc90 100644 --- a/README.md +++ b/README.md @@ -190,12 +190,17 @@ In addition to the examples above, please refer to the documentation for tutoria - Enable to use input_size at transforms in recipe - Enable to use polygon and bitmap mask as prompt inputs for zero-shot learning - Refactoring `ConvModule` by removing `conv_cfg`, `norm_cfg`, and `act_cfg` +- Support ImageFromBytes +- enable model export +- Move templates from OTX1.X to OTX2.X ### Bug fixes - Fix Combined Dataloader & unlabeled warmup loss in Semi-SL - Revert #3579 to fix issues with replacing coco_instance with a different format in some dataset - Add num_devices in Engine for multi-gpu training +- Add missing tile recipes and various tile recipe changes +- Change categories mapping logic ### Known issues diff --git a/docs/source/guide/release_notes/index.rst b/docs/source/guide/release_notes/index.rst index 1871c1b9438..cf950aae2f6 100644 --- a/docs/source/guide/release_notes/index.rst +++ b/docs/source/guide/release_notes/index.rst @@ -31,6 +31,9 @@ Enhancements - Enable to use input_size at transforms in recipe - Enable to use polygon and bitmap mask as prompt inputs for zero-shot learning - Refactoring `ConvModule` by removing `conv_cfg`, `norm_cfg`, and `act_cfg` +- Support ImageFromBytes +- enable model export +- Move templates from OTX1.X to OTX2.X Bug fixes ^^^^^^^^^ @@ -38,7 +41,8 @@ Bug fixes - Fix Combined Dataloader & unlabeled warmup loss in Semi-SL - Revert #3579 to fix issues with replacing coco_instance with a different format in some dataset - Add num_devices in Engine for multi-gpu training - +- Add missing tile recipes and various tile recipe changes +- Change categories mapping logic v2.1.0 (2024.07) ---------------- diff --git a/src/otx/__init__.py b/src/otx/__init__.py index 58cf9a5f332..cd62efaf949 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.0rc0" +__version__ = "2.2.0rc1" import os from pathlib import Path