Skip to content

Commit a39a453

Browse files
authored
Fixed links and typos (#175)
1 parent 08bc547 commit a39a453

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ This reference architecture shows how to implement continuous integration (CI),
4545
2. Once the Azure DevOps build pipeline is triggered, it performs code quality checks, data sanity tests, unit tests, builds an [Azure ML Pipeline](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-ml-pipelines) and publishes it in an [Azure ML Service Workspace](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#workspace).
4646
3. The [Azure ML Pipeline](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-ml-pipelines) is triggered once the Azure DevOps build pipeline completes. All the tasks in this pipeline runs on Azure ML Compute. Following are the tasks in this pipeline:
4747

48-
- **Train Model** task executes model training script on Azure ML Compute. It outputs a [model](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#model) file which is stored in the [run history](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#run).
48+
- **Train Model** task executes model training script on Azure ML Compute. It outputs a [model](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#models) file which is stored in the [run history](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-azure-machine-learning-architecture#runs).
4949

5050
- **Evaluate Model** task evaluates the performance of the newly trained model with the model in production. If the new model performs better than the production model, the following steps are executed. If not, they will be skipped.
5151

docs/getting_started.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ be naming collisions with resources that require unique names like azure blob
6767
storage and registry DNS naming. Make sure to give a unique value to the
6868
BASE_NAME variable (e.g. MyUniqueML), so that the created resources will have
6969
unique names (e.g. MyUniqueMLamlcr, MyUniqueML-AML-KV, etc.). The length of
70-
the BASE_NAME value should not exceed 10 characters.
70+
the BASE_NAME value should not exceed 10 characters and it should contain numbers and letters only.
7171

7272
The **RESOURCE_GROUP** parameter is used as the name for the resource group that will hold the Azure resources for the solution. If providing an existing AML Workspace, set this value to the corresponding resource group name.
7373

@@ -115,11 +115,11 @@ Having done that, run the pipeline:
115115

116116
![iac run](./images/run-iac-pipeline.png)
117117

118-
Check out the newly created resources in the [Azure Portal](portal.azure.com):
118+
Check out the newly created resources in the [Azure Portal](https://portal.azure.com):
119119

120120
![created resources](./images/created-resources.png)
121121

122-
(Optional) To remove the resources created for this project you can use the [/environment_setup/iac-remove-environment.yml](../environment_setup/iac-remove-environment.yml) definition or you can just delete the resource group in the [Azure Portal](portal.azure.com).
122+
(Optional) To remove the resources created for this project you can use the [/environment_setup/iac-remove-environment.yml](../environment_setup/iac-remove-environment.yml) definition or you can just delete the resource group in the [Azure Portal](https://portal.azure.com).
123123

124124
**Note:** The training ML pipeline uses a [sample diabetes dataset](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_diabetes.html) as training data. If you want to use your own dataset, you need to [create and register a datastore](https://docs.microsoft.com/en-us/azure/machine-learning/how-to-access-data#azure-machine-learning-studio) in your ML workspace and upload the datafile (e.g. [diabetes.csv](./data/diabetes.csv)) to the corresponding blob container. You can also define a datastore in the ML Workspace with [az cli](https://docs.microsoft.com/en-us/cli/azure/ext/azure-cli-ml/ml/datastore?view=azure-cli-latest#ext-azure-cli-ml-az-ml-datastore-attach-blob).
125125
You'll also need to configure DATASTORE_NAME and DATAFILE_NAME variables in ***devopsforai-aml-vg*** variable group.
@@ -162,8 +162,7 @@ Once the pipeline is finished, explore the execution result:
162162

163163
![build](./images/multi-stage-aci.png)
164164

165-
and check out the published training pipeline in the **mlops-AML-WS** workspace in
166-
[Azure Portal](https://ms.portal.azure.com/):
165+
and check out the published training pipeline in the **mlops-AML-WS** workspace in [Azure Portal](https://portal.azure.com/):
167166

168167
![training pipeline](./images/training-pipeline.png)
169168

0 commit comments

Comments
 (0)