Question 184:
You work as a machine learning specialist for a real estate company. Your company wishes to have you develop a model that predicts if a given property is in a “high value” neighborhood (properties with a median household value at or above $180,000). Your real estate agents will use this model to prioritize their sales work based on potential commission for any given property in their list of potential sales leads. Which option is the best approach to solve this problem?
Answer options:
A.Use SageMaker Linear Learner optimizing for a continuous objective, such as mean square error, cross-entropy loss, or absolute error to predict the median household value for each district. B.Use SageMaker Linear Learner optimizing for a discrete objective suited for classification, such as F1, precision, recall, or accuracy to predict whether or not a district is "high value". C.Use SageMaker Linear Learner optimizing for a continuous objective, such as mean square error, cross-entropy loss, or absolute error to predict whether or not a district is "high value". D.Use SageMaker Linear Learner optimizing for a continuous objective, such as F1, precision, recall, or accuracy to predict the median household value for each district.