CoolFace
Modelpublic

aufklarer/Omnilingual-ASR-CTC-3B-MLX-4bit

sourceHugging Faceapache-2.0updated 6mo agoView on Hugging Face
0likes12downloads
Model Card

Omnilingual ASR — CTC 3B (MLX 4-bit)

MLX-compatible 4-bit quantization of Meta's Omnilingual ASR CTC-3B model for on-device inference on Apple Silicon (M2 Pro / M3 / M4 recommended). Trades ~1 GB of extra disk versus CTC-1B 4-bit for measurably better accuracy on low-resource languages per Meta's published FLEURS results.

Omnilingual ASR is a wav2vec 2.0-style encoder-only model with a linear CTC head, trained by Meta for speech recognition across 1,600+ languages. The CTC variant is language-agnostic at inference time.

Model

Parameters~3 B
FormatMLX safetensors (quantized linear layers + fp16 features)
Quantization4-bit per-group min-max, group size 64
Sample rate16 kHz (raw waveform input)
Frame rate50 fps
Max duration40 s
Languages1,600+
Vocabulary10,288 SentencePiece tokens

Full architecture details (numlayers / modeldim / ffn_dim) are in config.json.

Files

FileDescription
model.safetensors4-bit quantized transformer weights + fp16 conv frontend
tokenizer.modelSentencePiece tokenizer
config.jsonArchitecture + quantization metadata

Usage

python
import mlx.core as mx
from safetensors import safe_open

weights = {}
with safe_open("model.safetensors", framework="mlx") as f:
    for k in f.keys():
        weights[k] = f.get_tensor(k)

Swift inference is provided by speech-swift.

Source

Links

License

Apache 2.0 (inherited from upstream).