Skip to content

Commit f212629

Browse files
authored
Merge pull request #113444 from lobrien/1698340-followup
Acrolinx tweaks to AutoML Pipelines article
2 parents 9415a79 + 0e90840 commit f212629

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/machine-learning/how-to-use-automlstep-in-pipelines.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ metrics_output_port.download('.', show_progress=True)
419419
model_output_port.download('.', show_progress=True)
420420
```
421421

422-
Downloaded files are written to the sub-directory `azureml/{run.id}/`. The metrics file is JSON-formatted and can be converted into a Pandas dataframe for examination.
422+
Downloaded files are written to the subdirectory `azureml/{run.id}/`. The metrics file is JSON-formatted and can be converted into a Pandas dataframe for examination.
423423

424424
For local processing, you may need to install relevant packages, such as Pandas, Pickle, the AzureML SDK, and so forth. For this example, it's likely that the best model found by automated ML will depend on XGBoost.
425425

@@ -441,7 +441,7 @@ df = pd.DataFrame(deserialized_metrics_output)
441441
df
442442
```
443443

444-
The code snippet above shows the metrics file being loaded from it's location on the Azure datastore. You can also load it from the downloaded file, as shown in the comment. Once you've deserialized it and converted it to a Pandas DataFrame, you can see detailed metrics for each of the iterations of the automated ML step.
444+
The code snippet above shows the metrics file being loaded from its location on the Azure datastore. You can also load it from the downloaded file, as shown in the comment. Once you've deserialized it and converted it to a Pandas DataFrame, you can see detailed metrics for each of the iterations of the automated ML step.
445445

446446
The model file can be deserialized into a `Model` object that you can use for inferencing, further metrics analysis, and so forth.
447447

@@ -463,7 +463,7 @@ For more information on loading and working with existing models, see [Use an ex
463463

464464
If you've been following along with the article, you'll have an instantiated `run` object. But you can also retrieve completed `Run` objects from the `Workspace` by way of an `Experiment` object.
465465

466-
The workspace contains a complete record of all your experiments and runs. You can either use the portal to find and download the outputs of experiments or use code. To access the records from a historic run, use Azure Machine Learning to find the ID of the run in which you are interested. With that, you can choose the specific `run` by way of the `Workspace` and `Experiment`.
466+
The workspace contains a complete record of all your experiments and runs. You can either use the portal to find and download the outputs of experiments or use code. To access the records from a historic run, use Azure Machine Learning to find the ID of the run in which you are interested. With that ID, you can choose the specific `run` by way of the `Workspace` and `Experiment`.
467467

468468
```python
469469
# Retrieved from Azure Machine Learning web UI

0 commit comments

Comments
 (0)