Views
No views yet
transformers format. NVIDIA distributes v2 as a .nemo checkpoint only, and to my knowledge no working HF-format conversion has been public before this one. The v2 release remains the strongest Parakeet for English transcription, and its newer multilingual sibling v3 trades some English accuracy for language coverage, so an HF-format v2 is worth having..nemo checkpoint using the transformers conversion script models/parakeet/convert_nemo_to_hf.py, with two fixes that the script needs for v2 (a <pad> crash and a silent blank-id off-by-one that corrupts transcripts). The fixes have been submitted upstream: https://github.com/huggingface/transformers/pull/47891.generate() output token for token on probe audio (82 of 82 tokens), and end-to-end transcripts were token-exact across a multi-hour audiobook validation corpus.vocab_size=1025, blank_token_id=1024, durations=[0, 1, 2, 3, 4], joint activation ReLU, 128-mel front end with 0.97 preemphasis. The encoder is architecturally identical to v3's, and only the tokenizer and vocab differ between the two releases. Note that 1025 is the id-space size (max id plus one) rather than the token entry count, since <unk> reuses id 0..nemo to safetensors/transformers layout as described above, with no change to the weights themselves.