Views
No views yet
Looking for the full NeMo checkpoint? →Noctra-labs/parakeet-tdt-0.6b-v3-lt(repo id — confirm before publishing, see METADATA-NOTES.md)
| Model | Test Set | WER ↓ |
|---|---|---|
| Noctra parakeet-tdt-0.6b-v3-lt (this model) | LIEPA test | 10.87% |
| NVIDIA parakeet-tdt-0.6b-v3 (base, no fine-tune) | LIEPA test | 33.57% |
lt)1import CoreML
2import AVFoundation
3
4// Load the compiled .mlmodelc bundle
5let modelURL = Bundle.main.url(forResource: "parakeet-tdt-0.6b-v3-lt", withExtension: "mlmodelc")!
6let model = try MLModel(contentsOf: modelURL)
7
8// Pass 16 kHz mono PCM audio frames for transcription
9// (Integration follows the same FluidAudio / Parakeet CoreML interface
10// used by Whisnap — see https://whisnap.com for reference implementation)Note: The CoreML package in this repo (~483 MB) contains the encoder and decoder weights compiled for Apple Neural Engine (ANE) + Metal acceleration. It is consumed via the FluidAudio Swift wrapper that Whisnap uses. A standalone Swift inference example is planned.
nvidia/parakeet-tdt-0.6b-v3 — NVIDIA's Token-and-Duration Transducer (TDT) architecture, 0.6B parameters, originally trained on English.| Property | Value |
|---|---|
| Architecture | Parakeet TDT (Token-and-Duration Transducer) |
| Base model | nvidia/parakeet-tdt-0.6b-v3 |
| Parameters | ~0.6B |
| File size | ~483 MB (CoreML package) |
| Format | Apple Core ML (.mlmodel / .mlmodelc) |
| Target hardware | Apple Silicon (M1, M2, M3, M4 and later) |
| Language | Lithuanian (lt) |
| Sample rate | 16 kHz mono |
| License | CC-BY-4.0 |
1@misc{noctra2026parakeet_lt_coreml,
2 author = {Noctra Labs},
3 title = {Parakeet TDT 0.6B v3 Lithuanian Fine-tune — CoreML Build},
4 year = {2026},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/Noctra-labs/parakeet-tdt-0.6b-v3-lt-coreml}},
7 note = {Fine-tuned on the LIEPA Lithuanian speech corpus.
8 Powers on-device Lithuanian dictation in Whisnap (https://whisnap.com).}
9}