You have an Azure Cognitive Search solution and an enrichment pipeline that performs Sentiment Analysis on social media posts. You need to define a knowledge st...


Microsoft AI-102 Exam

Questions Number: 173 out of 241 Questions
71.78%

Question 173
You have an Azure Cognitive Search solution and an enrichment pipeline that performs Sentiment Analysis on social media posts.
You need to define a knowledge store that will include the social media posts and the Sentiment Analysis results.
Which two fields should you include in the definition? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.



Knowledge store definition -
A knowledge store is defined inside a skillset definition and it has two components:
A connection string to Azure Storage
Projections that determine whether the knowledge store consists of tables, objects or files.
The projections element is an array. You can create multiple sets of table-object-file combinations within one knowledge store.
"knowledgeStore": {
"storageConnectionString":"<YOUR-AZURE-STORAGE-ACCOUNT-CONNECTION-STRING>",
"projections":[
{
"tables":[ ],
"objects":[ ],
"files":[ ]
}
}
The type of projection you specify in this structure determines the type of storage used by knowledge store.
Objects - project JSON document into Blob storage. The physical representation of an object is a hierarchical JSON structure that represents an enriched document.
Tables - project enriched content into Table Storage. Define a table projection when you need tabular reporting structures for inputs to analytical tools or export as data frames to other data stores. You can specify multiple tables within the same projection group to get a subset or cross section of enriched documents. Within the same projection group, table relationships are preserved so that you can work with all of them.
Projected content is not aggregated or normalized. The following screenshot shows a table, sorted by key phrase, with the parent document indicated in the adjacent column. In contrast with data ingestion during indexing, there is no linguistic analysis or aggregation of content. Plural forms and differences in casing are considered unique instances.
AI-102_173E.jpg related to the Microsoft AI-102 Exam
Incorrect:
Not C: files - project image files into Blob storage. A file is an image extracted from a document, transferred intact to Blob storage. Although it is named "files", it shows up in Blob Storage, not file storage.





Previous Questions Next Questions



Premium Version