Topic 1 Question 251
You are developing a training pipeline for a new XGBoost classification model based on tabular data. The data is stored in a BigQuery table. You need to complete the following steps:
- Randomly split the data into training and evaluation datasets in a 65/35 ratio
- Conduct feature engineering
- Obtain metrics for the evaluation dataset
- Compare models trained in different pipeline executions
How should you execute these steps?
- Using Vertex AI Pipelines, add a component to divide the data into training and evaluation sets, and add another component for feature engineering.
- Enable autologging of metrics in the training component.
- Compare pipeline runs in Vertex AI Experiments.
- Using Vertex AI Pipelines, add a component to divide the data into training and evaluation sets, and add another component for feature engineering.
- Enable autologging of metrics in the training component.
- Compare models using the artifacts’ lineage in Vertex ML Metadata.
- In BigQuery ML, use the CREATE MODEL statement with BOOSTED_TREE_CLASSIFIER as the model type and use BigQuery to handle the data splits.
- Use a SQL view to apply feature engineering and train the model using the data in that view.
- Compare the evaluation metrics of the models by using a SQL query with the ML.TRAINING_INFO statement.
- In BigQuery ML, use the CREATE MODEL statement with BOOSTED_TREE_CLASSIFIER as the model type and use BigQuery to handle the data splits.
- Use ML TRANSFORM to specify the feature engineering transformations and tram the model using the data in the table.
- Compare the evaluation metrics of the models by using a SQL query with the ML.TRAINING_INFO statement.
ユーザの投票
コメント(1)
- 正解だと思う選択肢: A
Option B: While Vertex ML Metadata provides artifact lineage, it's less comprehensive for model comparison than Experiments. Options C and D: BigQuery ML is powerful for in-database model training, but it has limitations in pipeline orchestration, complex feature engineering, and detailed model comparison features, making it less suitable for this scenario.
👍 1pikachu0072024/01/13
シャッフルモード