I use MLFlow with autolog to keep track of my Tensorflow models:
mlflow.tensorflow.autolog(every_n_iter=1)
with mlflow.start_run():
model = ...
model.compile(...)
model.fit(...)
and then I want to use my tensorboard logs located in the artifacts. But when I run:
%tensorboard --logdir=<logs_path>
I have the error message: "No dashboards are active for the current data set. Probable causes:
You haven’t written any data to your event files. TensorBoard can’t find your event files."
I work on Databricks, so log_path is something like:
/dbfs/databricks/mlflow-tracking/..
Any ideas?