MLFlow - count number of runs given an experiment name

Viewed 11

Is there a way count number of runs given an experiment name? I'm using python. E.g. I have an experiment name: "Test" and I wish to get the number of runs somehow like this, but I couldn't find anything in the documentation:

experiment_name = "test"
count = mlflow.get_number_of_runs(experiment_name)
print(f'There are {count} runs in {experiment_name}')
1 Answers
Related