-2

Is there a way to connect Google's Vertex AI Tensorboard to AutoML? - I remember a brief mention in a coursera specialization but don't know where it was.

user2268997
  • 1,263
  • 2
  • 14
  • 35

1 Answers1

2

Vertex AI Tensorboard is only used for custom models that are trained using Tensorflow since it can produce Tensorboard logs. These logs will be used by Tensorboard to create visualizations.

Unfortunately AutoML does not produce Tensorboard logs since AutoML is a tool that trains based on the given labeled dataset and does not have control to tweak other training parameters. But if you are using AutoML and wants to see model details like precision, confidence threshold, etc. the model will return a evaluation.

Vertex AI returns several different evaluation metrics such as precision, recall, and confidence thresholds. The metrics that Vertex AI returns depend on your model's objective. For example, Vertex AI provides different evaluation metrics for an image classification model compared to an image object detection model.

Example of the model evaluation:

enter image description here

Ricco D
  • 6,873
  • 1
  • 8
  • 18