Skip to content

Commit 58147e0

Browse files
committed
releasing 1.6.0
1 parent d73e6c1 commit 58147e0

File tree

2 files changed

+9
-30
lines changed

2 files changed

+9
-30
lines changed

CHANGELOG.md

+7-28
Original file line numberDiff line numberDiff line change
@@ -8,59 +8,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
---
1010

11-
## [UnReleased] - 2024-MM-DD
11+
## [1.6.0] - 2024-11-12
1212

1313
### Added
1414

15-
- Added `NormalizedRootMeanSquaredError` metric to regression subpackage ([#2442](https://github.com/Lightning-AI/torchmetrics/pull/2442))
16-
17-
18-
- Added `LogAUC` metric to classification package ([#2377](https://github.com/Lightning-AI/torchmetrics/pull/2377))
19-
20-
21-
- Added `NegativePredictiveValue` to classification metrics ([#2433](https://github.com/Lightning-AI/torchmetrics/pull/2433))
22-
23-
15+
- Added audio metric `NISQA` ([#2792](https://github.com/PyTorchLightning/metrics/pull/2792))
16+
- Added classification metric `LogAUC` ([#2377](https://github.com/Lightning-AI/torchmetrics/pull/2377))
17+
- Added classification metric `NegativePredictiveValue` ([#2433](https://github.com/Lightning-AI/torchmetrics/pull/2433))
18+
- Added regression metric `NormalizedRootMeanSquaredError` ([#2442](https://github.com/Lightning-AI/torchmetrics/pull/2442))
19+
- Added segmentation metric `Dice` ([#2725](https://github.com/Lightning-AI/torchmetrics/pull/2725))
2420
- Added method `merge_state` to `Metric` ([#2786](https://github.com/Lightning-AI/torchmetrics/pull/2786))
25-
26-
27-
- Added a new audio metric `NISQA` ([#2792](https://github.com/PyTorchLightning/metrics/pull/2792))
28-
29-
30-
- Added `Dice` metric to segmentation metrics ([#2725](https://github.com/Lightning-AI/torchmetrics/pull/2725))
31-
32-
3321
- Added support for propagation of the autograd graph in ddp setting ([#2754](https://github.com/Lightning-AI/torchmetrics/pull/2754))
3422

35-
3623
### Changed
3724

3825
- Changed naming and input order arguments in `KLDivergence` ([#2800](https://github.com/Lightning-AI/torchmetrics/pull/2800))
3926

40-
4127
### Deprecated
4228

4329
- Deprecated Dice from classification metrics ([#2725](https://github.com/Lightning-AI/torchmetrics/pull/2725))
4430

45-
4631
### Removed
4732

4833
- Changed minimum supported Pytorch version to 2.0 ([#2671](https://github.com/Lightning-AI/torchmetrics/pull/2671))
49-
50-
5134
- Dropped support for Python 3.8 ([#2827](https://github.com/Lightning-AI/torchmetrics/pull/2827))
52-
53-
5435
- Removed `num_outputs` in `R2Score` ([#2800](https://github.com/Lightning-AI/torchmetrics/pull/2800))
5536

56-
5737
### Fixed
5838

5939
- Fixed segmentation `Dice` + `GeneralizedDice` for 2d index tensors ([#2832](https://github.com/Lightning-AI/torchmetrics/pull/2832))
60-
61-
6240
- Fixed mixed results of `rouge_score` with `accumulate='best'` ([#2830](https://github.com/Lightning-AI/torchmetrics/pull/2830))
6341

42+
---
6443

6544
## [1.5.2] - 2024-11-07
6645

src/torchmetrics/__about__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
__version__ = "1.6.0dev"
1+
__version__ = "1.6.0"
22
__author__ = "Lightning-AI et al."
33
__author_email__ = "[email protected]"
44
__license__ = "Apache-2.0"
5-
__copyright__ = f"Copyright (c) 2020-2023, {__author__}."
5+
__copyright__ = f"Copyright (c) 2020-2024, {__author__}."
66
__homepage__ = "https://github.com/Lightning-AI/torchmetrics"
77
__docs__ = "PyTorch native Metrics"
88
__docs_url__ = "https://lightning.ai/docs/torchmetrics/stable/"

0 commit comments

Comments
 (0)