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
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,9 +84,8 @@ Next, get a handle to the workspace by providing your Subscription ID, Resource
84
84
85
85
The result of running this script is a workspace handle that you'll use to manage other resources and jobs.
86
86
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.
90
89
91
90
### Create a compute resource to run the job
92
91
@@ -121,13 +120,11 @@ For more information about the MNIST dataset, please visit [Yan LeCun's website]
121
120
122
121
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.
123
122
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.
131
128
132
129
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).
133
130
@@ -264,7 +261,8 @@ You can then print the returned predictions and plot them along with the input i
0 commit comments