Skip to content

Commit 21e0570

Browse files
committed
Fixing titles and headings
1 parent 518291b commit 21e0570

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

articles/search/index-add-scoring-profiles.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,18 @@ ms.topic: how-to
1111
ms.date: 10/14/2022
1212
---
1313

14-
# Add scoring profiles to boost search scores in Azure Cognitive Search
14+
# Add scoring profiles to boost search scores
1515

16-
In this article, you can learn how to create a scoring profile for boosting search scores based on criteria that you provide. Criteria can be weighting a field, for example if a match found in a "tags" field is more relevant than a match found in "descriptions". Criteria can also be a function, such as the `distance` function that favors results that are within a specified distance of the current location.
16+
In this article, you'll learn how to define a scoring profile for boosting search scores based on criteria.
17+
18+
Criteria can be a weighted field, such as when a match found in a "tags" field is more relevant than a match found in "descriptions". Criteria can also be a function, such as the `distance` function that favors results that are within a specified distance of the current location.
1719

1820
Scoring profiles are defined in a search index and invoked on query requests. You can create multiple profiles and then modify query logic to choose which one is used.
1921

2022
> [!NOTE]
21-
> Unfamiliar with relevance concepts? The following video segment fast-forwards to how scoring profiles work in Azure Cognitive Search, but the video also covers basic concepts. You might also want to review [Relevance and scoring in Azure Cognitive Search](index-similarity-and-scoring.md) for more background.
23+
> Unfamiliar with relevance concepts? The following video segment fast-forwards to how scoring profiles work in Azure Cognitive Search. You can also visit [Relevance and scoring in Azure Cognitive Search](index-similarity-and-scoring.md) for more background.
2224
>
23-
> [!VIDEO https://www.youtube.com/embed/Y_X6USgvB1g?version=3&start=463&end=970]
25+
> > [!VIDEO https://www.youtube.com/embed/Y_X6USgvB1g?version=3&start=463&end=970]
2426
>
2527
2628
## Scoring profile definition
@@ -54,7 +56,7 @@ The following definition shows a simple profile named 'geo'. This example boosts
5456
]
5557
```
5658

57-
To use this scoring profile, your query is formulated to specify scoringProfile parameter in the request.
59+
Parameters are specified on invocation. To use this scoring profile, your query is formulated to specify scoringProfile parameter in the request.
5860

5961
```http
6062
POST /indexes/hotels/docs&api-version=2020-06-30

articles/search/index-ranking-similarity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Configure scoring algorithm
2+
title: Configure relevance scoring
33
titleSuffix: Azure Cognitive Search
44
description: Enable Okapi BM25 ranking to upgrade the search ranking and relevance behavior on older Azure Search services.
55

@@ -10,7 +10,7 @@ ms.topic: how-to
1010
ms.date: 10/14/2022
1111
---
1212

13-
# Configure the similarity scoring algorithm in Azure Cognitive Search
13+
# Configure relevance scoring
1414

1515
In this article, you'll learn how to configure the similarity scoring algorithm used by Azure Cognitive Search. The BM25 scoring model has defaults for weighting term frequency and document length. You can customize these properties if the defaults aren't suited to your content.
1616

0 commit comments

Comments
 (0)