<?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 What does it mean if an MLflow run is &amp;quot;UNFINISHED?&amp;quot; in Machine Learning</title>
    <link>https://community.databricks.com/t5/machine-learning/what-does-it-mean-if-an-mlflow-run-is-quot-unfinished-quot/m-p/15258#M814</link>
    <description>&lt;P&gt;The run has a model logged to it already, but the "Status" field says "UNFINISHED."&lt;/P&gt;</description>
    <pubDate>Wed, 15 Sep 2021 23:43:38 GMT</pubDate>
    <dc:creator>Joseph_B</dc:creator>
    <dc:date>2021-09-15T23:43:38Z</dc:date>
    <item>
      <title>What does it mean if an MLflow run is "UNFINISHED?"</title>
      <link>https://community.databricks.com/t5/machine-learning/what-does-it-mean-if-an-mlflow-run-is-quot-unfinished-quot/m-p/15258#M814</link>
      <description>&lt;P&gt;The run has a model logged to it already, but the "Status" field says "UNFINISHED."&lt;/P&gt;</description>
      <pubDate>Wed, 15 Sep 2021 23:43:38 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/what-does-it-mean-if-an-mlflow-run-is-quot-unfinished-quot/m-p/15258#M814</guid>
      <dc:creator>Joseph_B</dc:creator>
      <dc:date>2021-09-15T23:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: What does it mean if an MLflow run is "UNFINISHED?"</title>
      <link>https://community.databricks.com/t5/machine-learning/what-does-it-mean-if-an-mlflow-run-is-quot-unfinished-quot/m-p/15259#M815</link>
      <description>&lt;P&gt;The MLflow run was probably created either (a) via notebook autologging or (b) via a call to `mlflow.start_run()`.  With (a), when the notebook first logs something to MLflow, it starts a run.&amp;nbsp;But if the notebook is still active and attached to a cluster, and nothing has ended the run, then the run is still active ("UNFINISHED").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can end the run with `mlflow.end_run()`.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, you can wrap your model fitting code in a "with" statement:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;with mlflow.start_run():
  # my ML code&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This "with" syntax will automatically end the run once the ML code finishes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Sep 2021 23:45:45 GMT</pubDate>
      <guid>https://community.databricks.com/t5/machine-learning/what-does-it-mean-if-an-mlflow-run-is-quot-unfinished-quot/m-p/15259#M815</guid>
      <dc:creator>Joseph_B</dc:creator>
      <dc:date>2021-09-15T23:45:45Z</dc:date>
    </item>
  </channel>
</rss>

