Views
No views yet
grider-transwithai/parakeet-ctc-1.1b-ja for use with the crispasr CLI from CrispStrobe/CrispASR.nvidia/parakeet-ctc-1.1b on Japanese data.| File | Size | Notes |
|---|---|---|
parakeet-ctc-1.1b-ja-f16.gguf | 2.13 GB | F16 — highest fidelity, closest to the NeMo reference |
parakeet-ctc-1.1b-ja-q8_0.gguf | 1.26 GB | Q8_0 — default download, near-F16 quality |
parakeet-ctc-1.1b-ja-q4_k.gguf | 795 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/parakeet-ctc-1.1b-ja-GGUF \
9 parakeet-ctc-1.1b-ja-q8_0.gguf --local-dir .
10
11# 3. Transcribe a 16 kHz mono WAV
12./build/bin/crispasr \
13 -m parakeet-ctc-1.1b-ja-q8_0.gguf -f your-japanese-audio.wav -t 8Backend: this is a CTC model — let crispasr auto-detect it (as above, no--backend) or pass--backend fastconformer-ctcexplicitly. Do not pass--backend parakeet: that is the RNN-T/TDT transducer runtime and it will reject a CTC model with "required tensor 'decoder.embed.weight' not found".
1./build/bin/crispasr -m parakeet-ctc-1.1b-ja \
2 --auto-download -f your-japanese-audio.wav1./build/bin/crispasr -m parakeet-ctc-1.1b-ja-q8_0.gguf \
2 -f long-japanese-audio.wav --vad -t 8| Component | Details |
|---|---|
| Encoder | 42-layer FastConformer, d_model 1024 |
| Subsampling | Conv2d dw_striding stack, 8× temporal (50 → 12.5 fps) |
| Decoder | CTC — single linear head over the SentencePiece vocab, greedy decode |
| Audio | 16 kHz mono, 80 mel bins, n_fft=512, hop=160, win=400 |
| Parameters | ~1.1 B |
.nemo checkpoint is the GAL checkpoint
(parakeet-ja-gal.nemo) from
grider-transwithai/parakeet-ctc-1.1b-ja.
The non-GAL checkpoint in that repo has corrupt F32 weights in
encoder layers 26–28 (NaN / values > 1e38) and is not usable —
the GAL checkpoint is the converted one.model_config.yaml and cross-checked against the actual tensor
shapes; the mel filterbank and Hann window are baked into the GGUF
so the runtime reproduces NeMo's front-end exactly.canary-ctc architecture tag; inference runs
through the shared FastConformer-CTC runtime (--backend fastconformer-ctc, auto-detected from the filename), not the
RNN-T parakeet transducer backend.grider-transwithai/parakeet-ctc-1.1b-ja
fine-tune. The underlying NVIDIA NeMo FastConformer-CTC architecture
(nvidia/parakeet-ctc-1.1b)
is CC-BY-4.0.grider-transwithai.apache-2.0. This repository redistributes under the same terms; it grants no rights the upstream licence does not.