minmin
07/03/2025, 12:51 PMmodel_1.mae:
type: <http://kedro_mlflow.io|kedro_mlflow.io>.metrics.MlflowMetricDataset
model_2.mae:
type: <http://kedro_mlflow.io|kedro_mlflow.io>.metrics.MlflowMetricDataset
if however i try and template the name in the catalog it fails:
"{model_name}.mae":
type: <http://kedro_mlflow.io|kedro_mlflow.io>.metrics.MlflowMetricDataset
I get the error message:
DatasetError: Failed while saving data to dataset
MlflowMetricDataset(run_id=...).
Invalid value null for parameter 'name' supplied: Metric name cannot be None. A key name must be provided.
do I just have to avoid templating in the catalog when it comes to mlflow related entries?Dmitry Sorokin
07/03/2025, 1:21 PM"{model_name}.mae":
type: <http://kedro_mlflow.io|kedro_mlflow.io>.metrics.MlflowMetricDataset
name: "{model_name}.mae"
2) try with last version kedro 1.0.0rc1minmin
07/03/2025, 1:39 PMminmin
07/03/2025, 2:16 PMDmitry Sorokin
07/03/2025, 2:20 PMElena Khaustova
07/03/2025, 2:36 PMminmin
07/03/2025, 3:12 PMDmitry Sorokin
07/03/2025, 4:54 PMYolan Honoré-Rougé
07/04/2025, 6:53 AMminmin
07/04/2025, 7:56 AM