Skip to content

Commit a8e8337

Browse files
committed
releasing 1.5.0
1 parent 0fd1f96 commit a8e8337

File tree

4 files changed

+12
-32
lines changed

4 files changed

+12
-32
lines changed

.github/workflows/docs-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
retention-days: ${{ steps.keep-artifact.outputs.DAYS }}
7878

7979
- name: update cashing
80-
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
80+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.target == 'html' }}
8181
continue-on-error: true
8282
uses: ./.github/actions/push-caches
8383
with:

CHANGELOG.md

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

99
---
1010

11-
## [UnReleased] - 2024-MM-DD
11+
## [1.5.0] - 2024-10-18
1212

1313
### Added
1414

15-
- Added a new audio metric `DNSMOS` ([#2525](https://github.com/PyTorchLightning/metrics/pull/2525))
16-
17-
15+
- Added segmentation metric `HausdorffDistance` ([#2122](https://github.com/Lightning-AI/torchmetrics/pull/2122))
16+
- Added audio metric `DNSMOS` ([#2525](https://github.com/PyTorchLightning/metrics/pull/2525))
17+
- Added shape metric `ProcrustesDistance` ([#2723](https://github.com/Lightning-AI/torchmetrics/pull/2723)
1818
- Added `MetricInputTransformer` wrapper ([#2392](https://github.com/Lightning-AI/torchmetrics/pull/2392))
19-
20-
2119
- Added `input_format` argument to segmentation metrics ([#2572](https://github.com/Lightning-AI/torchmetrics/pull/2572))
22-
23-
24-
- Added multi-output support for MAE metric ([#2605](https://github.com/Lightning-AI/torchmetrics/pull/2605))
25-
26-
27-
- Added new metric `ProcrustesDistance` to new domain Shape ([#2723](https://github.com/Lightning-AI/torchmetrics/pull/2723)
28-
29-
20+
- Added `multi-output` support for MAE metric ([#2605](https://github.com/Lightning-AI/torchmetrics/pull/2605))
3021
- Added `truncation` argument to `BERTScore` ([#2776](https://github.com/Lightning-AI/torchmetrics/pull/2776))
3122

32-
33-
- Added `HausdorffDistance` to segmentation package ([#2122](https://github.com/Lightning-AI/torchmetrics/pull/2122))
34-
35-
3623
### Changed
3724

3825
- Tracker higher is better integration ([#2649](https://github.com/Lightning-AI/torchmetrics/pull/2649))
39-
40-
4126
- Updated `InfoLM` class to dynamically set `higher_is_better` ([#2674](https://github.com/Lightning-AI/torchmetrics/pull/2674))
4227

43-
4428
### Deprecated
4529

4630
- Deprecated `num_outputs` in `R2Score` ([#2705](https://github.com/Lightning-AI/torchmetrics/pull/2705))
4731

48-
49-
### Removed
50-
51-
-
52-
53-
5432
### Fixed
5533

56-
- Fixed corner case in `Iou` metric for single empty prediction tensors ([#2780](https://github.com/Lightning-AI/torchmetrics/pull/2780))
57-
58-
34+
- Fixed corner case in `IoU` metric for single empty prediction tensors ([#2780](https://github.com/Lightning-AI/torchmetrics/pull/2780))
5935
- Fixed `PSNR` calculation for integer type input images ([#2788](https://github.com/Lightning-AI/torchmetrics/pull/2788))
6036

37+
---
6138

6239
## [1.4.3] - 2024-10-10
6340

docs/source/conf.py

+3
Original file line numberDiff line numberDiff line change
@@ -447,4 +447,7 @@ def linkcode_resolve(domain, info) -> Optional[str]: # noqa: ANN001
447447
"https://aclanthology.org/W17-4770",
448448
# A wavelet transform method to merge Landsat TM and SPOT panchromatic data
449449
"https://www.ingentaconnect.com/content/tandf/tres/1998/00000019/00000004/art00013",
450+
# todo: these links seems to be unstable, referring to .devcontainer
451+
"https://code.visualstudio.com",
452+
"https://code.visualstudio.com/.*",
450453
]

src/torchmetrics/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.5.0dev"
1+
__version__ = "1.5.0"
22
__author__ = "Lightning-AI et al."
33
__author_email__ = "[email protected]"
44
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)