Skip to content

Commit 3083573

Browse files
Merge pull request #239416 from santiagxf/santiagxf/azureml-batch-custom
Update how-to-deploy-model-custom-output.md
2 parents 2dd713d + 08ac33e commit 3083573

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

articles/machine-learning/how-to-deploy-model-custom-output.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,12 @@ This example shows how you can deploy a model to perform batch inference and cus
3333

3434
The model has been trained using an `XGBBoost` classifier and all the required preprocessing has been packaged as a `scikit-learn` pipeline, making this model an end-to-end pipeline that goes from raw data to predictions.
3535

36-
The information in this article is based on code samples contained in the [azureml-examples](https://github.com/azure/azureml-examples) repository. To run the commands locally without having to copy/paste YAML and other files, clone the repo and then change directories to the `cli/endpoints/batch/deploy-models/custom-outputs-parquet` if you are using the Azure CLI or `sdk/python/endpoints/batch/deploy-models/custom-outputs-parquet` if you are using our SDK for Python.
36+
[!INCLUDE [machine-learning-batch-clone](../../includes/machine-learning/azureml-batch-clone-samples.md)]
37+
38+
The files for this example are in:
3739

3840
```azurecli
39-
git clone https://github.com/Azure/azureml-examples --depth 1
40-
cd azureml-examples/cli/endpoints/batch/deploy-models/custom-outputs-parquet
41+
cd endpoints/batch/deploy-models/custom-outputs-parquet
4142
```
4243

4344
### Follow along in Jupyter Notebooks
@@ -76,7 +77,7 @@ We need to create a scoring script that can read the input data provided by the
7677

7778
__code/batch_driver.py__
7879

79-
:::code language="python" source="~/azureml-examples-batch-pup/cli/endpoints/batch/deploy-models/custom-outputs-parquet/code/batch_driver.py" :::
80+
:::code language="python" source="~/azureml-examples-batch-pup/cli/endpoints/batch/deploy-models/custom-outputs-parquet/code/batch_driver.py" highlight="16,31-33" :::
8081

8182
__Remarks:__
8283
* Notice how the environment variable `AZUREML_BI_OUTPUT_PATH` is used to get access to the output path of the deployment job.

0 commit comments

Comments
 (0)