File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
articles/machine-learning/batch-inference Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ We need to create a scoring script that can read the input data provided by the
80803 . Appends the predictions to a ` pandas.DataFrame ` along with the input data.
81814 . 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
8686import 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.
You can’t perform that action at this time.
0 commit comments