FluidInference/canary-1b-v2-coreml
Canary-1B-v2 — CoreML (ANE)
CoreML conversion of `nvidia/canary-1b-v2` for Apple Silicon / Neural Engine, packaged for FluidAudio.
Canary is a FastConformer encoder + Transformer attention encoder-decoder (AED) ASR model (25 European languages, 16384-token SentencePiece BPE). It is decoded autoregressively: the transformer decoder cross-attends to the encoder output and emits tokens greedily until EOS (id 3), with a 1024→16384 projection head.
Files
Contract: 15 s window (240000 samples @ 16 kHz), 256 decoder steps, eos=3, pad=2, bos=4. int4 weight payloads require iOS 18 / macOS 15.
Variants
- int4 (this default): ANE-runnable, ~573 MB, fastest. Per-block-32 symmetric.
- fp16: exact parity with PyTorch, iOS 17, ~1.8 GB (not included here by default).
- int8 per-channel decodes correctly only on CPU (crashes the GPU/ANE MPSGraph backend), so it is not recommended; use int4 for an ANE-resident small build.
Accuracy / speed (LibriSpeech test-clean, ≤15 s, int4, M-series ANE)
fp16 CoreML output is byte-identical to the NeMo PyTorch greedy decode.
Usage (FluidAudio)
let manager = try await CanaryManager.load(precision: .int4)
let text = try await manager.transcribe(audioURL: url)Conversion
See the mobius conversion pipeline (models/stt/canary-1b-v2/coreml/): convert-coreml.py (NeMo→CoreML), quantize_int4.py, build_projection.py, validate.py, stage_hf.py.
License
Inherits cc-by-4.0 from the base model nvidia/canary-1b-v2.
