Laure Vancau
06/05/2024, 12:51 PMrun id
dynamically (set its value to a timestamp) ? in the current mlflow.yaml, if the run id is null, a new run is created with a random id. If it has a value (environment variable for example), then kedro mlflow searches for an existing run. We want to create a new run with a unique id of our own: what is the best practice to do so?
Thanks a bunch ! ☀️marrrcin
06/05/2024, 1:20 PMmy_dataset_to_version:
type: kedro_mlflow.io.artifacts.MlflowArtifactDataset
dataset:
type: yaml.YAMLDataset # or any valid kedro Dataset
filepath: /path/to/a/LOCAL/destination/file.yaml # must be a local file, wherever you want to log the data in the end
2. The unique identifiers are managed by MLflow itself, you can have influence on when the generation happens, but I'm pretty sure you cannot influence the run id format because it's created by the MLflow Server / API.Laure Vancau
06/05/2024, 1:24 PMLaure Vancau
06/05/2024, 1:26 PMmarrrcin
06/05/2024, 1:46 PMLaure Vancau
06/05/2024, 2:03 PMYolan Honoré-Rougé
06/05/2024, 5:17 PMYolan Honoré-Rougé
06/05/2024, 5:21 PMLaure Vancau
06/06/2024, 7:42 AM