Skip to content

Commit

Permalink
fix(doc): fix default embedding in SpeechSeparation and `SpeakerDia…
Browse files Browse the repository at this point in the history
…rization` docstring
  • Loading branch information
razi-tm authored Nov 28, 2024
1 parent b86d380 commit 3e39edd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Clipping and speaker/source alignment issues in speech separation pipeline have
- fix(separation): fix `PixIT` training with manual optimization ([@clement-pages](https://github.com/clement-pages/))
- fix(doc): fix link to pytorch ([@emmanuel-ferdman](https://github.com/emmanuel-ferdman/))
- fix(task): fix corner case with small (<9) number of validation samples ([@antoinelaurent](https://github.com/antoinelaurent/))
- fix(doc): fix default embedding in `SpeechSeparation` and `SpeakerDiarization` docstring ([@razi-tm](https://github.com/razi-tm/)).

## Version 3.3.2 (2024-09-11)

Expand Down
2 changes: 1 addition & 1 deletion pyannote/audio/pipelines/speaker_diarization.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class SpeakerDiarization(SpeakerDiarizationMixin, Pipeline):
`segmentation_step` controls the step of this window, provided as a ratio of its
duration. Defaults to 0.1 (i.e. 90% overlap between two consecuive windows).
embedding : Model, str, or dict, optional
Pretrained embedding model. Defaults to "pyannote/embedding@2022.07".
Pretrained embedding model. Defaults to "speechbrain/spkrec-ecapa-voxceleb@5c0be38".
See pyannote.audio.pipelines.utils.get_model for supported format.
embedding_exclude_overlap : bool, optional
Exclude overlapping speech regions when extracting embeddings.
Expand Down
2 changes: 1 addition & 1 deletion pyannote/audio/pipelines/speech_separation.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class SpeechSeparation(SpeakerDiarizationMixin, Pipeline):
`segmentation_step` controls the step of this window, provided as a ratio of its
duration. Defaults to 0.1 (i.e. 90% overlap between two consecuive windows).
embedding : Model, str, or dict, optional
Pretrained embedding model. Defaults to "pyannote/embedding@2022.07".
Pretrained embedding model. Defaults to "speechbrain/spkrec-ecapa-voxceleb@5c0be38".
See pyannote.audio.pipelines.utils.get_model for supported format.
embedding_exclude_overlap : bool, optional
Exclude overlapping speech regions when extracting embeddings.
Expand Down

0 comments on commit 3e39edd

Please sign in to comment.