From 6ddc05a935e2af2c2641c888616c2acb78e94daa Mon Sep 17 00:00:00 2001 From: Jirka B Date: Thu, 7 Nov 2024 19:40:54 +0000 Subject: [PATCH] releasing `1.5.2` --- CHANGELOG.md | 10 +++++++--- src/torchmetrics/__about__.py | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e93b4155e54..636e346940e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,14 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- -## [UnReleased] - 2024-MM-DD +## [1.5.2] - 2024-11-07 -### Fixed +### Changed -- Fixed iou scores in detection for either empty predictions/targets leading to wrong scores ([#2805](https://github.com/Lightning-AI/torchmetrics/pull/2805)) +- Re-adding `numpy` 2+ support ([#2804](https://github.com/Lightning-AI/torchmetrics/pull/2804)) +### Fixed +- Fixed iou scores in detection for either empty predictions/targets leading to wrong scores ([#2805](https://github.com/Lightning-AI/torchmetrics/pull/2805)) - Fixed `MetricCollection` compatibility with `torch.jit.script` ([#2813](https://github.com/Lightning-AI/torchmetrics/pull/2813)) +- Fixed assert in PIT ([#2811](https://github.com/Lightning-AI/torchmetrics/pull/2811)) +- Pathed `np.Inf` for `numpy` 2.0+ ([#2826](https://github.com/Lightning-AI/torchmetrics/pull/2826)) --- diff --git a/src/torchmetrics/__about__.py b/src/torchmetrics/__about__.py index 8ae351f52f5..e4a11de08c5 100644 --- a/src/torchmetrics/__about__.py +++ b/src/torchmetrics/__about__.py @@ -1,4 +1,4 @@ -__version__ = "1.5.1" +__version__ = "1.5.2" __author__ = "Lightning-AI et al." __author_email__ = "name@pytorchlightning.ai" __license__ = "Apache-2.0"