You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -44,7 +44,7 @@ The Azure Machine Learning SDK for Python allows you to build and run machine le
44
44
45
45
### Run configuration
46
46
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.
48
48
49
49
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.
50
50
@@ -60,16 +60,18 @@ Define the iterations, hyperparameter settings, featurization, and other setting
60
60
> [!TIP]
61
61
> In addition to the Python SDK, you can also use Automated ML through [Azure Machine Learning studio](https://ml.azure.com).
62
62
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)
64
65
*[Examples: Jupyter Notebook examples for automated machine learning](https://github.com/Azure/MachineLearningNotebooks/tree/master/how-to-use-azureml/automated-machine-learning)
65
66
*[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)
68
69
69
70
### Machine learning pipeline
70
71
71
72
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.
72
73
74
+
*[What are ML pipelines in Azure Machine Learning?](../concept-ml-pipelines.md)
73
75
*[Create and run machine learning pipelines with Azure Machine Learning SDK](how-to-create-machine-learning-pipelines.md)
74
76
*[Tutorial: Use Azure Machine Learning Pipelines for batch scoring](tutorial-pipeline-python-sdk.md)
75
77
*[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:
87
89
- Custom docker steps (see [Deploy a model using a custom Docker base image](how-to-deploy-package-models.md))
88
90
- The conda definition YAML (see [Create & use software environments in Azure Machine Learning](how-to-use-environments.md))
89
91
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)
92
94
1. Downloading your zipped project file to temporary storage on the compute node
93
95
1. Unzipping the project file
94
96
1. The compute node executing `python <entry script> <arguments>`
95
97
1. Saving logs, model files, and other files written to `./outputs` to the storage account associated with the workspace
96
98
1. Scaling down compute, including removing temporary storage
97
99
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).
0 commit comments