You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-track-experiments-mlflow.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -248,13 +248,13 @@ When filtering runs by status, notice that MLflow uses a different convention to
248
248
249
249
| Azure Machine Learning Job status | MLFlow's `attributes.status` | Meaning |
250
250
| :-: | :-: | :-|
251
-
| Not started |`SCHEDULED`| The job/run was just registered inAzure 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 forthe execution and itis 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 orkilled 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 forits 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 orterminated by the system. |
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:
0 commit comments