Skip to content

Commit

Permalink
Merge branch 'release/3.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
hbredin committed Jan 12, 2025
2 parents babbd1c + 798c0b8 commit b9eff9d
Show file tree
Hide file tree
Showing 3 changed files with 157 additions and 300 deletions.
6 changes: 6 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
#########

Version 3.3.0 (2025-01-12)
~~~~~~~~~~~~~~~~~~~~~~~~~~

- BREAKING: improve diarization purity and coverage to account for overlapping regions
- chore: use `bool` instead of deprecated `np.bool`

Version 3.2.1 (2022-06-20)
~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion pyannote/metrics/binary_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class _Passthrough(BaseEstimator):

def __init__(self):
super().__init__()
self.classes_ = np.array([False, True], dtype=np.bool)
self.classes_ = np.array([False, True], dtype=bool)

def fit(self, scores, y_true):
return self
Expand Down
Loading

0 comments on commit b9eff9d

Please sign in to comment.