Skip to content

Commit 26c7902

Browse files
Merge pull request #245717 from santiagxf/santiagxf-patch-1
Update how-to-track-experiments-mlflow.md
2 parents 215d815 + 5d6e84a commit 26c7902

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/machine-learning/how-to-track-experiments-mlflow.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -248,13 +248,13 @@ When filtering runs by status, notice that MLflow uses a different convention to
248248

249249
| Azure Machine Learning Job status | MLFlow's `attributes.status` | Meaning |
250250
| :-: | :-: | :- |
251-
| Not started | `SCHEDULED` | The job/run was just registered in Azure Machine Learning but it has processed it yet. |
252-
| Queue | `SCHEDULED` | The job/run is scheduled for running, but it hasn't started yet. |
253-
| Preparing | `SCHEDULED` | The job/run has not started yet, but a compute has been allocated for the execution and it is on building state. |
254-
| Running | `RUNNING` | The job/run is currently under active execution. |
255-
| Completed | `FINISHED` | The job/run has completed without errors. |
256-
| Failed | `FAILED` | The job/run has completed with errors. |
257-
| Canceled | `KILLED` | The job/run has been canceled or killed by the user/system. |
251+
| Not started | `Scheduled` | The job/run was received by Azure Machine Learning. |
252+
| Queue | `Scheduled` | The job/run is scheduled for running, but it hasn't started yet. |
253+
| Preparing | `Scheduled` | The job/run has not started yet, but a compute has been allocated for its execution and it's preparing the environment and its inputs. |
254+
| Running | `Running` | The job/run is currently under active execution. |
255+
| Completed | `Finished` | The job/run has been completed without errors. |
256+
| Failed | `Failed` | The job/run has been completed with errors. |
257+
| Canceled | `Killed` | The job/run has been canceled by the user or terminated by the system. |
258258

259259
Example:
260260

@@ -305,7 +305,7 @@ client.get_metric_history("1234-5678-90AB-CDEFG", "log_loss")
305305

306306
### Getting artifacts from a run
307307

308-
Any artifact logged by a run can be queried by MLflow. Artifacts can't be access using the run object itself and the MLflow client should be used instead:
308+
Any artifact logged by a run can be queried by MLflow. Artifacts can't be accessed using the run object itself and the MLflow client should be used instead:
309309

310310
```python
311311
client = mlflow.tracking.MlflowClient()

0 commit comments

Comments
 (0)