Question 13:
You work for a mining company in their machine learning department. You and your team are working on a model to predict the minimum depth to drill to find various mineral deposits. You are building a model based on the XGBoost algorithm. Your team is at the stage where you are running various models based on different hyperparameters to find the best hyperparameter settings. Because of the complexity of the problem, you may have to run hundreds or even thousands of hyperparameter tuning jobs to get the best result. Your machine learning pipeline also includes a batch transform step to be executed after every hyperparameter tuning job. Your team lead has suggested that you use the Amazon Step Functions SageMaker integration capability to automate the execution of your many hyperparameter tuning jobs. You have set up your Step Functions environment, and you have configured it as such: You have written the following JSON-based Amazon States Language (ASL) for your State Machine (partial listing): { "StartAt": "Generate Training Dataset", "States": { "Generate Training Dataset": { "Resource": "<GENERATE_LAMBDA_FUNCTION_ARN>", "Type": "Task", "Next": "HyperparameterTuning (XGBoost)" }, "HyperparameterTuning (XGBoost)": { "Resource": "arn:<PARTITION>:states:::sagemaker:createHyperParameterTuningJob.sync", "Parameters": { "HyperParameterTuningJobName.$": "<JOB_NAME_FROM_LAMBDA>", "HyperParameterTuningJobConfig": { "Strategy": "Bayesian", "HyperParameterTuningJobObjective": { "Type": "Minimize", "MetricName": "validation:rmse" }, "ResourceLimits": { "MaxNumberOfTrainingJobs": 2, "MaxParallelTrainingJobs": 2 }, "ParameterRanges": { "ContinuousParameterRanges": [{ "Name": "alpha", "MinValue": "0", "MaxValue": "1000", "ScalingType": "Auto" }, { "Name": "gamma", "MinValue": "0", "MaxValue": "5", "ScalingType": "Auto" } ], ... Based on your Step Functions code, what is the type of metric you are using for your regression evaluation? Additionally, in the HyperparameterTuning (XGBoost) step, what happens when the alpha parameter increases through its range of 0 to 1,000? (Select TWO)
Answer options:
A.Relative Mean Square Error B.Gamma C.Alpha D.Root Mean Square Error E.Mean Square Error F.As alpha increases, the model becomes more conservative G.As alpha increases, the model becomes less conservative H. As alpha increases the model gains precision but sacrifices accuracy