Skip to content

Commit f3f193f

Browse files
authored
Merge pull request #106300 from vmagelo/inception-fix
Fix to results download code.
2 parents 096b940 + 486706d commit f3f193f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/tutorial-pipeline-batch-scoring-classification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In this tutorial, you complete the following tasks:
3131
> * Build, run, and publish a pipeline
3232
> * Enable a REST endpoint for the pipeline
3333
34-
If you dont have an Azure subscription, create a free account before you begin. Try the [free or paid version of Azure Machine Learning](https://aka.ms/AMLFree) today.
34+
If you don't have an Azure subscription, create a free account before you begin. Try the [free or paid version of Azure Machine Learning](https://aka.ms/AMLFree) today.
3535

3636
## Prerequisites
3737

@@ -346,7 +346,7 @@ import pandas as pd
346346

347347
batch_run = next(pipeline_run.get_children())
348348
batch_output = batch_run.get_output_data("scores")
349-
batch_output.download(local_path="inception_result")
349+
batch_output.download(local_path="inception_results")
350350

351351
for root, dirs, files in os.walk("inception_results"):
352352
for file in files:

0 commit comments

Comments
 (0)