Skip to content

Commit 50660af

Browse files
authored
Merge pull request #179356 from sdgilley/patch-76
clarify where variables are defined
2 parents 6c53331 + e0e029a commit 50660af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/how-to-set-up-training-targets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The example code in this article assumes that you have already created a compute
7676
7777
[!INCLUDE [arc-enabled-kubernetes](../../includes/machine-learning-create-arc-enabled-training-computer-target.md)]
7878

79-
## Create an environment
79+
## <a name="environment"></a> Create an environment
8080
Azure Machine Learning [environments](concept-environments.md) are an encapsulation of the environment where your machine learning training happens. They specify the Python packages, Docker image, environment variables, and software settings around your training and scoring scripts. They also specify runtimes (Python, Spark, or Docker).
8181

8282
You can either define your own environment, or use an Azure ML curated environment. [Curated environments](./how-to-use-environments.md#use-a-curated-environment) are predefined environments that are available in your workspace by default. These environments are backed by cached Docker images which reduces the run preparation cost. See [Azure Machine Learning Curated Environments](./resource-curated-environments.md) for the full list of available curated environments.
@@ -108,7 +108,7 @@ myenv.python.user_managed_dependencies = True
108108

109109
## Create the script run configuration
110110

111-
Now that you have a compute target (`my_compute_target`) and environment (`myenv`), create a script run configuration that runs your training script (`train.py`) located in your `project_folder` directory:
111+
Now that you have a compute target (`my_compute_target`, see [Prerequisites](#prerequisites) and environment (`myenv`, see [Create an environment](#environment)), create a script run configuration that runs your training script (`train.py`) located in your `project_folder` directory:
112112

113113
```python
114114
from azureml.core import ScriptRunConfig

0 commit comments

Comments
 (0)