Nikaido
Nikaido

Reputation: 4629

Azure ML Experiment Metric Limit: Unable to See All Logged Metrics in Experiment Comparison

I am conducting an experiment where I am logging metrics for 12 different machine learning models in Azure Machine Learning (Azure ML). Each model has 680 metrics. This is because I have a multiclassification model with more than 150 classes, and for each of them I have precision, recall, f1-score and support values.

Here's how I'm logging the metrics:

# Logging metrics using mlflow
mlflow.log_metric(f'{metric_name}', metric_value)

These metrics appear in the Run Details tab and I can view all of them when I look at individual runs. However, when I switch to the Experiment level to compare the models, I am only able to see a maximum of 250 metrics across all runs.

run metrics

run metrics

experiment metrics

experiment metrics

It seems like this might be a limitation in Azure ML, but I am unsure whether it's an issue with the service, my configuration, or if there's a known limitation in Azure ML or MLflow regarding the number of metrics that can be displayed at the experiment level.

Things I've tried:

Question:

Upvotes: 0

Views: 53

Answers (0)

Related Questions