Does `kedro-mlflow` support custom model flavors i...
# plugins-integrations
y
Does
kedro-mlflow
support custom model flavors in datasets? I'm reading in docs that yes, but wanted to double check that this is relevant. @Yolan Honoré-Rougé
y
Yes it should
Let me check
What are you using using? MlflowModelDataset?
flavor (str): Built-in or custom MLflow model flavor module. Must be Python-importable.
I think you can put a path to a custom model module, it will try to import it with importlib to instantiate the class IIRC
(and for the record kedro mlflow has a built in custom model to log an entire kedro pipeline which may be useful)
y
Thanks!