Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- pyannote
|
4 |
+
- pyannote-audio
|
5 |
+
- pyannote-audio-pipeline
|
6 |
+
- audio
|
7 |
+
- voice
|
8 |
+
- speech
|
9 |
+
- speaker
|
10 |
+
- speaker-diarization
|
11 |
+
- speaker-change-detection
|
12 |
+
- voice-activity-detection
|
13 |
+
- overlapped-speech-detection
|
14 |
+
---
|
15 |
+
|
16 |
+
<p align="center">
|
17 |
+
<a href="https://pyannote.ai/" target="blank"><img src="https://avatars.githubusercontent.com/u/162698670" width="64" /></a>
|
18 |
+
</p>
|
19 |
+
|
20 |
+
<div align="center">
|
21 |
+
<h1>pyannoteAI premium speaker diarization</h1>
|
22 |
+
</div>
|
23 |
+
|
24 |
+
|
25 |
+
*Warning:* this is a work in progress, though it should already be functional.
|
26 |
+
|
27 |
+
1. Create an API key on [`pyannoteAI` dashboard](https://dashboard.pyannote.ai).
|
28 |
+
2. Install `pyannote.audio` 4.x (yet to be released but `develop` branch should do).
|
29 |
+
3. Enjoy `pyannoteAI` precision speaker diarization pipeline by changing one single line of code!
|
30 |
+
|
31 |
+
```diff
|
32 |
+
from pyannote.audio import Pipeline
|
33 |
+
- # runs locally
|
34 |
+
- pipeline = Pipeline.from_pretrained('pyannote/speaker-diarization-3.1', token="{huggingface-token}")
|
35 |
+
+ # runs on pyannoteAI server
|
36 |
+
+ pipeline = Pipeline.from_pretrained('pyannoteAI/speaker-diarization-precision', token="{pyannoteAI-api-key}")
|
37 |
+
diarization = pipeline("/path/to/audio.wav")
|
38 |
+
```
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|