Skip to content

Commit 6098c19

Browse files
committed
Merge branch 'sdg-update-tutorial' of github.com:sdgilley/azure-docs-pr into sdg-update-tutorial
2 parents 7db21a4 + a9f103e commit 6098c19

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/machine-learning/tutorial-train-deploy-notebook.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ This tutorial trains a simple logistic regression by using the [MNIST](http://ya
2222
Learn how to take the following actions:
2323

2424
> [!div class="checklist"]
25-
> * Download a dataset and look at the data
26-
> * Train an image classification model and log metrics using MLflow
27-
> * Deploy the model to do real-time inference
25+
> * Download a dataset and look at the data.
26+
> * Train an image classification model and log metrics using MLflow.
27+
> * Deploy the model to do real-time inference.
2828
2929

3030
## Prerequisites
@@ -87,7 +87,7 @@ This tutorial and accompanying **utils.py** file is also available on [GitHub](h
8787
> Switch to the Jupyter Notebook now if you want to run the code while you read along.
8888
> To run a single code cell in a notebook, click the code cell and hit **Shift+Enter**. Or, run the entire notebook by choosing **Run all** from the top toolbar.
8989
90-
## Import Data
90+
## Import data
9191

9292
Before you train a model, you need to understand the data you're using to train it. In this section, learn how to:
9393

@@ -211,7 +211,7 @@ with mlflow.start_run() as run:
211211
clf.fit(X_train, y_train)
212212
```
213213

214-
## View Experiment
214+
## View experiment
215215

216216
In the left-hand menu in Azure Machine Learning Studio, select __Experiments__ and then select your experiment (__azure-ml-in10-mins-tutorial__). An experiment is a grouping of many runs from a specified script or piece of code. Information for the run is stored under that experiment. If the name doesn't exist when you submit an experiment, if you select your run you will see various tabs containing metrics, logs, explanations, etc.
217217

@@ -259,7 +259,7 @@ aciconfig = AciWebservice.deploy_configuration(
259259

260260
### Deploy model
261261

262-
This next code cell deploys the model to Azure Container Instance (ACI).
262+
This next code cell deploys the model to Azure Container Instance.
263263

264264
> [!NOTE]
265265
> The deployment takes approximately 3 minutes to complete.**
@@ -293,10 +293,10 @@ service.wait_for_deployment(show_output=True)
293293

294294
The scoring script file referenced in the code above can be found in the same folder as this notebook, and has two functions:
295295

296-
1. an `init` function that executes once when the service starts - in this function you normally get the model from the registry and set global variables
297-
1. a `run(data)` function that executes each time a call is made to the service. In this function, you normally format the input data, run a prediction, and output the predicted result.
296+
1. An `init` function that executes once when the service starts - in this function you normally get the model from the registry and set global variables
297+
1. A `run(data)` function that executes each time a call is made to the service. In this function, you normally format the input data, run a prediction, and output the predicted result.
298298

299-
### View Endpoint
299+
### View endpoint
300300

301301
Once the model has been successfully deployed, you can view the endpoint by navigating to __Endpoints__ in the left-hand menu in Azure Machine Learning Studio. You will be able to see the state of the endpoint (healthy/unhealthy), logs, and consume (how applications can consume the model).
302302

0 commit comments

Comments
 (0)