Fix MLflow tracking links: add ML Studio URLs, fix tracking URI bug - #4074
Open
Chakradhar886 with Copilot wants to merge 3 commits into
Open
Fix MLflow tracking links: add ML Studio URLs, fix tracking URI bug#4074Chakradhar886 with Copilot wants to merge 3 commits into
Chakradhar886 with Copilot wants to merge 3 commits into
Conversation
Copilot
AI
changed the title
Fix MLflow tracking links to point to ML Studio URLs
Fix MLflow tracking links: add ML Studio URLs, fix tracking URI bug
Jul 20, 2026
Copilot created this pull request from a session on behalf of
Chakradhar886
July 20, 2026 10:20
View session
lavakumarrepala
marked this pull request as ready for review
July 20, 2026 16:37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AzureML serves an MLflow-compatible API server only — it has no MLflow UI. Clicking run links constructed from the tracking URI (e.g.
https://westeurope.api.azureml.ms/mlflow/v2.0/.../experiments/<id>/runs/<id>) returns HTTP 404.Changes
xgboost_classification_mlflow,keras_mnist_with_mlflow,xgboost_nested_runs,xgboost_service_principal,model_management): added notes clarifying the tracking URI is an API endpoint, not a UI, and added code cells that generate a working ML Studio URL after each run:xgboost_service_principal.ipynb: fixed silent bug wheremlflow.set_tracking_uri = ws.mlflow_tracking_uri(attribute assignment, replaces the function) was used instead ofmlflow.set_tracking_uri(ws.mlflow_tracking_uri)(function call).