Skip to content

Commit e433ca8

Browse files
authored
Update getting_started.md
1 parent f930580 commit e433ca8

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

docs/getting_started.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -102,40 +102,41 @@ and checkout a published training pipeline in the **mlops-AML-WS** workspace in
102102
![training pipeline](./images/training-pipeline.png)
103103

104104

105-
Great, you now have the build pipeline setup, you can either manually trigger it or it gets automatically triggered everytime there is a change in the master branch. The pipeline performs linitnig, unit testing, builds and publishes an **ML Training Pipeline** in an **ML Workspace**
105+
Great, you now have the build pipeline setup, you can either manually trigger it or it gets automatically triggered everytime there is a change in the master branch. The pipeline performs linting, unit testing, builds and publishes an **ML Training Pipeline** in an **ML Workspace**
106106

107-
### 6. Train the Model
107+
### 7. Train the Model
108108

109109
The next step is to invoke the training pipeline created in the previous step. It can be done with a **Release Pipeline**:
110110

111111
![invoke training pipeline](./images/invoke-training-pipeline.png)
112112

113-
An artifact of this pipeline will be the result of the build pipeline **ci-buid**
113+
An artifact of this pipeline will be the result of the build pipeline **ci-buid**:
114114

115115
![artifact invoke pipeline](./images/artifact-invoke-pipeline.png)
116116

117-
Configure a pipeline to see values from the previously defined variable group **devopsforai-aml-vg**
117+
Configure a pipeline to see values from the previously defined variable group **devopsforai-aml-vg**:
118118

119119
![retrain pipeline vg](./images/retrain-pipeline-vg.png)
120120

121-
Add an empty stage with name **``Invoke Training Pipeline``** and make sure that the **Agent Specification** is **``ubuntu-16.04``**
121+
Add an empty stage with name **``Invoke Training Pipeline``** and make sure that the **Agent Specification** is **``ubuntu-16.04``**:
122+
122123
![agent specification](./images/agent-specification.png)
123124

124-
Add a command line step **``Invoke Training Pipeline``** with the following script
125+
Add a command line step **``Invoke Training Pipeline``** with the following script:
125126

126127
```bash
127128
docker run -v $(System.DefaultWorkingDirectory)/_ci-build/mlops-pipelines/ml_service/pipelines:/pipelines -w=/pipelines -e MODEL_NAME=$MODEL_NAME -e EXPERIMENT_NAME=$EXPERIMENT_NAME microsoft/mlopspython python run_train_pipeline.py
128129
```
129130

130-
The pipeline is triggered whenever a new training pipeline is published by the builder pipeline. It can also be triggered manually or configured to run on a scheduled basis. Create a new release to trigger the pipeline manually
131+
This release pipeline is triggered whenever a new **ML training pipeline** is published by the **AzDo builder pipeline**. It can also be triggered manually or configured to run on a scheduled basis. Create a new release to trigger the pipeline manually:
131132

132133
![create release](./images/create-release.png)
133134

134-
Once the pipeline is completed, check out in the **ML Workspace** that the training pipeline is running
135+
Once the release pipeline is completed, check out in the **ML Workspace** that the training pipeline is running:
135136

136137
![running training pipeline](./images/running-training-pipeline.png)
137138

138-
The training pipeline will train, evaluate and register a new model. Wait intil it is fininshed and make sure there is a new model in the **ML Workspace**
139+
The training pipeline will train, evaluate and register a new model. Wait until it is fininshed and make sure there is a new model in the **ML Workspace**:
139140

140141
![trained model](./images/trained-model.png)
141142

0 commit comments

Comments
 (0)