Technology Overview
A broad overview of the technology that makes up Mycroft AI.
Last updated
Was this helpful?
A broad overview of the technology that makes up Mycroft AI.
Last updated
Was this helpful?
Mycroft is the name of a suite of software and hardware tools that use and to provide an open source voice assistant.
Mycroft is modular. Some components can be easily 'swapped out' for others:
Wake Word detection
Speech to Text (STT)
Intent parser
There are two technologies that Mycroft.AI currently uses for Wake Word detection:
Because PocketSphinx is trained on English speech, your Wake Word currently needs to be an English word, like Hello Mike
, Hi there Mickey
or Hey Mike
. Wake Words in other languages, like Spanish, French or German, won't work as well.
Speech to Text (STT) software is used to take spoken words, and turn them into text phrases that can then be acted on.
An intent parser is software which identifies what the user's intent is based on their speech. An intent parser usually takes the output of a Speech to Text (STT) engine as an input.
For example, Julie Speaks the following to Mycroft: Hey Mycroft, tell me about the weather
Julie's intent is to find out about the weather (probably in her current location).
An intent parser can then match the intent with a suitable Skill to handle the intent.
Text to Speech (TTS) software takes written text, such as text files on a computer, and uses a voice to speak the text. Text to Speech can have different voices, depending on the TTS engine used.
In your home.mycroft.ai account, you can select voices from these as well as
even more tts engines are available but require manual configuration.
The Mycroft middleware has two components:
Mycroft is designed to run on many different platforms. Each dedicated platform is called a device, these include:
Mark 1 - our first reference hardware device using a dedicated software image.
Mark 2 - our latest reference hardware device using a dedicated software image.
Picroft - any Raspberry Pi 3 or 4 that is running the Picroft software image.
The enclosure refers to the specific code that is required for that device. It might define unique functionality such as the eyes on the Mark 1, or a specific way of interacting with the hardware, such as controlling the volume levels at a hardware level via i2c.
A Wake Word is a phrase you use to tell Mycroft you're about to issue a command. By default, this is Hey Mycroft
, but you can configure your own Wake Word in your account.
: PocketSphinx is part of the broader , developed by . PocketSphinx is a lightweight speech recognition engine, specifically tuned for handheld and mobile devices.
: Unlike PocketSphinx, which is based on Speech to Text technology, Precise is a neural network that is trained on audio data. It doesn't matter what words you want to use for your Wake Word. Instead, you train it on sounds. The downside is that Precise needs to be trained on your chosen Wake Word. Precise is the default Wake Word Listener for the "Hey Mycroft" wake word, PocketSphinx provides a fallback to this if Precise is unavailable.
We are working with Mozilla to build . A fully open source STT engine, based on Baidu’s Deep Speech architecture and implemented with Google’s framework.
DeepSpeech is not yet ready for production use and Mycroft currently uses as the default STT engine.
Mycroft also supports other STT engines that can be configured using the :
(IBM API key required)
(wit.ai API key required)
: Adapt is the default intent parser for all Mycroft platforms. Adapt was developed by Mycroft and is available under an open source license.
: Padatious is a neural network based intent parser. Padatious is currently under active development by Mycroft and is available under an open source license. It is likely that some Mycroft platforms will switch to using Padatious in the future instead of Adapt.
: Mycroft's default local text to speech (TTS) engine, based on CMU's Flite (Festival Lite)
: Mycroft's own cloud based text to speech (TTS) engine, based on Tacotron providing a much better voice quality.
: you need to choose which voice to use
: this code, written in Python, is the core software that provides the 'glue' between other modules. Mycroft Core is available under an Apache 2.0 open source license.
: this is the platform where data on Users and Devices is held. This platform provides abstraction services, such as storing API keys that are used to access third-party services to provide Skill functionality. The code for this platform is available under an AGPL 3.0 open source license.
are like 'add-ons' or 'plugins' that provide additional functionality. Skills can be developed by Mycroft Developers, or by Community Developers, and vary in their functionality and maturity.
is a Python-based utility that has been created to make it easier for Skill Authors to create, test and submit Skills to the .
is a command line tool used to add, manage and remove Skills on any Mycroft installation.