I am trying out Azure Machine Learning Service to deploy a ML model as web service.
I have already registered a model and now would like to deploy it as web service following the guide using Azure (Python) Notebooks.
The step
service = Webservice.deploy_from_model(my-model-svc',
deployment_config=aciconfig,
models=[model],
image_config=image_config)
fails for me with
Creating image
Image creation operation finished for image my-model-svc:5, operation "Succeeded" Creating service
Running.
FailedACI service creation operation finished, operation
"Failed" Service creation polling reached terminal state, current service state: Transitioning Service creation polling reached terminal state, unexpected response received.
Not sure about what could be the root cause, as (AFAIK) I have no ways to access logs of the deployment in Azure portal.
Can someone shed some light on this?