Skip to content

Commit f10f3ea

Browse files
author
Larry Franks
committed
notes
1 parent 06d52a6 commit f10f3ea

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

articles/machine-learning/how-to-train-scikit-learn.md

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

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

78-
Note:
79-
80-
- 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.
78+
> [!NOTE]
79+
> 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.
8180
8281
### Create a compute resource to run the job
8382

@@ -120,12 +119,11 @@ In this section, we'll cover how to run a training job, using a training script
120119

121120
In this article, we've provided the training script *train_iris.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.
122121

123-
Notes:
124-
125-
The provided training script does the following:
126-
- shows how to log some metrics to your AzureML run;
127-
- downloads and extracts the training data using `iris = datasets.load_iris()`; and
128-
- trains a model, then saves and registers it.
122+
> [!NOTE]
123+
> The provided training script does the following:
124+
> - shows how to log some metrics to your AzureML run;
125+
> - downloads and extracts the training data using `iris = datasets.load_iris()`; and
126+
> - trains a model, then saves and registers it.
129127
130128
To use and access your own data, see [how to train with datasets](v1/how-to-train-with-datasets.md) to make data available during training.
131129

0 commit comments

Comments
 (0)