You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/search/cognitive-search-concept-intro.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,14 +37,13 @@ AI enrichment is available in regions where Azure Cognitive Services is also ava
37
37
38
38
+ Australia Southeast
39
39
+ China North 2
40
-
+ Norway East
41
40
+ Germany West Central
42
41
43
42
If your search service is located in one of these regions, you will not be able to create and use skillsets, but all other search service functionality is available and fully supported.
44
43
45
44
## When to use AI enrichment
46
45
47
-
You should consider enrichment if your raw content is unstructured text, image content, or content that needs language detection and translation. Applying AI through the built-in cognitive skills can unlock this content, increasing its value and utility in your search and data science apps.
46
+
You should consider enrichment if your raw content is unstructured text, image content, or content that needs language detection and translation. Applying AI through the built-in cognitive skills can unlock this content for full text search and data science apps.
48
47
49
48
Additionally, you might consider adding a custom skill if you have open-source, third-party, or first-party code that you'd like to integrate into the pipeline. Classification models that identify salient characteristics of various document types fall into this category, but any package that adds value to your content could be used.
Copy file name to clipboardExpand all lines: articles/search/search-blob-storage-integration.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,19 +8,21 @@ author: HeidiSteen
8
8
ms.author: heidist
9
9
ms.service: cognitive-search
10
10
ms.topic: conceptual
11
-
ms.date: 05/14/2021
11
+
ms.date: 01/14/2022
12
12
---
13
13
14
14
# Search over Azure Blob Storage content
15
15
16
-
Searching across the variety of content types stored in Azure Blob Storage can be a difficult problem to solve. In this article, review the basic workflow for extracting content and metadata from blobs and sending it to a search index in Azure Cognitive Search. The resulting index can be queried using full text search.
16
+
Searching across the variety of content types stored in Azure Blob Storage can be a difficult problem to solve, but [Azure Cognitive Search](search-what-is-azure-search.md) provides deep integration at the content layer, extracting and inferring textual information, which can then be queried in a search index.
17
+
18
+
In this article, review the basic workflow for extracting content and metadata from blobs and sending it to a [search index](search-what-is-an-index.md) in Azure Cognitive Search. The resulting index can be queried using full text search. Optionally, you can send processed blob content to a [knowledge store](knowledge-store-concept-intro.md) for non-search scenarios.
17
19
18
20
> [!NOTE]
19
-
> Already familiar with the workflow and composition? [How to configure a blob indexer](search-howto-indexing-azure-blob-storage.md) is your next step.
21
+
> Already familiar with the workflow and composition? [Configure a blob indexer](search-howto-indexing-azure-blob-storage.md) is your next step.
20
22
21
23
## What it means to add full text search to blob data
22
24
23
-
Azure Cognitive Search is a search service that supports indexing and query workloads over user-defined indexes that contain your remote searchable content hosted in the cloud. Co-locating your searchable content with the query engine is necessary for performance, returning results at a speed users have come to expect from search queries.
25
+
Azure Cognitive Search is a standalone search service that supports indexing and query workloads over user-defined indexes that contain your remote searchable content hosted in the cloud. Co-locating your searchable content with the query engine is necessary for performance, returning results at a speed users have come to expect from search queries.
24
26
25
27
Cognitive Search integrates with Azure Blob Storage at the indexing layer, importing your blob content as search documents that are indexed into *inverted indexes* and other query structures that support free-form text queries and filter expressions. Because your blob content is indexed into a search index, you can use the full range of query features in Azure Cognitive Search to find information in your blob content.
Copy file name to clipboardExpand all lines: articles/search/semantic-search-overview.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,31 +8,31 @@ author: HeidiSteen
8
8
ms.author: heidist
9
9
ms.service: cognitive-search
10
10
ms.topic: conceptual
11
-
ms.date: 12/17/2021
11
+
ms.date: 01/13/2022
12
12
ms.custom: references_regions
13
13
---
14
14
# Semantic search in Azure Cognitive Search
15
15
16
16
> [!IMPORTANT]
17
-
> Semantic search is in public preview under [supplemental terms of use](https://azure.microsoft.com/support/legal/preview-supplemental-terms/). It's available through the Azure portal, preview REST API, and beta SDKs. These features are billable. For more information about, see [Availability and pricing](semantic-search-overview.md#availability-and-pricing).
17
+
> Semantic search is in public preview under [supplemental terms of use](https://azure.microsoft.com/support/legal/preview-supplemental-terms/). It's available through the Azure portal, preview REST API, and beta SDKs. These features are billable (see [Availability and pricing](semantic-search-overview.md#availability-and-pricing)).
18
18
19
-
Semantic search is a collection of query-related capabilities that bring semantic relevance and language understanding to search results. This article is a high-level introduction to semantic search all-up, with descriptions of each feature and how they work collectively. The embedded video describes the technology, and the section at the end covers availability and pricing.
19
+
Semantic search is a collection of query-related capabilities that bring semantic relevance and language understanding to search results. This article is a high-level introduction to semantic search. The embedded video describes the technology, and the section at the end covers availability and pricing.
20
20
21
21
Semantic search is a premium feature. We recommend this article for background, but if you'd rather get started, follow these steps:
22
22
23
23
> [!div class="checklist"]
24
24
> *[Check regional and service tier requirements](#availability-and-pricing).
25
25
> *[Enable semantic search](#enable-semantic-search) on your search service.
26
26
> * Create or modify queries to [return semantic captions and highlights](semantic-how-to-query-request.md).
27
-
> * Add a few more query properties to also return [semantic answers](semantic-answers.md).
27
+
> * Add a few more query properties to also [return semantic answers](semantic-answers.md).
28
28
29
29
## What is semantic search?
30
30
31
31
Semantic search is a collection of features that improve the quality of search results. When enabled on your search service, it extends the query execution pipeline in two ways. First, it adds secondary ranking over an initial result set, promoting the most semantically relevant results to the top of the list. Second, it extracts and returns captions and answers in the response, which you can render on a search page to improve the user's search experience.
32
32
33
33
| Feature | Description |
34
34
|---------|-------------|
35
-
|[Semantic re-ranking](semantic-ranking.md)| Uses the context or semantic meaning to compute a new relevance score over existing results. |
35
+
|[Semantic re-ranking](semantic-ranking.md)| Uses the context or semantic meaning of a query to compute a new relevance score over existing results. |
36
36
|[Semantic captions and highlights](semantic-how-to-query-request.md)| Extracts sentences and phrases from a document that best summarize the content, with highlights over key passages for easy scanning. Captions that summarize a result are useful when individual content fields are too dense for the results page. Highlighted text elevates the most relevant terms and phrases so that users can quickly determine why a match was considered relevant. |
37
37
|[Semantic answers](semantic-answers.md)| An optional and additional substructure returned from a semantic query. It provides a direct answer to a query that looks like a question. It requires that a document have text with the characteristics of an answer. |
0 commit comments