AI-102 Exam QuestionsBrowse all questions from this exam

AI-102 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.

Show Answer
Correct Answer:

Discussion

9 comments
Sign in to comment
MaliSanFuu
May 16, 2023

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

ziggy1117
Jun 6, 2023

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

zellck
Jul 1, 2023

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
Nov 5, 2023

thanks for explanation and the provided relevant documentation

WinzigWeich
May 11, 2023

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

takaimomoGcup
May 22, 2024

SpeechRecognitionLanguage AddTargetLanguage

sca88
Nov 27, 2023

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

omankoman
May 29, 2024

1. SpeechRecognitionLanguage 2. AddTargetLanguage

HaraTadahisa
Jun 21, 2024

1. speech_recognition_language 2. add_target_language

krzkrzkra
Jul 14, 2024

1. SpeechRecognitionLanguage 2. AddTargetLanguage