Skip to content

Commit dbd8ca0

Browse files
Acrolinx fixes
1 parent 078e91c commit dbd8ca0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/how-to-use-mlflow-cli-runs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Azure Machine Learning any training job in what MLflow calls a run. Use runs to
6262

6363
When working interactively, MLflow starts tracking your training routine as soon as you try to log information that requires an active run. For instance, when you log a metric, log a parameter, or when you start a training cycle when Mlflow's autologging functionality is enabled. However, it is usually helpful to start the run explicitly, specially if you want to capture the total time of your experiment in the field __Duration__. To start the run explicitly, use `mlflow.start_run()`.
6464

65-
Regardless if you started the run manually or not, you will eventually need to stop the run to inform MLflow that your experiment run has finished and marks its status as __Completed__. To do that, all `mlflow.end_run()`. We strongly recommend to start runs manually so you don't forget to end them when working on notebooks.
65+
Regardless if you started the run manually or not, you will eventually need to stop the run to inform MLflow that your experiment run has finished and marks its status as __Completed__. To do that, all `mlflow.end_run()`. We strongly recommend starting runs manually so you don't forget to end them when working on notebooks.
6666

6767
```python
6868
mlflow.start_run()
@@ -104,7 +104,7 @@ Use MLflow SDK to track any metric, parameter, artifacts, or models. For detaile
104104

105105
### Ensure your job's environment has MLflow installed
106106

107-
All Azure Machine Learning environment already have MLflow installed for you, so no action is required if you are using a curated environment. If you want to use a custom environment:
107+
All Azure Machine Learning environments already have MLflow installed for you, so no action is required if you are using a curated environment. If you want to use a custom environment:
108108

109109
1. Create a `conda.yml` file with the dependencies you need:
110110

0 commit comments

Comments
 (0)