Views
No views yet
reazon-research/reazonspeech-nemo-v2 for use with the crispasr CLI from CrispStrobe/CrispASR.| File | Size | Notes |
|---|---|---|
reazonspeech-nemo-v2-f16.gguf | 1.24 GB | F16 — highest fidelity, closest to the NeMo reference |
reazonspeech-nemo-v2-q8_0.gguf | 738 MB | Q8_0 — default download, near-F16 quality |
reazonspeech-nemo-v2-q4_k.gguf | 477 MB | Q4_K — smallest; some accuracy loss, fine for quick checks |
1# 1. Build the runtime
2git clone https://github.com/CrispStrobe/CrispASR
3cd CrispASR
4cmake -B build -DCMAKE_BUILD_TYPE=Release
5cmake --build build -j$(nproc) --target crispasr
6
7# 2. Download the Q8_0 (default) — or swap the filename for the F16 / Q4_K
8huggingface-cli download cstr/reazonspeech-nemo-v2-GGUF \
9 reazonspeech-nemo-v2-q8_0.gguf --local-dir .
10
11# 3. Transcribe a 16 kHz mono WAV
12./build/bin/crispasr --backend parakeet \
13 -m reazonspeech-nemo-v2-q8_0.gguf -f your-japanese-audio.wav -t 81./build/bin/crispasr --backend parakeet -m reazonspeech \
2 --auto-download -f your-japanese-audio.wavcstr/parakeet-ctc-1.1b-ja-GGUF
run through crispasr's parakeet backend — the runtime selects the
RNNT vs. CTC decode path from the GGUF metadata.)1./build/bin/crispasr --backend parakeet -m reazonspeech-nemo-v2-q8_0.gguf \
2 -f long-japanese-audio.wav --vad -t 8| Component | Details |
|---|---|
| Encoder | FastConformer with local relative-position attention (window 128+128, 1 global token) |
| Decoder | RNN-Transducer (RNNT) — LSTM predictor + joint network; no TDT durations |
| Vocab | 3000 SentencePiece tokens (Japanese) |
| Audio | 16 kHz mono, 80 mel bins, n_fft=512, hop=160, win=400 |
| Parameters | ~619 M |
.nemo checkpoint from
reazon-research/reazonspeech-nemo-v2
is unpacked; architecture hyperparameters (d_model, layers, local-attn
window, predictor/joint dims, vocab) are read from
model_config.yaml and cross-checked against the tensor shapes. The
mel filterbank and Hann window are baked into the GGUF so the runtime
reproduces NeMo's front-end.src/parakeet.{h,cpp} in CrispASR, which
handles the local relative-position attention and the RNNT
predictor/joint loop.reazon-research/reazonspeech-nemo-v2.
Please also see the
ReazonSpeech
project for details on the training corpus.