Shu-Chun Wu
03/08/2025, 1:09 PMmlflow.yml
, we have some parameters already.
Like mlflow_tracking_uri
, experiment name
, ...
But how can I define an artifact_uri
, which is in s3
?
Can I simply add a parameter into mlflow.yml
, under server: artifact_uri: <s3://myuri>
?
Another thing, how could I load parameters from other .yml
file into mlflow.yml
?
Thank you in advance!Hall
03/08/2025, 1:09 PMRashida Kanchwala
03/08/2025, 10:26 PMYolan Honoré-Rougé
03/09/2025, 8:57 PMtracking:
experiment:
create_experiment_kwargs: # will be used only if the experiment does not exist yet and is created.
artifact_location: null # enable to specify an artifact location for the
Yolan Honoré-Rougé
03/09/2025, 8:59 PMAnother thing, how could I load parameters from otherfile into.yml
?mlflow.yml
mlflow.yml
is a normal configuration file, so you can use ${runtime_params: ...}
or ${globals: ...}
resolvers as usual. See : https://docs.kedro.org/en/stable/configuration/advanced_configuration.html#how-to-use-global-variables-with-the-omegaconfigloader and https://docs.kedro.org/en/stable/configuration/advanced_configuration.html#how-to-override-configuration-with-[…]rameters-with-the-omegaconfigloader