You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When reporting bugs, please follow the guidelines in this template. This helps identify the problem precisely and thus enables contributors to fix it faster.
9
+
- Write a descriptive issue title above.
10
+
- The golden rule is to **always open *one* issue for *one* bug**. If you notice several bugs and want to report them, make sure to create one new issue for each of them.
11
+
- Search [open](https://github.com/pyannote/pyannote-audio/issues) and [closed](https://github.com/pyannote/pyannote-audio/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported. If you don't find a relevant match or if you're unsure, don't hesitate to **open a new issue**. The bugsquad will handle it from there if it's a duplicate.
12
+
- Please always check if your issue is reproducible in the latest version – it may already have been fixed!
13
+
- If you use a custom build, please test if your issue is reproducible in official releases too.
14
+
15
+
- type: textarea
16
+
attributes:
17
+
label: Tested versions
18
+
description: |
19
+
To properly fix a bug, we need to identify if the bug was recently introduced in the engine, or if it was always present.
20
+
- Please specify the pyannote.audio version you found the issue in, including the **Git commit hash** if using a development build.
21
+
- If you can, **please test earlier pyannote.audio versions** and, if applicable, newer versions (development branch). Mention whether the bug is reproducible or not in the versions you tested.
22
+
- The aim is for us to identify whether a bug is a **regression**, i.e. an issue that didn't exist in a previous version, but was introduced later on, breaking existing functionality. For example, if a bug is reproducible in 3.2 but not in 3.0, we would like you to test intermediate 3.1 to find which version is the first one where the issue can be reproduced.
23
+
placeholder: |
24
+
- Reproducible in: 3.1, 3.2, and later
25
+
- Not reproducible in: 3.0
26
+
validations:
27
+
required: true
28
+
29
+
- type: input
30
+
attributes:
31
+
label: System information
32
+
description: |
33
+
- Specify the OS version, and when relevant hardware information.
34
+
- For issues that are likely OS-specific and/or GPU-related, please specify the GPU model and architecture.
35
+
- **Bug reports not including the required information may be closed at the maintainers' discretion.** If in doubt, always include all the requested information; it's better to include too much information than not enough information.
36
+
placeholder: macOS 13.6 - pyannote.audio 3.1.1 - M1 Pro
37
+
validations:
38
+
required: true
39
+
40
+
- type: textarea
41
+
attributes:
42
+
label: Issue description
43
+
description: |
44
+
Describe your issue briefly. What doesn't work, and how do you expect it to work instead?
45
+
You can include audio, images or videos with drag and drop, and format code blocks or logs with <code>```</code> tags.
46
+
validations:
47
+
required: true
48
+
49
+
- type: input
50
+
attributes:
51
+
label: Minimal reproduction example (MRE)
52
+
description: |
53
+
Having reproducible issues is a prerequisite for contributors to be able to solve them.
54
+
Include a link to minimal reproduction example using [this Google Colab notebook](https://colab.research.google.com/github/pyannote/pyannote-audio/blob/develop/tutorials/MRE_template.ipynb) as a starting point.
Copy file name to clipboardExpand all lines: README.md
+18-14Lines changed: 18 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,26 +70,30 @@ for turn, _, speaker in diarization.itertracks(yield_label=True):
70
70
- Videos
71
71
-[Introduction to speaker diarization](https://umotion.univ-lemans.fr/video/9513-speech-segmentation-and-speaker-diarization/) / JSALT 2023 summer school / 90 min
72
72
-[Speaker segmentation model](https://www.youtube.com/watch?v=wDH2rvkjymY) / Interspeech 2021 / 3 min
73
-
-[First releaase of pyannote.audio](https://www.youtube.com/watch?v=37R_R82lfwA) / ICASSP 2020 / 8 min
73
+
-[First release of pyannote.audio](https://www.youtube.com/watch?v=37R_R82lfwA) / ICASSP 2020 / 8 min
74
+
- Community contributions (not maintained by the core team)
75
+
- 2024-04-05 > [Offline speaker diarization (speaker-diarization-3.1)](tutorials/community/offline_usage_speaker_diarization.ipynb) by [Simon Ottenhaus](https://github.com/simonottenhauskenbun)
74
76
75
77
## Benchmark
76
78
77
79
Out of the box, `pyannote.audio` speaker diarization [pipeline](https://hf.co/pyannote/speaker-diarization-3.1) v3.1 is expected to be much better (and faster) than v2.x.
0 commit comments