Skip to content

Commit 6d0418b

Browse files
committed
consolidate semantic hybrid explanation in one place
1 parent aae35bf commit 6d0418b

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

articles/search/search-get-started-vector.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ Key takeaways about the [Create Index](/rest/api/searchservice/indexes/create) R
386386
387387
- The `fields` collection includes a required key field and text and vector fields (such as `Description` and `DescriptionVector`) for text and vector search. Colocating vector and nonvector fields in the same index enables hybrid queries. For instance, you can combine filters, text search with semantic ranking, and vectors into a single query operation.
388388
389-
- Vector fields must be one of the [EDM data types used for vectors](rest/api/searchservice/supported-data-types#edm-data-types-for-vector-fields), such as `type: Collection(Edm.Single)`. Vector fields also have `dimensions` and `vectorSearchProfile` properties.
389+
- Vector fields must be one of the [EDM data types used for vectors](/rest/api/searchservice/supported-data-types#edm-data-types-for-vector-fields), such as `type: Collection(Edm.Single)`. Vector fields also have `dimensions` and `vectorSearchProfile` properties.
390390
391391
- The `vectorSearch` section is an array of approximate nearest neighbor algorithm configurations and profiles. Supported algorithms include hierarchical navigable small world and exhaustive k-nearest neighbor. For more information, see [Relevance scoring in vector search](vector-search-ranking.md).
392392
@@ -691,6 +691,7 @@ The vector query string is semantically similar to the search string, but it inc
691691
]
692692
}
693693
```
694+
694695
Key takeaways about the [Documents - Search Post](/rest/api/searchservice/documents/search-post) REST API:
695696
696697
+ The `vectorQueries.vector` is the vector query string. It's a vector representation of *quintessential lodging near running trails, eateries, retail*, which is vectorized into 1,536 embeddings for this query.
@@ -1028,7 +1029,7 @@ In the vector portion query (*quintessential lodging near running trails, eateri
10281029
10291030
Here's the last query in the collection. This hybrid query adds L2 semantic ranking that applies machine reading comprehension over the L1-ranked results, promoting more relevant matches to the top.
10301031
1031-
1. Formulate the request.
1032+
1. Formulate the request.
10321033
10331034
```http
10341035
### Run a hybrid query with semantic reranking
@@ -1112,15 +1113,9 @@ Before semantic reranking, Sublime Palace, with its reference to *walking distan
11121113
}
11131114
```
11141115
1115-
Key takeaways about [Documents - Search Post](/rest/api/searchservice/documents/search-post) REST API:
1116-
1117-
- Vector search is specified through the `vectors.value` property. Keyword search is specified through the `search` property.
1118-
1119-
- A hybrid query integrates vector search and keyword search. In a hybrid query, semantic reranking is over the fused results. The semantic ranking models use the text inputs in the query, either the keyword search string or a `semanticQuery` string if you specify it.
1120-
1121-
- In this final query, there's no semantic `answer` because the system didn't produce one that was sufficiently strong.
1122-
1123-
- Semantically ranked results can include more detail, including semantic answers, captions, and highlights. Adding more parameters to the request produces the extra detail. For more information, see [Set up a semantic query](semantic-how-to-query-request.md?tabs=rest-query#set-up-the-query).
1116+
> [!TIP]
1117+
>Semantically ranked results can include more detail, including semantic answers, captions, and highlights. Adding more parameters to the request produces the extra detail. For more information, see [Set up a semantic query](semantic-how-to-query-request.md?tabs=rest-query#set-up-the-query).
1118+
>
11241119
11251120
## Clean up
11261121

0 commit comments

Comments
 (0)