Skip to content

Commit 132dde1

Browse files
authored
Merge pull request #102186 from Aniththa/patch-37
Update how-to-configure-auto-train.md
2 parents a551825 + ff0b413 commit 132dde1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/machine-learning/how-to-configure-auto-train.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,11 @@ The primary metric determines the metric to be used during model training for op
182182

183183
Learn about the specific definitions of these metrics in [Understand automated machine learning results](how-to-understand-automated-ml.md).
184184

185-
### Data preprocessing & featurization
185+
### Data featurization
186186

187-
In every automated machine learning experiment, your data is [automatically scaled and normalized](concept-automated-ml.md#preprocess) to help *certain* algorithms that are sensitive to features that are on different scales. However, you can also enable additional preprocessing/featurization, such as missing values imputation, encoding, and transforms. [Learn more about what featurization is included](how-to-create-portal-experiments.md#preprocess).
187+
In every automated machine learning experiment, your data is [automatically scaled and normalized](concept-automated-ml.md#preprocess) to help *certain* algorithms that are sensitive to features that are on different scales. However, you can also enable additional featurization, such as missing values imputation, encoding, and transforms. [Learn more about what featurization is included](how-to-create-portal-experiments.md#preprocess).
188188

189-
To enable this featurization, specify `"preprocess": True` for the [`AutoMLConfig` class](https://docs.microsoft.com/python/api/azureml-train-automl/azureml.train.automl.automlconfig?view=azure-ml-py).
189+
To enable this featurization, specify `"featurization": 'auto'` for the [`AutoMLConfig` class](https://docs.microsoft.com/python/api/azureml-train-automl/azureml.train.automl.automlconfig?view=azure-ml-py).
190190

191191
> [!NOTE]
192192
> Automated machine learning pre-processing steps (feature normalization, handling missing data,
@@ -322,7 +322,7 @@ You can view your training results in a widget or inline if you are in a noteboo
322322
## Understand automated ML models
323323

324324
Any model produced using automated ML includes the following steps:
325-
+ Automated feature engineering (if preprocess=True)
325+
+ Automated feature engineering (if `"featurization": 'auto'`)
326326
+ Scaling/Normalization and algorithm with hyperparameter values
327327

328328
We make it transparent to get this information from the fitted_model output from automated ML.
@@ -335,7 +335,7 @@ best_run, fitted_model = automl_run.get_output()
335335

336336
### Automated feature engineering
337337

338-
See the list of preprocessing and [automated feature engineering](concept-automated-ml.md#preprocess) that happens when feauturization =auto.
338+
See the list of preprocessing and [automated feature engineering](concept-automated-ml.md#preprocess) that happens when `"featurization": 'auto'`.
339339

340340
Consider this example:
341341
+ There are four input features: A (Numeric), B (Numeric), C (Numeric), D (DateTime)

0 commit comments

Comments
 (0)