AMITKESARI2000
commited on
Commit
·
71fb839
1
Parent(s):
3cfb98d
add readme
Browse files
README.md
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- pyannote
|
4 |
+
- speaker-diarization
|
5 |
+
datasets:
|
6 |
+
- ami
|
7 |
+
- voxconverse
|
8 |
+
license: mit
|
9 |
+
---
|
10 |
+
|
11 |
+
# Speaker diarization
|
12 |
+
|
13 |
+
Relies on pyannote.audio 2.0 currently in development: see [installation instructions](https://github.com/pyannote/pyannote-audio/tree/develop#installation).
|
14 |
+
|
15 |
+
```python
|
16 |
+
from pyannote.audio import Pipeline
|
17 |
+
pipeline = Pipeline.from_pretrained("AMITKESARI2000/pyannote_SD1")
|
18 |
+
output = pipeline("audio.wav")
|
19 |
+
for turn, _, speaker in output.itertracks(yield_label=True):
|
20 |
+
# speaker speaks between turn.start and turn.end
|
21 |
+
...
|
22 |
+
```
|
23 |
+
|
24 |
+
## Benchmark
|
25 |
+
|
26 |
+
| Dataset | [Diarization error rate](http://pyannote.github.io/pyannote-metrics/reference.html#diarization) |
|
27 |
+
| --------------------------------------------------------------------------------------------------- | ------ |
|
28 |
+
| [AMI `only_words` evaluation set](https://github.com/BUTSpeechFIT/AMI-diarization-setup) | 21.4% |
|