diff --git a/CHANGELOG.md b/CHANGELOG.md index f0a27771cf9..c4606f316f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,54 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 **Note: we move fast, but still we preserve 0.1 version (one feature release) back compatibility.** -## [unReleased] - 2022-MM-DD +## [0.11.0] - 2022-11-30 ### Added +- Added `MulticlassExactMatch` to classification metrics ([#1343](https://github.com/Lightning-AI/metrics/pull/1343)) - Added `TotalVariation` to image package ([#978](https://github.com/Lightning-AI/metrics/pull/978)) - - +- Added `CLIPScore` to new multimodal package ([#1314](https://github.com/Lightning-AI/metrics/pull/1314)) - Added regression metrics: * `KendallRankCorrCoef` ([#1271](https://github.com/Lightning-AI/metrics/pull/1271)) * `LogCoshError` ([#1316](https://github.com/Lightning-AI/metrics/pull/1316)) - - - Added new nominal metrics: * `CramersV` ([#1298](https://github.com/Lightning-AI/metrics/pull/1298)) * `PearsonsContingencyCoefficient` ([#1334](https://github.com/Lightning-AI/metrics/pull/1334)) * `TschuprowsT` ([#1334](https://github.com/Lightning-AI/metrics/pull/1334)) * `TheilsU` ([#1337](https://github.com/Lightning-AI/metrics/pull/1334)) - - - Added option to pass `distributed_available_fn` to metrics to allow checks for custom communication backend for making `dist_sync_fn` actually useful ([#1301](https://github.com/Lightning-AI/metrics/pull/1301)) - - - Added `normalize` argument to `Inception`, `FID`, `KID` metrics ([#1246](https://github.com/Lightning-AI/metrics/pull/1246)) - -- Added `CLIPScore` to new multimodal package ([#1314](https://github.com/Lightning-AI/metrics/pull/1314)) - - -- Added `MulticlassExactMatch` to classification metrics ([#1343](https://github.com/Lightning-AI/metrics/pull/1343)) - - - ### Changed -- Changed `MeanAveragePrecision` to vectorize `_find_best_gt_match` operation ([#1259](https://github.com/Lightning-AI/metrics/pull/1259)) - - - Changed minimum Pytorch version to be 1.8 ([#1263](https://github.com/Lightning-AI/metrics/pull/1263)) - - - Changed interface for all functional and modular classification metrics after refactor ([#1252](https://github.com/Lightning-AI/metrics/pull/1252)) - -### Deprecated - -- - - ### Removed - Removed deprecated `BinnedAveragePrecision`, `BinnedPrecisionRecallCurve`, `RecallAtFixedPrecision` ([#1251](https://github.com/Lightning-AI/metrics/pull/1251)) diff --git a/src/torchmetrics/__about__.py b/src/torchmetrics/__about__.py index 06d9c87c9a8..d5ef62df311 100644 --- a/src/torchmetrics/__about__.py +++ b/src/torchmetrics/__about__.py @@ -1,4 +1,4 @@ -__version__ = "0.11.0dev" +__version__ = "0.11.0" __author__ = "Lightning-AI et al." __author_email__ = "name@pytorchlightning.ai" __license__ = "Apache-2.0"