File size: 945 Bytes
1cb0565
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
license: mit
tags:
- speech
- vad
- coreml
- voice-activity-detection
---

# FireRedVAD — CoreML

CoreML conversion of FireRedVAD for voice activity detection on Apple Neural Engine. Supports 100+ languages with high accuracy (99.1% F1 on FLEURS).

## Files

| File | Description |
|------|-------------|
| `fireredvad.mlmodelc` | VAD model (CoreML compiled) |
| `fireredvad.mlpackage` | VAD model (CoreML package) |
| `cmvn.json` | Feature normalization statistics |
| `config.json` | Model configuration |

## Usage

Used by [speech-swift](https://github.com/soniqo/speech-swift) `SpeechVAD` module:

```swift
let vad = try await FireRedVADModel.fromPretrained()
let segments = vad.detectSpeech(audio: samples, sampleRate: 16000)
```

---

- **Guide**: [soniqo.audio/guides/vad](https://soniqo.audio/guides/vad)
- **Docs**: [soniqo.audio](https://soniqo.audio)
- **GitHub**: [soniqo/speech-swift](https://github.com/soniqo/speech-swift)