Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

It is possible to add mlflow experiences notes using code instead of mlflow UI?

Tags:

mlflow

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

like image 824
Tiago Cabo Avatar asked Nov 15 '25 04:11

Tiago Cabo


1 Answers

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>")

[Experiment Note[1]

LOCAL_REGISTRY Run Note

like image 197
Jules Damji Avatar answered Nov 17 '25 22:11

Jules Damji