azure-container-instances

Azure Container Group IP Address disappeared

浪子不回头ぞ 提交于 2019-12-06 15:23:15
We have an Azure Container Group that had an IP Address assigned upon creation. The IP address is now missing and our application suddenly stopped working. (i.e. It was set to null, previously the resource had an associated IP address) Note that our subscription was suspended for 2 weeks and is now back to an active state. If someone can please help us to understand the following: Q1: Where did the IP go? Q2: If the subscription went suspended (as our case), do they deallocate the IP address? Appreciate your feedback the soonest possible on how we can recover the Container Group to a working

Why does my ML model deployment in Azure Container Instance still fail?

心不动则不痛 提交于 2019-12-01 11:00:01
问题 I am using Azure Machine Learning Service to deploy a ML model as web service. I registered a model and now would like to deploy it as an ACI web service as in the guide. To do so I define from azureml.core.webservice import Webservice, AciWebservice from azureml.core.image import ContainerImage aciconfig = AciWebservice.deploy_configuration(cpu_cores=4, memory_gb=32, tags={"data": "text", "method" : "NB"}, description='Predict something') and image_config = ContainerImage.image_configuration