Parakeet.java: Automatic Speech Recognition in Pure Java A pure-Java implementation of NVIDIA's Parakeet automatic speech recognition model, called Parakeet.java, matches the reference parakeet.cpp engine word-for-word at F16 quantization with 0.00% WER difference on LibriSpeech test-clean, according to benchmarks published by developer qxoticai. On an AMD Ryzen 7 PRO 8840U laptop with 8 threads, the tdt-0.6b-v3 Q4_K model reached 25.1x real-time factor versus parakeet.cpp's 12.6, while the smaller tdt_ctc-110m Q4_K model hit 81.2x versus 45.8x, transcribing an hour of speech in 44 seconds. The implementation runs without ONNX Runtime, whisper.cpp or a Python runtime, supports streaming transcription, word timings and confidence scores, and offers GraalVM Native Image support that loads a 600M model in about 0.2 seconds. Automatic Speech Recognition for the JVM An implementation of NVIDIA Parakeet https://huggingface.co/nvidia/parakeet-tdt-0.6b-v3 for the JVM: blazing fast on ordinary CPUs, competitive with the native implementations. No ONNX Runtime, no whisper.cpp, no Python runtime. Just the JVM.