Skip to content

Commit 52320a9

Browse files
committed
Added pip install above load model code.
1 parent 9b8c935 commit 52320a9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,11 @@ df = pd.DataFrame(deserialized_metrics_output)
440440

441441
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.
442442

443-
The model file can be deserialized into a `Model` object that you can use for inferencing, further metrics analysis, and so forth.
443+
The model file can be deserialized into a `Model` object that you can use for inferencing, further metrics analysis, and so forth. To load a `Model` locally, you'll need to have installed the Azure ML SDK.
444+
445+
```azurepowershell
446+
pip install azureml-sdk[automl,explain]
447+
```
444448

445449
```python
446450
import pickle

0 commit comments

Comments
 (0)