Skip to content

Commit f3b00e3

Browse files
committed
fixes
1 parent 736afbe commit f3b00e3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/machine-learning/how-to-deploy-mlflow-models-online-endpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ The workspace is the top-level resource for Azure Machine Learning, providing a
9292

9393
# [Studio](#tab/studio)
9494

95-
Navigate to [Azure Machine Learning Studio](https://ml.azure.com).
95+
Navigate to [Azure Machine Learning studio](https://ml.azure.com).
9696

9797
---
9898

articles/machine-learning/how-to-deploy-mlflow-models-online-progressive.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ So far, the endpoint is empty. There are no deployments on it. Let's create the
281281
blue_deployment_name = "default"
282282
```
283283
284-
Configure the hardware requirements of you deployment:
284+
Configure the hardware requirements of your deployment:
285285
286286
```python
287287
blue_deployment = ManagedOnlineDeployment(
@@ -299,7 +299,7 @@ So far, the endpoint is empty. There are no deployments on it. Let's create the
299299
blue_deployment_name = "default"
300300
```
301301
302-
To configure the hardware requirements of you deployment, you need to create a JSON file with the desired configuration:
302+
To configure the hardware requirements of your deployment, you need to create a JSON file with the desired configuration:
303303
304304
```python
305305
deploy_config = {
@@ -524,7 +524,7 @@ Let's imagine that there is a new version of the model created by the developmen
524524
green_deployment_name = f"xgboost-model-{version}"
525525
```
526526
527-
Configure the hardware requirements of you deployment:
527+
Configure the hardware requirements of your deployment:
528528
529529
```python
530530
green_deployment = ManagedOnlineDeployment(
@@ -542,7 +542,7 @@ Let's imagine that there is a new version of the model created by the developmen
542542
green_deployment_name = f"xgboost-model-{version}"
543543
```
544544
545-
To configure the hardware requirements of you deployment, you need to create a JSON file with the desired configuration:
545+
To configure the hardware requirements of your deployment, you need to create a JSON file with the desired configuration:
546546
547547
```python
548548
deploy_config = {

0 commit comments

Comments
 (0)