diff --git a/README.md b/README.md index 1c1fe83..6813432 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,9 @@ Open in Colab

-## 🔥 News + ## ⚡️ Introduction @@ -98,6 +96,7 @@ Please, refer to the [documentation](https://amenra.github.io/ranx/fusion) for f ### Normalization Strategies * [Min-Max Norm](https://amenra.github.io/ranx/normalization/#min-max-norm) +* [Min-Max Inverted Norm](https://amenra.github.io/ranx/normalization/#min-max-inverted-norm) * [Max Norm](https://amenra.github.io/ranx/normalization/#sum-norm) * [Sum Norm](https://amenra.github.io/ranx/normalization/#rank-norm) * [ZMUV Norm](https://amenra.github.io/ranx/normalization/#max-norm) @@ -107,7 +106,6 @@ Please, refer to the [documentation](https://amenra.github.io/ranx/fusion) for f Please, refer to the [documentation](https://amenra.github.io/ranx/fusion) for further details. - ## 🔌 Requirements ```bash python>=3.8 diff --git a/changelog.md b/changelog.md index dd1944a..d86a09f 100644 --- a/changelog.md +++ b/changelog.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.20] - 2024-11-28 +### Changed +- `Report` now allows for export to Pandas DataFrame thanks to @hotchpotch contrib. +- `min-max norm` now allows for inverting min and max for distance scores normalization thanks to @MochiXu, @diegoceccarelli, and @AndreP-git. + ## [0.3.19] - 2023-11-28 ### Added - `Run` now has an additional property to store metrics standard deviation. diff --git a/setup.py b/setup.py index 33f205d..05c5a3e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ranx", - version="0.3.19", + version="0.3.20", author="Elias Bassani", author_email="elias.bssn@gmail.com", description="ranx: A Blazing-Fast Python Library for Ranking Evaluation, Comparison, and Fusion",