Skip to content

Commit 0d1e93a

Browse files
committed
Robert's feedback
1 parent a2e9b8d commit 0d1e93a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/search/hybrid-search-ranking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The following chart identifies the scoring property returned on each match, algo
5555
|---------------|-----------|-------------------|-------|
5656
| full-text search | `@search.score` | BM25 algorithm | No upper limit. |
5757
| vector search | `@search.score` | HNSW algorithm, using the similarity metric specified in the HNSW configuration. | 0.333 - 1.00 (Cosine), 0 to 1 for Euclidean and DotProduct. |
58-
| hybrid search | `@search.score` | RRF algorithm | Upper limit is bounded by the number of queries being fused, with each query contributing a maximum of approximately 1 to the RRF score. Merging 11 queries produces higher scores than if only two search results are merged.|
58+
| hybrid search | `@search.score` | RRF algorithm | Upper limit is bounded by the number of queries being fused, with each query contributing a maximum of approximately 1 to the RRF score. Merging 3 queries produces higher scores than if only two search results are merged.|
5959
| semantic ranking | `@search.rerankerScore` | Semantic ranking | 1.00 - 4.00 |
6060

6161
Semantic ranking doesn't participate in RRF. Its score (`@search.rerankerScore`) is always reported separately in the query response. Semantic ranking can rerank full text and hybrid search results, assuming those results include fields having semantically rich content.

articles/search/retrieval-augmented-generation-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ A high-level summary of the pattern looks like this:
5252
+ Send the top ranked search results to the LLM.
5353
+ Use the natural language understanding and reasoning capabilities of the LLM to generate a response to the initial prompt.
5454

55-
Cognitive Search provides inputs and prompts to the LLM but doesn't train the model. In RAG architecture, there's no extra training. The LLM is pretrained using public data, but it generates responses that are augmented by information from the retriever.
55+
Cognitive search provides inputs to the LLM prompt, but doesn't train the model. In RAG architecture, there's no extra training. The LLM is pretrained using public data, but it generates responses that are augmented by information from the retriever.
5656

5757
RAG patterns that include Cognitive Search have the elements indicated in the following illustration.
5858

0 commit comments

Comments
 (0)