MLS-C01 · Question #343
A machine learning (ML) developer for an online retailer recently uploaded a sales dataset into Amazon SageMaker Studio. The ML developer wants to obtain importance scores for each feature of the…
The correct answer is A. Use SageMaker Data Wrangler to perform a Gini importance score analysis. To efficiently obtain feature importance scores for a dataset in Amazon SageMaker Studio with minimal development effort, leverage SageMaker Data Wrangler's built-in analysis capabilities.
Question
A machine learning (ML) developer for an online retailer recently uploaded a sales dataset into Amazon SageMaker Studio. The ML developer wants to obtain importance scores for each feature of the dataset. The ML developer will use the importance scores to feature engineer the dataset. Which solution will meet this requirement with the LEAST development effort?
Options
- AUse SageMaker Data Wrangler to perform a Gini importance score analysis.
- BUse a SageMaker notebook instance to perform principal component analysis (PCA).
- CUse a SageMaker notebook instance to perform a singular value decomposition analysis.
- DUse the multicollinearity feature to perform a lasso feature selection to perform an importance
How the community answered
(30 responses)- A70% (21)
- B17% (5)
- C3% (1)
- D10% (3)
Why each option
To efficiently obtain feature importance scores for a dataset in Amazon SageMaker Studio with minimal development effort, leverage SageMaker Data Wrangler's built-in analysis capabilities.
Amazon SageMaker Data Wrangler is a visual interface specifically designed for data preparation and feature engineering, offering built-in analyses like Gini importance score analysis that can be performed with minimal or no code, making it the solution with the least development effort.
Performing principal component analysis (PCA) in a SageMaker notebook instance requires writing custom code and PCA is primarily a dimensionality reduction technique, not a direct method for generating feature importance scores in the way Gini importance does for individual features.
Performing singular value decomposition (SVD) analysis in a SageMaker notebook instance requires custom coding, and SVD is also a dimensionality reduction technique, not a direct method for assigning importance scores to original features.
While Lasso feature selection can identify important features by shrinking coefficients, it typically requires coding in a notebook instance, and 'multicollinearity feature' is a data characteristic to address, not a method for performing importance scoring with minimal effort.
Concept tested: SageMaker Data Wrangler Feature Importance
Source: https://docs.aws.amazon.com/sagemaker/latest/dg/data-wrangler-analyze.html
Topics
Community Discussion
No community discussion yet for this question.