Views
No views yet
Unofficial conversion. Converted with parakeet.cpp fromnvidia/nemotron-3.5-asr-streaming-0.6b. Not parity-validated — it has been smoke-tested (loads, transcribes English correctly, cache-aware streaming works on CPU and Apple Metal) but has not been run through parakeet.cpp's full WER-0-vs-NeMo validation across languages. For a validated, official build, watchmudler/parakeet-cpp-gguf.
| File | Recipe | Size | Stock parakeet.cpp? |
|---|---|---|---|
nemotron-3.5-asr-streaming-0.6b-q4_k.gguf | q4_k linear, F32 rest | ~0.67 GB | ✅ yes |
nemotron-3.5-asr-streaming-0.6b-q4k-f16.gguf | q4_k linear, f16 rest | ~0.49 GB | ⚠️ patched build only |
nemotron-3.5-asr-streaming-0.6b-q4k-q8.gguf | q4_k linear, q8_0 rest | ~0.46 GB ⭐ | ⚠️ patched build only |
q4_k keeps them F32 — loads on any released parakeet.cpp.q4k-f16 / q4k-q8 store them f16 / q8_0 and rely on the loader
dequantizing them back to F32 at load (compute path unchanged). That dequant is
not yet in released parakeet.cpp, so these need a patched build (below).q4k-q8 is the recommended one — smallest, and WER 0 vs NeMo,
byte-identical decode to the q4_k file on tested clips. (q4k-f16 is kept for
reference.) q8_0 needs each tensor's leading dim divisible by 32; tensors that
don't fit fall back to f16, which is why q8 is only a little smaller than f16 here.q4k-q8 / q4k-f16)parakeet-rest-loader.patch — which adds the
load-time dequant (plus a quantize --rest f16|q8_0 flag). It loads both files
and leaves all existing models unaffected:1git clone --recursive https://github.com/mudler/parakeet.cpp && cd parakeet.cpp
2git apply /path/to/parakeet-rest-loader.patch
3cmake -B build -DPARAKEET_GGML_METAL=ON && cmake --build build -j # or your backend
4./build/examples/cli/parakeet-cli transcribe \
5 --model nemotron-3.5-asr-streaming-0.6b-q4k-q8.gguf --input audio.wav --lang en1# Offline
2parakeet-cli transcribe --model nemotron-3.5-asr-streaming-0.6b-q4_k.gguf \
3 --input audio.wav --lang en # or --lang auto / es / fr ...
4
5# Cache-aware streaming
6parakeet-cli transcribe --model nemotron-3.5-asr-streaming-0.6b-q4_k.gguf \
7 --input audio.wav --stream --lang en