PROFESSIONAL-MACHINE-LEARNING-ENGINEER · Question #210
You are developing a process for training and running your custom model in production. You need to be able to show lineage for your model and predictions. What should you do?
The correct answer is D. 1. Use Vertex AI Experiments to train your model.. To show lineage for a custom model and its predictions throughout development and production, use Vertex AI Experiments to track training runs and associated metadata.
Question
Options
- A
- Create a Vertex AI managed dataset.
- B
- Use a Vertex AI Pipelines custom training job component to tram your model.
- C
- Upload your dataset to BigQuery.
- D
- Use Vertex AI Experiments to train your model.
How the community answered
(37 responses)- A3% (1)
- B3% (1)
- C11% (4)
- D84% (31)
Why each option
To show lineage for a custom model and its predictions throughout development and production, use Vertex AI Experiments to track training runs and associated metadata.
Vertex AI managed datasets track lineage related to the data itself, but do not provide comprehensive lineage for the model training process or the predictions generated from it.
While Vertex AI Pipelines provide lineage tracking for components within a larger workflow, Vertex AI Experiments is the direct service for tracking individual model training runs and their metadata, forming the core lineage for the model itself.
Uploading a dataset to BigQuery is primarily a storage solution for data and does not inherently provide MLOps lineage tracking for the model training process or subsequent predictions.
Vertex AI Experiments is specifically designed to track and manage the metadata for machine learning development, including model training runs, parameters, metrics, and associated artifacts like datasets and models. By training your model using Vertex AI Experiments, you automatically capture the necessary lineage information for both the model and how it was produced, which can then be linked to its predictions.
Concept tested: Vertex AI Experiments for MLOps lineage
Source: https://cloud.google.com/vertex-ai/docs/experiments/introduction
Topics
Community Discussion
No community discussion yet for this question.