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/service/concept-model-management-and-deployment.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ Each step can be performed independently or as part of a single deployment comma
35
35
36
36
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.
37
37
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.
39
39
40
40
You can't delete models that are being used by an image.
41
41
@@ -59,13 +59,13 @@ The image can also include SDK components for logging and monitoring. The SDK lo
59
59
Azure Machine Learning supports the most popular frameworks, but in general any framework that can be pip installed can work.
60
60
61
61
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.
63
63
64
64
For more information, see the configure and register image section of [Deploy models](how-to-deploy-and-where.md#configureimage).
65
65
66
66
## Step 3: Deploy image
67
67
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 certificatebased 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.
69
69
70
70
Web service deployments are also searchable. For example, you can search for all deployments of a specific model or image.
Copy file name to clipboardExpand all lines: articles/machine-learning/service/how-to-deploy-and-where.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -240,7 +240,7 @@ To deploy to Azure Container Instances, use the following steps:
240
240
**Time estimate**: Approximately 3 minutes.
241
241
242
242
> [!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.
244
244
245
245
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.
246
246
@@ -330,7 +330,7 @@ print(service.state)
330
330
**Time estimate**: Approximately 3 minutes.
331
331
332
332
> [!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.
334
334
335
335
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.
0 commit comments