Skip to content

Commit e843c4a

Browse files
committed
fix yaml
1 parent 7a9cc4a commit e843c4a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ Use the following steps to deploy an MLflow model with a custom scoring script.
597597
598598
__conda.yml__
599599
600-
```yml
600+
```yaml
601601
channels:
602602
- conda-forge
603603
dependencies:
@@ -624,7 +624,7 @@ Use the following steps to deploy an MLflow model with a custom scoring script.
624624
625625
# [Python (Azure ML SDK)](#tab/sdk)
626626
627-
```python
627+
```pythonS
628628
environment = Environment(
629629
conda_file="sklearn-diabetes/environment/conda.yml",
630630
image="mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04:latest",
@@ -656,7 +656,7 @@ Use the following steps to deploy an MLflow model with a custom scoring script.
656656
657657
Create a deployment configuration file:
658658
659-
```yml
659+
```yaml
660660
$schema: https://azuremlschemas.azureedge.net/latest/managedOnlineDeployment.schema.json
661661
name: sklearn-diabetes-custom
662662
endpoint_name: my-endpoint

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ So far, the endpoint is empty. There are no deployments on it. Let's create the
296296
297297
__blue-deployment.yml__
298298
299-
```yml
299+
```yaml
300300
$schema: https://azuremlschemas.azureedge.net/latest/managedOnlineDeployment.schema.json
301301
name: default
302302
endpoint_name: heart-classifier-edp
@@ -432,7 +432,7 @@ So far, the endpoint is empty. There are no deployments on it. Let's create the
432432
433433
__sample.yml__
434434
435-
```yml
435+
```yaml
436436
{
437437
"input_data": {
438438
"columns": [
@@ -562,7 +562,7 @@ Let's imagine that there is a new version of the model created by the developmen
562562
563563
__green-deployment.yml__
564564
565-
```yml
565+
```yaml
566566
$schema: https://azuremlschemas.azureedge.net/latest/managedOnlineDeployment.schema.json
567567
name: xgboost-model
568568
endpoint_name: heart-classifier-edp

0 commit comments

Comments
 (0)