Skip to content

Commit 48bded7

Browse files
Merge pull request #215645 from santiagxf/santiagxf/aml-batch-patch
Update how-to-deploy-model-custom-output.md
2 parents 937410d + a9b8825 commit 48bded7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ We need to create a scoring script that can read the input data provided by the
8080
3. Appends the predictions to a `pandas.DataFrame` along with the input data.
8181
4. Writes the data in a file named as the input file, but in `parquet` format.
8282

83-
__batch_driver.py__
83+
__batch_driver_parquet.py__
8484

8585
```python
8686
import os
@@ -113,7 +113,7 @@ def run(mini_batch):
113113
return mini_batch
114114
```
115115

116-
Remarks:
116+
__Remarks:__
117117
* Notice how the environment variable `AZUREML_BI_OUTPUT_PATH` is used to get access to the output path of the deployment job.
118118
* The `init()` function is populating a global variable called `output_path` that can be used later to know where to write.
119119
* The `run` method returns a list of the processed files. It is required for the `run` function to return a `list` or a `pandas.DataFrame` object.

0 commit comments

Comments
 (0)