Views
No views yet
| File | Type | Size | Notes |
|---|---|---|---|
silero-lid-lang95-f32.gguf | F32 | 16 MB | Full precision, recommended |
1# Language detection pre-step for backends without native LID
2crispasr --backend cohere -m cohere-transcribe-q5_0.gguf \
3 -f audio.wav -l auto \
4 --lid-backend silero --lid-model silero-lid-lang95-f32.gguf
5
6# Standalone detection (via the C API)
7silero_lid_context * ctx = silero_lid_init("silero-lid-lang95-f32.gguf", 4);
8float conf;
9const char * lang = silero_lid_detect(ctx, samples, n_samples, &conf);
10// lang = "en, English"
11silero_lid_free(ctx);lang_classifier_95.onnx) using models/convert-silero-lid-to-gguf.py from the CrispASR repo.mit. This repository redistributes under the same terms; it grants no rights the upstream licence does not.