From c1f83341c5c5d62bc711d3bd6288291b81e29c1a Mon Sep 17 00:00:00 2001 From: Jirka Date: Sat, 16 Mar 2024 16:13:21 +0100 Subject: [PATCH] releasing `1.3.2` --- CHANGELOG.md | 26 +------------------------- src/torchmetrics/__about__.py | 2 +- 2 files changed, 2 insertions(+), 26 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd5d2c13ee5..1b78b15a7c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,40 +10,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.3.2] - 2024-03-18 -### Added - -- - - -### Changed - -- - - -### Deprecated - -- - - ### Fixed - Fixed negative variance estimates in certain image metrics ([#2378](https://github.com/Lightning-AI/torchmetrics/pull/2378)) - - - Fixed dtype being changed by deepspeed for certain regression metrics ([#2379](https://github.com/Lightning-AI/torchmetrics/pull/2379)) - - - Fixed plotting of metric collection when prefix/postfix is set ([#2429](https://github.com/Lightning-AI/torchmetrics/pull/2429)) - - - Fixed bug when `top_k>1` and `average="macro"` for classification metrics ([#2423](https://github.com/Lightning-AI/torchmetrics/pull/2423)) - - - Fixed case where label prediction tensors in classification metrics were not validated correctly ([#2427](https://github.com/Lightning-AI/torchmetrics/pull/2427)) - - - Fixed how auc scores are calculated in `PrecisionRecallCurve.plot` methods ([#2437](https://github.com/Lightning-AI/torchmetrics/pull/2437)) + ## [1.3.1] - 2024-02-12 ### Fixed diff --git a/src/torchmetrics/__about__.py b/src/torchmetrics/__about__.py index 18912d156ea..4410100558a 100644 --- a/src/torchmetrics/__about__.py +++ b/src/torchmetrics/__about__.py @@ -1,4 +1,4 @@ -__version__ = "1.3.1" +__version__ = "1.3.2" __author__ = "Lightning-AI et al." __author_email__ = "name@pytorchlightning.ai" __license__ = "Apache-2.0"