Skip to content

Commit 5611d1c

Browse files
AbeOmorLarry Franks
andauthored
Apply suggestions from code review
Co-authored-by: Larry Franks <[email protected]>
1 parent 9617817 commit 5611d1c

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

articles/machine-learning/how-to-setup-mlops-azureml.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -157,20 +157,20 @@ The Azure DevOps setup is successfully finished.
157157

158158
1. Open the Repos section and select **Import Repository**
159159

160-
![Screenshot of ADO import repo first time](./media/how-to-setup-mlops-azureml/import_repo_first_time.png)
160+
![Screenshot of ADO import repo first time.](./media/how-to-setup-mlops-azureml/import_repo_first_time.png)
161161

162162
1. Enter https://github.com/Azure/mlops-v2-ado-demo into the Clone URL field. Click import at the bottom of the page
163163

164-
![Screenshot of ADO import MLOps demo repo](./media/how-to-setup-mlops-azureml/import_repo_Git_template.png)
164+
![Screenshot of ADO import MLOps demo repo.](./media/how-to-setup-mlops-azureml/import_repo_Git_template.png)
165165

166166

167167
1. Open the Repos section. Click on the default repo name at the top of the screen and select Import Repository
168168

169-
![Screenshot of ADO import repo](./media/how-to-setup-mlops-azureml/ado-import-repo.png)
169+
![Screenshot of ADO import repo.](./media/how-to-setup-mlops-azureml/ado-import-repo.png)
170170

171171
1. Enter https://github.com/Azure/mlops-templates into the Clone URL field. Click import at the bottom of the page
172172

173-
![Screenshot of ADO import MLOps template repo](./media/how-to-setup-mlops-azureml/ado-import-mlops-templates.png)
173+
![Screenshot of ADO import MLOps template repo.](./media/how-to-setup-mlops-azureml/ado-import-mlops-templates.png)
174174

175175
> [!TIP]
176176
> Learn more about the MLOps v2 accelerator structure and the MLOps [template](https://github.com/Azure/mlops-v2/)
@@ -180,15 +180,15 @@ The Azure DevOps setup is successfully finished.
180180
1. Under the Repos section, click **Repositories**. Select the repository you created in **Step 6.** Select the **Security** tab
181181

182182
1. Under the User permissions section, select the **mlopsv2 Build Service** user. Change the permission **Contribute** permission to **Allow** and the **Create branch** permission to **Allow**.
183-
![Screenshot of ADO permissions](./media/how-to-setup-mlops-azureml/ado-permissions-repo.png)
183+
![Screenshot of ADO permissions.](./media/how-to-setup-mlops-azureml/ado-permissions-repo.png)
184184

185185
1. Open the **Pipelines** section in the left hand navigation pane and click on the 3 vertical dots next to the **Create Pipelines** button. Select **Manage Security**
186186

187-
![Screenshot of Pipeline security](./media/how-to-setup-mlops-azureml/ado-open-pipelinesSecurity.png)
187+
![Screenshot of Pipeline security.](./media/how-to-setup-mlops-azureml/ado-open-pipelinesSecurity.png)
188188

189189
1. Select the **mlopsv2 Build Service** account for your project under the Users section. Change the permission **Edit build pipeline** to **Allow**
190190

191-
![Screenshot of Add security](./media/how-to-setup-mlops-azureml/ado-add-pipelinesSecurity.png)
191+
![Screenshot of Add security.](./media/how-to-setup-mlops-azureml/ado-add-pipelinesSecurity.png)
192192

193193
> [!NOTE]
194194
> This finishes the prerequisite section and the deployment of the solution accelerator can happen accordingly.
@@ -198,12 +198,12 @@ The Azure DevOps setup is successfully finished.
198198
This step deploys the training pipeline to the Azure Machine Learning workspace created in the previous steps.
199199

200200
> [!TIP]
201-
> Make sure you understand the [Architectural Patterns](/azure/architecture/data-guide/technology-choices/machine-learning-operations-v2) of the solution accelerator before you checkout the MLOps v2 repo and deploy the infrastructure. In examples you will use the [classical ML project type](/azure/architecture/data-guide/technology-choices/machine-learning-operations-v2#classical-machine-learning-architecture).
201+
> Make sure you understand the [Architectural Patterns](/azure/architecture/data-guide/technology-choices/machine-learning-operations-v2) of the solution accelerator before you checkout the MLOps v2 repo and deploy the infrastructure. In examples you'll use the [classical ML project type](/azure/architecture/data-guide/technology-choices/machine-learning-operations-v2#classical-machine-learning-architecture).
202202
203203
### Run Azure infrastructure pipeline
204204
1. Go to the first repo you imported in the previous section, `mlops-v2-ado-demo`, select the **config-infra-dev.yml** file.
205205
206-
![Screenshot of Repo in ADO](./media/how-to-setup-mlops-azureml/ADO-repo.png)
206+
![Screenshot of Repo in ADO.](./media/how-to-setup-mlops-azureml/ADO-repo.png)
207207
208208
This config file uses the namespace and postfix values the names of the artifacts to ensure uniqueness. Update the following section in the config to your liking.
209209
@@ -213,33 +213,33 @@ This step deploys the training pipeline to the Azure Machine Learning workspace
213213
location: eastus
214214
```
215215
> [!NOTE]
216-
> If your are running a Deep Learning workload such as CV or NLP, you have to ensure your GPU compute is available in your deployment zone.
216+
> If your are running a Deep Learning workload such as CV or NLP, ensure your GPU compute is available in your deployment zone.
217217
218218
1. Click Commit and push code to get these values into the pipeline.
219219
220-
1. Please repeat this step for **config-infra-prod.yml** file.
220+
1. Repeat this step for **config-infra-prod.yml** file.
221221
222222
1. Go to Pipelines section
223223
224-
![Screenshot of ADO Pipelines](./media/how-to-setup-mlops-azureml/ADO-pipelines.png)
224+
![Screenshot of ADO Pipelines.](./media/how-to-setup-mlops-azureml/ADO-pipelines.png)
225225
226226
1. Select **New Pipeline**.
227227
228-
![Screenshot of ADO New Pipeline button for infra](./media/how-to-setup-mlops-azureml/ADO-new-pipeline.png)
228+
![Screenshot of ADO New Pipeline button for infra.](./media/how-to-setup-mlops-azureml/ADO-new-pipeline.png)
229229
230230
1. Select **Azure Repos Git**.
231231
232-
![Screenshot of ADO Where's your code](./media/how-to-setup-mlops-azureml/ado-wheresyourcode.png)
232+
![Screenshot of ADO Where's your code.](./media/how-to-setup-mlops-azureml/ado-wheresyourcode.png)
233233

234234
1. Select the repository that you cloned in from the previous section `mlops-v2-ado-demo`
235235

236236
1. Select **Existing Azure Pipeline YAML File**
237237

238-
![Screenshot of ADO Pipeline page on configure step](./media/how-to-setup-mlops-azureml/ADO-configure-pipelines.png)
238+
![Screenshot of ADO Pipeline page on configure step.](./media/how-to-setup-mlops-azureml/ADO-configure-pipelines.png)
239239

240240

241241
1. Select `main` as a branch and choose based on your deployment method your preferred yml path.
242-
- For a terraform scenario choose: `infrastructure/pipelines/tf-ado-deploy-infra.yml`, then select **Continue**.
242+
- For a terraform scenario, choose `infrastructure/pipelines/tf-ado-deploy-infra.yml`, then select **Continue**.
243243
- For a bicep scenario choose: `infrastructure/pipelines/bicep-ado-deploy-infra.yml`, then select **Continue**.
244244

245245
> [!CAUTION]

0 commit comments

Comments
 (0)