Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alignment of separation output and diarization #1775

Merged
merged 5 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading