You developed a Vertex AI pipeline that trains a classification model on data stored in a large BigQuery table. The pipeline has four steps, where each step is created by a Python function that uses the KubeFlow v2 API. The components have the following names: You launch your Vertex AI pipeline as the following: You perform many model iterations by adjusting the code and parameters of the training step. You observe high costs associated with the development, particularly the data export and preprocessing steps. You need to reduce model development costs. What should you do?


- AChange the componentsβ YAML filenames to export.yaml, preprocess,yaml, f "train-{dt}.yaml", f"calibrate-{dt).vaml". (correct answer)
- BAdd the {"kubeflow.v1.caching": True} parameter to the set of params provided to your PipelineJob.
- CMove the first step of your pipeline to a separate step, and provide a cached path to Cloud Storage as an input to the main pipeline.
- DChange the name of the pipeline to f"my-awesome-pipeline-{dt}".
Reveal answer & explanationHide answer
The correct answer is A. Option A: Change the componentsβ YAML filenames to export.yaml, preprocess,yaml, f "train-{dt}.yaml", f"calibrate-{dt).vaml".