Remix.run Logo
Parakeet.cpp – Parakeet ASR inference in pure C++ with Metal GPU acceleration(github.com)
45 points by noahkay13 5 hours ago | 6 comments
antirez 22 minutes ago | parent | next [-]

Related:

https://github.com/antirez/qwen-asr

https://github.com/antirez/voxtral.c

Qwen-asr can easily transcribe live radio (see README) in any random laptop. It looks like we are going to see really cool things on local inference, now that automatic programming makes a lot simpler to create solid pipelines for new models in C, C++, Rust, ..., in a matter of hours.

noahkay13 5 hours ago | parent | prev | next [-]

I built a C++ inference engine for NVIDIA's Parakeet speech recognition models using Axiom(https://github.com/Frikallo/axiom) my tensor library.

What it does: - Runs 7 model families: offline transcription (CTC, RNNT, TDT, TDT-CTC), streaming (EOU, Nemotron), and speaker diarization (Sortformer) - Word-level timestamps - Streaming transcription from microphone input - Speaker diarization detecting up to 4 speakers

aaronbrethorst an hour ago | parent [-]

I see a number of references to macOS support in your docs for Axiom. Can this run on iOS?

noahkay13 9 minutes ago | parent [-]

Theoretically, yes? This hasent been tested but xcode has great c++ interop and the goal with Axiom and now parakeet.cpp is to be used for portable deployments so making that process easier is definitely on the roadmap.

ghostpepper 4 hours ago | parent | prev | next [-]

Off topic but if anyone is looking for a nice web-GUI frontend for a locally-hosted transcription engine, Scriberr is nice

https://github.com/rishikanthc/Scriberr

nullandvoid an hour ago | parent | prev [-]

I've been using handy with parakeet on both Windows and mac, and have been very impressed.

Hoe does this compare?