Skip to content

Commit 93e3fef

Browse files
Minor edits.
1 parent 6c50b31 commit 93e3fef

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

articles/machine-learning/how-to-deploy-automl-endpoint.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ In the following sections, you learn how to deploy AutoML trained machine learni
2828

2929
## Prerequisites
3030

31-
- An AutoML-trained machine learning model. For more information, see [Tutorial: Train a classification model with no-code AutoML in the Azure Machine Learning studio](tutorial-first-experiment-automated-ml.md) or [Tutorial: Forecast demand with automated machine learning](tutorial-automated-ml-forecast.md).
31+
- An AutoML-trained machine learning model. For more information, see [Tutorial: Train a classification model with no-code AutoML](tutorial-first-experiment-automated-ml.md) or [Tutorial: Forecast demand with no-code automated machine learning](tutorial-automated-ml-forecast.md).
3232

3333
## Deploy from Azure Machine Learning studio and no code
3434

@@ -107,7 +107,7 @@ Create a directory called `src/` and place the scoring file that you downloaded
107107

108108
### Create the endpoint and deployment yaml file
109109

110-
To create an online endpoint from the command line, create an *endpoint.yml* and a *deployment.yml* file. The following code, taken from the [Azure Machine Learning Examples repo](https://github.com/Azure/azureml-examples), shows the *endpoints/online/managed/sample/*, which captures all the required inputs:
110+
To create an online endpoint from the command line, create an *endpoint.yml* and a *deployment.yml* file. The following code, taken from the [Azure Machine Learning Examples repo](https://github.com/Azure/azureml-examples), shows the *endpoints/online/managed/sample/*, which captures all the required inputs.
111111

112112
__automl_endpoint.yml__
113113

@@ -123,7 +123,7 @@ You need to modify this file to use the files you downloaded from the AutoML Mod
123123

124124
1. Change the value of the `name` of the endpoint. The endpoint name needs to be unique within the Azure region. The name for an endpoint must start with an upper- or lowercase letter and only consist of '-'s and alphanumeric characters.
125125

126-
1. In the `automl_deployment` file, change the value of the keys at the following paths:
126+
1. In the `automl_deployment` file, change the value of the keys at the following paths.
127127

128128
| Path | Change to |
129129
|:---- |:--------- |
@@ -166,7 +166,7 @@ Create a directory called `src/` and place the scoring file you downloaded into
166166

167167
### Connect to Azure Machine Learning workspace
168168

169-
1. Import the required libraries:
169+
1. Import the required libraries.
170170

171171
```python
172172
# import required libraries
@@ -181,7 +181,7 @@ Create a directory called `src/` and place the scoring file you downloaded into
181181
from azure.identity import DefaultAzureCredential
182182
```
183183

184-
1. Configure workspace details and get a handle to the workspace:
184+
1. Configure workspace details and get a handle to the workspace.
185185

186186
```python
187187
# enter details of your Azure Machine Learning workspace
@@ -201,7 +201,7 @@ Create a directory called `src/` and place the scoring file you downloaded into
201201

202202
Next, create the managed online endpoints and deployments.
203203

204-
1. Configure online endpoint:
204+
1. Configure online endpoint.
205205

206206
> [!TIP]
207207
> - `name`: The name of the endpoint. It must be unique in the Azure region. The name for an endpoint must start with an upper- or lowercase letter and only consist of '-'s and alphanumeric characters. For more information on the naming rules, see [endpoint limits](how-to-manage-quotas.md#azure-machine-learning-online-endpoints-and-batch-endpoints).
@@ -221,15 +221,15 @@ Next, create the managed online endpoints and deployments.
221221
)
222222
```
223223

224-
1. Create the endpoint:
224+
1. Create the endpoint.
225225

226226
Using the `MLClient` created earlier, create the Endpoint in the workspace. This command starts the endpoint creation. It returns a confirmation response while the endpoint creation continues.
227227

228228
```python
229229
ml_client.begin_create_or_update(endpoint)
230230
```
231231

232-
1. Configure online deployment:
232+
1. Configure online deployment.
233233

234234
A deployment is a set of resources required for hosting the model that does the actual inferencing. Create a deployment for our endpoint using the `ManagedOnlineDeployment` class.
235235

@@ -262,7 +262,7 @@ Next, create the managed online endpoints and deployments.
262262
| `code_configuration:scoring_script` | The name of the Python scoring file (`scoring_file_<VERSION>.py`). |
263263
| `environment:conda_file` | A file URL for the downloaded conda environment file (`conda_env_<VERSION>.yml`). |
264264

265-
1. Create the deployment:
265+
1. Create the deployment.
266266

267267
Using the `MLClient` created earlier, create the deployment in the workspace. This command starts the deployment creation and return a confirmation response while the deployment creation continues.
268268

@@ -272,11 +272,11 @@ Next, create the managed online endpoints and deployments.
272272

273273
After you create a deployment, you can score it as described in [Test the endpoint with sample data](how-to-deploy-managed-online-endpoint-sdk-v2.md#test-the-endpoint-with-sample-data).
274274

275-
You can learn to deploy to managed online endpoints with SDK more in [Deploy machine learning models to managed online endpoint using Python SDK v2](how-to-deploy-managed-online-endpoint-sdk-v2.md).
275+
You can learn to deploy to managed online endpoints with SDK more in [Deploy and score a machine learning model by using an online endpoint](how-to-deploy-managed-online-endpoint-sdk-v2.md).
276276

277277
---
278278

279279
## Related content
280280

281-
- [Troubleshooting online endpoints deployment](how-to-troubleshoot-managed-online-endpoints.md)
282-
- [Safe rollout for online endpoints](how-to-safely-rollout-online-endpoints.md)
281+
- [Troubleshooting online endpoints deployment and scoring](how-to-troubleshoot-managed-online-endpoints.md)
282+
- [Perform safe rollout of new deployments for real-time inference](how-to-safely-rollout-online-endpoints.md)

0 commit comments

Comments
 (0)