I want to add text to experiences notes without using the mlflow ui mlflow UI notes example
I can't find that method in the docs https://mlflow.org/docs/latest/tracking.html.
Thanks
I want to add text to experiences notes without using the mlflow ui mlflow UI notes example
I can't find that method in the docs https://mlflow.org/docs/latest/tracking.html.
Thanks
To set notes for experiment use:
MlflowClient().set_experiment_tag(experiment_id,
"mlflow.note.content","<my_note_here>")
To set notes for runs use:
MlflowClient().set_tag(run_id,
"mlflow.note.content","<my_note_here>")
[