From cd9fa1db547ad27164231eae1c8ce149f4e80dc7 Mon Sep 17 00:00:00 2001 From: Jirka B Date: Thu, 12 Sep 2024 20:20:16 +0200 Subject: [PATCH] releasing `1.4.2` --- CHANGELOG.md | 24 +++--------------------- src/torchmetrics/__about__.py | 2 +- 2 files changed, 4 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0f30f4a4ec..95a6d3d8e82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,38 +8,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- -## [UnReleased] - 2022-MM-DD +## [1.4.2] - 2022-09-12 ### Added - Re-adding `Chrf` implementation ([#2701](https://github.com/Lightning-AI/torchmetrics/pull/2701)) - -### Changed - -- - - -### Removed - -- - - ### Fixed - Fixed wrong aggregation in `segmentation.MeanIoU` ([#2698](https://github.com/Lightning-AI/torchmetrics/pull/2698)) - - - Fixed handling zero division error in binary IoU (Jaccard index) calculation ([#2726](https://github.com/Lightning-AI/torchmetrics/pull/2726)) - - -- Correct the padding related calculation errors in SSIM ([#2721](https://github.com/Lightning-AI/torchmetrics/pull/2721)) - - +- Corrected the padding related calculation errors in SSIM ([#2721](https://github.com/Lightning-AI/torchmetrics/pull/2721)) - Fixed compatibility of audio domain with new `scipy` ([#2733](https://github.com/Lightning-AI/torchmetrics/pull/2733)) - - - Fixed how `prefix`/`postfix` works in `MultitaskWrapper` ([#2722](https://github.com/Lightning-AI/torchmetrics/pull/2722)) +- Fixed flakiness in tests related to `torch.unique` with `dim=None` ([#2650](https://github.com/Lightning-AI/torchmetrics/pull/2650)) ## [1.4.1] - 2024-08-02 diff --git a/src/torchmetrics/__about__.py b/src/torchmetrics/__about__.py index 64c9c3e48f4..af68edb3072 100644 --- a/src/torchmetrics/__about__.py +++ b/src/torchmetrics/__about__.py @@ -1,4 +1,4 @@ -__version__ = "1.4.1" +__version__ = "1.4.2" __author__ = "Lightning-AI et al." __author_email__ = "name@pytorchlightning.ai" __license__ = "Apache-2.0"