Skip to content

Commit 7d8ec0a

Browse files
authored
Merge pull request #63872 from Blackmist/master
incorporating feedback
2 parents d45e4ba + 6fe5cbd commit 7d8ec0a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/machine-learning/service/concept-model-management-and-deployment.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Each step can be performed independently or as part of a single deployment comma
3535

3636
Model registration allows you to store and version your models in the Azure cloud, in your workspace. The model registry makes it easy to organize and keep track of your trained models.
3737

38-
Registered models are identified by name and version. Each time you register a model with the same name as an existing one, the registry increments the version. You can also provide additional metadata tags during registration that can be used when searching for models. The Azure Machine Learning service supports models stored using any model that can be loaded using Python 3.
38+
Registered models are identified by name and version. Each time you register a model with the same name as an existing one, the registry increments the version. You can also provide additional metadata tags during registration that can be used when searching for models. The Azure Machine Learning service supports any model that can be loaded using Python 3.
3939

4040
You can't delete models that are being used by an image.
4141

@@ -59,13 +59,13 @@ The image can also include SDK components for logging and monitoring. The SDK lo
5959
Azure Machine Learning supports the most popular frameworks, but in general any framework that can be pip installed can work.
6060

6161
When your workspace was created, so were other several other Azure resources used by that workspace.
62-
All the objects used to create the image are stored in the Azure storage account in your workspace. The image is created and stored in the Azure Container Registry. You can provide additional metadata tags when creating the image, which are also stored by the image registry and can be queried to find your image.
62+
All the objects used to create the image are stored in the Azure storage account in your workspace. You can provide additional metadata tags when creating the image. The metadata tags are also stored by the image registry, and can be queried to find your image.
6363

6464
For more information, see the configure and register image section of [Deploy models](how-to-deploy-and-where.md#configureimage).
6565

6666
## Step 3: Deploy image
6767

68-
You can deploy registered images into the cloud or to edge devices. The deployment process creates all the resources needed to monitor, load-balance, and auto-scale your model. Access to the deployed services can be secured with certificate based authentication by providing the security assets during deployment. You can also upgrade an existing deployment to use a newer image.
68+
You can deploy registered images into the cloud or to edge devices. The deployment process creates all the resources needed to monitor, load-balance, and autoscale your model. Access to the deployed services can be secured with certificate-based authentication by providing the security assets during deployment. You can also upgrade an existing deployment to use a newer image.
6969

7070
Web service deployments are also searchable. For example, you can search for all deployments of a specific model or image.
7171

articles/machine-learning/service/how-to-deploy-and-where.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ To deploy to Azure Container Instances, use the following steps:
240240
**Time estimate**: Approximately 3 minutes.
241241

242242
> [!TIP]
243-
> If there are errors during deployment, use `service.get_logs()` to view the AKS service logs. The logged information may indicate the cause of the error.
243+
> If there are errors during deployment, use `service.get_logs()` to view the service logs. The logged information may indicate the cause of the error.
244244
245245
For more information, see the reference documentation for the [AciWebservice](https://docs.microsoft.com/python/api/azureml-core/azureml.core.webservice.aciwebservice?view=azure-ml-py) and [Webservice](https://docs.microsoft.com/python/api/azureml-core/azureml.core.webservice.webservice?view=azure-ml-py) classes.
246246

@@ -330,7 +330,7 @@ print(service.state)
330330
**Time estimate**: Approximately 3 minutes.
331331

332332
> [!TIP]
333-
> If there are errors during deployment, use `service.get_logs()` to view the AKS service logs. The logged information may indicate the cause of the error.
333+
> If there are errors during deployment, use `service.get_logs()` to view the service logs. The logged information may indicate the cause of the error.
334334
335335
For more information, see the reference documentation for the [AksWebservice](https://docs.microsoft.com/python/api/azureml-core/azureml.core.webservice.akswebservice?view=azure-ml-py) and [Webservice](https://docs.microsoft.com/python/api/azureml-core/azureml.core.webservice.webservice.webservice?view=azure-ml-py) classes.
336336

0 commit comments

Comments
 (0)