Skip to content

Commit 0d3f327

Browse files
authored
Merge branch 'main' into patch-1
2 parents 65b6ee5 + 726611f commit 0d3f327

38 files changed

+80
-58
lines changed

articles/machine-learning/breadcrumb/toc.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
items:
12
- name: Azure
23
tocHref: /azure/
34
topicHref: /azure/index
@@ -73,3 +74,19 @@
7374
tocHref: /azure/devops/pipelines/languages/
7475
topicHref: /azure/devops/pipelines/index
7576

77+
- name: Azure
78+
tocHref: /security/
79+
topicHref: /azure/index
80+
items:
81+
- name: Machine Learning
82+
tocHref: /security/benchmark/
83+
topicHref: /azure/machine-learning/index
84+
items:
85+
- name: Service
86+
tocHref: /security/benchmark/azure/baselines/
87+
topicHref: /azure/machine-learning/index
88+
items:
89+
- name: Security benchmarks
90+
tocHref: /security/benchmark/azure/
91+
topicHref: /security/benchmark/azure/index
92+

articles/machine-learning/toc.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
items:
12
- name: Azure Machine Learning Documentation
23
href: index.yml
34
- name: Overview
45
items:
56
- name: What is Azure Machine Learning?
67
displayName: AML, services, overview, introduction
78
href: overview-what-is-azure-machine-learning.md
9+
- name: "AI Studio or AML: Which should I choose?"
10+
href: /ai/ai-studio-experiences-overview?toc=/azure/machine-learning/toc.json&bc=/azure/machine-learning/breadcrumb/toc.json
811
- name: Azure Machine Learning CLI and Python SDK
912
href: concept-v2.md
1013
# v1
@@ -1807,8 +1810,8 @@
18071810
href: https://stackoverflow.com/questions/tagged/azure-machine-learning-service
18081811
- name: Compare our ML products
18091812
href: /azure/architecture/data-guide/technology-choices/data-science-and-machine-learning?toc=/azure/machine-learning/toc.json&bc=/azure/machine-learning/breadcrumb/toc.json
1810-
displayName: accessibility, designer, visual interface, screen reader, keyboard shortcuts
18111813
- name: Designer accessibility features
1814+
displayName: accessibility, designer, visual interface, screen reader, keyboard shortcuts
18121815
href: designer-accessibility.md
18131816
# v1
18141817
- name: Python SDK (v1) release notes

articles/machine-learning/tutorial-deploy-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: tutorial
99
author: msakande
1010
ms.author: mopeakande
1111
ms.reviewer: sehan
12-
ms.date: 03/04/2024
12+
ms.date: 09/13/2024
1313
ms.custom: mlops, devx-track-python #add more custom tags
1414
#Customer intent: This tutorial is intended to show users what is needed for deployment and present a high-level overview of how Azure Machine Learning handles deployment. Deployment isn't typically done by a data scientist, so the tutorial won't use Azure CLI examples. We will link to existing articles that use Azure CLI as needed. The code in the tutorial will use SDK v2. The tutorial will continue where the "Create reusable pipelines" tutorial stops.
1515
---
@@ -96,7 +96,7 @@ If you already completed the earlier training tutorial, [Train a model](tutorial
9696

9797
If you didn't complete the training tutorial, you need to register the model. Registering your model before deployment is a recommended best practice.
9898

99-
The following code specifies the `path` (where to upload files from) inline. If you [cloned the tutorials folder](quickstart-create-resources.md#learn-from-sample-notebooks), then run the following code as-is. Otherwise, [download the files and metadata for the model to deploy](https://azuremlexampledata.blob.core.windows.net/datasets/credit_defaults_model.zip) and unzip the files. Update the path to the location of the unzipped files on your local computer.
99+
The following code specifies the `path` (where to upload files from) inline. If you [cloned the tutorials folder](quickstart-create-resources.md#learn-from-sample-notebooks), then run the following code as-is. Otherwise, download the files and metadata for the model from the [credit_defaults_model folder](https://github.com/Azure/azureml-examples/tree/main/tutorials/get-started-notebooks/deploy/credit_defaults_model). Save the files you downloaded into a local version of the *credit_defaults_model* folder on your computer and update the path in the following code to the location of the downloaded files.
100100

101101
The SDK automatically uploads the files and registers the model.
102102

articles/search/cognitive-search-common-errors-warnings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Indexing stops when the error count exceeds ['maxFailedItems'](cognitive-search-
2222
If you want indexers to ignore these errors (and skip over "failed documents"), consider updating the `maxFailedItems` and `maxFailedItemsPerBatch` as described [here](/rest/api/searchservice/indexers/create#indexingparameters).
2323

2424
> [!NOTE]
25-
> Each failed document along with its document key (when available) will show up as an error in the indexer execution status. You can utilize the [index api](/rest/api/searchservice/addupdate-or-delete-documents) to manually upload the documents at a later point if you have set the indexer to tolerate failures.
25+
> Each failed document along with its document key (when available) will show up as an error in the indexer execution status. You can utilize the [index api](/rest/api/searchservice/documents) to manually upload the documents at a later point if you have set the indexer to tolerate failures.
2626
2727
The error information in this article can help you resolve errors, allowing indexing to continue.
2828

@@ -385,7 +385,7 @@ Output field mappings that reference non-existent/null data will produce warning
385385
<a name="the-data-change-detection-policy-is-configured-to-use-key-column-x"></a>
386386

387387
## `Warning: The data change detection policy is configured to use key column 'X'`
388-
[Data change detection policies](/rest/api/searchservice/create-data-source#data-change-detection-policies) have specific requirements for the columns they use to detect change. One of these requirements is that this column is updated every time the source item is changed. Another requirement is that the new value for this column is greater than the previous value. Key columns don't fulfill this requirement because they don't change on every update. To work around this issue, select a different column for the change detection policy.
388+
[Data change detection policies](/rest/api/searchservice/data-sources/create#request-body) have specific requirements for the columns they use to detect change. One of these requirements is that this column is updated every time the source item is changed. Another requirement is that the new value for this column is greater than the previous value. Key columns don't fulfill this requirement because they don't change on every update. To work around this issue, select a different column for the change detection policy.
389389

390390
<a name="document-text-appears-to-be-utf-16-encoded-but-is-missing-a-byte-order-mark"></a>
391391

articles/search/cognitive-search-concept-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ An enrichment pipeline consists of [*indexers*](search-indexer-overview.md) that
116116

117117
Start with a subset of data in a [supported data source](search-indexer-overview.md#supported-data-sources). Indexer and skillset design is an iterative process. The work goes faster with a small representative data set.
118118

119-
1. Create a [data source](/rest/api/searchservice/create-data-source) that specifies a connection to your data.
119+
1. Create a [data source](/rest/api/searchservice/data-sources/create) that specifies a connection to your data.
120120

121121
1. [Create a skillset](cognitive-search-defining-skillset.md). Unless your project is small, you should [attach an Azure AI multi-service resource](cognitive-search-attach-cognitive-services.md). If you're [creating a knowledge store](knowledge-store-create-rest.md), define it within the skillset.
122122

articles/search/cognitive-search-tutorial-blob.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ AI enrichment is indexer-driven. This part of the walkthrough creates four objec
9797
9898
### Step 1: Create a data source
9999
100-
Call [Create Data Source](/rest/api/searchservice/create-data-source) to set the connection string to the Blob container containing the sample data files.
100+
Call [Create Data Source](/rest/api/searchservice/data-sources/create) to set the connection string to the Blob container containing the sample data files.
101101
102102
```http
103103
### Create a data source

articles/search/index-add-suggesters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ private static void CreateIndex(string indexName, SearchIndexClient indexClient)
152152
A suggester is used in a query. After a suggester is created, call one of the following APIs for a search-as-you-type experience:
153153

154154
+ [Suggestions REST API](/rest/api/searchservice/suggestions)
155-
+ [Autocomplete REST API](/rest/api/searchservice/autocomplete)
155+
+ [Autocomplete REST API](/rest/api/searchservice/documents/autocomplete-post)
156156
+ [SuggestAsync method](/dotnet/api/azure.search.documents.searchclient.suggestasync)
157157
+ [AutocompleteAsync method](/dotnet/api/azure.search.documents.searchclient.autocompleteasync)
158158

articles/search/index-similarity-and-scoring.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ In Azure AI Search, you can configure BM25 algorithm parameters, and tune search
137137

138138
## featuresMode parameter (preview)
139139

140-
[Search Documents](/rest/api/searchservice/preview-api/search-documents) requests have a new [featuresMode](/rest/api/searchservice/preview-api/search-documents#featuresmode) parameter that can provide more detail about relevance at the field level. Whereas the `@searchScore` is calculated for the document all-up (how relevant is this document in the context of this query), through featuresMode you can get information about individual fields, as expressed in a `@search.features` structure. The structure contains all fields used in the query (either specific fields through **searchFields** in a query, or all fields attributed as **searchable** in an index). For each field, you get the following values:
140+
[Search Documents](/rest/api/searchservice/documents/search-post) requests support a featuresMode parameter that provides more detail about a relevance score at the field level. Whereas the `@searchScore` is calculated for the document all-up (how relevant is this document in the context of this query), featuresMode reveals information about individual fields, as expressed in a `@search.features` structure. The structure contains all fields used in the query (either specific fields through **searchFields** in a query, or all fields attributed as **searchable** in an index).
141+
142+
For each field, `@search.features` give you the following values:
141143

142144
+ Number of unique tokens found in the field
143145
+ Similarity score, or a measure of how similar the content of the field is, relative to the query term
@@ -167,6 +169,8 @@ For a query that targets the "description" and "title" fields, a response that i
167169

168170
You can consume these data points in [custom scoring solutions](https://github.com/Azure-Samples/search-ranking-tutorial) or use the information to debug search relevance problems.
169171

172+
The featuresMode parameter isn't documented in the REST APIs, but you can use it on a preview REST API call to Search Documents.
173+
170174
## Number of ranked results in a full text query response
171175

172176
By default, if you aren't using pagination, the search engine returns the top 50 highest ranking matches for full text search. You can use the `top` parameter to return a smaller or larger number of items (up to 1000 in a single response). Full text search is subject to a maximum limit of 1,000 matches (see [API response limits](search-limits-quotas-capacity.md#api-response-limits)). Once 1,000 matches are found, the search engine no longer looks for more.

articles/search/knowledge-store-create-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ A valid API key establishes trust, on a per request basis, between the applicati
113113
114114
## Create a data source
115115
116-
[Create Data Source](/rest/api/searchservice/create-data-source) creates a data source connection on Azure AI Search.
116+
[Create Data Source](/rest/api/searchservice/data-sources/create) creates a data source connection on Azure AI Search.
117117
118118
1. Paste in the following example to create the data source.
119119

articles/search/monitor-azure-cognitive-search-data-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ The following operations can appear in a resource log.
194194
| Indexers.* | Applies to an indexer. Can be Create, Delete, Get, List, and Status. |
195195
| Indexes.* | Applies to a search index. Can be Create, Delete, Get, List. |
196196
| indexes.Prototype | This index is created by the Import Data wizard. |
197-
| Indexing.Index | This operation is a call to [Add, Update or Delete Documents](/rest/api/searchservice/addupdate-or-delete-documents). |
197+
| Indexing.Index | This operation is a call to [Index Documents](/rest/api/searchservice/documents). |
198198
| Metadata.GetMetadata | A request for search service system data. |
199199
| Query.Autocomplete | An autocomplete query against an index. See [Query types and composition](search-query-overview.md). |
200200
| Query.Lookup | A lookup query against an index. See [Query types and composition](search-query-overview.md). |

0 commit comments

Comments
 (0)