From 035e433ce416d82e415d16ba87f8c12cbb74fdef Mon Sep 17 00:00:00 2001 From: Jirka Date: Thu, 13 Jul 2023 11:33:49 +0200 Subject: [PATCH] releasing 1.0.1 --- CHANGELOG.md | 25 +------------------------ src/torchmetrics/__about__.py | 2 +- 2 files changed, 2 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15cc8708f87..9d61df7de8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,37 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 **Note: we move fast, but still we preserve 0.1 version (one feature release) back compatibility.** -## [UnReleased] - 2022-MM-DD - -### Added - -- - - -### Changed - -- - - -### Removed - -- - +## [1.0.1] - 2022-07-13 ### Fixed - Fixes corner case when using `MetricCollection` together with aggregation metrics ([#1896](https://github.com/Lightning-AI/torchmetrics/pull/1896)) - - - Fixed the use of `max_fpr` in `AUROC` metric when only one class is present ([#1895](https://github.com/Lightning-AI/torchmetrics/pull/1895)) - - - Fixed bug related to empty predictions for `IntersectionOverUnion` metric ([#1892](https://github.com/Lightning-AI/torchmetrics/pull/1892)) - - - Fixed bug related to `MeanMetric` and broadcasting of weights when Nans are present ([#1898](https://github.com/Lightning-AI/torchmetrics/pull/1898)) - - - Fixed bug related to expected input format of pycoco in `MeanAveragePrecision` ([#1913](https://github.com/Lightning-AI/torchmetrics/pull/1913)) diff --git a/src/torchmetrics/__about__.py b/src/torchmetrics/__about__.py index 47ee37bceba..222ab201dd3 100644 --- a/src/torchmetrics/__about__.py +++ b/src/torchmetrics/__about__.py @@ -1,4 +1,4 @@ -__version__ = "1.1.0.dev" +__version__ = "1.0.1" __author__ = "Lightning-AI et al." __author_email__ = "name@pytorchlightning.ai" __license__ = "Apache-2.0"