Skip to content

Commit

Permalink
fix: fix alignment between diarization and sources
Browse files Browse the repository at this point in the history
  • Loading branch information
Lebourdais authored Oct 23, 2024
1 parent a39991b commit 3f4a22f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
### Fixes

- fix: fix clipping issue in speech separation pipeline ([@joonaskalda](https://github.com/joonaskalda/))
- fix: fix alignment between separated sources and diarization when the diarization reference is available ([@Lebourdais](https://github.com/Lebourdais/))

## Version 3.3.2 (2024-09-11)

Expand Down
10 changes: 8 additions & 2 deletions pyannote/audio/pipelines/speech_separation.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class SpeechSeparation(SpeakerDiarizationMixin, Pipeline):

def __init__(
self,
segmentation: PipelineModel = None,
segmentation: PipelineModel = "pyannote/separation-ami-1.0",
segmentation_step: float = 0.1,
embedding: PipelineModel = "speechbrain/spkrec-ecapa-voxceleb@5c0be3875fda05e81f3c004ed8c7c06be308de1e",
embedding_exclude_overlap: bool = False,
Expand Down Expand Up @@ -698,6 +698,13 @@ def apply(
# strings and integers when reference is available and some hypothesis
# speakers are not present in the reference)

# re-order sources so that they match
# the order given by diarization.labels()
inverse_mapping = {label: index for index, label in mapping.items()}
source.data = sources.data[
:, [inverse_mapping[label] for label in diarization.labels()]
]

if not return_embeddings:
return diarization, sources

Expand All @@ -717,7 +724,6 @@ def apply(

# re-order centroids so that they match
# the order given by diarization.labels()
inverse_mapping = {label: index for index, label in mapping.items()}
centroids = centroids[
[inverse_mapping[label] for label in diarization.labels()]
]
Expand Down

0 comments on commit 3f4a22f

Please sign in to comment.