Is it possible to use Vertex AI experiments without Tensorboard?
When I programmatically init the SDK and start experiment run as described in docs, Tensorboard is automatically provisioned.
I would like to use only summary metrics and parameters tracking (i.e. not time-series metrics), and AFAIK it doesn't require Tensorboard.
Here's the code snippet:
aiplatform.init(experiment="foo", location="us-central1")
aiplatform.start_run(run="bar")
aiplatform.log_metrics({"score": 0.42})