AI-102 Implement natural language processing solutions • Set 9
AI-102 Implement natural language processing solutions Practice Test 9 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. You are designing a Data Factory pipeline to perform sentiment analysis on a text column. The pipeline fails with a 'BadRequest' error. What is the most likely issue?
{
"pipeline": {
"name": "text-analytics-pipeline",
"activities": [
{
"name": "AnalyzeSentiment",
"type": "CognitiveService",
"inputs": [{"name": "textColumn", "value": "@activity('GetData').output.text"}],
"outputs": [{"name": "sentimentResult", "value": ""}],
"linkedServiceName": "AzureAILanguageService"
}
]
}
}