Skip to content

Commit

Permalink
version update to 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
crlandsc committed Jul 31, 2024
1 parent e0260da commit 0fbde7f
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
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)!
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion torch_log_wmse/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .metric import LogWMSE

__version__ = "0.2.7"
__version__ = "0.2.8"

0 comments on commit 0fbde7f

Please sign in to comment.