nerdexam
Google

PROFESSIONAL-MACHINE-LEARNING-ENGINEER · Question #123

You are an ML engineer in the contact center of a large enterprise. You need to build a sentiment analysis tool that predicts customer sentiment from recorded phone conversations. You need to identify

The correct answer is A. Convert the speech to text and extract sentiments based on the sentences.. To build a sentiment analysis tool from phone conversations while mitigating bias related to gender, age, and cultural differences, the best approach is to first convert speech to text and then analyze the text for sentiment.

Submitted by kwame.gh· Apr 18, 2026ML model development

Question

You are an ML engineer in the contact center of a large enterprise. You need to build a sentiment analysis tool that predicts customer sentiment from recorded phone conversations. You need to identify the best approach to building a model while ensuring that the gender, age, and cultural differences of the customers who called the contact center do not impact any stage of the model development pipeline and results. What should you do?

Options

  • AConvert the speech to text and extract sentiments based on the sentences.
  • BConvert the speech to text and build a model based on the words.
  • CExtract sentiment directly from the voice recordings.
  • DConvert the speech to text and extract sentiment using syntactical analysis.

How the community answered

(46 responses)
  • A
    72% (33)
  • B
    4% (2)
  • C
    15% (7)
  • D
    9% (4)

Why each option

To build a sentiment analysis tool from phone conversations while mitigating bias related to gender, age, and cultural differences, the best approach is to first convert speech to text and then analyze the text for sentiment.

AConvert the speech to text and extract sentiments based on the sentences.Correct

Converting the speech to text first removes vocal characteristics such as pitch, tone, and accent, which can vary significantly with gender, age, and cultural backgrounds. By analyzing sentiment from the transcribed text, the model focuses solely on the semantic content, thereby reducing potential biases introduced by auditory features related to demographics.

BConvert the speech to text and build a model based on the words.

While converting to text and using words is part of the process, extracting sentiments based on individual words rather than the full context of sentences might miss nuanced meanings and could still be prone to lexical biases if not carefully handled.

CExtract sentiment directly from the voice recordings.

Extracting sentiment directly from voice recordings would likely amplify biases related to gender, age, and cultural differences, as vocal features often correlate with these attributes and could be misinterpreted as emotional cues.

DConvert the speech to text and extract sentiment using syntactical analysis.

Syntactical analysis focuses on grammar and sentence structure; while important in NLP, the primary step to specifically mitigate bias related to *voice characteristics* is the speech-to-text conversion itself, allowing subsequent semantic analysis of sentences for sentiment.

Concept tested: Bias mitigation in speech-based sentiment analysis

Source: https://cloud.google.com/speech-to-text

Topics

#Sentiment Analysis#Speech-to-Text#Bias Mitigation#Natural Language Processing

Community Discussion

No community discussion yet for this question.

Full PROFESSIONAL-MACHINE-LEARNING-ENGINEER Practice