Exam AI-102 All QuestionsBrowse all questions from this exam
Question 144

DRAG DROP

-

You develop an app in C# named App1 that performs speech-to-speech translation.

You need to configure App1 to translate English to German.

How should you complete the SpeechTranslationConfig object? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.

    Correct Answer:

Discussion
MaliSanFuu

Agreeing with @WinzigWeich Answer should be: 1) SpeechRecognitionLanguage 2) AddTargetLanguage

ziggy1117

1) SpeechRecognitionLanguage 2) AddTargetLanguage in the exercise of AI-102 online learning

zellck

1. SpeechRecognitionLanguage 2. AddTargetLanguage https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/how-to-translate-speech?tabs=terminal&pivots=programming-language-csharp#change-the-source-language One common task of speech translation is specifying the input (or source) language. In your code, interact with the SpeechTranslationConfig instance by assigning it to the SpeechRecognitionLanguage property: https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/how-to-translate-speech?tabs=terminal&pivots=programming-language-csharp#add-a-translation-language Another common task of speech translation is to specify target translation languages. At least one is required, but multiples are supported. With every call to AddTargetLanguage, a new target translation language is specified. In other words, when speech is recognized from the source language, each target translation is available as part of the resulting translation operation.

rdemontis

thanks for explanation and the provided relevant documentation

WinzigWeich

https://microsoftlearning.github.io/AI-102-AIEngineer.de-de/Instructions/08-translate-speech.html C# Part translationConfig.SpeechRecognitionLanguage translationConfig.AddTargetLanguage

takaimomoGcup

SpeechRecognitionLanguage AddTargetLanguage

krzkrzkra

1. SpeechRecognitionLanguage 2. AddTargetLanguage

HaraTadahisa

1. speech_recognition_language 2. add_target_language

omankoman

1. SpeechRecognitionLanguage 2. AddTargetLanguage

sca88

1) SpeechRecognitionLanguage 2) AddTargetLanguage https://learn.microsoft.com/en-us/dotnet/api/microsoft.cognitiveservices.speech.speechtranslationconfig?view=azure-dotnet