Skip to content

Commit 97a2f48

Browse files
committed
edit pass: develop-and-operationalize-features
1 parent 49075bf commit 97a2f48

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

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
@@ -78,7 +78,7 @@ Before you proceed with the following procedures, be sure to complete the first,
7878

7979
[!notebook-python[] (~/azureml-examples-main/sdk/python/featurestore_sample/notebooks/sdk_and_cli/4. Enable recurrent materialization and run batch inference.ipynb?name=set-default-subs-cli)]
8080

81-
---
81+
---
8282

8383
1. Initialize the project workspace CRUD (create, read, update, and delete) client.
8484

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This tutorial shows how to experiment with features as a way to improve model pe
2626
In this tutorial, you learn how to:
2727

2828
> [!div class="checklist"]
29-
> * Prototype a new `accounts` feature set specification, by using existing precomputed values as features. Then, register the local feature set specification as a feature set in the feature store. This process differs from the first tutorial, where we created a feature set that had custom transformations.
29+
> * Prototype a new `accounts` feature set specification, by using existing precomputed values as features. Then, register the local feature set specification as a feature set in the feature store. This process differs from the first tutorial, where you created a feature set that had custom transformations.
3030
> * Select features for the model from the `transactions` and `accounts` feature sets, and save them as a feature retrieval specification.
3131
> * Run a training pipeline that uses the feature retrieval specification to train a new model. This pipeline uses the built-in feature retrieval component to generate the training data.
3232
@@ -110,7 +110,7 @@ In the first tutorial, you created a `transactions` feature set that had custom
110110

111111
To onboard precomputed features, you can create a feature set specification without writing any transformation code. You use a feature set specification to develop and test a feature set in a fully local development environment.
112112

113-
You don't need to connect to a feature store. In this step, you create the feature set specification locally, and then sample the values from it. For capabilities of managed feature store, you must use a feature asset definition to register the feature set specification with a feature store. Later steps in this tutorial provide more details.
113+
You don't need to connect to a feature store. In this procedure, you create the feature set specification locally, and then sample the values from it. For capabilities of managed feature store, you must use a feature asset definition to register the feature set specification with a feature store. Later steps in this tutorial provide more details.
114114

115115
1. Explore the source data for the accounts.
116116

@@ -129,7 +129,7 @@ You don't need to connect to a feature store. In this step, you create the featu
129129

130130
To register the feature set specification with the feature store, you must save the feature set specification in a specific format.
131131

132-
After you run the next cell, inspect the generated `accounts` feature set specification. To see the specification, open the *featurestore/featuresets/accounts/spec/FeatureSetSpec.yaml* file from the file tree to see the specification.
132+
After you run the next cell, inspect the generated `accounts` feature set specification. To see the specification, open the *featurestore/featuresets/accounts/spec/FeatureSetSpec.yaml* file from the file tree.
133133

134134
The specification has these important elements:
135135

@@ -139,7 +139,7 @@ You don't need to connect to a feature store. In this step, you create the featu
139139

140140
- `index_columns`: The join keys required to access values from the feature set.
141141

142-
To learn more, see [Understanding top-level entities in managed feature store](./concept-top-level-entities-in-managed-feature-store.md) and the [feature set specification's YAML reference](./reference-yaml-featureset-spec.md).
142+
To learn more, see [Understanding top-level entities in managed feature store](./concept-top-level-entities-in-managed-feature-store.md) and the [CLI (v2) feature set specification YAML schema](./reference-yaml-featureset-spec.md).
143143

144144
As an extra benefit, persisting supports source control.
145145

@@ -173,15 +173,15 @@ As you develop features, you might want to locally test and validate them before
173173

174174
## Run a training experiment
175175

176-
In these steps, you select a list of features, run a training pipeline, and register the model. You can repeat these steps until the model performs as you want.
176+
In the following steps, you select a list of features, run a training pipeline, and register the model. You can repeat these steps until the model performs as you want.
177177

178178
1. Optionally, discover features from the feature store UI.
179179

180180
The first tutorial covered this step, when you registered the `transactions` feature set. Because you also have an `accounts` feature set, you can browse through the available features:
181181

182-
* Go to the [Azure Machine Learning global landing page](https://ml.azure.com/home?flight=FeatureStores).
183-
* On the left pane, select **Feature stores**.
184-
* In the list of feature stores, select the feature store that you created earlier.
182+
1. Go to the [Azure Machine Learning global landing page](https://ml.azure.com/home?flight=FeatureStores).
183+
1. On the left pane, select **Feature stores**.
184+
1. In the list of feature stores, select the feature store that you created earlier.
185185

186186
The UI shows the feature sets and entity that you created. Select the feature sets to browse through the feature definitions. You can use the global search box to search for feature sets across feature stores.
187187

0 commit comments

Comments
 (0)