Skip to content

Commit b0f42d3

Browse files
committed
edits
1 parent 58adc0f commit b0f42d3

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/machine-learning/how-to-access-data-batch-endpoints-jobs.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ms.custom:
2222

2323
Batch endpoints enable you to perform long batch operations over large amounts of data. The data can be located in different places, such as across disperse regions. Certain types of batch endpoints can also receive literal parameters as inputs.
2424

25-
This article describes how to specify parameter inputs for batch endpoints and create deployment jobs. The process supports working with different types of data. For some examples, see [Understand inputs and outputs](how-to-access-data-batch-endpoints-jobs.md#understand-inputs-and-outputs).
25+
This article describes how to specify parameter inputs for batch endpoints and create deployment jobs. The process supports working with different types of data. For some examples, see [Understand inputs and outputs](#understand-inputs-and-outputs).
2626

2727
## Prerequisites
2828

@@ -89,7 +89,7 @@ To successfully invoke a batch endpoint and create jobs, ensure you complete the
8989
9090
## Create jobs basics
9191
92-
To create a job from a batch endpoint, you invoke the endpoint. Invocation can be done by using the Azure CLI, the Azure Machine Learning SDK for Python, or a REST API call. The following examples show the basics of invocation for a batch endpoint that receives a single input data folder for processing. For examples with different inputs and outputs, see [Understand inputs and outputs](how-to-access-data-batch-endpoints-jobs.md#understand-inputs-and-outputs).
92+
To create a job from a batch endpoint, you invoke the endpoint. Invocation can be done by using the Azure CLI, the Azure Machine Learning SDK for Python, or a REST API call. The following examples show the basics of invocation for a batch endpoint that receives a single input data folder for processing. For examples with different inputs and outputs, see [Understand inputs and outputs](#understand-inputs-and-outputs).
9393
9494
# [Azure CLI](#tab/cli)
9595
@@ -704,8 +704,8 @@ To learn more about extra required configuration for reading data from storage a
704704

705705
__Body__
706706

707-
```json
708-
{
707+
```json
708+
{
709709
"properties": {
710710
"InputData": {
711711
"heart_dataset": {
@@ -714,15 +714,15 @@ To learn more about extra required configuration for reading data from storage a
714714
}
715715
}
716716
}
717-
}
718-
```
717+
}
718+
```
719719

720-
If your data is a file, change the input type to `JobInputType`:
720+
If your data is a file, change the input type to `JobInputType`:
721721

722-
__Body__
722+
__Body__
723723

724-
```json
725-
{
724+
```json
725+
{
726726
"properties": {
727727
"InputData": {
728728
"heart_dataset": {
@@ -731,10 +731,10 @@ To learn more about extra required configuration for reading data from storage a
731731
}
732732
}
733733
}
734-
}
735-
```
734+
}
735+
```
736736

737-
---
737+
---
738738

739739
1. Run the endpoint:
740740

0 commit comments

Comments
 (0)