openWakeWord VS CTranslate2

Compare openWakeWord vs CTranslate2 and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
openWakeWord CTranslate2
5 14
457 2,841
- 5.2%
8.4 8.9
about 1 month ago 13 days ago
Jupyter Notebook C++
Apache License 2.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

openWakeWord

Posts with mentions or reviews of openWakeWord. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-06.
  • OpenAI releases Whisper v3, new generation open source ASR model
    8 projects | news.ycombinator.com | 6 Nov 2023
    https://github.com/dscripka/openWakeWord

    Balancing wake reliability vs false wake activation is a tricky balance. OWW is decent but could certainly be better.

    It's used with Home Assistant now so I expect the training data and implementation overall to get significantly better fairly soon.

  • Distil-Whisper: distilled version of Whisper that is 6 times faster, 49% smaller
    14 projects | news.ycombinator.com | 31 Oct 2023
    There's also OpenWakeWord[0]. The models are readily available in tflite and ONNX formats and are impressively "light" in terms of compute requirements and performance.

    It should be possible.

    [0] - https://github.com/dscripka/openWakeWord

  • Real-Time Noise Suppression for PipeWire writen in Rust
    7 projects | /r/rust | 6 Jun 2023
    hey, quick question. do you mind if I use your stft function in the speech preprocessing library I've been working on? we've been trying to add support for doing mel spectrograms to build a runner for openwakeword, but progress is pretty slow because I've been soloing something I really don't have the right background for(I've never directly studied or worked with signal processing)
  • I'm new to Rust but want to contribute
    1 project | /r/rust | 15 May 2023
    potentially build another runner for open wakeword
  • I want to contribute in a big project
    6 projects | /r/rust | 1 May 2023
    here's what's on the pipeline next: - finish mel-spectrogram implementation - publish initial version on crates - move python caching rust side - finish implementing in the precise rust port - potentially build another runner for (open wakeword)[https://github.com/dscripka/openWakeWord] - build an android app that supports user-defined wakewords and has some popular defaults to load. ps not a voice assistant, just the thing that activates the voice assistant.

CTranslate2

Posts with mentions or reviews of CTranslate2. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-29.
  • Creando Subtítulos Automáticos para Vídeos con Python, Faster-Whisper, FFmpeg, Streamlit, Pillow
    7 projects | dev.to | 29 Apr 2024
  • Distil-Whisper: distilled version of Whisper that is 6 times faster, 49% smaller
    14 projects | news.ycombinator.com | 31 Oct 2023
    Just a point of clarification - faster-whisper references it but ctranslate2[0] is what's really doing the magic here.

    Ctranslate2 is a sleeper powerhouse project that enables a lot. They should be up front and center and get the credit they deserve.

    [0] - https://github.com/OpenNMT/CTranslate2

  • A Raspberry Pi 5 is better than two Pi 4S
    3 projects | news.ycombinator.com | 8 Oct 2023
    We'd love to move beyond Nvidia.

    The issue (among others) is we achieve the speech recognition performance we do largely thanks to ctranslate2[0]. They've gone on the record saying that they essentially have no interest in ROCm[1].

    Of course with open source anything is possible but we see this as being one of several fundamental issues in supporting AMD GPGPU hardware.

    [0] - https://github.com/OpenNMT/CTranslate2

    [1] - https://github.com/OpenNMT/CTranslate2/issues/1072

  • AMD May Get Across the CUDA Moat
    8 projects | news.ycombinator.com | 6 Oct 2023
    > While I agree that it's much more effort to get things working on AMD cards than it is with Nvidia, I was a bit surprised to see this comment mention Whisper being an example of "5-10x as performant".

    It easily is. See the benchmarks[0] from faster-whisper which uses Ctranslate2. That's 5x faster than OpenAI reference code on a Tesla V100. Needless to say something like a 4080 easily multiplies that.

    > https://www.tomshardware.com/news/whisper-audio-transcriptio... is a good example of Nvidia having no excuses being double the price when it comes to Whisper inference, with 7900XTX being directly comparable with 4080, albeit with higher power draw. To be fair it's not using ROCm but Direct3D 11, but for performance/price arguments sake that detail is not relevant.

    With all due respect to the author of the article this is "my first entry into ML" territory. They talk about a 5-10 second delay, my project can do sub 1 second times[1] even with ancient GPUs thanks to Ctranslate2. I don't have an RTX 4080 but if you look at the performance stats for the closest thing (RTX 4090) the performance numbers are positively bonkers - completely untouchable for anything ROCm based. Same goes for the other projects I linked, lmdeploy does over 100 tokens/s in a single session with LLama2 13b on my RTX 4090 and almost 600 tokens/s across eight simultaneous sessions.

    > EDIT: Also using CTranslate2 as an example is not great as it's actually a good showcase why ROCm is so far behind CUDA: It's all about adapting the tech and getting the popular libraries to support it. Things usually get implemented in CUDA first and then would need additional effort to add ROCm support that projects with low amount of (possibly hobbyist) maintainers might not have available. There's even an issue in CTranslate2 where they clearly state no-one is working to get ROCm supported in the library. ( https://github.com/OpenNMT/CTranslate2/issues/1072#issuecomm... )

    I don't understand what you're saying here. It (along with the other projects I linked) are fantastic examples of just how far behind the ROCm ecosystem is. ROCm isn't even on the radar for most of them as your linked issue highlights.

    Things always get implemented in CUDA first (ten years in this space and I've never seen ROCm first) and ROCm users either wait months (minimum) for sub-par performance or never get it at all.

    [0] - https://github.com/guillaumekln/faster-whisper#benchmark

    [1] - https://heywillow.io/components/willow-inference-server/#ben...

  • StreamingLLM: Efficient streaming technique enable infinite sequence lengths
    2 projects | news.ycombinator.com | 3 Oct 2023
    Etc.

    Now, what this allows you to do is reuse the attention computed from the previous turns (since the prefix is the same).

    In practice, people often have a system prompt before the conversation history, which (as far a I can tell) makes this technique not applicable (the input prefix will change as soon as the conversation history is long enough that we need to start dropping the oldest turns).

    In such case, what you could do is to cache at least the system prompt. This is also possible with https://github.com/OpenNMT/CTranslate2/blob/2203ad5c8baf878a...

  • Faster Whisper Transcription with CTranslate2
    5 projects | news.ycombinator.com | 20 Jul 2023
    The original Whisper implementation from OpenAI uses the PyTorch deep learning framework. On the other hand, faster-whisper is implemented using CTranslate2 [1] which is a custom inference engine for Transformer models. So basically it is running the same model but using another backend, which is specifically optimized for inference workloads.

    [1] https://github.com/OpenNMT/CTranslate2

  • Explore large language models on any computer with 512MB of RAM
    4 projects | /r/LocalLLaMA | 17 Jun 2023
    FLAN-T5 models generally perform well for their size, but they are encode-decoder models, and they aren't as widely supported for efficient inference. I wanted students to be able to run everything locally on CPU, so I was ideally hoping for something that supported quantization for CPU inference. I explored llama.cpp and GGML, but ultimately landed on ctranslate2 for inference.
  • CTranslate2: An efficient inference engine for Transformer models
    1 project | news.ycombinator.com | 21 May 2023
  • [D] Faster Flan-T5 inference
    1 project | /r/MachineLearning | 22 Feb 2023
    You can also check out the CTranslate2 library which supports efficient inference of T5 models, including 8-bit quantization on CPU and GPU. There is a usage example in the documentation.
  • Running large language models like ChatGPT on a single GPU
    7 projects | news.ycombinator.com | 20 Feb 2023

What are some alternatives?

When comparing openWakeWord and CTranslate2 you can also consider the following projects:

WhisperInput - Offline voice input panel & keyboard with punctuation for Android.

vllm - A high-throughput and memory-efficient inference and serving engine for LLMs

mfcc-rust

sentencepiece - Unsupervised text tokenizer for Neural Network-based text generation.

project-2501 - Project 2501 is an open-source AI assistant, written in C++.

FlexGen - Running large language models like OPT-175B/GPT-3 on a single GPU. Focusing on high-throughput generation. [Moved to: https://github.com/FMInference/FlexGen]

Clippy - A bunch of lints to catch common mistakes and improve your Rust code. Book: https://doc.rust-lang.org/clippy/

OpenNMT-Tutorial - Neural Machine Translation (NMT) tutorial. Data preprocessing, model training, evaluation, and deployment.

whisper-dictation - Dictation app based on the OpenAI speed to text models

oneDNN - oneAPI Deep Neural Network Library (oneDNN)

TX-2-simulator - Simulator for the pioneering TX-2 computer

faster-whisper - Faster Whisper transcription with CTranslate2