Skip to content

Commit c012ade

Browse files
authored
Address all comments
1 parent 0480665 commit c012ade

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,10 @@ Before you can set up an MLOps project with Machine Learning, you need to set up
144144
![GitHub Secrets String 1](./media/how-to-setup-mlops-azureml/gh-secrets-string.png)
145145

146146
1. Add each of the following additional GitHub secrets using the corresponding values from the service principal output as the content of the secret:
147-
> **ARM_CLIENT_ID**
148-
> **ARM_CLIENT_SECRET**
149-
> **ARM_SUBSCRIPTION_ID**
150-
> **ARM_TENANT_ID**
147+
- **ARM_CLIENT_ID**
148+
- **ARM_CLIENT_SECRET**
149+
- **ARM_SUBSCRIPTION_ID**
150+
- **ARM_TENANT_ID**
151151

152152
![GitHub Secrets String 2](./media/how-to-setup-mlops-azureml/gh-secrets-string2.png)
153153

@@ -209,24 +209,24 @@ This training pipeline contains the following steps:
209209

210210
**Prepare Data**
211211
- This component takes multiple taxi datasets (yellow and green) and merges/filters the data, and prepare the train/val and evaluation datasets.
212-
- Input: Local data under `./data/` (multiple .csv files)
213-
- Output: Single prepared dataset (.csv) and train/val/test datasets.
212+
- **Input:** Local data under `./data/` (multiple .csv files).
213+
- **Output:** Single prepared dataset (.csv) and train/val/test datasets.
214214

215215
**Train Model**
216216
- This component trains a Linear Regressor with the training set.
217-
- Input: Training dataset
218-
- Output: Trained model (pickle format)
217+
- **Input:** Training dataset.
218+
- **Output:** Trained model (pickle format).
219219

220220
**Evaluate Model**
221221
- This component uses the trained model to predict taxi fares on the test set.
222-
- Input: ML model and Test dataset
223-
- Output: Performance of model and a deploy flag whether to deploy or not.
222+
- **Input:** ML model and Test dataset.
223+
- **Output:** Performance of model and a deploy flag whether to deploy or not.
224224
- This component compares the performance of the model with all previous deployed models on the new test dataset and decides whether to promote or not model into production. Promoting model into production happens by registering the model in AML workspace.
225225

226226
**Register Model**
227227
- This component scores the model based on how accurate the predictions are in the test set.
228-
- Input: Trained model and the deploy flag.
229-
- Output: Registered model in Machine Learning.
228+
- **Input:** Trained model and the deploy flag.
229+
- **Output:** Registered model in Machine Learning.
230230

231231
## Deploying the model training pipeline
232232

0 commit comments

Comments
 (0)