You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-use-batch-endpoint.md
+19-5Lines changed: 19 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -541,38 +541,52 @@ Use `output-path` to configure any folder in an Azure Machine Learning registere
541
541
542
542
# [Python](#tab/python)
543
543
544
-
Use `output_path` to configure any folder in an Azure Machine Learning registered datastore. The syntax for the `--output-path` is the same as `--input` when you're specifying a folder, that is, `azureml://datastores/<datastore-name>/paths/<path-on-datastore>/`. Use `output_file_name=<your-file-name>` to configure a new output file name.
544
+
Use `params_override` to configure any folder in an Azure Machine Learning registered data store. Only registered data stores are supported as output paths. In this example we will use the default data store:
545
+
546
+
```python
547
+
batch_ds = ml_client.datastores.get_default()
548
+
```
549
+
550
+
Once you identified the data store you want to use, configure the output as follows:
1. Navigate to the __Endpoints__ tab on the side menu.
569
+
562
570
1. Select the tab __Batch endpoints__.
571
+
563
572
1. Select the batch endpoint you just created.
573
+
564
574
1. Select __Create job__.
565
575
566
576
:::image type="content" source="./media/how-to-use-batch-endpoints-studio/create-batch-job.png" alt-text="Screenshot of the create job option to start batch scoring.":::
567
577
568
578
1. On __Deployment__, select the deployment you want to execute.
579
+
569
580
1. Select __Next__.
581
+
570
582
1. Check the option __Override deployment settings__.
571
583
572
584
:::image type="content" source="./media/how-to-use-batch-endpoints-studio/overwrite-setting.png" alt-text="Screenshot of the overwrite setting when starting a batch job.":::
573
585
574
586
1. You can now configure __Output file name__ and some extra properties of the deployment execution. Just this execution will be affected.
587
+
575
588
1. On __Select data source__, select the data input you want to use.
589
+
576
590
1. On __Configure output location__, check the option __Enable output configuration__.
577
591
578
592
:::image type="content" source="./media/how-to-use-batch-endpoints-studio/configure-output-location.png" alt-text="Screenshot of optionally configuring output location.":::
0 commit comments