Skip to content

Commit a36f36d

Browse files
author
Larry Franks
committed
notes
1 parent c66b1e1 commit a36f36d

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

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

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,8 @@ Next, get a handle to the workspace by providing your Subscription ID, Resource
8484

8585
The result of running this script is a workspace handle that you'll use to manage other resources and jobs.
8686

87-
Note:
88-
89-
- Creating `MLClient` will not connect the client to the workspace. The client initialization is lazy and will wait for the first time it needs to make a call. In this article, this will happen during compute creation.
87+
> [!NOTE]
88+
> - Creating `MLClient` will not connect the client to the workspace. The client initialization is lazy and will wait for the first time it needs to make a call. In this article, this will happen during compute creation.
9089
9190
### Create a compute resource to run the job
9291

@@ -121,13 +120,11 @@ For more information about the MNIST dataset, please visit [Yan LeCun's website]
121120

122121
In this article, we've provided the training script *tf_mnist.py*. In practice, you should be able to take any custom training script as is and run it with AzureML without having to modify your code.
123122

124-
Notes:
125-
126-
The provided training script does the following:
127-
128-
- handles the data preprocessing, splitting the data into test and train data;
129-
- trains a model, using the data; and
130-
- returns the output model.
123+
> [!NOTE]
124+
> The provided training script does the following:
125+
> - handles the data preprocessing, splitting the data into test and train data;
126+
> - trains a model, using the data; and
127+
> - returns the output model.
131128
132129
During the pipeline run, you'll use MLFlow to log the parameters and metrics. To learn how to enable MLFlow tracking, see [Track ML experiments and models with MLflow](how-to-use-mlflow-cli-runs.md).
133130

@@ -264,7 +261,8 @@ You can then print the returned predictions and plot them along with the input i
264261

265262
[!notebook-python[](~/azureml-examples-v2samplesreorg/sdk/python/jobs/single-step/tensorflow/train-hyperparameter-tune-deploy-with-tensorflow/train-hyperparameter-tune-deploy-with-tensorflow.ipynb?name=test_invoke)]
266263

267-
Note that because the model accuracy is high, you might have to run the cell a few times before seeing a misclassified sample.
264+
> [!NOTE]
265+
> Because the model accuracy is high, you might have to run the cell a few times before seeing a misclassified sample.
268266
269267
### Clean up resources
270268

0 commit comments

Comments
 (0)