Skip to content

Commit f232c84

Browse files
authored
Update concept-train-machine-learning-model.md
1 parent e3a523b commit f232c84

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

articles/machine-learning/v1/concept-train-machine-learning-model.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.author: magoswam
99
ms.reviewer: ssalgado
1010
ms.subservice: core
1111
ms.topic: conceptual
12-
ms.date: 03/11/2024
12+
ms.date: 08/30/2022
1313
ms.custom: UpdateFrequency5, devx-track-python, devx-track-azurecli
1414
ms.devlang: azurecli
1515
---
@@ -44,7 +44,7 @@ The Azure Machine Learning SDK for Python allows you to build and run machine le
4444

4545
### Run configuration
4646

47-
A generic training job with Azure Machine Learning can be defined using the [ScriptRunConfig](/python/api/azureml-core/azureml.core.scriptrunconfig). The script run configuration is then used, along with your training script to train a model on a compute target.
47+
A generic training job with Azure Machine Learning can be defined using the [ScriptRunConfig](/python/api/azureml-core/azureml.core.scriptrunconfig). The script run configuration is then used, along with your training script(s) to train a model on a compute target.
4848

4949
You may start with a run configuration for your local computer, and then switch to one for a cloud-based compute target as needed. When changing the compute target, you only change the run configuration you use. A run also logs information about the training job, such as the inputs, outputs, and logs.
5050

@@ -60,16 +60,18 @@ Define the iterations, hyperparameter settings, featurization, and other setting
6060
> [!TIP]
6161
> In addition to the Python SDK, you can also use Automated ML through [Azure Machine Learning studio](https://ml.azure.com).
6262
63-
* [What is automated machine learning?](./concept-automated-ml.md)
63+
* [What is automated machine learning?](../concept-automated-ml.md)
64+
* [Tutorial: Create your first classification model with automated machine learning](../tutorial-first-experiment-automated-ml.md)
6465
* [Examples: Jupyter Notebook examples for automated machine learning](https://github.com/Azure/MachineLearningNotebooks/tree/master/how-to-use-azureml/automated-machine-learning)
6566
* [How to: Configure automated ML experiments in Python](how-to-configure-auto-train.md)
66-
* [How to: Autotrain a time-series forecast model](how-to-auto-train-forecast.md)
67-
* [Train a small object detection model with AutoML (preview)](how-to-use-automl-small-object-detect.md)
67+
* [How to: Autotrain a time-series forecast model](../how-to-auto-train-forecast.md)
68+
* [How to: Create, explore, and deploy automated machine learning experiments with Azure Machine Learning studio](../how-to-use-automated-ml-for-ml-models.md)
6869

6970
### Machine learning pipeline
7071

7172
Machine learning pipelines can use the previously mentioned training methods. Pipelines are more about creating a workflow, so they encompass more than just the training of models. In a pipeline, you can train a model using automated machine learning or run configurations.
7273

74+
* [What are ML pipelines in Azure Machine Learning?](../concept-ml-pipelines.md)
7375
* [Create and run machine learning pipelines with Azure Machine Learning SDK](how-to-create-machine-learning-pipelines.md)
7476
* [Tutorial: Use Azure Machine Learning Pipelines for batch scoring](tutorial-pipeline-python-sdk.md)
7577
* [Examples: Jupyter Notebook examples for machine learning pipelines](https://github.com/Azure/MachineLearningNotebooks/tree/master/how-to-use-azureml/machine-learning-pipelines)
@@ -87,15 +89,15 @@ The Azure training lifecycle consists of:
8789
- Custom docker steps (see [Deploy a model using a custom Docker base image](how-to-deploy-package-models.md))
8890
- The conda definition YAML (see [Create & use software environments in Azure Machine Learning](how-to-use-environments.md))
8991
1. The system uses this hash as the key in a lookup of the workspace Azure Container Registry (ACR)
90-
1. If it isn't found, it looks for a match in the global ACR
91-
1. If it isn't found, the system builds a new image (which will be cached and registered with the workspace ACR)
92+
1. If it is not found, it looks for a match in the global ACR
93+
1. If it is not found, the system builds a new image (which will be cached and registered with the workspace ACR)
9294
1. Downloading your zipped project file to temporary storage on the compute node
9395
1. Unzipping the project file
9496
1. The compute node executing `python <entry script> <arguments>`
9597
1. Saving logs, model files, and other files written to `./outputs` to the storage account associated with the workspace
9698
1. Scaling down compute, including removing temporary storage
9799

98-
If you choose to train on your local machine ("configure as local run"), you don't need to use Docker. You may use Docker locally if you choose (see the section [Configure ML pipeline](how-to-debug-pipelines.md) for an example).
100+
If you choose to train on your local machine ("configure as local run"), you do not need to use Docker. You may use Docker locally if you choose (see the section [Configure ML pipeline](how-to-debug-pipelines.md) for an example).
99101

100102
## Azure Machine Learning designer
101103

0 commit comments

Comments
 (0)