ExamQuestions.com

Register
Login
AWS Certified Machine Learning Specialty Exam Questions

Amazon

AWS Certified Machine Learning Specialty

43 / 258

Question 43:

You work as a machine learning specialist for a polling company. For the upcoming election, you need to classify the over 500,000 registered voters in your voter database by age for a campaign your team is about to launch. Your data is structured as such:
| voter_id | voter_age | voter_occupation | voter_income | …
|1 |21|student|0 | …
|2 |35|nurse |25000 | …
|3 |49|manager| 150000| …
|4 |63|truck driver|45000 | …
|5 |55|teacher|65000 | …
…
Because you have continuous data for your voter age feature, classifying your observations by age would result in too many classifications, i.e., one for every possible voter age from 21 though probably over 90. You need to have uniform classifications that are limited in number to make the best use of your data in your machine learning model.
What numerical feature engineering technique will give you the best distribution of classifications?

Answer options:

A.Cartesian Product Transformation
B.N-Gram Transformation
C.Orthogonal Sparse Bigram (OSB) Transformation
D.Normalization Transformation
E.Quantile Binning Transformation