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-experiment-train-models-using-features.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ ms.custom: sdkv2, build-2023
17
17
18
18
# Tutorial 3: Experiment and train models by using features (preview)
19
19
20
-
This tutorial series shows how features seamlessly integrate all phases of the machine learning (ML) lifecycle: prototyping, training, and operationalization.
20
+
This tutorial series shows how features seamlessly integrate all phases of the machine learning lifecycle: prototyping, training, and operationalization.
21
21
22
22
The first tutorial showed how to create a feature set specification with custom transformations, and then use that feature set to generate training data. The second tutorial showed how to enable materialization and perform a backfill.
23
23
@@ -148,7 +148,7 @@ You don't need to connect to a feature store. In this procedure, you create the
148
148
149
149
## Locally experiment with unregistered features
150
150
151
-
As you develop features, you might want to locally test and validate them before you register them with the feature store or run training pipelines in the cloud. A combination of a local unregistered feature set (`accounts`) and a feature set registered in the feature store (`transactions`) generates training data for the ML model.
151
+
As you develop features, you might want to locally test and validate them before you register them with the feature store or run training pipelines in the cloud. A combination of a local unregistered feature set (`accounts`) and a feature set registered in the feature store (`transactions`) generates training data for the machine learning model.
152
152
153
153
1. Select features for the model.
154
154
@@ -190,15 +190,15 @@ In the following steps, you select a list of features, run a training pipeline,
190
190
191
191
1. Select features for the model, and export the model as a feature retrieval specification.
192
192
193
-
In the previous steps, you selected features from a combination of registered and unregistered feature sets, for local experimentation and testing. You can now experiment in the cloud. Your model-shipping agility increases if you save the selected features as a feature retrieval specification, and then use the specification in the ML operations (MLOps) or continuous integration and continuous delivery (CI/CD) flow for training and inference.
193
+
In the previous steps, you selected features from a combination of registered and unregistered feature sets, for local experimentation and testing. You can now experiment in the cloud. Your model-shipping agility increases if you save the selected features as a feature retrieval specification, and then use the specification in the machine learning operations (MLOps) or continuous integration and continuous delivery (CI/CD) flow for training and inference.
194
194
195
195
1. Select features for the model.
196
196
197
197
[!notebook-python[] (~/azureml-examples-main/sdk/python/featurestore_sample/notebooks/sdk_only/3. Experiment and train models using features.ipynb?name=select-reg-features)]
198
198
199
199
1. Export selected features as a feature retrieval specification.
200
200
201
-
A feature retrieval specification is a portable definition of the feature list that's associated with a model. It can help streamline ML model development and operationalization. It will become an input to the training pipeline that generates the training data. Then, it will be packaged with the model.
201
+
A feature retrieval specification is a portable definition of the feature list that's associated with a model. It can help streamline the development and operationalization of a machine learning model. It will become an input to the training pipeline that generates the training data. Then, it will be packaged with the model.
202
202
203
203
The inference phase uses the feature retrieval to look up the features. It becomes a glue that integrates all phases of the machine learning lifecycle. Changes to the training/inference pipeline can stay at a minimum as you experiment and deploy.
0 commit comments