PROFESSIONAL-MACHINE-LEARNING-ENGINEER · Question #271
You are developing a model to predict whether a failure will occur in a critical machine part. You have a dataset consisting of a multivariate time series and labels indicating whether the machine par
The correct answer is C. 1. Create a Vertex AI TensorBoard instance and use the Vertex AI SDK to create an experiment. To effectively log data and track artifacts from machine learning experiments within a Vertex AI Workbench notebook, you should establish an experiment and leverage Vertex AI TensorBoard for visualization.
Question
Options
- A
- Use the Vertex AI SDK to create an experiment and set up Vertex ML Metadata.
- B
- Use the Vertex AI SDK to create an experiment and set up Vertex ML Metadata.
- C
- Create a Vertex AI TensorBoard instance and use the Vertex AI SDK to create an experiment
- D
- Create a Vertex AI TensorBoard instance, and use the Vertex AI SDK to create an experiment
How the community answered
(51 responses)- A10% (5)
- B2% (1)
- C82% (42)
- D6% (3)
Why each option
To effectively log data and track artifacts from machine learning experiments within a Vertex AI Workbench notebook, you should establish an experiment and leverage Vertex AI TensorBoard for visualization.
While Vertex ML Metadata is used for tracking artifacts and lineage, it primarily focuses on metadata storage and retrieval, not the interactive visualization of experiment data (like loss curves, metrics over epochs) that is typically implied by 'logging data and tracking artifacts' in a development context.
While Vertex ML Metadata is used for tracking artifacts and lineage, it primarily focuses on metadata storage and retrieval, not the interactive visualization of experiment data (like loss curves, metrics over epochs) that is typically implied by 'logging data and tracking artifacts' in a development context.
Creating a Vertex AI TensorBoard instance allows for visualizing and tracking experiment metrics, graphs, and other artifacts, which is crucial for iterating on preprocessing and modeling approaches. The Vertex AI SDK is then used within the notebook to log data and artifacts to the created TensorBoard instance as part of an experiment run.
This option proposes the correct components but is less complete in its description compared to option C, which clearly outlines the combined use of Vertex AI TensorBoard for tracking and the Vertex AI SDK for experiment creation.
Concept tested: Vertex AI Experiment Tracking with TensorBoard
Source: https://cloud.google.com/vertex-ai/docs/experiments/tensorboard-overview
Topics
Community Discussion
No community discussion yet for this question.