From 0fbde7fad48e152a13dc5026ba360e932e7649a4 Mon Sep 17 00:00:00 2001 From: Christopher Landschoot Date: Wed, 31 Jul 2024 12:47:56 -0500 Subject: [PATCH] version update to 0.2.8 --- CHANGELOG.md | 9 ++++++++- setup.cfg | 2 +- torch_log_wmse/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9639000..25b2d7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -81,4 +81,11 @@ Corrected file reference to pkl filter file. ## 0.2.4-0.2.7 (2024-06-21) #### Added `torch_log_wmse_audio_quality` alias -added alias file so imports can either be `torch_log_wmse` or `torch_log_wmse_audio_quality`. \ No newline at end of file +added alias file so imports can either be `torch_log_wmse` or `torch_log_wmse_audio_quality`. + +## 0.2.8 (2024-07-31) + +#### Added ability to bypass frequency weightning + bug fixes +Added `bypass_filter` argument that will bypass frequency weighting if `True`. + +Fixed bug that returns NaN when one of the entries in the batch is a digital silence triplet - Thanks to Iver Jordal for the [issue](https://github.com/crlandsc/torch-log-wmse/issues/2) & [PR](https://github.com/crlandsc/torch-log-wmse/pull/3)! \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index aabe7ae..44ebe49 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = torch-log-wmse -version = 0.2.7 +version = 0.2.8 author = Christopher Landschoot author_email = crlandschoot@gmail.com license = Apache License 2.0 diff --git a/torch_log_wmse/__init__.py b/torch_log_wmse/__init__.py index 58524ab..4deb384 100644 --- a/torch_log_wmse/__init__.py +++ b/torch_log_wmse/__init__.py @@ -1,3 +1,3 @@ from .metric import LogWMSE -__version__ = "0.2.7" +__version__ = "0.2.8"