From d6458e6816c4c6b0cf10d821f2eda6440570e612 Mon Sep 17 00:00:00 2001 From: Yunchu Lee Date: Thu, 17 Oct 2024 16:13:38 +0900 Subject: [PATCH] Update for release 2.2.0rc8 (#4043) --- README.md | 1 + docs/source/guide/release_notes/index.rst | 1 + src/otx/__init__.py | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 006c61931f..f185b9c1d9 100644 --- a/README.md +++ b/README.md @@ -211,6 +211,7 @@ In addition to the examples above, please refer to the documentation for tutoria - Fix config converter for tiling - Fix num_trials calculation on dataset length less than num_class - Fix out_features in HierarchicalCBAMClsHead +- Fix multilabel_accuracy of MixedHLabelAccuracy ### Known issues diff --git a/docs/source/guide/release_notes/index.rst b/docs/source/guide/release_notes/index.rst index 086d928486..965cbb1f37 100644 --- a/docs/source/guide/release_notes/index.rst +++ b/docs/source/guide/release_notes/index.rst @@ -53,6 +53,7 @@ Bug fixes - Fix config converter for tiling - Fix num_trials calculation on dataset length less than num_class - Fix out_features in HierarchicalCBAMClsHead +- Fix multilabel_accuracy of MixedHLabelAccuracy v2.1.0 (2024.07) ---------------- diff --git a/src/otx/__init__.py b/src/otx/__init__.py index 4aac3c0eda..87cf0e846f 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.0rc7" +__version__ = "2.2.0rc8" import os from pathlib import Path