<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: MLFlow - Problem with aliases and metrics in Data Science</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/5054159#M1102</link>
    <description>&lt;P&gt;Thank you for your answer&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="833169" data-lia-user-login="bariscihan" class="lia-mention lia-mention-user"&gt;bariscihan&lt;/a&gt;&lt;/P&gt;&lt;P&gt;At the end, your solution is part of how we use MLFlow, nevertheless I´m still finding out more missing features of MLFlow in fabric, although these features also can be replaced with other &lt;SPAN&gt;approaches&lt;/SPAN&gt;, It would be awesome if they could be &lt;SPAN&gt;implemented in the future, as MLFLow is a powerful tool&lt;/SPAN&gt; that helps a lot in the ML model lifecycle process&lt;/P&gt;</description>
    <pubDate>Wed, 18 Feb 2026 21:16:03 GMT</pubDate>
    <dc:creator>claudevs</dc:creator>
    <dc:date>2026-02-18T21:16:03Z</dc:date>
    <item>
      <title>MLFlow - Problem with aliases and metrics</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/4927408#M1062</link>
      <description>&lt;P&gt;Our team is trying to use MLFlow to manage the models created in fabric, however this has been a hard task since many features of MLFlow Python library &lt;SPAN&gt;are apparently unavailable&lt;/SPAN&gt; in Fabric. We tried to implement aliases in our models without any success, the same thing happened when we try to access metrics via models (not runs). Every time we instanciate a model only some data are available like model_name, version and tags, but we can´t access to params and metrcis asociated to that model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would appreciate any help, as I don't know if these issues are due to a limited implementation of MLFlow's capabilities in Fabric or incorrect use of the MLFlow API&lt;/SPAN&gt;. If anyone could share some code that allows acess to model metrics and parameters using any type of model object (LoggedModel, ModelVersion, ModelInfo, etc) would be very appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jan 2026 16:37:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/4927408#M1062</guid>
      <dc:creator>claudevs</dc:creator>
      <dc:date>2026-01-28T16:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: MLFlow - Problem with aliases and metrics</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/5003868#M1084</link>
      <description>&lt;P&gt;What you’re seeing is expected MLflow behavior, and it can be confusing at first in Fabric.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Key point:&lt;/STRONG&gt; in MLflow, &lt;STRONG&gt;metrics/params live on the &lt;EM&gt;Run&lt;/EM&gt;&lt;/STRONG&gt;, not on the &lt;EM&gt;Model Registry&lt;/EM&gt; objects. A ModelVersion (or ModelInfo, LoggedModel, etc.) typically exposes registry metadata (name, version, tags, source, run_id), but not the run’s params/metrics directly. The right pattern is:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ModelVersion → run_id → client.get_run(run_id)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If aliases are failing in Fabric, it’s usually because the hosted registry endpoint doesn’t support the alias APIs (or the underlying MLflow server feature set differs). In that case, a practical workaround is to use &lt;STRONG&gt;model version tags&lt;/STRONG&gt; as a “pseudo-alias” (e.g., champion=true, env=prod) and resolve your “production” version via tags.&lt;/P&gt;&lt;P&gt;References:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;MLflow Client / Registry API: &lt;A href="https://mlflow.org/docs/latest/python_api/mlflow.client.html" target="_blank" rel="noopener"&gt;https://mlflow.org/docs/latest/python_api/mlflow.client.html&lt;/A&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;MLflow Model Registry (aliases &amp;amp; versions): &lt;A href="https://mlflow.org/docs/latest/ml/model-registry/" target="_blank" rel="noopener"&gt;https://mlflow.org/docs/latest/ml/model-registry/&lt;/A&gt; and &lt;A href="https://mlflow.org/docs/latest/ml/model-registry/tutorial/" target="_blank" rel="noopener"&gt;https://mlflow.org/docs/latest/ml/model-registry/tutorial/&lt;/A&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Fabric ML model experience (run tracking + registering): &lt;A href="https://learn.microsoft.com/en-us/fabric/data-science/machine-learning-model" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/data-science/machine-learning-model&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="python"&gt;import mlflow
from mlflow.tracking import MlflowClient

client = MlflowClient()

model_name = "&amp;lt;YOUR_MODEL_NAME&amp;gt;"
model_version = "&amp;lt;YOUR_VERSION_NUMBER&amp;gt;"  # e.g. "3"

# 1) Registry -&amp;gt; ModelVersion
mv = client.get_model_version(name=model_name, version=model_version)
print("Model:", mv.name, "Version:", mv.version, "RunId:", mv.run_id)

# 2) Run -&amp;gt; params/metrics
run = client.get_run(mv.run_id)

print("\nParams:")
print(run.data.params)

print("\nMetrics:")
print(run.data.metrics)

# Optional: metric history (if you logged multiple values over time)
# hist = client.get_metric_history(mv.run_id, "accuracy")
# print(hist)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 10 Feb 2026 11:21:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/5003868#M1084</guid>
      <dc:creator>bariscihan</dc:creator>
      <dc:date>2026-02-10T11:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: MLFlow - Problem with aliases and metrics</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/5015181#M1089</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1404901" data-lia-user-login="claudevs" class="lia-mention lia-mention-user"&gt;claudevs&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for posting your query in the Microsoft Fabric Community Forum, and thanks to&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="833169" data-lia-user-login="bariscihan" class="lia-mention lia-mention-user"&gt;bariscihan&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;for sharing valuable insights.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Could you please confirm if your query has been resolved by the provided solution?If you have any more questions, please let us know and we’ll be happy to help.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Microsoft Fabric Community Support Team&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 12:43:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/5015181#M1089</guid>
      <dc:creator>v-karpurapud</dc:creator>
      <dc:date>2026-02-13T12:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: MLFlow - Problem with aliases and metrics</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/5040017#M1090</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1404901" data-lia-user-login="claudevs" class="lia-mention lia-mention-user"&gt;claudevs&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We have not received a response from you regarding the query and were following up to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2026 11:33:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/5040017#M1090</guid>
      <dc:creator>v-karpurapud</dc:creator>
      <dc:date>2026-02-16T11:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: MLFlow - Problem with aliases and metrics</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/5054159#M1102</link>
      <description>&lt;P&gt;Thank you for your answer&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="833169" data-lia-user-login="bariscihan" class="lia-mention lia-mention-user"&gt;bariscihan&lt;/a&gt;&lt;/P&gt;&lt;P&gt;At the end, your solution is part of how we use MLFlow, nevertheless I´m still finding out more missing features of MLFlow in fabric, although these features also can be replaced with other &lt;SPAN&gt;approaches&lt;/SPAN&gt;, It would be awesome if they could be &lt;SPAN&gt;implemented in the future, as MLFLow is a powerful tool&lt;/SPAN&gt; that helps a lot in the ML model lifecycle process&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 21:16:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/5054159#M1102</guid>
      <dc:creator>claudevs</dc:creator>
      <dc:date>2026-02-18T21:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: MLFlow - Problem with aliases and metrics</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/5054360#M1103</link>
      <description>&lt;P&gt;Thank you for your answer&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="833169" data-lia-user-login="bariscihan" class="lia-mention lia-mention-user"&gt;bariscihan&lt;/a&gt;&lt;/P&gt;&lt;P&gt;At the end, your solution is part of how we use MLFlow, nevertheless I´m still finding out more missing features of MLFlow in fabric, although these features also can be replaced with other &lt;SPAN&gt;approaches&lt;/SPAN&gt;, It would be awesome if they could be &lt;SPAN&gt;implemented in the future, as MLFLow is a powerful tool&lt;/SPAN&gt; that helps a lot in the ML model lifecycle proccess&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 21:31:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Problem-with-aliases-and-metrics/m-p/5054360#M1103</guid>
      <dc:creator>claudevs</dc:creator>
      <dc:date>2026-02-18T21:31:12Z</dc:date>
    </item>
  </channel>
</rss>

