You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/tutorial-enable-recurrent-materialization-run-batch-inference.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ Before you proceed with the following procedures, be sure to complete the first,
78
78
79
79
[!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)]
80
80
81
-
---
81
+
---
82
82
83
83
1. Initialize the project workspace CRUD (create, read, update, and delete) client.
Copy file name to clipboardExpand all lines: articles/machine-learning/tutorial-experiment-train-models-using-features.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ This tutorial shows how to experiment with features as a way to improve model pe
26
26
In this tutorial, you learn how to:
27
27
28
28
> [!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.
30
30
> * Select features for the model from the `transactions` and `accounts` feature sets, and save them as a feature retrieval specification.
31
31
> * 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.
32
32
@@ -110,7 +110,7 @@ In the first tutorial, you created a `transactions` feature set that had custom
110
110
111
111
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.
112
112
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.
114
114
115
115
1. Explore the source data for the accounts.
116
116
@@ -129,7 +129,7 @@ You don't need to connect to a feature store. In this step, you create the featu
129
129
130
130
To register the feature set specification with the feature store, you must save the feature set specification in a specific format.
131
131
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.
133
133
134
134
The specification has these important elements:
135
135
@@ -139,7 +139,7 @@ You don't need to connect to a feature store. In this step, you create the featu
139
139
140
140
-`index_columns`: The join keys required to access values from the feature set.
141
141
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).
143
143
144
144
As an extra benefit, persisting supports source control.
145
145
@@ -173,15 +173,15 @@ As you develop features, you might want to locally test and validate them before
173
173
174
174
## Run a training experiment
175
175
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.
177
177
178
178
1. Optionally, discover features from the feature store UI.
179
179
180
180
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:
181
181
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.
185
185
186
186
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.
0 commit comments