Add model card (README)
Browse files
README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- audio
|
| 5 |
+
- speaker-diarization
|
| 6 |
+
- onnx
|
| 7 |
+
- pyannote
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# segmentation-3.0 ONNX
|
| 11 |
+
|
| 12 |
+
ONNX export of [pyannote/segmentation-3.0](https://huggingface.co/pyannote/segmentation-3.0) for speaker diarization (voice activity and speaker segmentation).
|
| 13 |
+
|
| 14 |
+
- **Input**: waveform `[batch, channels, samples]`, 16 kHz mono, e.g. `[1, 1, 160000]` for 10 seconds.
|
| 15 |
+
- **Output**: logits `[batch, num_frames, num_classes]` (7 classes, powerset decoding).
|
| 16 |
+
- Exported with opset 14. Use ONNX Runtime to run on device (Core ML conversion is not supported for this model due to control-flow ops).
|
| 17 |
+
|
| 18 |
+
Derived from pyannote.audio; see [pyannote/segmentation-3.0](https://huggingface.co/pyannote/segmentation-3.0) for the original model and license.
|