CoolFace
Modelpublic

beshkenadze/parakeet-tdt-0.6b-v3-mlx-encoder-int8

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes15downloads
Model Card

parakeet-tdt-0.6b-v3-mlx-encoder-int8

Encoder-only INT8 variant of nvidia/parakeet-tdt-0.6b-v3 converted for MLX / Apple Silicon inference via `mlx-audio-swift`.

Quantization scheme

Componentdtypenotes
Conformer encoder (encoder.*) Linear weightsINT8, group_size=64217 layers
Decoder (decoder.*) weightsFP16unchanged
Joint network (joint.*) weightsFP16unchanged
Norms, biases, embeddings, convsFP16never quantized

Scales/biases sidecars are emitted at <path>.scales / <path>.biases (sibling keys, not suffixes of .weight) and cast to FP16 — this matches the mlx-audio-swift loader's expectation.

Rationale

Motivation: the Conformer encoder dominates matmul bandwidth; its matrices are large enough that INT8 weight quantization amortizes dequant overhead and reduces memory pressure. The decoder's many small matmuls do not amortize dequant cost, so keeping them FP16 avoids regressions seen with whole-model INT4.

Usage

Load via the MLXAudioSTT fork's Parakeet loader — the quantization section in config.json is auto-detected; only layers that have a .scales sibling in the safetensors will be quantized at load time.

Related variants

  • —beshkenadze/parakeet-tdt-0.6b-v3-mlx-fp16 — baseline FP16
  • —beshkenadze/parakeet-tdt-0.6b-v3-mlx-4bit — whole-model INT4