Skip to content

Commit 46ac4f9

Browse files
committed
Added xgboost explicitly
1 parent 6d3a266 commit 46ac4f9

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
@@ -421,7 +421,11 @@ model_output.download('.', show_progress=True)
421421

422422
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.
423423

424-
For local processing, you may need to install relevant packages, such as Pandas, Pickle, the AzureML SDK, and so forth.
424+
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.
425+
426+
```bash
427+
!pip install xgboost==0.90
428+
```
425429

426430
```python
427431
import pandas as pd

0 commit comments

Comments
 (0)