
Answer-first summary for fast verification
Answer: Create a Vertex AI experiment. Submit all the pipelines as experiment runs. For models trained on notebooks, log parameters and metrics by using the Vertex AI SDK.
The correct answer is B. Creating a Vertex AI experiment allows for centralized tracking and comparison of models trained in both Vertex AI Pipelines and Vertex AI Workbench notebook instances. By submitting all pipelines as experiment runs and logging parameters and metrics from notebooks using the Vertex AI SDK, you can efficiently store and compare model performance without additional implementation overhead. This approach leverages the existing infrastructure, ensures data consistency, and reduces extra setup efforts. Options A and D require additional steps and do not provide the same level of integration and ease of use. Option C is not feasible as it requires migrating all models to Vertex AI Pipelines, which might not be desirable for models that benefit from the flexibility of notebooks.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
Your team is working on a project that involves training a large number of machine learning (ML) models using various algorithms, parameters, and datasets. The models are being trained using two services: Vertex AI Pipelines and Vertex AI Workbench notebook instances. The goal is to compare the performance of all the models across these two services efficiently. How should you store the parameters and metrics with minimal effort to facilitate this comparison?
A
Implement an additional step for all the models running in pipelines and notebooks to export parameters and metrics to BigQuery.
B
Create a Vertex AI experiment. Submit all the pipelines as experiment runs. For models trained on notebooks, log parameters and metrics by using the Vertex AI SDK.
C
Implement all models in Vertex AI Pipelines. Create a Vertex AI experiment, and associate all pipeline runs with that experiment.
D
Store all model parameters and metrics as model metadata by using the Vertex AI Metadata API.