, and Siri are the ever-present voice assistants that serve a lot of the web linked inhabitants in the present day. For essentially the most half, English is the dominant language used with these voice assistants. Nonetheless, for a voice assistant to be actually useful, it should have the ability to perceive the consumer as they naturally communicate. In lots of elements of the world, particularly in a various nation like India, it’s common for individuals to be multilingual and to change between a number of languages in a single dialog. A really sensible assistant ought to have the ability to deal with this.
Google Assistant provides the power so as to add a second language; however its performance is proscribed to sure gadgets solely and provides this just for a restricted set of main languages. For instance, Google’s Nest Hub doesn’t but help bilingual capabilities for Tamil, a language spoken by over 80 million individuals. Alexa helps bilingual strategy so long as it’s supported in its inner language pair; once more this solely helps a restricted set of main languages. Siri doesn’t have bilingual functionality and permits just one language at a time.
On this article I’ll focus on the strategy taken to allow my Voice Assistant to have a bilingual functionality with English and Tamil because the languages. Utilizing this strategy, the voice assistant will have the ability to robotically detect the language an individual is talking by analyzing the audio immediately. By utilizing a “confidence rating”-based algorithm, the system will decide if English or Tamil is spoken and reply within the corresponding language.
Strategy to Bilingual Functionality
To make the assistant perceive each English and Tamil, there are just a few potential options. The primary strategy could be to coach a customized Machine Studying mannequin from scratch, particularly on Tamil language information, after which combine that mannequin into the Raspberry Pi. Whereas this could provide a excessive diploma of customization, it’s an extremely time-consuming and resource-intensive course of. Coaching a mannequin requires an enormous dataset and important computational energy. Moreover, operating a heavy customized mannequin would doubtless decelerate the Raspberry Pi, resulting in a poor consumer expertise.
fastText Strategy
A extra sensible resolution is to make use of an present, pre-trained mannequin that’s already optimized for a selected process. For language identification, an ideal choice is fastText.
fastText is an open-source library from Fb AI Analysis designed for environment friendly textual content classification and phrase illustration. It comes with pre-trained fashions that may rapidly and precisely determine the language of a given piece of textual content from a lot of languages. As a result of it’s light-weight and extremely optimized, it is a wonderful alternative for operating on a resource-constrained system like a Raspberry Pi with out inflicting important efficiency points. The plan, subsequently, was to make use of fastText
to categorise the consumer’s spoken language.
To make use of fastText, you obtain the corresponding mannequin (lid.176.bin) and retailer it in your undertaking folder. Specify this because the MODEL_PATH and cargo the mannequin.
import fastText
import speech_recognition as sr
import fasttext
# --- Configuration ---
MODEL_PATH = "./lid.176.bin" # That is the mannequin file you downloaded and unzipped
# --- Important Utility Logic ---
print("Loading fastText language identification mannequin...")
attempt:
# Load the pre-trained mannequin
mannequin = fasttext.load_model(MODEL_PATH)
besides Exception as e:
print(f"FATAL ERROR: Couldn't load the fastText mannequin. Error: {e}")
exit()
The following step could be to go the voice instructions, as recordings, to the mannequin and get the prediction again. This may be achieved by a devoted operate.
def identify_language(textual content, mannequin):
# The mannequin.predict() operate returns a tuple of labels and possibilities
predictions = mannequin.predict(textual content, okay=1)
language_code = predictions[0][0] # e.g., '__label__en'
return language_code
attempt:
with microphone as supply:
recognizer.adjust_for_ambient_noise(supply, period=1)
print("nPlease communicate now...")
audio = recognizer.hear(supply, phrase_time_limit=8)
print("Transcribing audio...")
# Get a tough transcription with out specifying a language
transcription = recognizer.recognize_google(audio)
print(f"Heard: "{transcription}"")
# Determine the language from the transcribed textual content
language = identify_language(transcription, mannequin)
if language == '__label__en':
print("n---> Consequence: The detected language is English. <---")
elif language == '__label__ta':
print("n---> Consequence: The detected language is Tamil. <---")
else:
print(f"n---> Consequence: Detected a unique language: {language}")
besides sr.UnknownValueError:
print("Couldn't perceive the audio.")
besides sr.RequestError as e:
print(f"Speech recognition service error; {e}")
besides Exception as e:
print(f"An surprising error occurred: {e}")
The code block above follows a easy path. It makes use of the recognizer.recognize_google(audio) operate to transcribe the voice command after which passes this transcription to the fastText mannequin to get a prediction on the language. If the prediction is “__label__en” then English has been detected and if prediction is “__label_ta” then Tamil has been detected.
This strategy led to poor predictions although. The issue is that speech_recognition library defaults to English. So after I communicate one thing in Tamil, it finds the closest (and incorrect) equal sounding phrases in English and passes it to fastText.
For instance after I mentioned “En Peyar enna” (What’s my Title in Tamil), speech_recognition understood it as “Empire NA” and therefore fastText predicted the language as English. To beat this, I can hardcode the speech_recognition operate to detect solely Tamil. However this could defeat the concept of being actually ‘sensible’ and ‘bilingual’. The assistant ought to have the ability to detect the language primarily based on what’s spoken; not primarily based on what is tough coded.

The ‘Confidence Rating’ technique
What we’d like is a extra direct and data-driven technique. The answer lies inside a characteristic of the speech_recognition library. The recognizer.recognize_google() operate is the Google Speech Recognition API and it could possibly transcribe audio from an enormous variety of languages, together with each English and Tamil. A key characteristic of this API is that for each transcription it offers, it could possibly additionally return a confidence rating — a numerical worth between 0 and 1, indicating how sure it’s that its transcription is right.
This characteristic permits for a way more elegant and dynamic strategy to language identification. Let’s check out the code.
def recognize_with_confidence(recognizer, audio_data):
tamil_text = None
tamil_confidence = 0.0
english_text = None
english_confidence = 0.0
# 1. Try to acknowledge as Tamil and get confidence
attempt:
print("Making an attempt to transcribe as Tamil...")
# show_all=True returns a dictionary with transcription alternate options
response_tamil = recognizer.recognize_google(audio_data, language='ta-IN', show_all=True)
# We solely take a look at the highest various
if response_tamil and 'various' in response_tamil:
top_alternative = response_tamil['alternative'][0]
tamil_text = top_alternative['transcript']
if 'confidence' in top_alternative:
tamil_confidence = top_alternative['confidence']
else:
tamil_confidence = 0.8 # Assign a default excessive confidence if not supplied
besides sr.UnknownValueError:
print("Couldn't perceive audio as Tamil.")
besides sr.RequestError as e:
print(f"Tamil recognition service error; {e}")
# 2. Try to acknowledge as English and get confidence
attempt:
print("Making an attempt to transcribe as English...")
response_english = recognizer.recognize_google(audio_data, language='en-US', show_all=True)
if response_english and 'various' in response_english:
top_alternative = response_english['alternative'][0]
english_text = top_alternative['transcript']
if 'confidence' in top_alternative:
english_confidence = top_alternative['confidence']
else:
english_confidence = 0.8 # Assign a default excessive confidence
besides sr.UnknownValueError:
print("Couldn't perceive audio as English.")
besides sr.RequestError as e:
print(f"English recognition service error; {e}")
# 3. Examine confidence scores and return the winner
print(f"nConfidence Scores -> Tamil: {tamil_confidence:.2f}, English: {english_confidence:.2f}")
if tamil_confidence > english_confidence:
return tamil_text, "Tamil"
elif english_confidence > tamil_confidence:
return english_text, "English"
else:
# If scores are equal (or each zero), return neither
return None, None
The logic on this code block is easy. We go the audio to the recognize_google() operate and get the entire checklist of alternate options and its scores. First we attempt the language as Tamil and get the corresponding confidence rating. Then we attempt the identical audio as English and get the corresponding confidence rating from the API. As soon as we now have each, we then examine the arrogance scores and select the one with the upper rating because the language detected by the system.
Beneath is the output of the operate after I communicate in English and after I communicate in Tamil.


The outcomes above present how the code is ready to perceive the language spoken dynamically, primarily based on the arrogance rating.
Placing all of it collectively — The Bilingual Assistant
The ultimate step could be to combine this strategy into the code for the Raspberry Pi primarily based Voice assistant. The complete code might be present in my GitHub. As soon as built-in the subsequent step could be to check the functioning of the Voice Assistant by talking in English and Tamil and seeing the way it responds for every language. The recordings beneath reveal the working of the Bilingual Voice Assistant when requested a query in English and in Tamil.
Conclusion
On this article, we now have seen efficiently improve a easy voice assistant into a very bilingual software. By implementing a “confidence rating” algorithm, the system might be made to find out whether or not a command is spoken in English or Tamil, permitting it to grasp and reply within the consumer’s chosen language for that particular question. This creates a extra pure and seamless conversational expertise.
The important thing benefit of this technique is its reliability and scalability. Whereas this undertaking centered on simply two languages, the identical confidence rating logic might simply be prolonged to help three, 4, or extra by merely including an API name for every new language and evaluating all the outcomes. The methods explored right here function a strong basis for creating extra superior and intuitive private AI instruments.
Reference:
[1] A. Joulin, E. Grave, P. Bojanowski, T. Mikolov, Bag of Tips for Environment friendly Textual content Classification
[2] A. Joulin, E. Grave, P. Bojanowski, M. Douze, H. Jégou, T. Mikolov, FastText.zip: Compressing textual content classification fashions