Automatic Speech Recognition
pyannote.audio
pyannote
pyannote-audio-pipeline
audio
voice
speech
speaker
speaker-diarization
speaker-change-detection
voice-activity-detection
overlapped-speech-detection
Instructions to use DroolingPanda/speaker-diarization-community-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- pyannote.audio
How to use DroolingPanda/speaker-diarization-community-1 with pyannote.audio:
from pyannote.audio import Pipeline pipeline = Pipeline.from_pretrained("DroolingPanda/speaker-diarization-community-1") # inference on the whole file pipeline("file.wav") # inference on an excerpt from pyannote.core import Segment excerpt = Segment(start=2.0, end=5.0) from pyannote.audio import Audio waveform, sample_rate = Audio().crop("file.wav", excerpt) pipeline({"waveform": waveform, "sample_rate": sample_rate}) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -21,14 +21,14 @@ extra_gated_fields:
|
|
| 21 |
options:
|
| 22 |
- label: Meeting note taker (automated meeting transcription, action item extraction, and speaker identification in recordings)
|
| 23 |
value: meeting
|
| 24 |
-
- label:
|
| 25 |
-
value:
|
| 26 |
- label: CCaaS and customer experience (call center analytics, customer service optimization, and interaction quality monitoring)
|
| 27 |
value: ccaas
|
| 28 |
- label: Voice agents (AI-powered phone systems, automated customer service, voice-based interactions)
|
| 29 |
-
value:
|
| 30 |
- label: Media and automated dubbing (content creation, podcast processing, video production, and multilingual media)
|
| 31 |
-
value:
|
| 32 |
- label: Training and development (educational content analysis, corporate training evaluation, and learning assessment tools)
|
| 33 |
value: training
|
| 34 |
- label: Other
|
|
|
|
| 21 |
options:
|
| 22 |
- label: Meeting note taker (automated meeting transcription, action item extraction, and speaker identification in recordings)
|
| 23 |
value: meeting
|
| 24 |
+
- label: Conversation AI (chatbots, voice assistants, multi-turn dialogue systems with speaker awareness)
|
| 25 |
+
value: conversation
|
| 26 |
- label: CCaaS and customer experience (call center analytics, customer service optimization, and interaction quality monitoring)
|
| 27 |
value: ccaas
|
| 28 |
- label: Voice agents (AI-powered phone systems, automated customer service, voice-based interactions)
|
| 29 |
+
value: agent
|
| 30 |
- label: Media and automated dubbing (content creation, podcast processing, video production, and multilingual media)
|
| 31 |
+
value: dubbing
|
| 32 |
- label: Training and development (educational content analysis, corporate training evaluation, and learning assessment tools)
|
| 33 |
value: training
|
| 34 |
- label: Other
|