Hello all ! I'm trying to incorporate plotly visualizations in my mlflow. I've created a simple function:
def make_plotly(): import plotly.express as px df = px.data.iris() fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species", size='petal_length', hover_data=['petal_width']) fig.show() return figAnd created a pipeline where the output of the associated node is stored in the catalog
plotly_fig: type: kedro_mlflow.io.artifacts.MlflowArtifactDataset dataset: type: plotly.PlotlyDataset filepath: data/08_reporting/plotly.json plotly_args: type: scatter