Skip to content

Commit 0b311a1

Browse files
committed
fix broken links
1 parent 0e06a8d commit 0b311a1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

articles/machine-learning/concept-endpoints-batch.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ A deployment is a set of resources and computes required to implement the functi
3838

3939
Two types of deployments are possible in Azure Machine Learning batch endpoints:
4040

41-
* [Model deployment](#model-deployments)
41+
* [Model deployment](#model-deployment)
4242
* [Pipeline component deployment](#pipeline-component-deployment)
4343

4444
### Model deployment
4545

4646
Model deployment enables the operationalization of model inferencing at scale, allowing you to process large amounts of data in a low latency and asynchronous way. Azure Machine Learning automatically instruments scalability by providing parallelization of the inferencing processes across multiple nodes in a compute cluster.
4747

48-
Use __Model deployments__ when:
48+
Use __Model deployment__ when:
4949

5050
> [!div class="checklist"]
5151
> * You have expensive models that require a longer time to run inference.
@@ -69,7 +69,7 @@ To create a model deployment in a batch endpoint, you need to specify the follow
6969

7070
Pipeline component deployment enables the operationalization of entire processing graphs (or pipelines) to perform batch inference in a low latency and asynchronous way.
7171

72-
Use __Pipeline component deployments__ when:
72+
Use __Pipeline component deployment__ when:
7373

7474
> [!div class="checklist"]
7575
> * You need to operationalize complete compute graphs that can be decomposed into multiple steps.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ The following table summarizes the inputs and outputs for batch deployments:
276276

277277
| Deployment type | Input's number | Supported input's types | Output's number | Supported output's types |
278278
|--|--|--|--|--|
279-
| [Model deployment](concept-endpoints-batch.md#model-deployments) | 1 | [Data inputs](#data-inputs) | 1 | [Data outputs](#data-outputs) |
279+
| [Model deployment](concept-endpoints-batch.md#model-deployment) | 1 | [Data inputs](#data-inputs) | 1 | [Data outputs](#data-outputs) |
280280
| [Pipeline component deployment](concept-endpoints-batch.md#pipeline-component-deployment) | [0..N] | [Data inputs](#data-inputs) and [literal inputs](#literal-inputs) | [0..N] | [Data outputs](#data-outputs) |
281281

282282
> [!TIP]

articles/machine-learning/reference-yaml-deployment-batch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The source JSON schema can be found at https://azuremlschemas.azureedge.net/late
3333
| `description` | string | Description of the deployment. | | |
3434
| `tags` | object | Dictionary of tags for the deployment. | | |
3535
| `endpoint_name` | string | **Required.** Name of the endpoint to create the deployment under. | | |
36-
| `type` | string | **Required.** Type of the bath deployment. Use `model` for [model deployments](concept-endpoints-batch.md#model-deployments) and `pipeline` for [pipeline component deployments](concept-endpoints-batch.md#pipeline-component-deployment). <br><br>**New in version 1.7**. | `model`, `pipeline` | `model` |
36+
| `type` | string | **Required.** Type of the bath deployment. Use `model` for [model deployments](concept-endpoints-batch.md#model-deployment) and `pipeline` for [pipeline component deployments](concept-endpoints-batch.md#pipeline-component-deployment). <br><br>**New in version 1.7**. | `model`, `pipeline` | `model` |
3737
| `settings` | object | Configuration of the deployment. See specific YAML reference for model and pipeline component for allowed values. <br><br>**New in version 1.7**. | | |
3838

3939
> [!TIP]

0 commit comments

Comments
 (0)