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
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-train-tensorflow.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Run this code on either of these environments:
27
27
28
28
- Azure Machine Learning compute instance - no downloads or installation necessary
29
29
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.
31
31
- 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.
32
32
33
33
- Your own Jupyter Notebook server
@@ -127,7 +127,7 @@ For more information on compute targets, see the [what is a compute target](conc
127
127
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.
128
128
129
129
#### 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).
131
131
132
132
If you want to use a curated environment, you can run the following command instead:
133
133
@@ -169,7 +169,7 @@ dependencies:
169
169
170
170
Create an Azure ML environment from this conda environment specification. The environment will be packaged into a Docker container at runtime.
171
171
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.
0 commit comments