Skip to content

Commit 817e912

Browse files
committed
edit pass: develop-and-operationalize-features
1 parent 2479836 commit 817e912

4 files changed

+14
-14
lines changed

articles/machine-learning/tutorial-enable-materialization-backfill-data.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,24 @@ In this tutorial, you learn how to:
3939
Before you proceed with this tutorial, be sure to cover these prerequisites:
4040

4141
* Completion of [Tutorial 1: Develop and register a feature set with managed feature store](tutorial-get-started-with-feature-store.md), to create the required feature store, account entity, and `transactions` feature set.
42-
* An Azure resource group, where you (or the service principal that you use) have user access administrator and contributor roles.
43-
* On your user account, the owner or contributor role for the resource group that holds the created feature store.
42+
* An Azure resource group, where you (or the service principal that you use) have User Access Administrator and Contributor roles.
43+
* On your user account, the Owner or Contributor role for the resource group that holds the created feature store.
4444

4545
## Set up
4646

4747
This list summarizes the required setup steps:
4848

4949
1. In your project workspace, create an Azure Machine Learning compute resource to run the training pipeline.
50-
1. In your feature store workspace, create an offline materialization store. Create an Azure storage account and a container inside it, and attach it to the feature store. Optionally, you can use an existing storage container.
50+
1. In your feature store workspace, create an offline materialization store. Create an Azure Data Lake Storage Gen2 account and a container inside it, and attach it to the feature store. Optionally, you can use an existing storage container.
5151
1. Create and assign a UAI to the feature store. Optionally, you can use an existing managed identity. The system-managed materialization jobs - in other words, the recurrent jobs - use the managed identity. The third tutorial in the series relies on it.
52-
1. Grant required role-based authentication control (RBAC) permissions to the UAI.
52+
1. Grant required role-based access control (RBAC) permissions to the UAI.
5353
1. Grant required RBAC permissions to your Azure Active Directory (Azure AD) identity. Users, including you, need read access to the sources and the materialization store.
5454

5555
### Configure the Azure Machine Learning Spark notebook
5656

5757
You can create a new notebook and execute the instructions in this tutorial step by step. You can also open the existing notebook named *2. Enable materialization and backfill feature data.ipynb* from the *featurestore_sample/notebooks* directory, and then run it. You can choose *sdk_only* or *sdk_and_cli*. Keep this tutorial open and refer to it for documentation links and more explanation.
5858

59-
1. On the top menu, in the **Compute** dropdown list, select **Azure Machine Learning Spark compute**.
59+
1. On the top menu, in the **Compute** dropdown list, select **Serverless Spark Compute** under **Azure Machine Learning Serverless Spark**.
6060

6161
1. Configure the session:
6262

@@ -193,9 +193,9 @@ This UAI is assigned to the feature store shortly. It requires these permissions
193193

194194
| Scope | Role |
195195
|------------------------------------------------|--------------------------------------------|
196-
| Feature store | Azure Machine Learning data scientist role |
197-
| Storage account of the offline store on the feature store | Blob storage data contributor role |
198-
| Storage accounts of the source data | Blob storage data reader role |
196+
| Feature store | Azure Machine Learning Data Scientist role |
197+
| Storage account of the offline store on the feature store | Blob storage Data Contributor role |
198+
| Storage accounts of the source data | Blob storage Data Reader role |
199199

200200
The next CLI commands assign the first two roles to the UAI. In this example, the "storage accounts of the source data" scope doesn't apply because you read the sample data from a public access blob storage. To use your own data sources, you must assign the required roles to the UAI. To learn more about access control, see [Manage access control for managed feature store](./how-to-setup-access-control-feature-store.md).
201201

@@ -211,17 +211,17 @@ The next CLI commands assign the first two roles to the UAI. In this example, th
211211

212212
---
213213

214-
### Grant the blob data reader role access to your user account in the offline store
214+
### Grant the blob Data Reader role access to your user account in the offline store
215215

216-
If the feature data is materialized, you need the blob data reader role to read feature data from the offline materialization store.
216+
If the feature data is materialized, you need the blob Data Reader role to read feature data from the offline materialization store.
217217

218218
Obtain your Azure AD object ID value from the Azure portal, as described in [Find the user object ID](/partner-center/find-ids-and-domain-names#find-the-user-object-id).
219219

220220
To learn more about access control, see [Manage access control for managed feature store](./how-to-setup-access-control-feature-store.md).
221221

222222
[!notebook-python[] (~/azureml-examples-main/sdk/python/featurestore_sample/notebooks/sdk_only/2. Enable materialization and backfill feature data.ipynb?name=grant-rbac-to-user-identity)]
223223

224-
The following steps grant the blob data reader role access to your user account:
224+
The following steps grant the blob Data Reader role access to your user account:
225225

226226
1. Attach the offline materialization store and UAI, to enable the offline store on the feature store.
227227

articles/machine-learning/tutorial-enable-recurrent-materialization-run-batch-inference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Before you proceed with the following procedures, be sure to complete the first,
4141

4242
To run this tutorial, you can create a new notebook and execute the instructions step by step. You can also open and run the existing notebook named *4. Enable recurrent materialization and run batch inference*. You can find that notebook, and all the notebooks in this series, in the *featurestore_sample/notebooks* directory. You can choose *sdk_only* or *sdk_and_cli*. Keep this tutorial open and refer to it for documentation links and more explanation.
4343

44-
1. On the top menu, in the **Compute** dropdown list, select **Azure Machine Learning Spark compute**.
44+
1. On the top menu, in the **Compute** dropdown list, select **Serverless Spark Compute** under **Azure Machine Learning Serverless Spark**.
4545

4646
1. Configure the session:
4747

articles/machine-learning/tutorial-experiment-train-models-using-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Before you proceed with the following procedures, be sure to complete the first
4343

4444
You can create a new notebook and execute the instructions in this tutorial step by step. You can also open and run the existing notebook named *3. Experiment and train models using features.ipynb* from the *featurestore_sample/notebooks* directory. You can choose *sdk_only* or *sdk_and_cli*. Keep this tutorial open and refer to it for documentation links and more explanation.
4545

46-
1. On the top menu, in the **Compute** dropdown list, select **Azure Machine Learning Spark compute**.
46+
1. On the top menu, in the **Compute** dropdown list, select **Serverless Spark Compute** under **Azure Machine Learning Serverless Spark**.
4747

4848
1. Configure the session:
4949

articles/machine-learning/tutorial-get-started-with-feature-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Before you proceed with this tutorial, be sure to cover these prerequisites:
4343

4444
* An Azure Machine Learning workspace. For more information about workspace creation, see [Quickstart: Create workspace resources](./quickstart-create-resources.md).
4545

46-
* On your user account, the owner or contributor role for the resource group where the feature store is created.
46+
* On your user account, the Owner or Contributor role for the resource group where the feature store is created.
4747

4848
If you choose to use a new resource group for this tutorial, you can easily delete all the resources by deleting the resource group.
4949

0 commit comments

Comments
 (0)