Skip to content

Commit 10b169a

Browse files
incorporate author feedback
1 parent c887423 commit 10b169a

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

articles/machine-learning/how-to-use-environments.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ms.date: 01/06/2020
2020

2121
In this article, learn how to create and manage Azure Machine Learning [environments](https://docs.microsoft.com/python/api/azureml-core/azureml.core.environment.environment?view=azure-ml-py). Use the environments to track and reproduce your projects' software dependencies as they evolve.
2222

23-
Software dependency management is a common task for developers. You want to ensure that builds are reproducible without extensive manual software configuration. The Azure Machine Learning `Environments` class accounts for local development solutions such as pip and Conda, and it provides a solution for both local and distributed cloud development.
23+
Software dependency management is a common task for developers. You want to ensure that builds are reproducible without extensive manual software configuration. The Azure Machine Learning `Environment` class accounts for local development solutions such as pip and Conda, and it provides a solution for both local and distributed cloud development.
2424

2525
The examples in this article show how to:
2626

@@ -227,7 +227,7 @@ build.wait_for_completion(show_output=True)
227227

228228
## Enable Docker
229229

230-
The [`DockerSection`](https://docs.microsoft.com/python/api/azureml-core/azureml.core.environment.dockersection?view=azure-ml-py) of the Azure Machine Learning `Environments` class allows you to finely customize and control the guest operating system on which you run your training.
230+
The [`DockerSection`](https://docs.microsoft.com/python/api/azureml-core/azureml.core.environment.dockersection?view=azure-ml-py) of the Azure Machine Learning `Environment` class allows you to finely customize and control the guest operating system on which you run your training.
231231

232232
When you `enable` Docker, the service builds a Docker image. It also creates a Python environment that uses your specifications within that Docker container. This functionality provides additional isolation and reproducibility for your training runs.
233233

@@ -337,10 +337,6 @@ service = Model.deploy(
337337
deployment_config = deployment_config)
338338
```
339339

340-
## See example notebooks
341-
342-
For more information about the concepts and methods described in this article, see this [example notebook](https://github.com/Azure/MachineLearningNotebooks/tree/master/how-to-use-azureml/training/using-environments).
343-
344340
## Use the CLI to create and manage environments
345341

346342
The [Azure Machine Learning CLI](reference-azure-machine-learning-cli.md) mirrors most of the functionality of the Python SDK. You can use it to create and manage environments. The commands that we discuss in this section demonstrate basic functionality.
@@ -374,3 +370,4 @@ az ml environment download -n myenv -d downloaddir
374370
* To use a managed compute target to train a model, see [Tutorial: Train a model](tutorial-train-models-with-aml.md).
375371
* After you have a trained model, learn [how and where to deploy models](how-to-deploy-and-where.md).
376372
* View the [`Environment` class SDK reference](https://docs.microsoft.com/python/api/azureml-core/azureml.core.environment(class)?view=azure-ml-py).
373+
* For more information about the concepts and methods described in this article, see this [example notebook](https://github.com/Azure/MachineLearningNotebooks/tree/master/how-to-use-azureml/training/using-environments).

0 commit comments

Comments
 (0)