DP-100 · Question #372
You plan to use automated machine learning by using Azure Machine Learning Python SDK v2 to train a regression model. You have data that has features with missing values, and categorical features…
The correct answer is C. FeaturizationMode. The FeaturizationMode enum from the Azure Machine Learning automl package controls how automated machine learning handles data preprocessing steps, specifically whether it automatically imputes missing values and encodes categorical features. It has three modes: 'Auto'…
Question
Options
- AForecastHorizonMode
- BRegressionModels
- CFeaturizationMode
- DRegressionPrimaryMetrics
How the community answered
(26 responses)- B4% (1)
- C88% (23)
- D8% (2)
Explanation
The FeaturizationMode enum from the Azure Machine Learning automl package controls how automated machine learning handles data preprocessing steps, specifically whether it automatically imputes missing values and encodes categorical features. It has three modes: 'Auto' (default, performs featurization automatically), 'Custom' (allows user-defined featurization steps), and 'Off' (disables all featurization). The other options are unrelated to featurization control: ForecastHorizonMode controls how the forecasting horizon is determined, RegressionModels is an enum listing available regression algorithms to try, and RegressionPrimaryMetrics defines the metric used to evaluate and rank regression models during training.
Topics
Community Discussion
No community discussion yet for this question.