Skip to content

Commit 6688065

Browse files
authored
Merge pull request #188422 from lgayhardt/patch-65
Link text and spacing
2 parents 045ad4c + 51ae9f3 commit 6688065

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/machine-learning/how-to-train-tensorflow.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Run this code on either of these environments:
2727

2828
- Azure Machine Learning compute instance - no downloads or installation necessary
2929

30-
- Complete the [Quickstart: Get started with Azure Machine Learning](quickstart-create-resources.md)to create a dedicated notebook server pre-loaded with the SDK and the sample repository.
30+
- Complete the [Quickstart: Get started with Azure Machine Learning](quickstart-create-resources.md) to create a dedicated notebook server pre-loaded with the SDK and the sample repository.
3131
- In the samples deep learning folder on the notebook server, find a completed and expanded notebook by navigating to this directory: **how-to-use-azureml > ml-frameworks > tensorflow > train-hyperparameter-tune-deploy-with-tensorflow** folder.
3232

3333
- Your own Jupyter Notebook server
@@ -127,7 +127,7 @@ For more information on compute targets, see the [what is a compute target](conc
127127
To define the Azure ML [Environment](concept-environments.md) that encapsulates your training script's dependencies, you can either define a custom environment or use an Azure ML curated environment.
128128

129129
#### Use a curated environment
130-
Azure ML provides prebuilt, curated environments if you don't want to define your own environment. Azure ML has several CPU and GPU curated environments for TensorFlow corresponding to different versions of TensorFlow. For more info, see [here](resource-curated-environments.md).
130+
Azure ML provides prebuilt, curated environments if you don't want to define your own environment. Azure ML has several CPU and GPU curated environments for TensorFlow corresponding to different versions of TensorFlow. For more info, see [Azure ML Curated Environments](resource-curated-environments.md).
131131

132132
If you want to use a curated environment, you can run the following command instead:
133133

@@ -169,7 +169,7 @@ dependencies:
169169
170170
Create an Azure ML environment from this conda environment specification. The environment will be packaged into a Docker container at runtime.
171171
172-
By default if no base image is specified, Azure ML will use a CPU image `azureml.core.environment.DEFAULT_CPU_IMAGE` as the base image. Since this example runs training on a GPU cluster, you'll need to specify a GPU base image that has the necessary GPU drivers and dependencies. Azure ML maintains a set of base images published on Microsoft Container Registry (MCR) that you can use, see the [Azure/AzureML-Containers](https://github.com/Azure/AzureML-Containers) GitHub repo for more information.
172+
By default if no base image is specified, Azure ML will use a CPU image `azureml.core.environment.DEFAULT_CPU_IMAGE` as the base image. Since this example runs training on a GPU cluster, you'll need to specify a GPU base image that has the necessary GPU drivers and dependencies. Azure ML maintains a set of base images published on Microsoft Container Registry (MCR) that you can use, see the [Azure/AzureML-Containers GitHub repo](https://github.com/Azure/AzureML-Containers) for more information.
173173

174174
```python
175175
tf_env = Environment.from_conda_specification(name='tensorflow-2.2-gpu', file_path='./conda_dependencies.yml')

0 commit comments

Comments
 (0)