Skip to content

Commit

Permalink
Merge branch 'develop' into pixit-normalize-sources
Browse files Browse the repository at this point in the history
  • Loading branch information
hbredin authored Oct 7, 2024
2 parents 9972a91 + c718d98 commit 6726b2b
Show file tree
Hide file tree
Showing 5 changed files with 3,599 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Changelog

## develop
## Version 3.3.2 (2024-09-11)

- fix: fix support for `numpy==2.x` ([@metal3d](https://github.com/metal3d/))
### Fixes

- fix: (really) fix support for `numpy==2.x` ([@metal3d](https://github.com/metal3d/))
- doc: fix `Pipeline` docstring ([@huisman](https://github.com/huisman/))

## Version 3.3.1 (2024-06-19)

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Using `pyannote.audio` open-source toolkit in production?
Using `pyannote.audio` open-source toolkit in production?
Consider switching to [pyannoteAI](https://www.pyannote.ai) for better and faster options.

# `pyannote.audio` speaker diarization toolkit
Expand Down Expand Up @@ -73,6 +73,7 @@ for turn, _, speaker in diarization.itertracks(yield_label=True):
- [First release of pyannote.audio](https://www.youtube.com/watch?v=37R_R82lfwA) / ICASSP 2020 / 8 min
- Community contributions (not maintained by the core team)
- 2024-04-05 > [Offline speaker diarization (speaker-diarization-3.1)](tutorials/community/offline_usage_speaker_diarization.ipynb) by [Simon Ottenhaus](https://github.com/simonottenhauskenbun)
- 2024-09-24 > [Evaluating `pyannote` pretrained speech separation pipelines](tutorials/community/eval_separation_pipeline.ipynb) by [Clément Pagés](https://github.com/)

## Benchmark

Expand Down
3 changes: 2 additions & 1 deletion pyannote/audio/core/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ def from_pretrained(
to True or to a string containing your hugginface.co authentication
token that can be obtained by running `huggingface-cli login`
cache_dir: Path or str, optional
Path to model cache directory. Defauorch/pyannote" when unset.
Path to model cache directory. Defaults to content of PYANNOTE_CACHE
environment variable, or "~/.cache/torch/pyannote" when unset.
"""

checkpoint_path = str(checkpoint_path)
Expand Down
Loading

0 comments on commit 6726b2b

Please sign in to comment.