Skip to content

Commit e23733f

Browse files
authored
Merge pull request #2427 from MicrosoftDocs/main
1/22/2025 AM Publish
2 parents 26493a4 + e0cf83d commit e23733f

File tree

9 files changed

+192
-195
lines changed

9 files changed

+192
-195
lines changed

articles/ai-services/computer-vision/tutorials/liveness.md

Lines changed: 172 additions & 169 deletions
Large diffs are not rendered by default.

articles/ai-services/openai/includes/fine-tuning-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ To deploy between the same subscription, but different regions you would just ha
505505

506506
### Cross tenant deployment
507507

508-
The accounts used to generate access tokens with `az account get-access-token --tenant` should have Cognitive Services OpenAI Contributor permissions to the associated Azure OpenAI resources.
508+
The account used to generate access tokens with `az account get-access-token --tenant` should have Cognitive Services OpenAI Contributor permissions to both the source and destination Azure OpenAI resources. You will need to generate two different tokens, one for the source tenant and one for the destination tenant.
509509

510510
```python
511511
import requests

articles/ai-services/openai/includes/fine-tuning-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ To deploy between the same subscription, but different regions, you would just h
324324

325325
### Cross tenant deployment
326326

327-
The accounts used to generate access tokens with `az account get-access-token --tenant` should have Cognitive Services OpenAI Contributor permissions to the associated Azure OpenAI resources.
327+
The account used to generate access tokens with `az account get-access-token --tenant` should have Cognitive Services OpenAI Contributor permissions to both the source and destination Azure OpenAI resources. You will need to generate two different tokens, one for the source tenant and one for the destination tenant.
328328

329329

330330
```bash

articles/ai-services/speech-service/speech-services-quotas-and-limits.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ The limits in this table apply per Speech resource when you create a custom spee
6969
| Quota | Free (F0) | Standard (S0) |
7070
|-----|-----|-----|
7171
| REST API limit | 100 requests per 10 seconds (600 requests per minute) | 100 requests per 10 seconds (600 requests per minute) |
72+
| Max number of custom model deployments per Speech resource | 1 | 50 |
7273
| Max number of speech datasets | 2 | 500 |
7374
| Max acoustic dataset file size for data import | 2 GB | 2 GB |
7475
| Max language dataset file size for data import | 200 MB | 1.5 GB |

articles/ai-studio/how-to/flow-develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ In this article, you learn how to create and develop your first prompt flow in A
3434
- If you don't have an Azure AI Foundry project already, first [create a project](create-projects.md).
3535
- Prompt flow requires a compute session. If you don't have a runtime, you can [create one in Azure AI Foundry portal](./create-manage-compute-session.md).
3636
- You need a deployed model.
37-
- In your project, configure access control for the blog storage account. Assign the **Storage Blob Data Contributor** role to your user account.
37+
- In your project, configure access control for the blob storage account. Assign the **Storage Blob Data Contributor** role to your user account.
3838
- In the bottom left of the Azure AI Foundry portal, select **Management center**.
3939
- In **Connected resources** for your project, select the link that corresponds to the **Azure Blob Storage** type.
4040
- Select **View in Azure Portal**

articles/machine-learning/feature-retrieval-concepts.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@ ms.service: azure-machine-learning
66
ms.subservice: mldata
77
ms.topic: how-to
88
author: fbsolo-ms1
9-
ms.author: franksolomon
10-
ms.reviewer: yogipandey
11-
ms.date: 12/06/2023
9+
ms.author: franksolomon
10+
ms.reviewer: franksolomon
11+
ms.date: 01/22/2025
1212
ms.custom: template-concept
1313
---
1414

1515
# Feature retrieval specification and usage in training and inference
1616

1717
This article describes the feature retrieval specification, and how to use a feature retrieval specification in training and inference.
1818

19-
A feature retrieval specification is an artifact that defines a list of features to use in model input. The features in a feature retrieval specification:
19+
A feature retrieval specification is an artifact that defines a list of features to use in model input. In a feature retrieval specification, the features:
2020

2121
- must exist in a feature set registered in a feature store
2222
- can exist in multiple feature sets and multiple feature stores
2323

24-
The feature retrieval specification is used at the time of model training and the time of model inference. These flow steps involve the specification:
24+
The feature retrieval specification is used at the time of model training and at the time of model inference. These flow steps involve the specification:
2525

2626
1. Select features, and generate a feature retrieval specification
2727
1. Use that specification and observation data to generate training data resource with a [point-in-time join](./offline-retrieval-point-in-time-join-concepts.md)
@@ -69,7 +69,7 @@ featurestore1.generate_feature_retrieval_spec("./feature_retrieval_spec_folder",
6969

7070
```
7171

72-
Find detailed examples in the **2.Experiment-train-models-using-features.ipynb** notebook, hosted at [this resource](https://github.com/Azure/azureml-examples/tree/main/sdk/python/featurestore_sample/notebooks/sdk_only).
72+
The **2.Experiment-train-models-using-features.ipynb** notebook, hosted at [this resource](https://github.com/Azure/azureml-examples/tree/main/sdk/python/featurestore_sample/notebooks/sdk_only), has detailed examples.
7373

7474
The function generates a YAML file artifact, which has a structure similar to the structure in this example:
7575
```yaml
@@ -122,7 +122,7 @@ training_df = get_offline_features(
122122
123123
```
124124

125-
The second option sets the feature retrieval specification as an input to the built-in feature retrieval (pipeline) component. It combines that feature retrieval specification with other inputs - for example, the observation data set. It then submits an Azure Machine Learning pipeline (Spark) job, to generate the training data set as output. This option is recommended to make the training pipeline ready for production, for repeated runs. For more details about the built-in feature retrieval (pipeline) component, visit the [feature retrieval component](#built-in-feature-retrieval-component) resource.
125+
The second option sets the feature retrieval specification as an input to the built-in feature retrieval (pipeline) component. It combines that feature retrieval specification with other inputs - for example, the observation data set. It then submits an Azure Machine Learning pipeline (Spark) job, to generate the training data set as output. This option is recommended as a way to make the training pipeline ready for production, for repeated runs. Visit the [feature retrieval component](#built-in-feature-retrieval-component) resource for more information about the built-in feature retrieval (pipeline) components.
126126

127127
## Package a feature retrieval specification with model artifact
128128

articles/machine-learning/v1/how-to-enable-data-collection.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ Once collection is enabled, the data you collect helps you:
3939
> The MDC feature is incompatible with any other image than Ubuntu 18.04, which is no available after the Ubuntu 18.04 image is deprecated.
4040
>
4141
> mMore information you can refer to:
42-
> * [openmpi3.1.2-ubuntu18.04 release-notes](https://github.com/Azure/AzureML-Containers/blob/master/base/cpu/openmpi3.1.2-ubuntu18.04/release-notes.md)
4342
> * [data science virtual machine release notes](../data-science-virtual-machine/release-notes.md#september-20-2022)
4443
4544
>[!NOTE]

articles/search/search-howto-index-mysql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ ms.custom:
1515
ms.date: 12/10/2024
1616
---
1717

18-
# Index data from Azure Database for MySQL flexible server
18+
# Index data from Azure Database for MySQL Flexible Server
1919

2020
> [!IMPORTANT]
2121
> MySQL support is currently in public preview under [Supplemental Terms of Use](https://azure.microsoft.com/support/legal/preview-supplemental-terms/). You can use 2020-06-30-preview or later to index your content. We recommend the latest preview API. There is currently no portal support.
2222
2323
In this article, learn how to configure an [**indexer**](search-indexer-overview.md) that imports content from Azure Database for MySQL and makes it searchable in Azure AI Search. Inputs to the indexer are your row, in a single table or view. Output is a search index with searchable content in individual fields.
2424

25-
This article supplements [**Create an indexer**](search-howto-create-indexers.md) with information that's specific to indexing from Azure Database for MySQL flexible server. It uses the REST APIs to demonstrate a three-part workflow common to all indexers: create a data source, create an index, create an indexer. Data extraction occurs when you submit the Create Indexer request.
25+
This article supplements [**Create an indexer**](search-howto-create-indexers.md) with information that's specific to indexing from Azure Database for MySQL Flexible Server. It uses the REST APIs to demonstrate a three-part workflow common to all indexers: create a data source, create an index, create an indexer. Data extraction occurs when you submit the Create Indexer request.
2626

2727
When configured to include a high water mark and soft deletion, the indexer takes all changes, uploads, and deletes for your MySQL database. It reflects these changes in your search index. Data extraction occurs when you submit the Create Indexer request.
2828

2929
## Prerequisites
3030

3131
- [Register for the preview](https://aka.ms/azure-cognitive-search/indexer-preview) to provide scenario feedback. You can access the feature automatically after form submission.
3232

33-
- [Azure Database for MySQL flexible server](/azure/mysql/flexible-server/overview) and sample data. Data must reside in a table or view. A primary key is required. If you're using a view, it must have a [high water mark column](#DataChangeDetectionPolicy).
33+
- [Azure Database for MySQL Flexible Server](/azure/mysql/flexible-server/overview) and sample data. Data must reside in a table or view. A primary key is required. If you're using a view, it must have a [high water mark column](#DataChangeDetectionPolicy).
3434

3535
- Read permissions. A *full access* connection string includes a key that grants access to the content, but if you're using Azure roles, make sure the [search service managed identity](search-howto-managed-identities-data-sources.md) has **Reader** permissions on MySQL.
3636

articles/search/tutorial-csharp-search-query-integration.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: diberry
77
ms.author: diberry
88
ms.service: azure-ai-search
99
ms.topic: tutorial
10-
ms.date: 01/17/2025
10+
ms.date: 01/21/2025
1111
ms.custom:
1212
- devx-track-csharp
1313
- devx-track-dotnet
@@ -34,9 +34,11 @@ The function app authenticates through the SDK to the cloud-based Azure AI Searc
3434

3535
## Azure Function: Search the catalog
3636

37-
The [Search API](https://github.com/Azure-Samples/azure-search-static-web-app/blob/main/api/Search.cs) takes a search term and searches across the documents in the search index, returning a list of matches.
37+
The [Search API](https://github.com/Azure-Samples/azure-search-static-web-app/blob/main/api/Search.cs) takes a search term and searches across the documents in the search index, returning a list of matches. Through the Suggest API, partial strings are sent to the search engine as the user types, suggesting search terms such as book titles and authors across the documents in the search index, and returning a small list of matches.
3838

39-
The Azure function pulls in the search configuration information, and fulfills the query.
39+
The Azure function pulls in the search configuration information, and fulfills the query.
40+
41+
The search suggester, `sg`, is defined in the [schema file](https://github.com/Azure-Samples/azure-search-static-web-app/blob/main/bulk-insert/BookSearchIndex.cs) used during bulk upload.
4042

4143
:::code language="csharp" source="~/azure-search-static-web-app/api/Search.cs" :::
4244

@@ -46,17 +48,9 @@ Call the Azure Function in the React client with the following code.
4648

4749
:::code language="csharp" source="~/azure-search-static-web-app/client/src/pages/Search/Search.js" :::
4850

49-
## Azure Function: Suggestions from the catalog
50-
51-
The [Suggest API](https://github.com/Azure-Samples/azure-search-static-web-app/blob/main/api/Suggest.cs) takes a search term while a user is typing and suggests search terms such as book titles and authors across the documents in the search index, returning a small list of matches.
52-
53-
The search suggester, `sg`, is defined in the [schema file](https://github.com/Azure-Samples/azure-search-static-web-app/blob/main/bulk-insert/BookSearchIndex.cs) used during bulk upload.
54-
55-
:::code language="csharp" source="~/azure-search-static-web-app/api/Suggest.cs" :::
56-
5751
## Client: Suggestions from the catalog
5852

59-
The Suggest function API is called in the React app at `\client\src\components\SearchBar\SearchBar.js` as part of component initialization:
53+
The Suggest function API is called in the React app at `\client\src\components\SearchBar\SearchBar.js` as part of the [Material UI's Autocomplete component](https://mui.com/material-ui/react-autocomplete/). This component uses the input text to search for authors and books that match the input text then displays those possible matches at selectable items in the drop-down list.
6054

6155
:::code language="csharp" source="~/azure-search-static-web-app/client/src/components/SearchBar/SearchBar.js" :::
6256

0 commit comments

Comments
 (0)