We are using MLFlow to manage the usage of some self service notebooks. This involves logging parameters, tables and figures.
Figures are logged using:
mlflow.log_figure(
figure=fig,
artifact_file="visual/fig.html"
)
Usually the fig object is generated using seaborn, plotly or matplotlib. With the addition of the redash chart editor to notebooks we can use the inbuilt visualisation tool more.
Is there a way to access the HTML so the an image created using the in-built editor can be logged?
Cheers