Views
No views yet
openai/whisper-tiny (Encoder only).| Metric | Value |
|---|---|
| Inference Latency (CPU) | ~120ms |
| Inference Latency (CUDA) | ~45ms |
| F1 Score (Turn Detection) | 95%+ (estimated) |
urdu-turn-detector library:pip install urdu-turn-detector1from urdu_turn_detection import UrduTurnDetector
2
3# Auto-downloads from Hub
4detector = UrduTurnDetector.from_pretrained("PuristanLabs1/urdu-turn-v2")
5
6# Predict on file or buffer
7result = detector.predict("audio.wav")
8print(f"Turn is {result.label} (Conf: {result.confidence})")handler.py.