PROFESSIONAL-MACHINE-LEARNING-ENGINEER · Question #346
You have recently developed a new ML model in a Jupyter notebook. You want to establish a reliable and repeatable model training process that tracks the versions and lineage of your model artifacts. Y
The correct answer is C. 1. Create a managed pipeline in Vertex AI Pipelines to train your model by using a Vertex AI. Creating a managed pipeline in Vertex AI Pipelines that includes training (via CustomTrainingJobOp) and model registration (via ModelUploadOp) enables tracking of model versions and lineage. Scheduling the pipeline with Cloud Scheduler and Cloud Run ensures reliable, repeatable w
Question
Options
- A
- Create an instance of the CustomTrainingJob class with the Vertex AI SDK to train your model.
- B
- Create an instance of the CustomJob class with the Vertex AI SDK to train your model.
- C
- Create a managed pipeline in Vertex AI Pipelines to train your model by using a Vertex AI
- D
- Create a managed pipeline in Vertex AI Pipelines to train your model using a Vertex AI
How the community answered
(57 responses)- A4% (2)
- B12% (7)
- C79% (45)
- D5% (3)
Explanation
Creating a managed pipeline in Vertex AI Pipelines that includes training (via CustomTrainingJobOp) and model registration (via ModelUploadOp) enables tracking of model versions and lineage. Scheduling the pipeline with Cloud Scheduler and Cloud Run ensures reliable, repeatable weekly retraining following Google best practices.
Topics
Community Discussion
No community discussion yet for this question.