Skip to content

Commit f90d6d9

Browse files
authored
Merge pull request #106637 from Blackmist/freshness
freshness
2 parents 2985fc3 + 5c783f0 commit f90d6d9

12 files changed

+38
-38
lines changed

articles/machine-learning/concept-train-model-git-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.subservice: core
88
ms.topic: conceptual
99
ms.author: jordane
1010
author: jpe316
11-
ms.date: 10/11/2019
11+
ms.date: 03/05/2020
1212
---
1313
# Git integration for Azure Machine Learning
1414

articles/machine-learning/how-to-create-workspace-template.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.subservice: core
88
ms.topic: conceptual
99
ms.author: larryfr
1010
author: Blackmist
11-
ms.date: 11/04/2019
11+
ms.date: 03/05/2020
1212
ms.custom: seoapril2019
1313

1414
# Customer intent: As a DevOps person, I need to automate or customize the creation of Azure Machine Learning by using templates.
@@ -106,51 +106,51 @@ The following example template demonstrates how to create a workspace with three
106106
"description": "Specifies the location for all resources."
107107
}
108108
},
109-
"sku":{
110-
"type": "string",
111-
"defaultValue": "basic",
109+
"sku":{
110+
"type": "string",
111+
"defaultValue": "basic",
112112
"allowedValues": [
113113
"basic",
114114
"enterprise"
115115
],
116116
"metadata": {
117117
"description": "Specifies the sku, also referred to as 'edition' of the Azure Machine Learning workspace."
118118
}
119-
},
120-
"hbi_workspace":{
121-
"type": "string",
122-
"defaultValue": "false",
119+
},
120+
"hbi_workspace":{
121+
"type": "string",
122+
"defaultValue": "false",
123123
"allowedValues": [
124124
"false",
125125
"true"
126126
],
127127
"metadata": {
128128
"description": "Specifies that the Azure Machine Learning workspace holds highly confidential data."
129129
}
130-
},
131-
"encryption_status":{
132-
"type": "string",
133-
"defaultValue": "Disabled",
130+
},
131+
"encryption_status":{
132+
"type": "string",
133+
"defaultValue": "Disabled",
134134
"allowedValues": [
135135
"Enabled",
136136
"Disabled"
137137
],
138138
"metadata": {
139139
"description": "Specifies if the Azure Machine Learning workspace should be encrypted with the customer managed key."
140140
}
141-
},
142-
"cmk_keyvault":{
143-
"type": "string",
144-
"metadata": {
141+
},
142+
"cmk_keyvault":{
143+
"type": "string",
144+
"metadata": {
145145
"description": "Specifies the customer managed keyvault Resource Manager ID."
146146
}
147-
},
148-
"resource_cmk_uri":{
149-
"type": "string",
150-
"metadata": {
147+
},
148+
"resource_cmk_uri":{
149+
"type": "string",
150+
"metadata": {
151151
"description": "Specifies the customer managed keyvault key uri."
152152
}
153-
}
153+
}
154154
},
155155
"variables": {
156156
"storageAccountName": "[concat('sa',uniqueString(resourceGroup().id))]",
@@ -235,24 +235,24 @@ The following example template demonstrates how to create a workspace with three
235235
"identity": {
236236
"type": "systemAssigned"
237237
},
238-
"sku": {
238+
"sku": {
239239
"tier": "[parameters('sku')]",
240240
"name": "[parameters('sku')]"
241241
},
242-
"properties": {
242+
"properties": {
243243
"friendlyName": "[parameters('workspaceName')]",
244244
"keyVault": "[resourceId('Microsoft.KeyVault/vaults',variables('keyVaultName'))]",
245245
"applicationInsights": "[resourceId('Microsoft.Insights/components',variables('applicationInsightsName'))]",
246246
"containerRegistry": "[resourceId('Microsoft.ContainerRegistry/registries',variables('containerRegistryName'))]",
247247
"storageAccount": "[resourceId('Microsoft.Storage/storageAccounts/',variables('storageAccountName'))]",
248-
"encryption": {
248+
"encryption": {
249249
"status": "[parameters('encryption_status')]",
250250
"keyVaultProperties": {
251251
"keyVaultArmId": "[parameters('cmk_keyvault')]",
252252
"keyIdentifier": "[parameters('resource_cmk_uri')]"
253253
}
254254
},
255-
"hbi_workspace": "[parameters('hbi_workspace')]"
255+
"hbi_workspace": "[parameters('hbi_workspace')]"
256256
}
257257
}
258258
]

articles/machine-learning/how-to-deploy-fpga-web-service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.topic: conceptual
1010
ms.reviewer: larryfr
1111
ms.author: jordane
1212
author: jpe316
13-
ms.date: 10/25/2019
13+
ms.date: 03/05/2020
1414
ms.custom: seodec18
1515
---
1616

@@ -321,7 +321,7 @@ To deploy your model as a high-scale production web service, use Azure Kubernete
321321
```python
322322
from azureml.core.compute import AksCompute, ComputeTarget
323323
324-
# Specify the Standard_PB6s Azure VM and location. Values for location may be "eastus", "southeastasia", "westeurope", or "westus2. If no value is specified, the default is "eastus".
324+
# Specify the Standard_PB6s Azure VM and location. Values for location may be "eastus", "southeastasia", "westeurope", or "westus2". If no value is specified, the default is "eastus".
325325
prov_config = AksCompute.provisioning_configuration(vm_size = "Standard_PB6s",
326326
agent_count = 1,
327327
location = "eastus")

articles/machine-learning/how-to-deploy-inferencing-gpus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: conceptual
99
ms.author: vaidyas
1010
author: csteegz
1111
ms.reviewer: larryfr
12-
ms.date: 10/25/2019
12+
ms.date: 03/05/2020
1313
---
1414

1515
# Deploy a deep learning model for inference with GPU

articles/machine-learning/how-to-deploy-local-container-notebook-vm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: conceptual
99
ms.author: mnark
1010
author: MrudulaN
1111
ms.reviewer: larryfr
12-
ms.date: 10/25/2019
12+
ms.date: 03/05/2020
1313
---
1414

1515
# Deploy a model to Azure Machine Learning compute instances

articles/machine-learning/how-to-manage-quotas.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.topic: conceptual
1010
ms.reviewer: jmartens
1111
author: nishankgu
1212
ms.author: nigup
13-
ms.date: 11/04/2019
13+
ms.date: 03/05/2020
1414
---
1515

1616
# Manage and request quotas for Azure resources
@@ -34,7 +34,7 @@ As you design and scale your Azure Machine Learning resources for production wor
3434

3535
Here is a breakdown of the quota limits by various resource types within your Azure subscription.
3636

37-
> [!Important]
37+
> [!IMPORTANT]
3838
> Limits are subject to change. The latest can always be found at the service-level quota [document](https://docs.microsoft.com/azure/azure-resource-manager/management/azure-subscription-service-limits/) for all of Azure.
3939
4040
### Virtual machines

articles/machine-learning/how-to-manage-workspace-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: conceptual
99

1010
ms.author: larryfr
1111
author: Blackmist
12-
ms.date: 11/05/2019
12+
ms.date: 03/05/2020
1313
---
1414

1515
# Create a workspace for Azure Machine Learning with Azure CLI

articles/machine-learning/how-to-troubleshoot-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: conceptual
99
author: clauren42
1010
ms.author: clauren
1111
ms.reviewer: jmartens
12-
ms.date: 10/25/2019
12+
ms.date: 03/05/2020
1313
ms.custom: seodec18
1414
---
1515

articles/machine-learning/how-to-use-event-grid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: conceptual
99
ms.author: shipatel
1010
author: shivp950
1111
ms.reviewer: larryfr
12-
ms.date: 11/04/2019
12+
ms.date: 03/05/2020
1313
---
1414

1515

230 KB
Loading

0 commit comments

Comments
 (0)