<?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 - Not logging results of all epochs in Data Science</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5062442#M1107</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1184147" data-lia-user-login="Zoe_Guest" class="lia-mention lia-mention-user"&gt;Zoe_Guest&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;Use different metric names for your manual logging (e.g., loss_manual, val_loss_manual) and keep steps strictly increasing.&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="python"&gt;with mlflow.start_run():
    # Either comment this out to avoid overlap:
    # mlflow.tensorflow.autolog()

    history, model = run_model(X_train, X_val)

    for epoch, (tr, vl) in enumerate(
        zip(history.history["loss"], history.history["val_loss"]), start=1
    ):
        mlflow.log_metric("loss_manual", tr, step=epoch)
        mlflow.log_metric("val_loss_manual", vl, step=epoch) &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please note,&amp;nbsp;MLflow stores metrics as (key, step) -&amp;gt; value. If you log the same key at the same step more than once, the last value overwrites prior ones. That’s why mixing autolog (which logs loss/val_loss per epoch) with your manual loop (logging the same keys and step numbers) leads to only one record per step and the Run details view shows just the latest overall value.&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Thu, 19 Feb 2026 13:28:17 GMT</pubDate>
    <dc:creator>deborshi_nag</dc:creator>
    <dc:date>2026-02-19T13:28:17Z</dc:date>
    <item>
      <title>MLFlow - Not logging results of all epochs</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5059362#M1106</link>
      <description>&lt;P&gt;I am trying to use MLFlow to log the results of my model training to do hyperparameter tuning however it is only logging the last val_loss &amp;amp; loss value in the experiment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Running in a Python 3.11 notebook with&amp;nbsp;&lt;SPAN&gt;tensorflow: 2.18.0 mlflow: 3.8.1 pandas: 2.2.2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;with&lt;/SPAN&gt; &lt;SPAN&gt;mlflow&lt;/SPAN&gt;&lt;SPAN&gt;.start_run() &lt;/SPAN&gt;&lt;SPAN&gt;as&lt;/SPAN&gt; &lt;SPAN&gt;run&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;mlflow&lt;/SPAN&gt;&lt;SPAN&gt;.tensorflow.autolog()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;history&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;model&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;run_model&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;X_train&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;X_val&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;for&lt;/SPAN&gt; &lt;SPAN&gt;epoch&lt;/SPAN&gt;&lt;SPAN&gt;, (&lt;/SPAN&gt;&lt;SPAN&gt;tr&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;vl&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;enumerate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;zip&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;history&lt;/SPAN&gt;&lt;SPAN&gt;.history[&lt;/SPAN&gt;&lt;SPAN&gt;"loss"&lt;/SPAN&gt;&lt;SPAN&gt;], &lt;/SPAN&gt;&lt;SPAN&gt;history&lt;/SPAN&gt;&lt;SPAN&gt;.history[&lt;/SPAN&gt;&lt;SPAN&gt;"val_loss"&lt;/SPAN&gt;&lt;SPAN&gt;])&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;mlflow&lt;/SPAN&gt;&lt;SPAN&gt;.log_metric(&lt;/SPAN&gt;&lt;SPAN&gt;"loss"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;tr&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;step&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;epoch&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;mlflow&lt;/SPAN&gt;&lt;SPAN&gt;.log_metric(&lt;/SPAN&gt;&lt;SPAN&gt;"val_loss"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;vl&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;step&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;epoch&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then this is the only output in the experiment:&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 19 Feb 2026 09:37:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5059362#M1106</guid>
      <dc:creator>Zoe_Guest</dc:creator>
      <dc:date>2026-02-19T09:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: MLFlow - Not logging results of all epochs</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5062442#M1107</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1184147" data-lia-user-login="Zoe_Guest" class="lia-mention lia-mention-user"&gt;Zoe_Guest&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;Use different metric names for your manual logging (e.g., loss_manual, val_loss_manual) and keep steps strictly increasing.&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="python"&gt;with mlflow.start_run():
    # Either comment this out to avoid overlap:
    # mlflow.tensorflow.autolog()

    history, model = run_model(X_train, X_val)

    for epoch, (tr, vl) in enumerate(
        zip(history.history["loss"], history.history["val_loss"]), start=1
    ):
        mlflow.log_metric("loss_manual", tr, step=epoch)
        mlflow.log_metric("val_loss_manual", vl, step=epoch) &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please note,&amp;nbsp;MLflow stores metrics as (key, step) -&amp;gt; value. If you log the same key at the same step more than once, the last value overwrites prior ones. That’s why mixing autolog (which logs loss/val_loss per epoch) with your manual loop (logging the same keys and step numbers) leads to only one record per step and the Run details view shows just the latest overall value.&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 19 Feb 2026 13:28:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5062442#M1107</guid>
      <dc:creator>deborshi_nag</dc:creator>
      <dc:date>2026-02-19T13:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: MLFlow - Not logging results of all epochs</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5063095#M1108</link>
      <description>&lt;P&gt;Hi Thank you for the response however this did not work I still only have 1 value saved in the experiment.&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;with&lt;/SPAN&gt; &lt;SPAN&gt;mlflow&lt;/SPAN&gt;&lt;SPAN&gt;.start_run() &lt;/SPAN&gt;&lt;SPAN&gt;as&lt;/SPAN&gt; &lt;SPAN&gt;run&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;# mlflow.tensorflow.autolog()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;history&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;model&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;run_model&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;X_train&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;X_val&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;for&lt;/SPAN&gt; &lt;SPAN&gt;epoch&lt;/SPAN&gt;&lt;SPAN&gt;, (&lt;/SPAN&gt;&lt;SPAN&gt;tr&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;vl&lt;/SPAN&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;enumerate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;zip&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;history&lt;/SPAN&gt;&lt;SPAN&gt;.history[&lt;/SPAN&gt;&lt;SPAN&gt;"loss"&lt;/SPAN&gt;&lt;SPAN&gt;], &lt;/SPAN&gt;&lt;SPAN&gt;history&lt;/SPAN&gt;&lt;SPAN&gt;.history[&lt;/SPAN&gt;&lt;SPAN&gt;"val_loss"&lt;/SPAN&gt;&lt;SPAN&gt;])&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;print&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;epoch&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;tr&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;vl&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;mlflow&lt;/SPAN&gt;&lt;SPAN&gt;.log_metric(&lt;/SPAN&gt;&lt;SPAN&gt;"loss_manual"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;tr&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;step&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;epoch&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;mlflow&lt;/SPAN&gt;&lt;SPAN&gt;.log_metric(&lt;/SPAN&gt;&lt;SPAN&gt;"val_loss_manual"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;vl&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;step&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;epoch&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;This is the output of the print which shows different step values&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Feb 2026 14:17:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5063095#M1108</guid>
      <dc:creator>Zoe_Guest</dc:creator>
      <dc:date>2026-02-19T14:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: MLFlow - Not logging results of all epochs</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5108990#M1112</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1184147" data-lia-user-login="Zoe_Guest" class="lia-mention lia-mention-user"&gt;Zoe_Guest&lt;/a&gt;&amp;nbsp;the matrix grid in your screenshot shows the latest views only. You can use the following code to get the epoch level details and view on a graph.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import mlflow
from mlflow.tracking import MlflowClient
import pandas as pd
import matplotlib.pyplot as plt

# 1) Get the most recent run in your active experiment (or paste a run_id explicitly)
client = MlflowClient()
exp = mlflow.get_experiment_by_name("fabric-simple-epoch-logging")  # &amp;lt;-- use your experiment name
assert exp is not None, "Experiment not found. Check the name used in mlflow.set_experiment()."
runs = client.search_runs(exp.experiment_id, order_by=["attributes.start_time DESC"], max_results=1)
assert runs, "No runs found in this experiment."
run_id = runs[0].info.run_id
print("Using run:", run_id)

# 2) Fetch the full metric history (all steps/epochs)
loss_hist = client.get_metric_history(run_id, "loss_manual")
val_hist  = client.get_metric_history(run_id, "val_loss_manual")

# 3) Build a tidy dataframe
df = pd.DataFrame({
    "epoch": [m.step for m in loss_hist],
    "loss_manual": [m.value for m in loss_hist],
    "val_loss_manual": [m.value for m in val_hist],
}).sort_values("epoch")

display(df)

# 4) Plot in-notebook
plt.figure(figsize=(7,4))
plt.plot(df["epoch"], df["loss_manual"], marker="o", label="loss_manual")
plt.plot(df["epoch"], df["val_loss_manual"], marker="o", label="val_loss_manual")
plt.xlabel("Epoch")
plt.ylabel("MSE")
plt.title("Per-epoch metrics from MLflow")
plt.legend()
plt.grid(True)
plt.show()

# 5) Optional: log the table as an artifact so it’s visible on the run page
csv_path = "per_epoch_metrics.csv"
df.to_csv(csv_path, index=False)
mlflow.log_artifact(csv_path, artifact_path="metrics")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 14:50:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5108990#M1112</guid>
      <dc:creator>deborshi_nag</dc:creator>
      <dc:date>2026-02-20T14:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: MLFlow - Not logging results of all epochs</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5118892#M1116</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1184147" data-lia-user-login="Zoe_Guest" class="lia-mention lia-mention-user"&gt;Zoe_Guest&lt;/a&gt;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: SegoeUI; font-size: 11.25pt;"&gt;&lt;SPAN&gt;I would also take a moment to thank&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1445078" data-lia-user-login="deborshi_nag" class="lia-mention lia-mention-user"&gt;deborshi_nag&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;, for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.&lt;BR /&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: SegoeUI; font-size: 11.25pt; color: black;"&gt;&lt;SPAN&gt;I wanted 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;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Community Support Team.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2026 04:37:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5118892#M1116</guid>
      <dc:creator>v-hjannapu</dc:creator>
      <dc:date>2026-02-25T04:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: MLFlow - Not logging results of all epochs</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5124076#M1119</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1184147" data-lia-user-login="Zoe_Guest" class="lia-mention lia-mention-user"&gt;Zoe_Guest&lt;/a&gt;,&lt;BR /&gt;I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We are always here to support you.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Community Support Team.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2026 04:18:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5124076#M1119</guid>
      <dc:creator>v-hjannapu</dc:creator>
      <dc:date>2026-03-02T04:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: MLFlow - Not logging results of all epochs</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5128367#M1129</link>
      <description>&lt;P&gt;Thank you for your reply, that works apart from the last part.&lt;/P&gt;&lt;PRE&gt;mlflow.log_artifact(csv_path, artifact_path="metrics")&lt;/PRE&gt;&lt;P&gt;is giving the following error:&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;TypeError&lt;/SPAN&gt;&lt;SPAN&gt;: tridentml_artifacts_builder() got an unexpected keyword argument 'tracking_uri'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 13:50:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/MLFlow-Not-logging-results-of-all-epochs/m-p/5128367#M1129</guid>
      <dc:creator>Zoe_Guest</dc:creator>
      <dc:date>2026-03-09T13:50:31Z</dc:date>
    </item>
  </channel>
</rss>

