cpp/gguf

#37
by cstr - opened

Hi all, for a ggml/GGUF pipeline in C++, as a fork of whisper.cpp, ICYI, see:

๐Ÿ’ป Quick Start

# Clone the specific branch and build
git clone -b parakeet https://github.com/CrispStrobe/cohere-whisper.cpp
cd cohere-whisper.cpp && cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build -j --target parakeet-main

# Download the Q4_K weights
huggingface-cli download cstr/parakeet-tdt-0.6b-v3-GGUF \
    parakeet-tdt-0.6b-v3-q4_k.gguf --local-dir .

# Run inference
./build/bin/parakeet-main -m parakeet-tdt-0.6b-v3-q4_k.gguf -f your.wav -t 8 -osrt

Bug reports are highly welcome! Particularly multilingual sanity checks beyond English, as I haven't had the chance to fully stress-test those yet. Would be nice to hear how it runs for you!

cstr changed discussion status to closed

Sign up or log in to comment