AI-900 · Question #116
You are working for a car dealership. Your boss asks you to provide him with forecast information. Will the new car model be successful or not? The new model has a variety of engine improvements, more
The correct answer is D. Feature selection. During pre-processing, you need to work with data to select features that influence the label prediction. In this problem, features are the engine characteristics (power or volume), seat comforts, etc. They could help the ML model to predict the success of the new car model. Mayb
Question
Options
- AData selection
- BTraining set selection
- CData for model evaluation selection
- DFeature selection
- EData classification
How the community answered
(45 responses)- A2% (1)
- B2% (1)
- C16% (7)
- D73% (33)
- E7% (3)
Explanation
During pre-processing, you need to work with data to select features that influence the label prediction. In this problem, features are the engine characteristics (power or volume), seat comforts, etc. They could help the ML model to predict the success of the new car model. Maybe the sunroof is not essential for predicting the label, and we need to discard this feature from the final set of features that we will use for model training. In short, Feature selection helps us to narrow down the features that are important for our label prediction and discard all features that don’t play or play a minimal role in a label prediction. As a result, our trained model and prediction will be more efficient. All other options are incorrect because they are parts of the different data processing events that are irrelevant to the pre-processing (Training set selection or Data for model evaluation selection) or too generic (Data selection or Data Classification). https://docs.microsoft.com/en-us/azure/machine-learning/team-data-science-process/select-
Topics
Community Discussion
No community discussion yet for this question.