Skip to content

Commit

Permalink
Merge branch 'release/3.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
hbredin committed Sep 28, 2023
2 parents 795b92a + e478d57 commit 28fcf50
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## Version 3.0.1 (2023-09-28)

- fix(pipeline): fix WeSpeaker GPU support

## Version 3.0.0 (2023-09-26)

### Features and improvements
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -14,7 +14,7 @@ Make the most of it thanks to our [consulting services](https://herve.niderb.fr/

1. Install [`pyannote.audio`](https://github.com/pyannote/pyannote-audio) `3.0` with `pip install pyannote.audio`
2. Accept [`pyannote/segmentation-3.0`](https://hf.co/pyannote/segmentation-3.0) user conditions
3. Accept [`pyannote/speaker-diarization-3.0`](https://hf.co/pyannote-speaker-diarization-3.0) user conditions
3. Accept [`pyannote/speaker-diarization-3.0`](https://hf.co/pyannote/speaker-diarization-3.0) user conditions
4. Create access token at [`hf.co/settings/tokens`](https://hf.co/settings/tokens).


Expand Down
9 changes: 8 additions & 1 deletion pyannote/audio/pipelines/speaker_verification.py
Expand Up @@ -447,7 +447,14 @@ def to(self, device: torch.device):
if device.type == "cpu":
providers = ["CPUExecutionProvider"]
elif device.type == "cuda":
providers = ["CUDAExecutionProvider"]
providers = [
(
"CUDAExecutionProvider",
{
"cudnn_conv_algo_search": "DEFAULT", # EXHAUSTIVE / HEURISTIC / DEFAULT
},
)
]
else:
warnings.warn(
f"Unsupported device type: {device.type}, falling back to CPU"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -3,7 +3,7 @@ einops >=0.6.0
huggingface_hub >= 0.13.0
lightning >= 2.0.1
omegaconf >=2.1,<3.0
onnxruntime >= 1.16.0
onnxruntime-gpu >= 1.16.0
pyannote.core >= 5.0.0
pyannote.database >= 5.0.1
pyannote.metrics >= 3.2
Expand Down
2 changes: 1 addition & 1 deletion version.txt
@@ -1 +1 @@
3.0.0
3.0.1

0 comments on commit 28fcf50

Please sign in to comment.