Audio Classification
Transformers
ONNX
Safetensors
English
dualturn_endpointing
feature-extraction
turn-taking
endpointing
end-of-turn
voice-activity-detection
voice-agents
conversation
speech
audio
mimi
dualturn
real-time
custom_code
Instructions to use anyreach-ai/dualturn-endpointing with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use anyreach-ai/dualturn-endpointing with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="anyreach-ai/dualturn-endpointing", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("anyreach-ai/dualturn-endpointing", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# anyreach-ai/dualturn-endpointing
|
| 2 |
|
| 3 |
Real-time speech endpoint detector for two-channel (user + agent) audio.
|
|
@@ -116,27 +132,6 @@ for chunk in audio_source():
|
|
| 116 |
|
| 117 |
---
|
| 118 |
|
| 119 |
-
## Performance (held-out test set, 15 calls)
|
| 120 |
-
|
| 121 |
-
| Metric | Value |
|
| 122 |
-
|--------|-------|
|
| 123 |
-
| ST recall | 99% |
|
| 124 |
-
| ST precision | 90% |
|
| 125 |
-
| AUC (ST vs CL) | 0.853 |
|
| 126 |
-
| Threshold | 0.30 |
|
| 127 |
-
|
| 128 |
-
Tuned for **high ST recall** — almost never misses a real turn end. Accepts some false STs to avoid making the user repeat themselves.
|
| 129 |
-
|
| 130 |
-
---
|
| 131 |
-
|
| 132 |
-
## Training Data
|
| 133 |
-
|
| 134 |
-
Endpoint classifier trained on 70 real dual-channel calls (user + Gemini agent) automatically labelled by Gemini 2.5 Pro.
|
| 135 |
-
|
| 136 |
-
Backbone: [anyreach-ai/dualturn-qwen2.5-mimi-0.5B](https://huggingface.co/anyreach-ai/dualturn-qwen2.5-mimi-0.5B)
|
| 137 |
-
|
| 138 |
-
---
|
| 139 |
-
|
| 140 |
## Authors
|
| 141 |
|
| 142 |
* Shangeth Rajaa — Senior ML Research Scientist, Anyreach AI
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
tags:
|
| 5 |
+
- turn-taking
|
| 6 |
+
- voice-activity-detection
|
| 7 |
+
- speech
|
| 8 |
+
- conversation
|
| 9 |
+
- audio
|
| 10 |
+
- dualturn
|
| 11 |
+
- endpointing
|
| 12 |
+
base_model:
|
| 13 |
+
- anyreach-ai/dualturn-qwen2.5-mimi-0.5B
|
| 14 |
+
license: apache-2.0
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
# anyreach-ai/dualturn-endpointing
|
| 18 |
|
| 19 |
Real-time speech endpoint detector for two-channel (user + agent) audio.
|
|
|
|
| 132 |
|
| 133 |
---
|
| 134 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 135 |
## Authors
|
| 136 |
|
| 137 |
* Shangeth Rajaa — Senior ML Research Scientist, Anyreach AI
|