rhasspy VS Kaldi Speech Recognition Toolkit

Compare rhasspy vs Kaldi Speech Recognition Toolkit and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
rhasspy Kaldi Speech Recognition Toolkit
26 22
2,273 13,706
2.9% 1.2%
2.3 7.4
9 months ago 3 months ago
Shell Shell
MIT License GNU General Public License v3.0 or later
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.

rhasspy

Posts with mentions or reviews of rhasspy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-04.
  • New project: Grocy Rhasspy Skill
    2 projects | /r/grocy | 4 Apr 2023
    I've been working on this for a few months now and I think I have it to a point where I am ready to share. This is definitely a very niche solution but I am creating a new skill handler for Grocy for the Open Source Voice Assistant Rhasspy (https://github.com/rhasspy/rhasspy). My handler is here: https://github.com/MCHellspawn/hermes-app-grocy. It is not complete yet but getting there. With is skill and a working Rhasspy 2.5 setup you can do a lot of tasks in Grocy with your voice. So far you can create and delete shopping lists, create products and add and remove them from shopping lists, list chores, mark them complete or skipped, and more.
  • Ask HN: Home Voice Assistant Recommendations
    2 projects | news.ycombinator.com | 13 Feb 2023
    It'll run on a cheap Ubuntu box if you can't get a Pi.

    And lots of people seem to like Rhasspy too:

      https://github.com/rhasspy/rhasspy
  • The failure of Amazon's Alexa shows Microsoft was right to kill Cortana
    5 projects | /r/technology | 4 Dec 2022
    Here is one example https://community.rhasspy.org/
  • Someone has to say it: Voice assistants are not doing it for big tech
    2 projects | news.ycombinator.com | 23 Nov 2022
    I tried Amazon's Alexa, the top end model with a display. Often it would taunt you about new/interesting things on the screen, but I could never get them to work. I'd had to memorize things to get even the basics working. Ended up unplugging it.

    However Google's Assistant in comparison worked great, no memorization, and very useful. Sure time, weather, set timers, and alarms worked great with a very flexible set of natural language queries. Even more complex things like what will be the temperature tomorrow at 10pm, simple calculations and unit conversions. But also things like IMDB like queries about directors, actors, which movies someone was in, etc generally worked well. It seemed to really understand things, not just "A web search returned ...". Even more complex things like the wheelbase of a 2004 WRX would return an answer, not a search result.

    With all that said I'm looking for a non-cloud/on site solution, even if it requires more work, most recently noticed https://github.com/rhasspy/rhasspy

  • Rhasspy – Offline private voice assistant for many human languages
    1 project | /r/patient_hackernews | 22 Nov 2022
    1 project | /r/hackernews | 22 Nov 2022
    1 project | /r/Boiling_Steam | 22 Nov 2022
    1 project | /r/hypeurls | 22 Nov 2022
    3 projects | news.ycombinator.com | 22 Nov 2022
  • Google assistant alternatives?
    1 project | /r/fossdroid | 22 Nov 2022
    I just found this one: https://github.com/rhasspy/rhasspy

Kaldi Speech Recognition Toolkit

Posts with mentions or reviews of Kaldi Speech Recognition Toolkit. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-03.
  • Amazon plans to charge for Alexa in June–unless internal conflict delays revamp
    1 project | news.ycombinator.com | 20 Jan 2024
    Yeah, whisper is the closest thing we have, but even it requires more processing power than is present in most of these edge devices in order to feel smooth. I've started a voice interface project on a Raspberry Pi 4, and it takes about 3 seconds to produce a result. That's impressive, but not fast enough for Alexa.

    From what I gather a Pi 5 can do it in 1.5 seconds, which is closer, so I suspect it's only a matter of time before we do have fully local STT running directly on speakers.

    > Probably anathema to the space, but if the devices leaned into the ~five tasks people use them for (timers, weather, todo list?) could probably tighten up the AI models to be more accurate and/or resource efficient.

    Yes, this is the approach taken by a lot of streaming STT systems, like Kaldi [0]. Rather than use a fully capable model, you train a specialized one that knows what kinds of things people are likely to say to it.

    [0] http://kaldi-asr.org/

  • Unsupervised (Semi-Supervised) ASR/STT training recipes
    2 projects | /r/deeplearning | 3 Nov 2023
  • Steve's Explanation of the Viterbi Algorithm
    1 project | news.ycombinator.com | 16 Oct 2023
    You can study CTC in isolation, ignoring all the HMM background. That is how CTC was also originally introduced, by mostly ignoring any of the existing HMM literature. So e.g. look at the original CTC paper. But I think the distill.pub article (https://distill.pub/2017/ctc/) is also good.

    For studying HMMs, any speech recognition lecture should cover that. We teach that at RWTH Aachen University but I don't think there are public recordings. But probably you should find some other lectures online somewhere.

    You also find a lot of tutorials for Kaldi: https://kaldi-asr.org/

    Maybe check this book: https://www.microsoft.com/en-us/research/publication/automat...

    The relation of CTC and HMM becomes intuitively clear once you get the concept of HMMs. Often in terms of speech recognition, it is all formulated as finite state automata (FSA) (or finite state transducer (FST), or weighted FST (WFST)), and the CTC FST just looks a bit different (simpler) than the traditional HMMs, but in all cases, you can think about having states with possible transitions.

    This is all mostly about the modeling. The training is more different. For CTC, you often calculate the log prob of the full sequence over all possible alignments directly, while for HMMs, people often use a fixed alignment, and calculate framewise cross entropy.

    I did some research on the relation of CTC training and HMM training: https://www-i6.informatik.rwth-aachen.de/publications/downlo...

  • [D] What's stopping you from working on speech and voice?
    7 projects | /r/MachineLearning | 30 Jan 2023
    - https://github.com/kaldi-asr/kaldi
  • C++ for machine learning
    2 projects | /r/cscareerquestions | 7 Jan 2023
    Additionally, C++ may be used for extremely high levels of optimization even for cloud-based ML. Dlib and Kaldi are C++ libraries used as dependencies in Python codebases for computer vision and audio processing, for example. So if your application requires you to customize any functions similar to those libraries, then you'll need C++ knowhow.
  • The Advantages and disadvantages of In-House Speech Acknowledgment
    1 project | /r/datatangblogbotshare | 12 Dec 2022
    Frameworks as well as toolkits like Kaldi were at first promoted by the research study area, yet nowadays used by both scientists and also market experts, reduced the access obstacle in the advancement of automatic speech recognition systems. Nonetheless, cutting edge methods need big speech data readies to achieve a usable system.
  • xbp-src to only cross compile 32-bit
    2 projects | /r/voidlinux | 21 Nov 2022
    Hello. I'm trying to package the openfst library (here)[https://github.com/void-linux/void-packages/pull/39015] but a developer says 32-bit must be cross compiled from 64-bit. I see xbps-src has a nocross option, but I don't see a way to only cross compile. What do you think I should do? I have currently limited the archs to 64-bit ones. Here's my issue with the developer's response: https://github.com/kaldi-asr/kaldi/issues/4808 Thank you.
  • Machine Learning with Unix Pipes
    1 project | news.ycombinator.com | 15 Nov 2022
    If you interested in unix-like software design and not yet familiar with kaldi toolkit, you definitely need to check it https://kaldi-asr.org

    It extended Unix design with archives, control lists and matrices and enabled really flexible unix-like processing. For example, recognition of a dataset looks like this:

    extract-wav scp:list.scp ark:- | compute-mfcc-feats ark:- ark:- | lattice-decoder-faster final.mdl HCLG.fst ark:- ark:- | lattice-rescore ark:- ark:'|gzip -c > lat.gzip'

    Another example is gstreamer command line.

  • Lexicap: Lex Fridman Podcast Whisper Captions by Andrej Karpathy
    1 project | news.ycombinator.com | 27 Sep 2022
    No, speaker diarization is not part of Whisper. There are open source projects - such as Kaldi [1], but it's hard to get them running if you are not an area expert.

    [1] https://kaldi-asr.org/

  • Is there a way to integrate a raspberry pi with a keyboard to do speech to text?
    2 projects | /r/ErgoMechKeyboards | 1 Sep 2022
    State-of-the-art ASR, like what you get on smartphones, has unfortunately high resource requirements. Some recent smartphone models are able to run ASR on-device, but more typically, ASR is done by sending audio to a web service. Check out the (currently experimental) Web SpeechRecognition API in a Chrome browser. Here is a demo of the API in action. For something open source, check out Kaldi ASR.

What are some alternatives?

When comparing rhasspy and Kaldi Speech Recognition Toolkit you can also consider the following projects:

mycroft-core - Mycroft Core, the Mycroft Artificial Intelligence platform.

vosk-api - Offline speech recognition API for Android, iOS, Raspberry Pi and servers with Python, Java, C# and Node

ProjectAlice - Project Alice is a smart voice home assistant that is completely modular and extensible.

DeepSpeech - DeepSpeech is an open source embedded (offline, on-device) speech-to-text engine which can run in real time on devices ranging from a Raspberry Pi 4 to high power GPU servers.

Home Assistant - :house_with_garden: Open source home automation that puts local control and privacy first.

pyannote-audio - Neural building blocks for speaker diarization: speech activity detection, speaker change detection, overlapped speech detection, speaker embedding

Leon - 🧠 Leon is your open-source personal assistant.

speech-and-text-unity-ios-android - Speed to text in Unity iOS use Native Speech Recognition

rhino - On-device Speech-to-Intent engine powered by deep learning

espnet - End-to-End Speech Processing Toolkit

Gladys - A privacy-first, open-source home assistant

bert-for-inference - A small repo showing how to easily use BERT (or other transformers) for inference