Skip to content

Commit 09dc507

Browse files
Merge pull request #278399 from HeidiSteen/heidist-june12
quickstart edits
2 parents 9cc3ffd + 290ec1e commit 09dc507

File tree

2 files changed

+15
-18
lines changed

2 files changed

+15
-18
lines changed

articles/search/search-get-started-portal-image-search.md

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Quickstart image search
33
titleSuffix: Azure AI Search
4-
description: Index and query images on Azure AI Search using the Azure portal. Run the Import and vectorize data wizard to vectorize images. Use Search Explorer to query images.
4+
description: Search for images on Azure AI Search index using the Azure portal. Run the Import and vectorize data wizard to vectorize images, then use Search Explorer to provide an image as your query input.
55

66
author: HeidiSteen
77
ms.author: heidist
@@ -100,13 +100,14 @@ Azure AI Vision provides text embeddings, so we'll use that resource for text ve
100100

101101
Use Azure AI Vision to generate a vector representation of the image files.
102102

103-
In this step, you can also apply AI to extract text from images. The wizard uses OCR from Azure AI services to recognize text in image files. Two more outputs appear in the index when OCR is added to the workflow:
103+
In this step, you can also apply AI to extract text from images. The wizard uses OCR from Azure AI services to recognize text in image files.
104104

105-
+ First, the "chunk" field is populated with the OCR-generated string.
105+
Two more outputs appear in the index when OCR is added to the workflow:
106106

107-
+ Second, the "text_vector" field is populated with an embedding that represents the string.
107+
+ First, the "chunk" field is populated with an OCR-generated string of any text found in the image.
108+
+ Second, the "text_vector" field is populated with an embedding that represents the "chunk" string.
108109

109-
The inclusion of plain text in an index is useful if you want to use relevance features that operate on strings, such as semantic ranking and scoring profiles.
110+
The inclusion of plain text in the "chunk" field is useful if you want to use relevance features that operate on strings, such as [semantic ranking](semantic-search-overview.md) and [scoring profiles](index-add-scoring-profiles.md).
110111

111112
1. On the **Vectorize your images** page, select the **Vectorize images** checkbox, and then select **AI Vision vectorization**.
112113

@@ -136,27 +137,23 @@ The inclusion of plain text in an index is useful if you want to use relevance f
136137

137138
1. Select **Create** to run the wizard. This step creates the following objects:
138139

139-
+ Data source connection to blob storage.
140+
+ An indexer that drives the indexing pipeline.
140141

141-
+ Index with vector fields, text fields, vectorizers, vector profiles, vector algorithms. You can't modify the default index during the wizard workflow. Indexes conform to the [2024-05-01-preview REST API](/rest/api/searchservice/indexes/create-or-update?view=rest-searchservice-2024-05-01-preview&preserve-view=true).
142+
+ A data source connection to blob storage.
142143

143-
+ Skillset with the following five skills:
144+
+ An index with vector fields, text fields, vectorizers, vector profiles, vector algorithms. You can't modify the default index during the wizard workflow. Indexes conform to the [2024-05-01-preview REST API](/rest/api/searchservice/indexes/create-or-update?view=rest-searchservice-2024-05-01-preview&preserve-view=true).
144145

145-
+ [OCR skill](cognitive-search-skill-ocr.md) recognizes text in image files.
146+
+ A skillset with the following five skills:
146147

148+
+ [OCR skill](cognitive-search-skill-ocr.md) recognizes text in image files.
147149
+ [Text Merger skill](cognitive-search-skill-textmerger.md) unifies the various outputs of OCR processing.
148-
149150
+ [Text Split skill](cognitive-search-skill-textsplit.md) adds data chunking. This skill is built into the wizard workflow.
150-
151151
+ [Azure AI Vision multimodal](cognitive-search-skill-vision-vectorize.md) is used to vectorize text generated from OCR.
152-
153152
+ [Azure AI Vision multimodal](cognitive-search-skill-vision-vectorize.md) is called again to vectorize images.
154153

155-
+ Indexer with field mappings and output field mappings.
156-
157154
## Check results
158155

159-
Search explorer accepts text, vectors, and images as query inputs. You can drag or select an image into the search area, and it will be vectorized for search. Image vectorization assumes that your index has a vectorizer definition, which **Import and vectorize data** creates from your inputs.
156+
Search Explorer accepts text, vectors, and images as query inputs. You can drag or select an image into the search area. Search Explorer vectorizes your image and sends the vector as a query input to the search engine. Image vectorization assumes that your index has a vectorizer definition, which **Import and vectorize data** creates based on your embedding model inputs.
160157

161158
1. In the Azure portal, under **Search Management** and **Indexes**, select the index your created. An embedded Search Explorer is the first tab.
162159

@@ -170,11 +167,11 @@ Search explorer accepts text, vectors, and images as query inputs. You can drag
170167

171168
:::image type="content" source="media/search-get-started-portal-images/image-search.png" alt-text="Screenshot of search results.":::
172169

173-
The top match should be the image you searched for. Because a vector search matches on similar vectors, the search engine returns any document that is sufficiently similar to the query input. You can switch to JSON view for more advanced queries that include relevance tuning.
170+
The top match should be the image you searched for. Because a [vector search](vector-search-overview.md) matches on similar vectors, the search engine returns any document that is sufficiently similar to the query input, up to *k*-number of results. You can switch to JSON view for more advanced queries that include relevance tuning.
174171

175172
1. Try other query options to compare search outcomes:
176173

177-
+ Hide vectors for more readable results.
174+
+ Hide vectors for more readable results (recommended).
178175
+ Select a vector field to query over. The default is text vectors, but you can specify the image vector to exclude text vectors from query execution.
179176

180177
## Clean up

articles/search/whats-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ms.custom:
2323

2424
| Item                         | Type | Description |
2525
|-----------------------------|------|--------------|
26-
| [Image search in the Azure portal](search-get-started-portal-image-search.md) | Feature | Search explorer now supports image search. In a vector index that has vectorized image content, you can drop images into Search Explorer to query for matching image content.
26+
| [Image search in the Azure portal](search-get-started-portal-image-search.md) | Feature | Search explorer now supports image search. In a vector index that has vectorized image content, you can drop images into Search Explorer to query for a match.
2727

2828
## May 2024
2929

0 commit comments

Comments
 (0)