diff --git a/CHANGELOG.md b/CHANGELOG.md index 2110dc39feb..47efe68bac9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,12 @@ All notable changes to this project will be documented in this file. () - Move templates from OTX1.X to OTX2.X () +- Include Geti arrow dataset subset names + () +- Include full image with anno in case there's no tile in tile dataset + () +- Add type checker in converter for callable functions (optimizer, scheduler) + () ### Bug fixes diff --git a/README.md b/README.md index c3938a2bc90..f1c3043a6e1 100644 --- a/README.md +++ b/README.md @@ -193,6 +193,9 @@ In addition to the examples above, please refer to the documentation for tutoria - Support ImageFromBytes - enable model export - Move templates from OTX1.X to OTX2.X +- Include Geti arrow dataset subset names +- Include full image with anno in case there's no tile in tile dataset +- Add type checker in converter for callable functions (optimizer, scheduler) ### Bug fixes diff --git a/docs/source/guide/release_notes/index.rst b/docs/source/guide/release_notes/index.rst index cf950aae2f6..75070a72926 100644 --- a/docs/source/guide/release_notes/index.rst +++ b/docs/source/guide/release_notes/index.rst @@ -34,6 +34,9 @@ Enhancements - Support ImageFromBytes - enable model export - Move templates from OTX1.X to OTX2.X +- Include Geti arrow dataset subset names +- Include full image with anno in case there's no tile in tile dataset +- Add type checker in converter for callable functions (optimizer, scheduler) Bug fixes ^^^^^^^^^ diff --git a/src/otx/__init__.py b/src/otx/__init__.py index cd62efaf949..225fbef0d04 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.0rc1" +__version__ = "2.2.0rc2" import os from pathlib import Path